GroupsController.cs 700 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658146591466014661146621466314664146651466614667146681466914670146711467214673146741467514676146771467814679146801468114682146831468414685146861468714688146891469014691146921469314694146951469614697146981469914700147011470214703147041470514706147071470814709147101471114712147131471414715147161471714718147191472014721147221472314724147251472614727147281472914730147311473214733147341473514736147371473814739147401474114742147431474414745147461474714748147491475014751147521475314754147551475614757147581475914760147611476214763147641476514766147671476814769147701477114772147731477414775147761477714778147791478014781147821478314784147851478614787147881478914790147911479214793147941479514796147971479814799148001480114802148031480414805148061480714808148091481014811148121481314814148151481614817148181481914820148211482214823148241482514826148271482814829148301483114832148331483414835148361483714838148391484014841148421484314844148451484614847148481484914850148511485214853148541485514856148571485814859148601486114862148631486414865148661486714868148691487014871148721487314874148751487614877148781487914880148811488214883148841488514886148871488814889148901489114892148931489414895148961489714898148991490014901149021490314904149051490614907149081490914910149111491214913149141491514916149171491814919149201492114922149231492414925149261492714928149291493014931149321493314934149351493614937149381493914940149411494214943149441494514946149471494814949149501495114952149531495414955149561495714958149591496014961149621496314964149651496614967149681496914970149711497214973149741497514976149771497814979149801498114982149831498414985149861498714988149891499014991149921499314994149951499614997149981499915000150011500215003150041500515006150071500815009150101501115012150131501415015150161501715018150191502015021150221502315024150251502615027150281502915030150311503215033150341503515036150371503815039150401504115042150431504415045150461504715048150491505015051150521505315054150551505615057150581505915060
  1. using Aspose.Cells;
  2. using Aspose.Words;
  3. using Aspose.Words.Drawing;
  4. using Aspose.Words.Tables;
  5. using Microsoft.AspNetCore.SignalR;
  6. using MySqlX.XDevAPI.Relational;
  7. using NPOI.HSSF.UserModel;
  8. using NPOI.SS.Format;
  9. using NPOI.SS.UserModel;
  10. using NPOI.SS.Util;
  11. using NPOI.XSSF.UserModel;
  12. using OASystem.API.OAMethodLib;
  13. using OASystem.API.OAMethodLib.File;
  14. using OASystem.API.OAMethodLib.Hub.HubClients;
  15. using OASystem.API.OAMethodLib.Hub.Hubs;
  16. using OASystem.API.OAMethodLib.JuHeAPI;
  17. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  18. using OASystem.Domain.Dtos.CRM;
  19. using OASystem.Domain.Dtos.FileDto;
  20. using OASystem.Domain.Dtos.Groups;
  21. using OASystem.Domain.Entities.Customer;
  22. using OASystem.Domain.Entities.Financial;
  23. using OASystem.Domain.Entities.Groups;
  24. using OASystem.Domain.ViewModels.Groups;
  25. using OASystem.Infrastructure.Repositories.Groups;
  26. using Quartz.Util;
  27. using SqlSugar.Extensions;
  28. using System.Collections;
  29. using System.Data;
  30. using System.Diagnostics;
  31. using System.Globalization;
  32. using System.IO;
  33. using System.Reflection.PortableExecutable;
  34. using Ubiety.Dns.Core;
  35. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  36. using Bookmark = Aspose.Words.Bookmark;
  37. using Cell = Aspose.Words.Tables.Cell;
  38. using Table = Aspose.Words.Tables.Table;
  39. namespace OASystem.API.Controllers
  40. {
  41. /// <summary>
  42. /// 团组相关
  43. /// </summary>
  44. //[Authorize]
  45. [Route("api/[controller]/[action]")]
  46. public class GroupsController : ControllerBase
  47. {
  48. private readonly ILogger<GroupsController> _logger;
  49. private readonly GrpScheduleRepository _grpScheduleRep;
  50. private readonly IMapper _mapper;
  51. private readonly DelegationInfoRepository _groupRepository;
  52. private readonly TaskAssignmentRepository _taskAssignmentRep;
  53. private readonly AirTicketResRepository _airTicketResRep;
  54. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  55. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  56. private readonly DelegationEnDataRepository _delegationEnDataRep;
  57. private readonly DelegationVisaRepository _delegationVisaRep;
  58. private readonly VisaPriceRepository _visaPriceRep;
  59. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  60. private readonly HotelPriceRepository _hotelPriceRep;
  61. private readonly CustomersRepository _customersRep;
  62. private readonly MessageRepository _message;
  63. private readonly SqlSugarClient _sqlSugar;
  64. private readonly TourClientListRepository _tourClientListRep;
  65. private readonly TeamRateRepository _teamRateRep;
  66. #region 成本相关
  67. private readonly CheckBoxsRepository _checkBoxs;
  68. private readonly GroupCostRepository _GroupCostRepository;
  69. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  70. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  71. #endregion
  72. private readonly SetDataRepository _setDataRep;
  73. private string url;
  74. private string path;
  75. private readonly EnterExitCostRepository _enterExitCostRep;
  76. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  77. private readonly UsersRepository _usersRep;
  78. private readonly IJuHeApiService _juHeApi;
  79. private readonly InvertedListRepository _invertedListRep;
  80. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  81. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  82. private readonly ThreeCodeRepository _threeCodeRepository;
  83. private readonly HotelInquiryRepository _hotelInquiryRep;
  84. private readonly FeeAuditRepository _feeAuditRep;
  85. private readonly VisaCommissionRepository _visaCommissionRep;
  86. public GroupsController(ILogger<GroupsController> logger, IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  87. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  88. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  89. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  90. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  91. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  92. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  93. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  94. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep, VisaCommissionRepository visaCommissionRep)
  95. {
  96. _logger = logger;
  97. _mapper = mapper;
  98. _grpScheduleRep = grpScheduleRep;
  99. _groupRepository = groupRepository;
  100. _taskAssignmentRep = taskAssignmentRep;
  101. _airTicketResRep = airTicketResRep;
  102. _sqlSugar = sqlSugar;
  103. url = AppSettingsHelper.Get("ExcelBaseUrl");
  104. path = AppSettingsHelper.Get("ExcelBasePath");
  105. if (!System.IO.Directory.Exists(path))
  106. {
  107. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  108. }
  109. _decreasePaymentsRep = decreasePaymentsRep;
  110. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  111. _delegationEnDataRep = delegationEnDataRep;
  112. _enterExitCostRep = enterExitCostRep;
  113. _delegationVisaRep = delegationVisaRep;
  114. _message = message;
  115. _visaPriceRep = visaPriceRep;
  116. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  117. _checkBoxs = checkBoxs;
  118. _GroupCostRepository = GroupCostRepository;
  119. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  120. _GroupCostParameterRepository = GroupCostParameterRepository;
  121. _hotelPriceRep = hotelPriceRep;
  122. _customersRep = customersRep;
  123. _setDataRep = setDataRep;
  124. _tourClientListRep = tourClientListRep;
  125. _teamRateRep = teamRateRep;
  126. _hubContext = hubContext;
  127. _usersRep = usersRep;
  128. _juHeApi = juHeApi;
  129. _invertedListRep = invertedListRep;
  130. _visaFeeInfoRep = visaFeeInfoRep;
  131. _ticketBlackCodeRep = ticketBlackCodeRep;
  132. _hotelInquiryRep = hotelInquiryRep;
  133. _threeCodeRepository = threeCodeRepository;
  134. _feeAuditRep = feeAuditRep;
  135. _visaCommissionRep = visaCommissionRep;
  136. }
  137. #region 流程管控
  138. /// <summary>
  139. /// 获取团组流程管控信息
  140. /// </summary>
  141. /// <param name="paras">参数Json字符串</param>
  142. /// <returns></returns>
  143. [HttpPost]
  144. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  145. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  146. {
  147. if (string.IsNullOrEmpty(_jsonDto.Paras))
  148. {
  149. return Ok(JsonView(false, "参数为空"));
  150. }
  151. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  152. if (_ScheduleDto != null)
  153. {
  154. if (_ScheduleDto.SearchType == 2)//获取列表
  155. {
  156. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  157. return Ok(JsonView(_grpScheduleViewList));
  158. }
  159. else//获取对象
  160. {
  161. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  162. if (_grpScheduleView != null)
  163. {
  164. return Ok(JsonView(_grpScheduleView));
  165. }
  166. }
  167. }
  168. else
  169. {
  170. return Ok(JsonView(false, "参数反序列化失败"));
  171. }
  172. return Ok(JsonView(false, "暂无数据!"));
  173. }
  174. /// <summary>
  175. /// 修改团组流程管控详细表数据
  176. /// </summary>
  177. /// <param name="paras"></param>
  178. /// <returns></returns>
  179. [HttpPost]
  180. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  181. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  182. {
  183. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  184. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  185. .SetColumns(it => it.Duty == _detail.Duty)
  186. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  187. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  188. .SetColumns(it => it.JobContent == _detail.JobContent)
  189. .SetColumns(it => it.Remark == _detail.Remark)
  190. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  191. .Where(s => s.Id == dto.Id)
  192. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  193. .ExecuteCommandAsync();
  194. if (result > 0)
  195. {
  196. return Ok(JsonView(true, "保存成功!"));
  197. }
  198. return Ok(JsonView(false, "保存失败!"));
  199. }
  200. /// <summary>
  201. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  202. /// </summary>
  203. /// <param name="dto"></param>
  204. /// <returns></returns>
  205. [HttpPost]
  206. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  207. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  208. {
  209. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  210. _detail.IsDel = 1;
  211. _detail.DeleteUserId = dto.Duty;
  212. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  213. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  214. .SetColumns(it => it.IsDel == _detail.IsDel)
  215. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  216. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  217. .Where(it => it.Id == dto.Id)
  218. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  219. //.WhereColumns(s => s.Id == dto.Id)
  220. .ExecuteCommandAsync();
  221. if (result > 0)
  222. {
  223. return Ok(JsonView(true, "删除成功!"));
  224. }
  225. return Ok(JsonView(false, "删除失败!"));
  226. }
  227. /// <summary>
  228. /// 增加团组流程管控详细表数据
  229. /// </summary>
  230. /// <param name="dto"></param>
  231. /// <returns></returns>
  232. [HttpPost]
  233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  234. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  235. {
  236. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  237. if (DateTime.Now < _detail.ExpectBeginDt)
  238. {
  239. _detail.StepStatus = 0;
  240. }
  241. else
  242. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  243. _detail.StepStatus = 1;
  244. }
  245. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  246. if (result > 0)
  247. {
  248. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  249. return Ok(JsonView(true, "添加成功!", _result));
  250. }
  251. return Ok(JsonView(false, "添加失败!"));
  252. }
  253. #endregion
  254. #region 团组基本信息
  255. /// <summary>
  256. /// 接团信息列表
  257. /// </summary>
  258. /// <param name="dto">团组列表请求dto</param>
  259. /// <returns></returns>
  260. [HttpPost]
  261. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  262. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  263. {
  264. var groupData = await _groupRepository.GetGroupList(dto);
  265. if (groupData.Code != 0)
  266. {
  267. return Ok(JsonView(false, groupData.Msg));
  268. }
  269. return Ok(JsonView(groupData.Data));
  270. }
  271. /// <summary>
  272. /// 分页查询团组列表
  273. /// </summary>
  274. /// <param name="dto"></param>
  275. /// <returns></returns>
  276. [HttpPost]
  277. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  278. public async Task<IActionResult> QueryGroupListOffset(QueryGroupListOffsetDto dto)
  279. {
  280. var watch = new Stopwatch();
  281. watch.Start();
  282. RefAsync<int> total = 0;
  283. var countyDatas = await _sqlSugar.Queryable<Grp_DelegationInfo>()
  284. .Where((di) => di.IsDel == 0 && !string.IsNullOrWhiteSpace(di.TeamName))
  285. .WhereIF(!string.IsNullOrEmpty(dto.Search), (di) => di.TeamName.Contains(dto.Search))
  286. .OrderBy((di) => new { id = SqlFunc.Desc(di.Id) })
  287. .Select((di) => new { id = di.Id, name = di.TeamName, di.ClientName , di.VisitPNumber , di.VisitCountry, di.VisitDays, di.VisitStartDate , di.VisitEndDate, di.TourCode })
  288. .Distinct()
  289. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  290. watch.Stop();
  291. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  292. }
  293. /// <summary>
  294. /// 接团信息列表 Page
  295. /// </summary>
  296. /// <param name="dto">团组列表请求dto</param>
  297. /// <returns></returns>
  298. [HttpPost]
  299. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  300. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  301. {
  302. #region 参数验证
  303. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  304. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  305. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  306. #region 页面操作权限验证
  307. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  308. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  309. #endregion
  310. #endregion
  311. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  312. {
  313. string sqlWhere = string.Empty;
  314. if (dto.IsSure == 0) //未完成
  315. {
  316. sqlWhere += string.Format(@" And IsSure = 0");
  317. }
  318. else if (dto.IsSure == 1) //已完成
  319. {
  320. sqlWhere += string.Format(@" And IsSure = 1");
  321. }
  322. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  323. {
  324. string tj = dto.SearchCriteria;
  325. 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}%')",
  326. tj, tj, tj, tj, tj);
  327. }
  328. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  329. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  330. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  331. JietuanOperator,IsSure,CreateTime,IsBid
  332. From (
  333. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  334. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  335. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  336. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  337. su.CnName JietuanOperator,IsSure,gdi.CreateTime,gdi.IsBid
  338. From Grp_DelegationInfo gdi
  339. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  340. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  341. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  342. Where gdi.IsDel = 0 {0}
  343. ) temp", sqlWhere);
  344. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  345. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  346. #region 处理所属部门
  347. /*
  348. * 1.sq 和 gyy 等显示 市场部
  349. * 2.王鸽和主管及张总还有管理员号统一国交部
  350. * 2-1. 4 管理员 ,21 张海麟
  351. */
  352. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  353. List<int> userIds1 = new List<int>() { 4, 21 };
  354. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  355. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  356. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  357. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  358. .ToList();
  359. foreach (var item in _DelegationList)
  360. {
  361. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  362. }
  363. #endregion
  364. var _view = new
  365. {
  366. PageFuncAuth = pageFunAuthView,
  367. Data = _DelegationList
  368. };
  369. return Ok(JsonView(true, "查询成功!", _view, total));
  370. }
  371. else
  372. {
  373. return Ok(JsonView(false, "查询失败"));
  374. }
  375. }
  376. /// <summary>
  377. /// 团组列表
  378. /// </summary>
  379. /// <returns></returns>
  380. [HttpPost]
  381. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  382. {
  383. #region 参数验证
  384. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  385. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  386. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  387. #region 页面操作权限验证
  388. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  389. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  390. #endregion
  391. #endregion
  392. if (dto.PortType != 1 && dto.PortType != 2)
  393. {
  394. return Ok(JsonView(false, "查询失败!"));
  395. }
  396. string orderbyStr = "order by gdi.CreateTime Desc";
  397. string sqlWhere = string.Empty;
  398. if (dto.IsSure == 0) //未完成
  399. {
  400. sqlWhere += string.Format(@" And IsSure = 0");
  401. }
  402. else if (dto.IsSure == 1) //已完成
  403. {
  404. sqlWhere += string.Format(@" And IsSure = 1");
  405. }
  406. //团组类型
  407. if (dto.TeamDid > 0)
  408. {
  409. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  410. }
  411. //团组名称
  412. if (!string.IsNullOrEmpty(dto.TeamName))
  413. {
  414. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  415. }
  416. //客户名称
  417. if (!string.IsNullOrEmpty(dto.ClientName))
  418. {
  419. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  420. }
  421. //客户单位
  422. if (!string.IsNullOrEmpty(dto.ClientUnit))
  423. {
  424. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  425. }
  426. //出访时间
  427. if (!string.IsNullOrEmpty(dto.visitDataTime))
  428. {
  429. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  430. orderbyStr = "order by gdi.VisitDate";
  431. }
  432. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  433. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  434. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  435. JietuanOperator,IsSure,CreateTime
  436. From (
  437. Select row_number() over({0}) as Row_Number,
  438. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  439. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  440. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  441. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  442. From Grp_DelegationInfo gdi
  443. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  444. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  445. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  446. Where gdi.IsDel = 0 {1}
  447. ) temp ", orderbyStr, sqlWhere);
  448. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  449. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  450. #region 处理所属部门
  451. /*
  452. * 1.sq 和 gyy 等显示 市场部
  453. * 2.王鸽和主管及张总还有管理员号统一国交部
  454. * 2-1. 4 管理员 ,21 张海麟
  455. */
  456. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  457. List<int> userIds1 = new List<int>() { 4, 21 };
  458. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  459. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  460. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  461. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  462. .ToList();
  463. foreach (var item in _DelegationList)
  464. {
  465. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  466. }
  467. #endregion
  468. var _view = new
  469. {
  470. PageFuncAuth = pageFunAuthView,
  471. Data = _DelegationList
  472. };
  473. return Ok(JsonView(true, "查询成功!", _view, total));
  474. }
  475. /// <summary>
  476. /// 接团信息详情
  477. /// </summary>
  478. /// <param name="dto">团组info请求dto</param>
  479. /// <returns></returns>
  480. [HttpPost]
  481. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  482. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  483. {
  484. var groupData = await _groupRepository.GetGroupInfo(dto);
  485. if (groupData.Code != 0)
  486. {
  487. return Ok(JsonView(false, groupData.Msg));
  488. }
  489. return Ok(JsonView(groupData.Data));
  490. }
  491. /// <summary>
  492. /// 接团信息 编辑添加
  493. /// 基础信息数据源
  494. /// </summary>
  495. /// <param name="dto"></param>
  496. /// <returns></returns>
  497. [HttpPost]
  498. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  499. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  500. {
  501. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  502. if (groupData.Code != 0)
  503. {
  504. return Ok(JsonView(false, groupData.Msg));
  505. }
  506. return Ok(JsonView(groupData.Data));
  507. }
  508. /// <summary>
  509. /// 接团信息 操作(增改)
  510. /// </summary>
  511. /// <param name="dto"></param>
  512. /// <returns></returns>
  513. [HttpPost]
  514. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  515. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  516. {
  517. try
  518. {
  519. var groupData = await _groupRepository.GroupOperation(dto);
  520. if (groupData.Code != 0)
  521. {
  522. return Ok(JsonView(false, groupData.Msg));
  523. }
  524. int diId = 0;
  525. //添加时 默认加入团组汇率
  526. if (dto.Status == 1) //添加
  527. {
  528. diId = groupData.Data;
  529. //添加默认币种
  530. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  531. //默认分配权限
  532. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  533. //消息提示 王鸽 主管号
  534. List<int> _managerIds = new List<int>() { 22, 32 };
  535. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  536. if (userIds.Count > 0)
  537. {
  538. userIds.Add(208);
  539. //创建团组管控
  540. GroupStepForDelegation.CreateWorkStep(diId);
  541. //发送消息
  542. string groupName = dto.TeamName;
  543. string createGroupUser = string.Empty;
  544. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  545. if (userInfo != null) createGroupUser = userInfo.CnName;
  546. string title = $"系统通知";
  547. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  548. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  549. }
  550. //默认创建倒推表
  551. await _invertedListRep._Create(dto.UserId, diId);
  552. }
  553. else if (dto.Status == 2)
  554. {
  555. diId = dto.Id;
  556. }
  557. return Ok(JsonView(true, "操作成功!", diId));
  558. }
  559. catch (Exception ex)
  560. {
  561. Logs("[response]" + JsonConvert.SerializeObject(dto));
  562. Logs(ex.Message);
  563. return Ok(JsonView(false, ex.Message));
  564. }
  565. }
  566. /// <summary>
  567. /// 接团流程操作(增改)
  568. /// 安卓端使用 建团时添加客户名单
  569. /// </summary>
  570. /// <param name="dto"></param>
  571. /// <returns></returns>
  572. [HttpPost]
  573. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  574. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  575. {
  576. try
  577. {
  578. #region 参数验证
  579. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  580. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  581. #region 页面操作权限验证
  582. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  583. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  584. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  585. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  586. #endregion
  587. #endregion
  588. _sqlSugar.BeginTran();
  589. var _dto = new GroupOperationDto();
  590. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  591. var groupData = await _groupRepository.GroupOperation(_dto);
  592. if (groupData.Code != 0)
  593. {
  594. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  595. }
  596. int diId = 0;
  597. //添加时 默认加入团组汇率
  598. if (dto.Status == 1) //添加
  599. {
  600. diId = groupData.Data;
  601. //添加默认币种
  602. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  603. //默认分配权限
  604. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  605. //消息提示 王鸽 主管号
  606. List<int> _managerIds = new List<int>() { 22, 32 };
  607. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  608. if (userIds.Count > 0)
  609. {
  610. userIds.Add(208);
  611. //创建团组管控
  612. GroupStepForDelegation.CreateWorkStep(diId);
  613. //发送消息
  614. string groupName = dto.TeamName;
  615. string createGroupUser = string.Empty;
  616. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  617. if (userInfo != null) createGroupUser = userInfo.CnName;
  618. string title = $"系统通知";
  619. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  620. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  621. }
  622. }
  623. if (dto.Status == 2)
  624. {
  625. diId = dto.Id;
  626. if (diId == 0)
  627. {
  628. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  629. }
  630. }
  631. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  632. if (viewData.Code != 0)
  633. {
  634. _sqlSugar.RollbackTran();
  635. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  636. }
  637. _sqlSugar.CommitTran();
  638. return Ok(JsonView(true, "添加成功"));
  639. }
  640. catch (Exception ex)
  641. {
  642. _sqlSugar.RollbackTran();
  643. return Ok(JsonView(false, ex.Message));
  644. }
  645. }
  646. /// <summary>
  647. /// 接团信息 操作(删除)
  648. /// </summary>
  649. /// <param name="dto"></param>
  650. /// <returns></returns>
  651. [HttpPost]
  652. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  653. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  654. {
  655. try
  656. {
  657. var groupData = await _groupRepository.GroupDel(dto);
  658. if (groupData.Code != 0)
  659. {
  660. return Ok(JsonView(false, groupData.Msg));
  661. }
  662. return Ok(JsonView(true));
  663. }
  664. catch (Exception ex)
  665. {
  666. Logs("[response]" + JsonConvert.SerializeObject(dto));
  667. Logs(ex.Message);
  668. return Ok(JsonView(false, ex.Message));
  669. }
  670. }
  671. /// <summary>
  672. /// 获取团组销售报价号
  673. /// 团组添加时 使用
  674. /// </summary>
  675. /// <returns></returns>
  676. [HttpPost]
  677. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  678. public async Task<IActionResult> GetGroupSalesQuoteNo()
  679. {
  680. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  681. if (groupData.Code != 0)
  682. {
  683. return Ok(JsonView(false, groupData.Msg));
  684. }
  685. object salesQuoteNo = new
  686. {
  687. SalesQuoteNo = groupData.Data
  688. };
  689. return Ok(JsonView(salesQuoteNo));
  690. }
  691. /// <summary>
  692. /// 设置确认出团
  693. /// </summary>
  694. /// <param name="dto"></param>
  695. /// <returns></returns>
  696. [HttpPost]
  697. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  698. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  699. {
  700. var groupData = await _groupRepository.ConfirmationGroup(dto);
  701. if (groupData.Code != 0)
  702. {
  703. return Ok(JsonView(false, groupData.Msg));
  704. }
  705. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  706. #region OA消息推送
  707. try
  708. {
  709. string groupName = groupInfo.TeamName;
  710. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  711. List<int> userIds = new List<int>();
  712. listUser.ForEach(s => userIds.Add(s.Id));
  713. string title = $"系统通知";
  714. string content = $"团组[{groupName}]已确认出团!";
  715. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  716. }
  717. catch (Exception ex)
  718. {
  719. }
  720. #endregion
  721. #region 应用推送
  722. try
  723. {
  724. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  725. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  726. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  727. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  728. {
  729. List<string> userList = new List<string>() { users.QiyeChatUserId };
  730. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  731. }
  732. }
  733. catch (Exception ex)
  734. {
  735. }
  736. #endregion
  737. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  738. return Ok(JsonView(true, "操作成功!", groupData.Data));
  739. }
  740. /// <summary>
  741. /// 获取团组名称data And 签证国别Data
  742. /// </summary>
  743. /// <param name="dto"></param>
  744. /// <returns></returns>
  745. [HttpPost]
  746. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  747. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  748. {
  749. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  750. if (groupData.Code != 0)
  751. {
  752. return Ok(JsonView(false, groupData.Msg));
  753. }
  754. return Ok(JsonView(groupData.Data));
  755. }
  756. /// <summary>
  757. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  758. /// </summary>
  759. /// <returns></returns>
  760. [HttpPost]
  761. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  762. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  763. {
  764. try
  765. {
  766. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  767. if (groupData.Code != 0)
  768. {
  769. return Ok(JsonView(false, groupData.Msg));
  770. }
  771. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  772. }
  773. catch (Exception ex)
  774. {
  775. return Ok(JsonView(false, "程序错误!"));
  776. throw;
  777. }
  778. }
  779. #endregion
  780. #region 团组&签证
  781. /// <summary>
  782. /// 根据团组Id获取签证客户信息List
  783. /// </summary>
  784. /// <param name="dto">请求dto</param>
  785. /// <returns></returns>
  786. [HttpPost]
  787. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  788. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  789. {
  790. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  791. if (groupData.Code != 0)
  792. {
  793. return Ok(JsonView(false, groupData.Msg));
  794. }
  795. return Ok(JsonView(groupData.Data));
  796. }
  797. /// <summary>
  798. /// IOS获取团组签证拍照上传进度01(团组列表)
  799. /// </summary>
  800. /// <param name="dto">请求dto</param>
  801. /// <returns></returns>
  802. [HttpPost]
  803. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  804. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  805. {
  806. if (dto == null)
  807. {
  808. return Ok(JsonView(false, "参数为空"));
  809. }
  810. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  811. return Ok(JsonView(visaList));
  812. }
  813. /// <summary>
  814. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  815. /// </summary>
  816. /// <returns></returns>
  817. [HttpPost]
  818. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  819. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  820. {
  821. if (dto == null)
  822. {
  823. return Ok(JsonView(false, "请求错误:"));
  824. }
  825. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  826. return Ok(JsonView(list));
  827. }
  828. /// <summary>
  829. /// IOS获取团组签证拍照上传进度03(相册)
  830. /// </summary>
  831. /// <returns></returns>
  832. [HttpPost]
  833. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  834. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  835. {
  836. if (dto == null)
  837. {
  838. return Ok(JsonView(false, "请求错误:"));
  839. }
  840. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  841. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  842. list.ForEach(s => s.url = url);
  843. return Ok(JsonView(list));
  844. }
  845. /// <summary>
  846. /// IOS获取团组签证拍照上传进度04(图片上传)
  847. /// </summary>
  848. /// <param name="dto"></param>
  849. /// <returns></returns>
  850. [HttpPost]
  851. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  852. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  853. {
  854. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  855. //if (!string.IsNullOrEmpty(result))
  856. //{
  857. //}
  858. //else {
  859. // return Ok(JsonView(false, "上传失败"));
  860. //}
  861. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  862. int sucNum = 0;
  863. try
  864. {
  865. foreach (var item in dto.base64DataList)
  866. {
  867. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  868. string result = decodeBase64ToImage(item, imageName);
  869. if (!string.IsNullOrEmpty(result))
  870. {
  871. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  872. pic.CreateUserId = dto.CreateUserId;
  873. pic.PicName = imageName;
  874. pic.PicPath = result;
  875. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  876. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  877. if (insertResult > 0)
  878. {
  879. sucNum++;
  880. }
  881. }
  882. }
  883. }
  884. catch (Exception ex)
  885. {
  886. return Ok(JsonView(false, ex.Message));
  887. }
  888. string msg = string.Format(@"成功上传{0}张", sucNum);
  889. return Ok(JsonView(true, msg));
  890. }
  891. private string decodeBase64ToImage(string base64DataURL, string imgName)
  892. {
  893. string filename = "";//声明一个string类型的相对路径
  894. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  895. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  896. try//会有异常抛出,try,catch一下
  897. {
  898. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  899. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  900. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  901. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  902. //文件名称
  903. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  904. //上传的文件的路径
  905. string filePath = "";
  906. if (!Directory.Exists(fileDir))
  907. {
  908. Directory.CreateDirectory(fileDir);
  909. }
  910. //上传的文件的路径
  911. filePath = fileDir + filename;
  912. //string url = HttpRuntime.AppDomainAppPath.ToString();
  913. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  914. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  915. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  916. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  917. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  918. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  919. ms.Close();//关闭当前流,并释放所有与之关联的资源
  920. bitmap.Dispose();
  921. }
  922. catch (Exception e)
  923. {
  924. string massage = e.Message;
  925. Logs("IOS图片上传Error:" + massage);
  926. //filename = e.Message;
  927. }
  928. return filename;//返回相对路径
  929. }
  930. /// <summary>
  931. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  932. /// </summary>
  933. /// <param name="dto"></param>
  934. /// <returns></returns>
  935. [HttpPost]
  936. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  937. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  938. {
  939. if (dto == null)
  940. {
  941. return Ok(JsonView(false, "请求错误:"));
  942. }
  943. string msg = "参数错误";
  944. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  945. {
  946. try
  947. {
  948. //_delegationVisaRep.BeginTran();
  949. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  950. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  951. .Where(s => s.Id == dto.visaProgressCustomerId)
  952. .ExecuteCommandAsync();
  953. if (updCount > 0 && dto.publishCode == 1)
  954. {
  955. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  956. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  957. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  958. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  959. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  960. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  961. if (groupData == null)
  962. {
  963. _delegationVisaRep.RollbackTran();
  964. }
  965. string title = string.Format(@"[签证进度更新]");
  966. string content = string.Format(@"测试文本");
  967. bool rst = await _message.AddMsg(new MessageDto()
  968. {
  969. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  970. IssuerId = dto.publisher,
  971. Title = title,
  972. Content = content,
  973. ReleaseTime = DateTime.Now,
  974. UIdList = new List<int> {
  975. 234
  976. }
  977. });
  978. if (rst)
  979. {
  980. return Ok(JsonView(true, "发送通知成功"));
  981. }
  982. }
  983. //_delegationVisaRep.CommitTran();
  984. }
  985. catch (Exception)
  986. {
  987. //_delegationVisaRep.RollbackTran();
  988. }
  989. }
  990. return Ok(JsonView(true, msg));
  991. }
  992. #endregion
  993. #region 团组任务分配
  994. /// <summary>
  995. /// 团组任务分配初始化
  996. /// </summary>
  997. /// <param name="dto"></param>
  998. /// <returns></returns>
  999. [HttpPost]
  1000. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1001. public async Task<IActionResult> GetTaskAssignmen()
  1002. {
  1003. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1004. if (groupData.Code != 0)
  1005. {
  1006. return Ok(JsonView(false, groupData.Msg));
  1007. }
  1008. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1009. }
  1010. /// <summary>
  1011. /// 团组任务分配查询
  1012. /// </summary>
  1013. /// <param name="dto"></param>
  1014. /// <returns></returns>
  1015. [HttpPost]
  1016. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1017. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1018. {
  1019. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1020. if (groupData.Code != 0)
  1021. {
  1022. return Ok(JsonView(false, groupData.Msg));
  1023. }
  1024. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1025. }
  1026. /// <summary>
  1027. /// 团组任务分配操作
  1028. /// </summary>
  1029. /// <param name="dto"></param>
  1030. /// <returns></returns>
  1031. [HttpPost]
  1032. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1033. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1034. {
  1035. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1036. if (groupData.Code != 0)
  1037. {
  1038. return Ok(JsonView(false, groupData.Msg));
  1039. }
  1040. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1041. }
  1042. /// <summary>
  1043. /// 团组任务分配
  1044. /// 批量分配
  1045. /// 查询团组
  1046. /// </summary>
  1047. /// <param name="dto"></param>
  1048. /// <returns></returns>
  1049. [HttpPost]
  1050. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1051. public async Task<IActionResult> TaskAllocationGroupSelect(TaskAllocationGroupSelectDto dto)
  1052. {
  1053. //参数验证
  1054. if (dto.PortType < 1 || dto.PortType > 3) return Ok(JsonView(false, MsgTips.Port));
  1055. if (!DateTime.TryParse(dto.VisitBeginDt,out _) || !DateTime.TryParse(dto.VisitEndDt,out _))
  1056. return Ok(JsonView(false, "团组出访开始/结束日期格式不正确!"));
  1057. return Ok(await _taskAssignmentRep.TaskAllocationGroupSelect(dto));
  1058. }
  1059. /// <summary>
  1060. /// 团组任务分配
  1061. /// 批量分配
  1062. /// </summary>
  1063. /// <param name="dto"></param>
  1064. /// <returns></returns>
  1065. [HttpPost]
  1066. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1067. public async Task<IActionResult> TaskAllocationBulkAdd(TaskAllocationBulkAddDto dto)
  1068. {
  1069. //参数验证
  1070. if (dto.UserIds.Length < 1 ) return Ok(JsonView(false, $"请选择分配人员!"));
  1071. if (dto.PermissionTypeIds.Length < 1) return Ok(JsonView(false, $"请选择分配类型!"));
  1072. if (dto.GroupIds.Length < 1) return Ok(JsonView(false, "请选择分配团组Id"));
  1073. if (dto.CurrUserId < 1) return Ok(JsonView(false, "请传入有效的CurrUserId数组参数"));
  1074. return Ok(await _taskAssignmentRep.TaskAllocationBulkAdd(dto));
  1075. }
  1076. #endregion
  1077. #region 团组费用审核
  1078. /// <summary>
  1079. /// 费用审核
  1080. /// 团组列表 Page
  1081. /// </summary>
  1082. /// <param name="_dto">团组列表请求dto</param>
  1083. /// <returns></returns>
  1084. [HttpPost]
  1085. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1086. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1087. {
  1088. #region 参数验证
  1089. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1090. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1091. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1092. #region 页面操作权限验证
  1093. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1094. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1095. #endregion
  1096. #endregion
  1097. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1098. {
  1099. string sqlWhere = string.Empty;
  1100. if (_dto.IsSure == 0) //未完成
  1101. {
  1102. sqlWhere += string.Format(@" And IsSure = 0");
  1103. }
  1104. else if (_dto.IsSure == 1) //已完成
  1105. {
  1106. sqlWhere += string.Format(@" And IsSure = 1");
  1107. }
  1108. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1109. {
  1110. string tj = _dto.SearchCriteria;
  1111. 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}%')",
  1112. tj, tj, tj, tj, tj);
  1113. }
  1114. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1115. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1116. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1117. From (
  1118. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1119. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1120. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1121. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1122. From Grp_DelegationInfo gdi
  1123. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1124. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1125. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1126. Where gdi.IsDel = 0 {0}
  1127. ) temp ", sqlWhere);
  1128. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1129. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1130. var _view = new
  1131. {
  1132. PageFuncAuth = pageFunAuthView,
  1133. Data = _DelegationList
  1134. };
  1135. return Ok(JsonView(true, "查询成功!", _view, total));
  1136. }
  1137. else
  1138. {
  1139. return Ok(JsonView(false, "查询失败"));
  1140. }
  1141. }
  1142. /// <summary>
  1143. /// 获取团组费用审核
  1144. /// </summary>
  1145. /// <param name="paras">参数Json字符串</param>
  1146. /// <returns></returns>
  1147. [HttpPost]
  1148. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1149. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1150. {
  1151. try
  1152. {
  1153. #region 参数验证
  1154. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1155. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1156. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1157. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1158. #region 页面操作权限验证
  1159. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1160. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1161. #endregion
  1162. #endregion
  1163. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1164. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1165. #region 费用清单
  1166. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1167. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1168. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1169. List<Grp_CreditCardPayment> entityList = _groupRepository
  1170. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1171. .Where(exp.ToExpression())
  1172. .ToList();
  1173. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1174. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1175. /*
  1176. * 76://酒店预订
  1177. */
  1178. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1179. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1180. .ToListAsync();
  1181. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1182. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1183. .ToListAsync();
  1184. /*
  1185. * 79://车/导游地接
  1186. */
  1187. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1188. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1189. .ToListAsync();
  1190. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1191. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1192. .ToListAsync();
  1193. /*
  1194. * 80: //签证
  1195. */
  1196. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1197. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1198. .ToListAsync();
  1199. /*
  1200. *81: //邀请/公务活动
  1201. */
  1202. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1203. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1204. .ToListAsync();
  1205. /*
  1206. * 82: //团组客户保险
  1207. */
  1208. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1209. /*
  1210. * Lable = 85 机票预订
  1211. */
  1212. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1213. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1214. .ToListAsync();
  1215. /*
  1216. * 85 机票预定
  1217. */
  1218. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1219. /*
  1220. * 98 其他款项
  1221. */
  1222. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1223. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1224. .ToListAsync();
  1225. /*
  1226. * 285:收款退还
  1227. */
  1228. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1229. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1230. .ToListAsync();
  1231. /*
  1232. * 1015: //超支费用
  1233. */
  1234. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1235. /*
  1236. * 币种信息
  1237. */
  1238. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1239. /*
  1240. * 车/导游地接 费用类型
  1241. */
  1242. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1243. /*
  1244. * 车/导游地接 费用类型
  1245. */
  1246. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1247. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1248. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1249. /*
  1250. * 用户信息
  1251. */
  1252. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1253. /*
  1254. * 费用模块
  1255. */
  1256. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1257. string priceModule = string.Empty;
  1258. if (sdPriceName != null)
  1259. {
  1260. priceModule = sdPriceName.Name;
  1261. }
  1262. /*
  1263. * 成本信息
  1264. */
  1265. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1266. decimal _groupRate = 0.0000M;
  1267. string _groupCurrencyCode = "-";
  1268. if (groupCost != null)
  1269. {
  1270. _groupRate = groupCost.Rate;
  1271. if (int.TryParse(groupCost.Currency, out int _currency))
  1272. {
  1273. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1274. }
  1275. else _groupCurrencyCode = groupCost.Currency;
  1276. }
  1277. string costContentSql = $"Select * From Grp_GroupCost";
  1278. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1279. //处理日期为空的天数
  1280. for (int i = 0; i < groupCostDetails.Count; i++)
  1281. if (i != 0)
  1282. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1283. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1284. /*
  1285. * 处理详情数据
  1286. */
  1287. foreach (var entity in entityList)
  1288. {
  1289. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1290. _detail.Id = entity.Id;
  1291. _detail.PriceName = priceModule;
  1292. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1293. if (_detail.PayType.Equals("现金")) _detail.CardType = "-";
  1294. else _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1295. /*
  1296. * 应付款金额
  1297. */
  1298. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1299. string PaymentCurrency_WaitPay = "Unknown";
  1300. string hotelCurrncyCode = "Unknown";
  1301. string hotelCurrncyName = "Unknown";
  1302. if (sdPaymentCurrency_WaitPay != null)
  1303. {
  1304. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1305. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1306. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1307. if (hotelCurrncyCode.Equals("CNY"))
  1308. {
  1309. entity.DayRate = 1.0000M;
  1310. }
  1311. }
  1312. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1313. /*
  1314. * 此次付款金额
  1315. */
  1316. decimal CurrPayStr = 0.00M,
  1317. OriginalCurrPay = 0.00M;
  1318. if (entity.PayPercentage == 0)
  1319. {
  1320. if (entity.PayThenMoney != 0)
  1321. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1322. }
  1323. else
  1324. {
  1325. if (entity.PayMoney != 0)
  1326. {
  1327. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1328. }
  1329. }
  1330. if (_dto.Label == 79)
  1331. {
  1332. string original = string.Empty;
  1333. if (hotelCurrncyCode.Equals("CNY"))
  1334. {
  1335. OriginalCurrPay = CurrPayStr;
  1336. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1337. }
  1338. else
  1339. {
  1340. OriginalCurrPay = ((entity.PayMoney / 100) * entity.PayPercentage).ConvertToDecimal1();
  1341. //760 EUR(7600.00 CNY)
  1342. _detail.CurrPay = $"{OriginalCurrPay.ToString("#0.00")} {hotelCurrncyCode}({CurrPayStr.ToString("#0.00")} CNY)";
  1343. }
  1344. }
  1345. else
  1346. {
  1347. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1348. }
  1349. /*
  1350. * 剩余尾款
  1351. */
  1352. decimal BalanceStr = 0;
  1353. if (CurrPayStr != 0)
  1354. {
  1355. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1356. BalanceStr = 0;
  1357. else
  1358. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1359. }
  1360. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1361. /*
  1362. * Bus名称
  1363. */
  1364. _detail.BusName = "待增加";
  1365. /*
  1366. *费用所属
  1367. */
  1368. switch (entity.CTable)
  1369. {
  1370. case 76://酒店预订
  1371. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1372. if (hotelReservations != null)
  1373. {
  1374. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1375. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1376. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1377. string roomFeeStr = "", roomFeestr1 = "";
  1378. //是否比较房型价格
  1379. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1380. //roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1381. roomFeeStr += $"<br/>";
  1382. if (hotelReservations.SingleRoomPrice > 0)
  1383. {
  1384. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}<br/>";
  1385. __isSingle = true;
  1386. }
  1387. if (hotelReservations.DoubleRoomPrice > 0)
  1388. {
  1389. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}<br/>";
  1390. __isDouble = true;
  1391. }
  1392. if (hotelReservations.SuiteRoomPrice > 0)
  1393. {
  1394. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}<br/>";
  1395. __isSuite = true;
  1396. }
  1397. if (hotelReservations.OtherRoomPrice > 0)
  1398. {
  1399. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}";
  1400. __isOther = true;
  1401. }
  1402. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1403. else roomFeeStr += " 0.00 * 0";
  1404. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1405. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1406. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1407. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1408. /*
  1409. * 费用类型
  1410. * 1:房费
  1411. * 2:早餐
  1412. * 3:地税
  1413. * 4:城市税
  1414. * </summary>
  1415. */
  1416. //地税
  1417. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1418. if (governmentRentData != null)
  1419. {
  1420. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1421. governmentRentFee = governmentRentData.Price;
  1422. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1423. if (governmentRentCurrData != null)
  1424. {
  1425. governmentRentCode = governmentRentCurrData.Name;
  1426. governmentRentName = $"({governmentRentCurrData.Remark})";
  1427. }
  1428. }
  1429. //城市税
  1430. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1431. if (cityTaxData != null)
  1432. {
  1433. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1434. cityTaxFee = cityTaxData.Price;
  1435. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1436. if (cityTaxCurrData != null)
  1437. {
  1438. cityTaxCode = cityTaxCurrData.Name;
  1439. cityTaxName = $"({cityTaxCurrData.Remark})";
  1440. }
  1441. }
  1442. //酒店早餐
  1443. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1444. if (breakfastData != null)
  1445. {
  1446. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1447. breakfastFee = breakfastData.Price;
  1448. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1449. if (breakfastCurrData != null)
  1450. {
  1451. breakfastCode = breakfastCurrData.Name;
  1452. breakfastName = $"({breakfastCurrData.Remark})";
  1453. }
  1454. }
  1455. //房间费用
  1456. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1457. if (roomData != null)
  1458. {
  1459. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1460. if (_detail.PayType.Equals("现金")) _detail.CardType = "-";
  1461. else _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1462. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1463. roomFee = roomData.Price;
  1464. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1465. if (roomCurrData != null)
  1466. {
  1467. roomCode = roomCurrData.Name;
  1468. roomName = $"({roomCurrData.Remark})";
  1469. }
  1470. }
  1471. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1472. string hotelCostStr = "";
  1473. decimal hotelCsotTotal = 0.00M;
  1474. if (groupCost != null)
  1475. {
  1476. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1477. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1478. }
  1479. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1480. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1481. string hotelCost_day = "";
  1482. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1483. foreach (var item in hotelCostDetails1)
  1484. {
  1485. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1486. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1487. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1488. //else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1489. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1490. //else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1491. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1492. //else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1493. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1494. //else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1495. hotelCost_day += @$"</br>";
  1496. }
  1497. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1498. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1499. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1500. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1501. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1502. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1503. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1504. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1505. $"房间说明: {hotelReservations.Remark} <br/>" +
  1506. $"房间费用: {roomCode} {roomName} 当时汇率:{roomData?.Rate.ToString("#0.0000")}{roomFeeStr} 是否由地接代付:{roomBool}<br/><br/>" +
  1507. $"{hotelBreakfastStr}" +
  1508. $"{hotelGovernmentRentStr}" +
  1509. $"{hotelCityTaxStr}";
  1510. _detail.PriceNameContent = hotelReservations.HotelName;
  1511. }
  1512. break;
  1513. case 79://车/导游地接
  1514. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1515. if (touristGuideGroundReservations != null)
  1516. {
  1517. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1518. {
  1519. _detail.BusName = touristGuideGroundReservations.BusName;
  1520. }
  1521. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1522. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1523. //if (isInt)
  1524. //{
  1525. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1526. // if (cityInfo != null)
  1527. // {
  1528. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1529. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1530. // if (carFeeItem != null)
  1531. // {
  1532. // nameContent += $@"({carFeeItem.Name})";
  1533. // }
  1534. // _detail.PriceNameContent = nameContent;
  1535. // }
  1536. //}
  1537. //else
  1538. //{
  1539. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1540. //}
  1541. var touristGuideGroundReservationsContents =
  1542. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1543. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1544. foreach (var item in touristGuideGroundReservationsContents)
  1545. {
  1546. string typeName = "Unknown";
  1547. string carCurrencyCode = "Unknown";
  1548. string carCurrencyName = "Unknown";
  1549. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1550. if (carTypeData != null) typeName = carTypeData.Name;
  1551. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1552. if (currencyData != null)
  1553. {
  1554. carCurrencyCode = currencyData.Name;
  1555. carCurrencyName = currencyData.Remark;
  1556. }
  1557. //op、成本 币种是否一致
  1558. bool IsCurrencyAgreement = false;
  1559. if (carCurrencyCode.Equals(_groupCurrencyCode)) IsCurrencyAgreement = true;
  1560. string opCostStr = string.Empty;
  1561. decimal opCostTypePrice = 0.00M;
  1562. #region 处理成本各项费用
  1563. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1564. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1565. if (opCost.Count > 0)
  1566. {
  1567. switch (item.SId)
  1568. {
  1569. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1570. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1571. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1572. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1573. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1574. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1575. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1576. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1577. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1578. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1579. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1580. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1581. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1582. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1583. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1584. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1585. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1586. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1587. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1588. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1589. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1590. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1591. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1592. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1593. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1594. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1595. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1596. }
  1597. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1598. if (!IsCurrencyAgreement) opCostStr += $" ≈ {(opCostTypePrice * _groupRate).ToString("#0.00")} CNY";
  1599. }
  1600. #endregion
  1601. string opTypeStr = $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")})" ;
  1602. if (!IsCurrencyAgreement) opTypeStr += $" ≈ {(item.Price * entity.DayRate).ToString("#0.00")} CNY";
  1603. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1604. $"{opTypeStr} {opCostStr}<br/>" +
  1605. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1606. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1607. }
  1608. _detail.PriceMsgContent = priceMsg;
  1609. }
  1610. break;
  1611. case 80: //签证
  1612. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1613. if (visaInfo != null)
  1614. {
  1615. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1616. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1617. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1618. }
  1619. break;
  1620. case 81: //邀请/公务活动
  1621. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1622. if (_ioa != null)
  1623. {
  1624. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1625. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1626. sendCurrName = "Unknown", //快递费用币种 Name
  1627. sendCurrCode = "Unknown", //快递费用币种 Code
  1628. eventsCurrName = "Unknown", //公务活动费币种 Name
  1629. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1630. translateCurrName = "Unknown", //公务翻译费 Name
  1631. translateCurrCode = "Unknown"; //公务翻译费 Code
  1632. #region 处理费用币种
  1633. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1634. if (inviteCurrData != null)
  1635. {
  1636. inviteCurrName = inviteCurrData.Remark;
  1637. inviteCurrCode = inviteCurrData.Name;
  1638. }
  1639. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1640. if (sendCurrData != null)
  1641. {
  1642. sendCurrName = sendCurrData.Remark;
  1643. sendCurrCode = sendCurrData.Name;
  1644. }
  1645. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1646. if (eventsCurrData != null)
  1647. {
  1648. eventsCurrName = eventsCurrData.Remark;
  1649. eventsCurrCode = eventsCurrData.Name;
  1650. }
  1651. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1652. if (translateCurrData != null)
  1653. {
  1654. translateCurrName = translateCurrData.Remark;
  1655. translateCurrCode = translateCurrData.Name;
  1656. }
  1657. #endregion
  1658. _detail.PriceNameContent = _ioa.InviterArea;
  1659. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1660. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1661. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1662. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1663. $@"备注:" + _ioa.Remark + "<br/>";
  1664. }
  1665. break;
  1666. case 82: //团组客户保险
  1667. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1668. if (customers != null)
  1669. {
  1670. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1671. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1672. }
  1673. break;
  1674. case 85: //机票预订
  1675. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1676. if (jpRes != null)
  1677. {
  1678. string FlightsDescription = jpRes.FlightsDescription;
  1679. string PriceDescription = jpRes.PriceDescription;
  1680. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1681. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1682. }
  1683. break;
  1684. case 98://其他款项
  1685. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1686. if (gdpRes != null)
  1687. {
  1688. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1689. _detail.PriceNameContent = gdpRes.PriceName;
  1690. }
  1691. break;
  1692. case 285://收款退还
  1693. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1694. if (refundAndOtherMoney != null)
  1695. {
  1696. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1697. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1698. }
  1699. break;
  1700. case 751://酒店早餐
  1701. break;
  1702. case 1015://超支费用
  1703. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1704. if (groupExtraCost != null)
  1705. {
  1706. _detail.PriceNameContent = groupExtraCost.PriceName;
  1707. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1708. }
  1709. break;
  1710. default:
  1711. break;
  1712. }
  1713. /*
  1714. * 申请人
  1715. */
  1716. string operatorName = " - ";
  1717. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1718. if (_opUser != null)
  1719. {
  1720. operatorName = _opUser.CnName;
  1721. }
  1722. _detail.OperatorName = operatorName;
  1723. /*
  1724. * 审核人
  1725. */
  1726. string auditOperatorName = "Unknown";
  1727. if (entity.AuditGMOperate == 0)
  1728. auditOperatorName = " - ";
  1729. else if (entity.AuditGMOperate == 4)
  1730. auditOperatorName = "自动审核";
  1731. else
  1732. {
  1733. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1734. if (_adUser != null)
  1735. {
  1736. auditOperatorName = _adUser.CnName;
  1737. }
  1738. }
  1739. _detail.AuditOperatorName = auditOperatorName;
  1740. /*
  1741. * 超预算比例
  1742. */
  1743. string overBudgetStr = "";
  1744. if (entity.ExceedBudget == -1)
  1745. overBudgetStr = sdPriceName.Name + "尚无预算";
  1746. else if (entity.ExceedBudget == 0)
  1747. {
  1748. if (entity.CTable == 76 || entity.CTable == 79)
  1749. {
  1750. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1751. else overBudgetStr = _feeAuditRep.IsOverBudget(entity.CTable, entity.DIId, entity.CId);
  1752. }
  1753. else
  1754. {
  1755. overBudgetStr = "未超预算";
  1756. }
  1757. }
  1758. else
  1759. overBudgetStr = entity.ExceedBudget.ToString("P");
  1760. _detail.OverBudget = overBudgetStr;
  1761. /*
  1762. * 已审核金额
  1763. */
  1764. decimal auditFee = 0.00M;
  1765. if (entity.IsAuditGM == 1 || entity.IsAuditGM == 3) auditFee = CurrPayStr;
  1766. /*
  1767. * 费用总计
  1768. */
  1769. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1770. {
  1771. CurrencyId = entity.PaymentCurrency,
  1772. CurrencyName = PaymentCurrency_WaitPay,
  1773. AmountPayable = entity.PayMoney,
  1774. ThisPayment = OriginalCurrPay,
  1775. BalancePayment = BalanceStr,
  1776. AuditedFunds = auditFee
  1777. });
  1778. _detail.IsAuditGM = entity.IsAuditGM;
  1779. detailList.Add(_detail);
  1780. }
  1781. #endregion
  1782. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1783. /*
  1784. * 下方描述处理
  1785. */
  1786. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1787. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1788. if (ccpCurrencyPrice != null)
  1789. {
  1790. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1791. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1792. }
  1793. else
  1794. {
  1795. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1796. }
  1797. string amountPayableStr = string.Format(@"应付款总金额: ");
  1798. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1799. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1800. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1801. foreach (var item in nonDuplicat)
  1802. {
  1803. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1804. if (strs.Count > 0)
  1805. {
  1806. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1807. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1808. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1809. amountPayableStr += string.Format(@"{0}{1}&nbsp;|&nbsp;", amountPayable.ToString("#0.00"), item.CurrencyName);
  1810. //单独处理此次付款金额
  1811. if (item.CurrencyId == 836) //人民币
  1812. {
  1813. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|&nbsp;", thisPayment.ToString("#0.00"), item.CurrencyName);
  1814. }
  1815. else
  1816. {
  1817. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|&nbsp;", thisPayment.ToString("#0.00"), item.CurrencyName);
  1818. }
  1819. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|&nbsp;", balancePayment.ToString("#0.00"), item.CurrencyName);
  1820. //单独处理已审核费用
  1821. if (item.CurrencyId == 836) //人民币
  1822. {
  1823. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1824. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1825. }
  1826. else
  1827. {
  1828. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1829. }
  1830. }
  1831. }
  1832. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1833. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1834. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1835. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1836. var _view1 = new
  1837. {
  1838. PageFuncAuth = pageFunAuthView,
  1839. Data = _view
  1840. };
  1841. return Ok(JsonView(_view1));
  1842. }
  1843. catch (Exception ex)
  1844. {
  1845. return Ok(JsonView(false, ex.Message));
  1846. }
  1847. }
  1848. /// <summary>
  1849. /// 费用审核
  1850. /// 修改团组费用审核状态
  1851. /// </summary>
  1852. /// <param name="_dto">参数Json字符串</param>
  1853. /// <returns></returns>
  1854. [HttpPost]
  1855. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1856. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1857. {
  1858. #region 参数验证
  1859. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1860. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1861. #endregion
  1862. #region 页面操作权限验证
  1863. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1864. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1865. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1866. #endregion
  1867. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1868. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1869. DateTime dtNow = DateTime.Now;
  1870. _groupRepository.BeginTran();
  1871. int rst = 0;
  1872. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1873. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1874. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1875. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1876. List<dynamic> msgDatas = new List<dynamic>();
  1877. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1878. foreach (var item in idList)
  1879. {
  1880. int CreditId = int.Parse(item);
  1881. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1882. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1883. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1884. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1885. .Where(s => s.Id == CreditId)
  1886. .ExecuteCommandAsync();
  1887. if (result < 1)
  1888. {
  1889. rst = -1;
  1890. _groupRepository.RollbackTran();
  1891. return Ok(JsonView(false, "操作失败并回滚!"));
  1892. }
  1893. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1894. if (creditData != null)
  1895. {
  1896. #region 应用通知配置
  1897. try
  1898. {
  1899. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1900. }
  1901. catch (Exception ex)
  1902. {
  1903. }
  1904. #endregion
  1905. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1906. string groupNameStr = string.Empty;
  1907. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1908. if (groupData != null) groupNameStr = groupData.TeamName;
  1909. string creditTypeStr = string.Empty;
  1910. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1911. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1912. string creditCurrency = string.Empty;
  1913. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1914. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1915. if (creditCurrency.Equals("CNY"))
  1916. {
  1917. creditData.DayRate = 1.0000M;
  1918. }
  1919. if (creditData.PayPercentage == 0.00M)
  1920. {
  1921. creditData.PayPercentage = 100M;
  1922. }
  1923. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1924. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1925. string msgContent = "";
  1926. if (creditCurrency.Equals("CNY"))
  1927. {
  1928. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1929. }
  1930. else
  1931. {
  1932. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1933. }
  1934. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1935. }
  1936. }
  1937. if (rst == 0)
  1938. {
  1939. _groupRepository.CommitTran();
  1940. foreach (var item in msgDatas)
  1941. {
  1942. //发送消息
  1943. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1944. }
  1945. #region 应用推送
  1946. try
  1947. {
  1948. foreach (var ccpId in dic_ccp_user.Keys)
  1949. {
  1950. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1951. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1952. }
  1953. }
  1954. catch (Exception)
  1955. {
  1956. }
  1957. #endregion
  1958. return Ok(JsonView(true, "操作成功!"));
  1959. }
  1960. return Ok(JsonView(false, "操作失败!"));
  1961. }
  1962. #endregion
  1963. #region 机票费用录入
  1964. /// <summary>
  1965. /// 机票录入当前登录人可操作团组
  1966. /// </summary>
  1967. /// <param name="dto"></param>
  1968. /// <returns></returns>
  1969. [HttpPost]
  1970. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1971. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1972. {
  1973. try
  1974. {
  1975. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1976. if (groupData.Code != 0)
  1977. {
  1978. return Ok(JsonView(false, groupData.Msg));
  1979. }
  1980. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1981. }
  1982. catch (Exception ex)
  1983. {
  1984. return Ok(JsonView(false, "程序错误!"));
  1985. throw;
  1986. }
  1987. }
  1988. /// <summary>
  1989. /// 机票费用录入列表
  1990. /// </summary>
  1991. /// <param name="dto"></param>
  1992. /// <returns></returns>
  1993. [HttpPost]
  1994. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1995. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1996. {
  1997. try
  1998. {
  1999. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  2000. if (groupData.Code != 0)
  2001. {
  2002. return Ok(JsonView(false, groupData.Msg));
  2003. }
  2004. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2005. }
  2006. catch (Exception ex)
  2007. {
  2008. return Ok(JsonView(false, ex.Message));
  2009. throw;
  2010. }
  2011. }
  2012. /// <summary>
  2013. /// 根据id查询费用录入信息
  2014. /// </summary>
  2015. /// <param name="dto"></param>
  2016. /// <returns></returns>
  2017. [HttpPost]
  2018. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2019. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  2020. {
  2021. try
  2022. {
  2023. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  2024. if (groupData.Code != 0)
  2025. {
  2026. return Ok(JsonView(false, groupData.Msg));
  2027. }
  2028. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2029. }
  2030. catch (Exception ex)
  2031. {
  2032. return Ok(JsonView(false, "程序错误!"));
  2033. throw;
  2034. }
  2035. }
  2036. /// <summary>
  2037. /// 机票费用录入操作(Status:1.新增,2.修改)
  2038. /// </summary>
  2039. /// <param name="dto"></param>
  2040. /// <returns></returns>
  2041. [HttpPost]
  2042. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2043. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  2044. {
  2045. try
  2046. {
  2047. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  2048. if (groupData.Code != 0)
  2049. {
  2050. return Ok(JsonView(false, groupData.Msg));
  2051. }
  2052. #region 应用推送
  2053. try
  2054. {
  2055. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2056. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2057. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2058. }
  2059. catch (Exception ex)
  2060. {
  2061. }
  2062. #endregion
  2063. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2064. }
  2065. catch (Exception ex)
  2066. {
  2067. return Ok(JsonView(false, "程序错误!"));
  2068. throw;
  2069. }
  2070. }
  2071. /// <summary>
  2072. /// 根据舱位类型查询接团客户名单信息
  2073. /// </summary>
  2074. /// <param name="dto"></param>
  2075. /// <returns></returns>
  2076. [HttpPost]
  2077. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2078. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2079. {
  2080. try
  2081. {
  2082. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2083. if (crm_Groups.Count != 0)
  2084. {
  2085. List<dynamic> Customer = new List<dynamic>();
  2086. foreach (var item in crm_Groups)
  2087. {
  2088. var data = new
  2089. {
  2090. Id = item.Id,
  2091. Pinyin = item.Pinyin,
  2092. Name = item.LastName + item.FirstName
  2093. };
  2094. Customer.Add(data);
  2095. }
  2096. return Ok(JsonView(true, "查询成功!", Customer));
  2097. }
  2098. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2099. }
  2100. catch (Exception ex)
  2101. {
  2102. return Ok(JsonView(false, "程序错误!"));
  2103. throw;
  2104. }
  2105. }
  2106. /// <summary>
  2107. /// 根据团号获取客户信息
  2108. /// </summary>
  2109. /// <param name="dto"></param>
  2110. /// <returns></returns>
  2111. [HttpPost]
  2112. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2113. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2114. {
  2115. var jw = JsonView(false);
  2116. if (dto.DIID < 1)
  2117. {
  2118. jw.Msg += "请输入正确的diid";
  2119. return Ok(jw);
  2120. }
  2121. var arr = getSimplClientList(dto.DIID);
  2122. jw = JsonView(true, "获取成功!", arr);
  2123. return Ok(jw);
  2124. }
  2125. private List<SimplClientInfo> getSimplClientList(int diId)
  2126. {
  2127. 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);
  2128. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2129. return arr;
  2130. }
  2131. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2132. {
  2133. string result = origin;
  2134. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2135. {
  2136. string[] temparr = origin.Split(',');
  2137. string fistrStr = temparr[0];
  2138. int count = temparr.Count();
  2139. int tempId;
  2140. bool success = int.TryParse(fistrStr, out tempId);
  2141. if (success)
  2142. {
  2143. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2144. if (tempInfo != null)
  2145. {
  2146. if (count > 1)
  2147. {
  2148. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2149. }
  2150. else
  2151. {
  2152. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2153. }
  2154. }
  2155. }
  2156. }
  2157. return result;
  2158. }
  2159. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2160. {
  2161. string result = origin;
  2162. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2163. {
  2164. string[] temparr = origin.Split(',');
  2165. result = "";
  2166. foreach (var item in temparr)
  2167. {
  2168. int tempId;
  2169. bool success = int.TryParse(item, out tempId);
  2170. if (success)
  2171. {
  2172. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2173. if (tempInfo != null)
  2174. {
  2175. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2176. }
  2177. }
  2178. }
  2179. }
  2180. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2181. return result;
  2182. }
  2183. /// <summary>
  2184. /// 机票费用录入,删除
  2185. /// </summary>
  2186. /// <param name="dto"></param>
  2187. /// <returns></returns>
  2188. [HttpPost]
  2189. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2190. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2191. {
  2192. try
  2193. {
  2194. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2195. if (res)
  2196. {
  2197. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2198. {
  2199. IsDel = 1,
  2200. DeleteUserId = dto.DeleteUserId,
  2201. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2202. }).ExecuteCommandAsync();
  2203. return Ok(JsonView(true, "删除成功!"));
  2204. }
  2205. return Ok(JsonView(false, "删除失败!"));
  2206. }
  2207. catch (Exception ex)
  2208. {
  2209. return Ok(JsonView(false, "程序错误!"));
  2210. throw;
  2211. }
  2212. }
  2213. /// <summary>
  2214. /// 导出机票录入报表
  2215. /// </summary>
  2216. /// <param name="dto"></param>
  2217. /// <returns></returns>
  2218. [HttpPost]
  2219. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2220. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2221. {
  2222. try
  2223. {
  2224. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2225. if (groupData.Code != 0)
  2226. {
  2227. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2228. }
  2229. else
  2230. {
  2231. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2232. if (AirTicketReservations.Count != 0)
  2233. {
  2234. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2235. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2236. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2237. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2238. WorkbookDesigner designer = new WorkbookDesigner();
  2239. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2240. decimal countCost = 0;
  2241. foreach (var item in AirTicketReservations)
  2242. {
  2243. #region 处理客人姓名
  2244. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2245. item.ClientName = clientNames;
  2246. #endregion
  2247. if (item.BankType == "其他")
  2248. {
  2249. item.BankNo = "--";
  2250. }
  2251. else
  2252. {
  2253. if (!string.IsNullOrEmpty(item.BankType))
  2254. {
  2255. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2256. }
  2257. }
  2258. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2259. item.Price = System.Decimal.Round(item.Price, 2);
  2260. countCost += Convert.ToDecimal(item.Price);
  2261. }
  2262. designer.SetDataSource("Export", AirTicketReservations);
  2263. designer.SetDataSource("ExportDiCode", diCode);
  2264. designer.SetDataSource("ExportDiName", diName);
  2265. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2266. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2267. designer.Process();
  2268. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2269. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2270. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2271. return Ok(JsonView(true, "成功", url = rst));
  2272. }
  2273. else
  2274. {
  2275. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2276. }
  2277. }
  2278. }
  2279. catch (Exception ex)
  2280. {
  2281. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2282. throw;
  2283. }
  2284. }
  2285. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2286. /// <summary>
  2287. /// 行程单导出
  2288. /// </summary>
  2289. /// <param name="dto"></param>
  2290. /// <returns></returns>
  2291. [HttpPost]
  2292. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2293. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2294. {
  2295. try
  2296. {
  2297. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2298. if (groupData.Code != 0)
  2299. {
  2300. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2301. }
  2302. else
  2303. {
  2304. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2305. if (dto.Language == "CN")
  2306. {
  2307. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2308. DocumentBuilder builder = new DocumentBuilder(doc);
  2309. int tableIndex = 0;//表格索引
  2310. //得到文档中的第一个表格
  2311. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2312. foreach (var item in _AirTicketReservations)
  2313. {
  2314. #region 处理固定数据
  2315. string[] FlightsCode = item.FlightsCode.Split('/');
  2316. if (FlightsCode.Length != 0)
  2317. {
  2318. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2319. if (_AirCompany != null)
  2320. {
  2321. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2322. }
  2323. else
  2324. {
  2325. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2326. }
  2327. }
  2328. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2329. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2330. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2331. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2332. string name = "";
  2333. foreach (string clientName in nameArray)
  2334. {
  2335. if (!name.Contains(clientName))
  2336. {
  2337. name += clientName + ",";
  2338. }
  2339. }
  2340. if (!string.IsNullOrWhiteSpace(name))
  2341. {
  2342. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2343. }
  2344. else
  2345. {
  2346. table.Range.Bookmarks["ClientName"].Text = "--";
  2347. }
  2348. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2349. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2350. table.Range.Bookmarks["JointTicket"].Text = "--";
  2351. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2352. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2353. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2354. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2355. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2356. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2357. #endregion
  2358. #region 循环数据处理
  2359. List<AirInfo> airs = new List<AirInfo>();
  2360. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2361. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2362. for (int i = 0; i < FlightsCode.Length; i++)
  2363. {
  2364. AirInfo air = new AirInfo();
  2365. string[] tempstr = DayArray[i]
  2366. .Replace("\r\n", string.Empty)
  2367. .Replace("\\r\\n", string.Empty)
  2368. .TrimStart().TrimEnd()
  2369. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2370. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2371. string starCity = "";
  2372. if (star_Three != null)
  2373. {
  2374. starCity = star_Three.AirPort;
  2375. }
  2376. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2377. string EndCity = "";
  2378. if (End_Three != null)
  2379. {
  2380. EndCity = End_Three.AirPort;
  2381. }
  2382. air.Destination = starCity + "/" + EndCity;
  2383. air.Flight = FlightsCode[i];
  2384. air.SeatingClass = item.CTypeName;
  2385. string dateTime = tempstr[2];
  2386. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2387. air.FlightDate = DateTemp;
  2388. air.DepartureTime = tempstr[5];
  2389. air.LandingTime = tempstr[6];
  2390. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2391. air.TicketStatus = "--";
  2392. air.Luggage = "--";
  2393. air.DepartureTerminal = "--";
  2394. air.LandingTerminal = "--";
  2395. airs.Add(air);
  2396. }
  2397. int row = 13;
  2398. for (int i = 0; i < airs.Count; i++)
  2399. {
  2400. if (airs.Count > 2)
  2401. {
  2402. for (int j = 0; j < airs.Count - 2; j++)
  2403. {
  2404. var CopyRow = table.Rows[12].Clone(true);
  2405. table.Rows.Add(CopyRow);
  2406. }
  2407. }
  2408. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2409. int index = 0;
  2410. foreach (PropertyInfo property in properties)
  2411. {
  2412. string value = property.GetValue(airs[i]).ToString();
  2413. Cell ishcel0 = table.Rows[row].Cells[index];
  2414. Paragraph p = new Paragraph(doc);
  2415. string s = value;
  2416. p.AppendChild(new Run(doc, s));
  2417. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2418. ishcel0.AppendChild(p);
  2419. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2420. index++;
  2421. }
  2422. row++;
  2423. }
  2424. #endregion
  2425. Paragraph lastParagraph = new Paragraph(doc);
  2426. //第一个表格末尾加段落
  2427. table.ParentNode.InsertAfter(lastParagraph, table);
  2428. //复制第一个表格
  2429. Table cloneTable = (Table)table.Clone(true);
  2430. //在文档末尾段落后面加入复制的表格
  2431. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2432. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2433. {
  2434. int rownewsIndex = 13;
  2435. for (int i = 0; i < 2; i++)
  2436. {
  2437. var CopyRow = table.Rows[12].Clone(true);
  2438. table.Rows.RemoveAt(13);
  2439. table.Rows.Add(CopyRow);
  2440. rownewsIndex++;
  2441. }
  2442. }
  2443. else
  2444. {
  2445. table.Rows.RemoveAt(12);
  2446. }
  2447. cloneTable.Rows.RemoveAt(12);
  2448. }
  2449. if (_AirTicketReservations.Count != 0)
  2450. {
  2451. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2452. if (FlightsCode.Length != 0)
  2453. {
  2454. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2455. if (_AirCompany != null)
  2456. {
  2457. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2458. }
  2459. else
  2460. {
  2461. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2462. }
  2463. }
  2464. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2465. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2466. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2467. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2468. string name = "";
  2469. foreach (string clientName in nameArray)
  2470. {
  2471. if (!name.Contains(clientName))
  2472. {
  2473. name += clientName + ",";
  2474. }
  2475. }
  2476. if (!string.IsNullOrWhiteSpace(name))
  2477. {
  2478. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2479. }
  2480. else
  2481. {
  2482. table.Range.Bookmarks["ClientName"].Text = "--";
  2483. }
  2484. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2485. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2486. table.Range.Bookmarks["JointTicket"].Text = "--";
  2487. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2488. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2489. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2490. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2491. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2492. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2493. }
  2494. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2495. //保存合并后的文档
  2496. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2497. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2498. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2499. return Ok(JsonView(true, "成功!", rst));
  2500. }
  2501. else
  2502. {
  2503. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2504. DocumentBuilder builder = new DocumentBuilder(doc);
  2505. int tableIndex = 0;//表格索引
  2506. //得到文档中的第一个表格
  2507. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2508. List<string> texts = new List<string>();
  2509. foreach (var item in _AirTicketReservations)
  2510. {
  2511. string[] FlightsCode = item.FlightsCode.Split('/');
  2512. if (FlightsCode.Length != 0)
  2513. {
  2514. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2515. if (_AirCompany != null)
  2516. {
  2517. if (!transDic.ContainsKey(_AirCompany.CnName))
  2518. {
  2519. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2520. }
  2521. }
  2522. else
  2523. {
  2524. if (!transDic.ContainsKey("--"))
  2525. {
  2526. transDic.Add("--", "--");
  2527. }
  2528. }
  2529. }
  2530. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2531. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2532. string name = "";
  2533. foreach (string clientName in nameArray)
  2534. {
  2535. name += clientName + ",";
  2536. }
  2537. if (!texts.Contains(name))
  2538. {
  2539. texts.Add(name);
  2540. }
  2541. List<AirInfo> airs = new List<AirInfo>();
  2542. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2543. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2544. for (int i = 0; i < FlightsCode.Length; i++)
  2545. {
  2546. AirInfo air = new AirInfo();
  2547. string[] tempstr = DayArray[i]
  2548. .Replace("\r\n", string.Empty)
  2549. .Replace("\\r\\n", string.Empty)
  2550. .TrimStart().TrimEnd()
  2551. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2552. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2553. if (star_Three != null)
  2554. {
  2555. if (!transDic.ContainsKey(star_Three.AirPort))
  2556. {
  2557. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2558. }
  2559. }
  2560. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2561. if (End_Three != null)
  2562. {
  2563. if (!transDic.ContainsKey(End_Three.AirPort))
  2564. {
  2565. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2566. }
  2567. }
  2568. if (!texts.Contains(item.CTypeName))
  2569. {
  2570. texts.Add(item.CTypeName);
  2571. }
  2572. }
  2573. }
  2574. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2575. if (transData.Count > 0)
  2576. {
  2577. foreach (TranslateResult item in transData)
  2578. {
  2579. if (!transDic.ContainsKey(item.Query))
  2580. {
  2581. transDic.Add(item.Query, item.Translation);
  2582. }
  2583. }
  2584. }
  2585. foreach (var item in _AirTicketReservations)
  2586. {
  2587. #region 处理固定数据
  2588. string[] FlightsCode = item.FlightsCode.Split('/');
  2589. if (FlightsCode.Length != 0)
  2590. {
  2591. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2592. if (_AirCompany != null)
  2593. {
  2594. string str = "--";
  2595. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2596. if (!string.IsNullOrEmpty(translateResult))
  2597. {
  2598. str = translateResult;
  2599. str = _airTicketResRep.Processing(str);
  2600. }
  2601. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2602. }
  2603. else
  2604. {
  2605. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2606. }
  2607. }
  2608. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2609. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2610. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2611. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2612. string names = "";
  2613. foreach (string clientName in nameArray)
  2614. {
  2615. names += clientName + ",";
  2616. }
  2617. if (!string.IsNullOrWhiteSpace(names))
  2618. {
  2619. string str = "--";
  2620. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2621. if (!string.IsNullOrEmpty(translateResult))
  2622. {
  2623. str = translateResult;
  2624. str = _airTicketResRep.Processing(str);
  2625. }
  2626. table.Range.Bookmarks["ClientName"].Text = str;
  2627. }
  2628. else
  2629. {
  2630. table.Range.Bookmarks["ClientName"].Text = "--";
  2631. }
  2632. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2633. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2634. table.Range.Bookmarks["JointTicket"].Text = "--";
  2635. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2636. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2637. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2638. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2639. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2640. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2641. #endregion
  2642. #region 循环数据处理
  2643. List<AirInfo> airs = new List<AirInfo>();
  2644. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2645. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2646. for (int i = 0; i < FlightsCode.Length; i++)
  2647. {
  2648. AirInfo air = new AirInfo();
  2649. string[] tempstr = DayArray[i]
  2650. .Replace("\r\n", string.Empty)
  2651. .Replace("\\r\\n", string.Empty)
  2652. .TrimStart().TrimEnd()
  2653. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2654. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2655. string starCity = "";
  2656. if (star_Three != null)
  2657. {
  2658. string str2 = "--";
  2659. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2660. if (!string.IsNullOrEmpty(translateResult2))
  2661. {
  2662. str2 = translateResult2;
  2663. str2 = _airTicketResRep.Processing(str2);
  2664. }
  2665. starCity = str2;
  2666. }
  2667. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2668. string EndCity = "";
  2669. if (End_Three != null)
  2670. {
  2671. string str1 = "--";
  2672. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2673. if (!string.IsNullOrEmpty(translateResult1))
  2674. {
  2675. str1 = translateResult1;
  2676. str1 = _airTicketResRep.Processing(str1);
  2677. }
  2678. EndCity = str1;
  2679. }
  2680. air.Destination = starCity + "/" + EndCity;
  2681. air.Flight = FlightsCode[i];
  2682. string str = "--";
  2683. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2684. if (!string.IsNullOrEmpty(translateResult))
  2685. {
  2686. str = translateResult;
  2687. str = _airTicketResRep.Processing(str);
  2688. }
  2689. air.SeatingClass = str;
  2690. string dateTime = tempstr[2];
  2691. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2692. air.FlightDate = DateTemp;
  2693. air.DepartureTime = tempstr[5];
  2694. air.LandingTime = tempstr[6];
  2695. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2696. air.TicketStatus = "--";
  2697. air.Luggage = "--";
  2698. air.DepartureTerminal = "--";
  2699. air.LandingTerminal = "--";
  2700. airs.Add(air);
  2701. }
  2702. int row = 13;
  2703. for (int i = 0; i < airs.Count; i++)
  2704. {
  2705. if (airs.Count > 2)
  2706. {
  2707. for (int j = 0; j < airs.Count - 2; j++)
  2708. {
  2709. var CopyRow = table.Rows[12].Clone(true);
  2710. table.Rows.Add(CopyRow);
  2711. }
  2712. }
  2713. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2714. int index = 0;
  2715. foreach (PropertyInfo property in properties)
  2716. {
  2717. string value = property.GetValue(airs[i]).ToString();
  2718. Cell ishcel0 = table.Rows[row].Cells[index];
  2719. Paragraph p = new Paragraph(doc);
  2720. string s = value;
  2721. p.AppendChild(new Run(doc, s));
  2722. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2723. ishcel0.AppendChild(p);
  2724. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2725. //ishcel0.CellFormat.VerticalAlignment=
  2726. index++;
  2727. }
  2728. row++;
  2729. }
  2730. #endregion
  2731. Paragraph lastParagraph = new Paragraph(doc);
  2732. //第一个表格末尾加段落
  2733. table.ParentNode.InsertAfter(lastParagraph, table);
  2734. //复制第一个表格
  2735. Table cloneTable = (Table)table.Clone(true);
  2736. //在文档末尾段落后面加入复制的表格
  2737. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2738. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2739. {
  2740. int rownewsIndex = 13;
  2741. for (int i = 0; i < 2; i++)
  2742. {
  2743. var CopyRow = table.Rows[12].Clone(true);
  2744. table.Rows.RemoveAt(13);
  2745. table.Rows.Add(CopyRow);
  2746. rownewsIndex++;
  2747. }
  2748. }
  2749. else
  2750. {
  2751. table.Rows.RemoveAt(12);
  2752. }
  2753. cloneTable.Rows.RemoveAt(12);
  2754. }
  2755. if (_AirTicketReservations.Count != 0)
  2756. {
  2757. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2758. if (FlightsCode.Length != 0)
  2759. {
  2760. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2761. if (_AirCompany != null)
  2762. {
  2763. string str = "--";
  2764. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2765. if (!string.IsNullOrEmpty(translateResult))
  2766. {
  2767. str = translateResult;
  2768. str = _airTicketResRep.Processing(str);
  2769. }
  2770. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2771. }
  2772. else
  2773. {
  2774. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2775. }
  2776. }
  2777. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2778. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2779. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2780. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2781. string names = "";
  2782. foreach (string clientName in nameArray)
  2783. {
  2784. names += clientName + ",";
  2785. }
  2786. if (!string.IsNullOrWhiteSpace(names))
  2787. {
  2788. string str = "--";
  2789. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2790. if (!string.IsNullOrEmpty(translateResult))
  2791. {
  2792. str = translateResult;
  2793. str = _airTicketResRep.Processing(str);
  2794. }
  2795. table.Range.Bookmarks["ClientName"].Text = str;
  2796. }
  2797. else
  2798. {
  2799. table.Range.Bookmarks["ClientName"].Text = "--";
  2800. }
  2801. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2802. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2803. table.Range.Bookmarks["JointTicket"].Text = "--";
  2804. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2805. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2806. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2807. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2808. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2809. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2810. }
  2811. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2812. //保存合并后的文档
  2813. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2814. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2815. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2816. return Ok(JsonView(true, "成功!", rst));
  2817. }
  2818. }
  2819. }
  2820. catch (Exception ex)
  2821. {
  2822. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2823. throw;
  2824. }
  2825. }
  2826. #endregion
  2827. #region 团组增减款项 --> 其他款项
  2828. /// <summary>
  2829. /// 团组增减款项下拉框绑定
  2830. /// </summary>
  2831. /// <param name="dto"></param>
  2832. /// <returns></returns>
  2833. [HttpPost]
  2834. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2835. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2836. {
  2837. #region 参数验证
  2838. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2839. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2840. #endregion
  2841. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2842. }
  2843. /// <summary>
  2844. /// 根据团组Id查询团组增减款项
  2845. /// </summary>
  2846. /// <param name="dto"></param>
  2847. /// <returns></returns>
  2848. [HttpPost]
  2849. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2850. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2851. {
  2852. #region 参数验证
  2853. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2854. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2855. #endregion
  2856. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2857. }
  2858. /// <summary>
  2859. /// 团组增减款项操作(Status:1.新增,2.修改)
  2860. /// </summary>
  2861. /// <param name="dto"></param>
  2862. /// <returns></returns>
  2863. [HttpPost]
  2864. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2865. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2866. {
  2867. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2868. if (groupData.Code != 200)
  2869. {
  2870. return Ok(JsonView(false, groupData.Msg));
  2871. }
  2872. #region 应用推送
  2873. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2874. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2875. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2876. #endregion
  2877. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2878. }
  2879. /// <summary>
  2880. /// 团组增减款项操作 删除
  2881. /// </summary>
  2882. /// <param name="dto"></param>
  2883. /// <returns></returns>
  2884. [HttpPost]
  2885. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2886. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2887. {
  2888. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2889. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2890. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2891. if (res.Code == 0)
  2892. {
  2893. return Ok(JsonView(true, "删除成功!"));
  2894. }
  2895. return Ok(JsonView(false, "删除失败!"));
  2896. }
  2897. /// <summary>
  2898. /// 根据团组增减款项Id查询
  2899. /// </summary>
  2900. /// <param name="dto"></param>
  2901. /// <returns></returns>
  2902. [HttpPost]
  2903. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2904. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2905. {
  2906. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2907. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2908. }
  2909. /// <summary>
  2910. /// 查询供应商名称
  2911. /// </summary>
  2912. /// <param name="dto"></param>
  2913. /// <returns></returns>
  2914. [HttpPost]
  2915. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2916. {
  2917. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2918. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2919. ?? new List<Grp_DecreasePayments>();
  2920. dbResult = dbResult.Distinct(new
  2921. ProductComparer()).ToList();
  2922. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2923. {
  2924. x.Id,
  2925. x.SupplierAddress,
  2926. x.SupplierArea,
  2927. x.SupplierContact,
  2928. x.SupplierContactNumber,
  2929. x.SupplierEmail,
  2930. x.SupplierName,
  2931. x.SupplierSocialAccount,
  2932. x.SupplierTypeId,
  2933. }).ToList());
  2934. return Ok(jw);
  2935. }
  2936. #endregion
  2937. #region 文件上传、删除
  2938. /// <summary>
  2939. /// region 文件上传 可以带参数
  2940. /// </summary>
  2941. /// <param name="file"></param>
  2942. /// <returns></returns>
  2943. [HttpPost]
  2944. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2945. public async Task<IActionResult> UploadProject(IFormFile file)
  2946. {
  2947. try
  2948. {
  2949. var TypeName = Request.Headers["TypeName"].ToString();
  2950. if (file != null)
  2951. {
  2952. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2953. //文件名称
  2954. string projectFileName = file.FileName;
  2955. //上传的文件的路径
  2956. string filePath = "";
  2957. if (TypeName == "A")//A代表团组增减款项
  2958. {
  2959. if (!Directory.Exists(fileDir))
  2960. {
  2961. Directory.CreateDirectory(fileDir);
  2962. }
  2963. //上传的文件的路径
  2964. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2965. }
  2966. else if (TypeName == "B")//B代表商邀相关文件
  2967. {
  2968. if (!Directory.Exists(fileDir))
  2969. {
  2970. Directory.CreateDirectory(fileDir);
  2971. }
  2972. //上传的文件的路径
  2973. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2974. }
  2975. using (FileStream fs = System.IO.File.Create(filePath))
  2976. {
  2977. file.CopyTo(fs);
  2978. fs.Flush();
  2979. }
  2980. return Ok(JsonView(true, "上传成功!", projectFileName));
  2981. }
  2982. else
  2983. {
  2984. return Ok(JsonView(false, "上传失败!"));
  2985. }
  2986. }
  2987. catch (Exception ex)
  2988. {
  2989. return Ok(JsonView(false, "程序错误!"));
  2990. throw;
  2991. }
  2992. }
  2993. /// <summary>
  2994. /// 删除指定文件
  2995. /// </summary>
  2996. /// <param name="dto"></param>
  2997. /// <returns></returns>
  2998. [HttpPost]
  2999. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3000. public async Task<IActionResult> DelFile(DelFileDto dto)
  3001. {
  3002. try
  3003. {
  3004. var TypeName = Request.Headers["TypeName"].ToString();
  3005. string filePath = "";
  3006. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3007. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  3008. int id = 0;
  3009. if (TypeName == "A")
  3010. {
  3011. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  3012. // 删除该文件
  3013. System.IO.File.Delete(filePath);
  3014. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  3015. }
  3016. else if (TypeName == "B")
  3017. {
  3018. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  3019. // 删除该文件
  3020. System.IO.File.Delete(filePath);
  3021. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  3022. }
  3023. if (id != 0)
  3024. {
  3025. return Ok(JsonView(true, "成功!"));
  3026. }
  3027. else
  3028. {
  3029. return Ok(JsonView(false, "失败!"));
  3030. }
  3031. }
  3032. catch (Exception ex)
  3033. {
  3034. return Ok(JsonView(false, "程序错误!"));
  3035. throw;
  3036. }
  3037. }
  3038. #endregion
  3039. #region 商邀费用录入
  3040. /// <summary>
  3041. /// 根据团组Id查询商邀费用列表
  3042. /// </summary>
  3043. /// <param name="dto"></param>
  3044. /// <returns></returns>
  3045. [HttpPost]
  3046. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3047. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  3048. {
  3049. try
  3050. {
  3051. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3052. if (groupData.Code != 0)
  3053. {
  3054. return Ok(JsonView(false, groupData.Msg));
  3055. }
  3056. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3057. }
  3058. catch (Exception ex)
  3059. {
  3060. return Ok(JsonView(false, "程序错误!"));
  3061. throw;
  3062. }
  3063. }
  3064. //
  3065. /// <summary>
  3066. /// 商邀费用 Info Page 基础数据源
  3067. /// </summary>
  3068. /// <param name="dto"></param>
  3069. /// <returns></returns>
  3070. [HttpPost]
  3071. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3072. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3073. {
  3074. try
  3075. {
  3076. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3077. if (groupData.Code != 0)
  3078. {
  3079. return Ok(JsonView(false, groupData.Msg));
  3080. }
  3081. return Ok(JsonView(true, "操作成功", groupData.Data));
  3082. }
  3083. catch (Exception ex)
  3084. {
  3085. return Ok(JsonView(false, ex.Message));
  3086. throw;
  3087. }
  3088. }
  3089. /// <summary>
  3090. /// 根据商邀费用ID查询C表和商邀费用数据
  3091. /// </summary>
  3092. /// <param name="dto"></param>
  3093. /// <returns></returns>
  3094. [HttpPost]
  3095. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3096. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3097. {
  3098. try
  3099. {
  3100. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3101. if (groupData.Code != 0)
  3102. {
  3103. return Ok(JsonView(false, groupData.Msg));
  3104. }
  3105. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3106. }
  3107. catch (Exception ex)
  3108. {
  3109. return Ok(JsonView(false, ex.Message));
  3110. throw;
  3111. }
  3112. }
  3113. /// <summary>
  3114. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3115. /// </summary>
  3116. /// <param name="dto"></param>
  3117. /// <returns></returns>
  3118. [HttpPost]
  3119. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3120. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3121. {
  3122. try
  3123. {
  3124. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3125. if (groupData.Code != 0)
  3126. {
  3127. return Ok(JsonView(false, groupData.Msg));
  3128. }
  3129. #region 应用推送
  3130. try
  3131. {
  3132. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3133. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3134. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3135. }
  3136. catch (Exception ex)
  3137. {
  3138. }
  3139. #endregion
  3140. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3141. }
  3142. catch (Exception ex)
  3143. {
  3144. return Ok(JsonView(false, "程序错误!"));
  3145. throw;
  3146. }
  3147. }
  3148. /// <summary>
  3149. /// 商邀删除
  3150. /// </summary>
  3151. /// <param name="dto"></param>
  3152. /// <returns></returns>
  3153. [HttpPost]
  3154. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3155. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3156. {
  3157. try
  3158. {
  3159. _sqlSugar.BeginTran();
  3160. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3161. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3162. {
  3163. IsDel = 1,
  3164. DeleteUserId = dto.DeleteUserId,
  3165. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3166. })
  3167. .Where(it => it.Id == dto.Id)
  3168. .ExecuteCommand();
  3169. if (res1 > 0)
  3170. {
  3171. int _diId = 0;
  3172. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3173. if (_ioaInfo != null)
  3174. {
  3175. _diId = _ioaInfo.DiId;
  3176. }
  3177. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3178. .SetColumns(a => new Grp_CreditCardPayment()
  3179. {
  3180. IsDel = 1,
  3181. DeleteUserId = dto.DeleteUserId,
  3182. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3183. })
  3184. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3185. .ExecuteCommand();
  3186. if (res2 > 0)
  3187. {
  3188. _sqlSugar.CommitTran();
  3189. return Ok(JsonView(true, "删除成功!"));
  3190. }
  3191. }
  3192. _sqlSugar.RollbackTran();
  3193. return Ok(JsonView(false, "删除失败"));
  3194. }
  3195. catch (Exception ex)
  3196. {
  3197. _sqlSugar.RollbackTran();
  3198. return Ok(JsonView(false, ex.Message));
  3199. }
  3200. }
  3201. /// <summary>
  3202. /// 团组模块文件上传
  3203. /// </summary>
  3204. /// <param name="dto"></param>
  3205. /// <returns></returns>
  3206. [HttpPost]
  3207. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3208. {
  3209. var jw = JsonView(false);
  3210. long M = 1024 * 1024;
  3211. if (dto.Files == null || dto.Files.Count == 0)
  3212. {
  3213. jw.Msg = "无文件信息!";
  3214. return Ok(jw);
  3215. }
  3216. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3217. {
  3218. jw.Msg = "文件大小超过20M!";
  3219. return Ok(jw);
  3220. }
  3221. //var nameSp = dto.File.FileName.Split(".");
  3222. //if (nameSp.Length < 2)
  3223. //{
  3224. // jw.Msg = "拓展名称有误!";
  3225. // return Ok(jw);
  3226. //}
  3227. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3228. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3229. //{
  3230. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3231. // return Ok(jw);
  3232. //}
  3233. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3234. if (Ctable == null)
  3235. {
  3236. jw.Msg = "Ctable指向有误!";
  3237. return Ok(jw);
  3238. }
  3239. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3240. if (groupInfo == null)
  3241. {
  3242. jw.Msg = "团组信息不存在!";
  3243. return Ok(jw);
  3244. }
  3245. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3246. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3247. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3248. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3249. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3250. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3251. try
  3252. {
  3253. if (!Directory.Exists(fileBase))
  3254. {
  3255. Directory.CreateDirectory(fileBase);
  3256. }
  3257. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3258. foreach (var fileStream in dto.Files)
  3259. {
  3260. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3261. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3262. {
  3263. Cid = dto.Cid,
  3264. CreateTime = DateTime.Now,
  3265. CreateUserId = dto.Userid,
  3266. Ctable = dto.Ctable,
  3267. Diid = dto.Diid,
  3268. IsDel = 0,
  3269. FilePath = saveFilePath,
  3270. FileName = fileStream.FileName
  3271. };
  3272. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3273. {
  3274. fileStream.CopyTo(fs);
  3275. fs.Flush();
  3276. }
  3277. saveArr.Add(file);
  3278. }
  3279. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3280. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3281. jw = JsonView(true, "保存成功!", new
  3282. {
  3283. count = addResult,
  3284. filesName = saveArr.Select(x => x.FileName)
  3285. }) ;
  3286. }
  3287. catch (Exception ex)
  3288. {
  3289. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3290. {
  3291. count = 0,
  3292. filesName = new string[0],
  3293. }) ;
  3294. }
  3295. return Ok(jw);
  3296. }
  3297. /// <summary>
  3298. /// 查询各模块已保存文件
  3299. /// </summary>
  3300. /// <param name="dto"></param>
  3301. /// <returns></returns>
  3302. [HttpPost]
  3303. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3304. {
  3305. var expression = Expressionable.Create<Grp_GroupModelFile>()
  3306. .AndIF(dto.UserId != -1 , x => x.CreateUserId == dto.UserId);
  3307. var visaIds = _sqlSugar.Queryable<Sys_Users>().Where(x => x.JobPostId == 26).Select(x=>x.Id).ToList();
  3308. if (visaIds.Contains(dto.UserId) && dto.Ctable == 80)
  3309. {
  3310. expression = Expressionable.Create<Grp_GroupModelFile>()
  3311. .And(x=>visaIds.Contains(x.CreateUserId));
  3312. }
  3313. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3314. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3315. .Where(expression.ToExpression())
  3316. .ToList();
  3317. //.ToPageList(pagenumber, pageSize, ref totalCount, ref totalPage)
  3318. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3319. {
  3320. x.FileName,
  3321. x.Id,
  3322. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"), AppSettingsHelper.Get("GrpFileFtpPath")),
  3323. CreateTime = x.CreateTime.ToString("yyyy-MM-dd HH-mm"),
  3324. })));
  3325. }
  3326. /// <summary>
  3327. /// 下载该团组下的所有文件
  3328. /// </summary>
  3329. /// <param name="dto"></param>
  3330. /// <returns></returns>
  3331. [HttpPost]
  3332. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3333. {
  3334. var jw = JsonView(false);
  3335. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3336. if (groupInfo == null)
  3337. {
  3338. jw.Msg = "团组信息不存在!";
  3339. return Ok(jw);
  3340. }
  3341. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3342. var isModule = Convert.ToBoolean(dto.isModule);
  3343. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3344. IOOperatorHelper io = new IOOperatorHelper();
  3345. if (isModule)
  3346. {
  3347. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3348. foreach (var moduleArr in moduleGroup)
  3349. {
  3350. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3351. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3352. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3353. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3354. foreach (var item in moduleArr)
  3355. {
  3356. if (System.IO.File.Exists(item.FilePath))
  3357. {
  3358. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3359. {
  3360. byte[] bytes = new byte[fileStream.Length];
  3361. fileStream.Read(bytes, 0, bytes.Length);
  3362. fileStream.Close();
  3363. Stream stream = new MemoryStream(bytes);
  3364. chiZips.Add(item.FileName, stream);
  3365. }
  3366. }
  3367. }
  3368. if (chiZips.Count > 0)
  3369. {
  3370. var byts = io.ConvertZipStream(chiZips);
  3371. Stream stream = new MemoryStream(byts);
  3372. Zips.Add(key.Name+"_.zip", stream);
  3373. }
  3374. }
  3375. }
  3376. else
  3377. {
  3378. foreach (var item in dbQuery)
  3379. {
  3380. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3381. {
  3382. byte[] bytes = new byte[fileStream.Length];
  3383. fileStream.Read(bytes, 0, bytes.Length);
  3384. fileStream.Close();
  3385. Stream stream = new MemoryStream(bytes);
  3386. while (Zips.Keys.Contains(item.FileName))
  3387. {
  3388. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3389. }
  3390. Zips.Add(item.FileName, stream);
  3391. }
  3392. }
  3393. }
  3394. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3395. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3396. if (Zips.Count > 0)
  3397. {
  3398. var byts = io.ConvertZipStream(Zips);
  3399. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3400. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3401. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3402. }
  3403. else
  3404. {
  3405. jw.Msg = "暂无生成文件!";
  3406. }
  3407. return Ok(jw);
  3408. }
  3409. /// <summary>
  3410. /// 下载该团组下此模块的所有文件
  3411. /// </summary>
  3412. /// <param name="dto"></param>
  3413. /// <returns></returns>
  3414. [HttpPost]
  3415. public IActionResult ExportGroupByModule(ExportGroupByModuleDto dto)
  3416. {
  3417. var jw = JsonView(false);
  3418. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3419. if (groupInfo == null)
  3420. {
  3421. jw.Msg = "团组信息不存在!";
  3422. return Ok(jw);
  3423. }
  3424. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid && x.Ctable == dto.Ctable).ToList();
  3425. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == dto.Ctable
  3426. && x.IsDel == 0);
  3427. if (key == null)
  3428. {
  3429. jw.Msg = "Ctable指向错误!";
  3430. return Ok(jw);
  3431. }
  3432. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3433. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3434. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3435. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3436. IOOperatorHelper io = new IOOperatorHelper();
  3437. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3438. foreach (var item in dbQuery)
  3439. {
  3440. if (System.IO.File.Exists(item.FilePath))
  3441. {
  3442. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3443. {
  3444. byte[] bytes = new byte[fileStream.Length];
  3445. fileStream.Read(bytes, 0, bytes.Length);
  3446. fileStream.Close();
  3447. Stream stream = new MemoryStream(bytes);
  3448. while (Zips.Keys.Contains(item.FileName))
  3449. {
  3450. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3451. }
  3452. Zips.Add(item.FileName, stream);
  3453. }
  3454. }
  3455. }
  3456. if (Zips.Count > 0)
  3457. {
  3458. var byts = io.ConvertZipStream(Zips);
  3459. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3460. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_{key.Name}_.Zip");
  3461. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_{key.Name}_.Zip" });
  3462. }
  3463. else
  3464. {
  3465. jw.Msg = "暂无生成文件!";
  3466. }
  3467. return Ok(jw);
  3468. }
  3469. /// <summary>
  3470. /// 删除该团组下的指定文件
  3471. /// </summary>
  3472. /// <param name="dto"></param>
  3473. /// <returns></returns>
  3474. [HttpPost]
  3475. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3476. {
  3477. var jw = JsonView(false);
  3478. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3479. if (sing == null)
  3480. {
  3481. jw.Msg = "暂无";
  3482. return Ok(jw);
  3483. }
  3484. if (System.IO.File.Exists(sing.FilePath))
  3485. {
  3486. try
  3487. {
  3488. System.IO.File.Delete(sing.FilePath);
  3489. }
  3490. catch (Exception ex)
  3491. {
  3492. jw.Msg = "删除失败!" + ex.Message;
  3493. return Ok(jw);
  3494. }
  3495. }
  3496. sing.IsDel = 1;
  3497. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3498. sing.DeleteUserId = dto.UserId;
  3499. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3500. jw = JsonView(true, "删除成功!");
  3501. return Ok(jw);
  3502. }
  3503. #endregion
  3504. #region 团组英文资料
  3505. /// <summary>
  3506. /// 查询团组英文所有资料
  3507. /// </summary>
  3508. /// <param name="dto"></param>
  3509. /// <returns></returns>
  3510. [HttpPost]
  3511. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3512. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3513. {
  3514. try
  3515. {
  3516. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3517. if (groupData.Code != 0)
  3518. {
  3519. return Ok(JsonView(false, groupData.Msg));
  3520. }
  3521. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3522. }
  3523. catch (Exception ex)
  3524. {
  3525. return Ok(JsonView(false, "程序错误!"));
  3526. throw;
  3527. }
  3528. }
  3529. /// <summary>
  3530. /// 团组英文资料操作(Status:1.新增,2.修改)
  3531. /// </summary>
  3532. /// <param name="dto"></param>
  3533. /// <returns></returns>
  3534. [HttpPost]
  3535. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3536. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3537. {
  3538. try
  3539. {
  3540. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3541. if (groupData.Code != 0)
  3542. {
  3543. return Ok(JsonView(false, groupData.Msg));
  3544. }
  3545. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3546. }
  3547. catch (Exception ex)
  3548. {
  3549. return Ok(JsonView(false, "程序错误!"));
  3550. throw;
  3551. }
  3552. }
  3553. /// <summary>
  3554. /// 团组英文资料Id查询数据
  3555. /// </summary>
  3556. /// <param name="dto"></param>
  3557. /// <returns></returns>
  3558. [HttpPost]
  3559. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3560. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3561. {
  3562. try
  3563. {
  3564. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3565. if (_DelegationEnData != null)
  3566. {
  3567. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3568. }
  3569. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3570. }
  3571. catch (Exception ex)
  3572. {
  3573. return Ok(JsonView(false, "程序错误!"));
  3574. throw;
  3575. }
  3576. }
  3577. /// <summary>
  3578. /// 团组英文资料删除
  3579. /// </summary>
  3580. /// <param name="dto"></param>
  3581. /// <returns></returns>
  3582. [HttpPost]
  3583. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3584. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3585. {
  3586. try
  3587. {
  3588. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3589. if (!res)
  3590. {
  3591. return Ok(JsonView(false, "删除失败"));
  3592. }
  3593. return Ok(JsonView(true, "删除成功!"));
  3594. }
  3595. catch (Exception ex)
  3596. {
  3597. return Ok(JsonView(false, "程序错误!"));
  3598. throw;
  3599. }
  3600. }
  3601. #endregion
  3602. #region 导出邀请函
  3603. /// <summary>
  3604. /// 导出邀请函页面初始化
  3605. /// </summary>
  3606. /// <param name="dto"></param>
  3607. /// <returns></returns>
  3608. [HttpPost]
  3609. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3610. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3611. {
  3612. try
  3613. {
  3614. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3615. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3616. if (dto.DiId == 0)
  3617. {
  3618. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3619. }
  3620. else
  3621. {
  3622. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3623. }
  3624. return Ok(JsonView(true, "查询成功!", new
  3625. {
  3626. deleClient = crm_Deles,
  3627. delegations = grp_Delegations
  3628. }));
  3629. }
  3630. catch (Exception ex)
  3631. {
  3632. return Ok(JsonView(false, "程序错误!"));
  3633. throw;
  3634. }
  3635. }
  3636. /// <summary>
  3637. /// 导出邀请函
  3638. /// </summary>
  3639. /// <param name="dto"></param>
  3640. /// <returns></returns>
  3641. [HttpPost]
  3642. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3643. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3644. {
  3645. #region 参数验证
  3646. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3647. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3648. #endregion
  3649. try
  3650. {
  3651. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3652. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3653. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3654. From Grp_TourClientList tcl
  3655. Left Join
  3656. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3657. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3658. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3659. From Crm_DeleClient dc
  3660. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3661. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3662. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3663. Where dc.IsDel = 0) temp
  3664. On temp.DcId =tcl.ClientId
  3665. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3666. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3667. List<string> texts = new List<string>();
  3668. if (datas.Count != 0)
  3669. {
  3670. foreach (TourClientListDetailsView item in datas)
  3671. {
  3672. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3673. {
  3674. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3675. }
  3676. else
  3677. {
  3678. string name = item.LastName + item.FirstName;
  3679. texts.Add(name);
  3680. }
  3681. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3682. {
  3683. if (!transDic.ContainsKey(item.Job))
  3684. {
  3685. texts.Add(item.Job);
  3686. }
  3687. }
  3688. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3689. {
  3690. texts.Add(item.CompanyFullName);
  3691. }
  3692. }
  3693. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3694. if (transData.Count > 0)
  3695. {
  3696. foreach (TranslateResult item in transData)
  3697. {
  3698. if (!transDic.ContainsKey(item.Query))
  3699. {
  3700. transDic.Add(item.Query, item.Translation);
  3701. }
  3702. }
  3703. }
  3704. List<GuestList> list = new List<GuestList>();
  3705. foreach (TourClientListDetailsView dele in datas)
  3706. {
  3707. GuestList guestList = new GuestList();
  3708. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3709. {
  3710. guestList.Name = dele.Pinyin;
  3711. }
  3712. else
  3713. {
  3714. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3715. guestList.Name = Name;
  3716. }
  3717. if (dele.Sex == 0)
  3718. {
  3719. guestList.Sex = "Male";
  3720. }
  3721. else if (dele.Sex == 1)
  3722. {
  3723. guestList.Sex = "Female";
  3724. }
  3725. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3726. if (!string.IsNullOrEmpty(dele.Job))
  3727. {
  3728. guestList.Job = dele.Job;
  3729. }
  3730. list.Add(guestList);
  3731. }
  3732. //载入模板
  3733. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3734. DocumentBuilder builder = new DocumentBuilder(doc);
  3735. //获取word里所有表格
  3736. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3737. //获取所填表格的序数
  3738. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3739. var rowStart = tableOne.Rows[0]; //获取第1行
  3740. //循环赋值
  3741. for (int i = 0; i < list.Count; i++)
  3742. {
  3743. builder.MoveToCell(0, i + 1, 0, 0);
  3744. builder.Write(list[i].Name.ToString());
  3745. builder.MoveToCell(0, i + 1, 1, 0);
  3746. builder.Write(list[i].Sex.ToString());
  3747. builder.MoveToCell(0, i + 1, 2, 0);
  3748. builder.Write(list[i].DOB.ToString());
  3749. builder.MoveToCell(0, i + 1, 3, 0);
  3750. builder.Write(list[i].Job.ToString());
  3751. }
  3752. //删除多余行
  3753. while (tableOne.Rows.Count > list.Count + 1)
  3754. {
  3755. tableOne.Rows.RemoveAt(list.Count + 1);
  3756. }
  3757. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3758. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3759. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3760. doc.Save(filePath);
  3761. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3762. return Ok(JsonView(true, "操作成功!", Url));
  3763. }
  3764. else
  3765. {
  3766. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3767. }
  3768. }
  3769. catch (Exception ex)
  3770. {
  3771. return Ok(JsonView(false, ex.Message));
  3772. throw;
  3773. }
  3774. }
  3775. #endregion
  3776. #region 团组经理模块 出入境费用
  3777. ///// <summary>
  3778. ///// 团组模块 - 出入境费用
  3779. ///// </summary>
  3780. ///// <returns></returns>
  3781. //[HttpPost]
  3782. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3783. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3784. //{
  3785. // try
  3786. // {
  3787. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3788. // if (data.Code != 0)
  3789. // {
  3790. // return Ok(JsonView(false, data.Msg));
  3791. // }
  3792. // return Ok(JsonView(true, "查询成功!"));
  3793. // }
  3794. // catch (Exception ex)
  3795. // {
  3796. // return Ok(JsonView(false, ex.Message));
  3797. // throw;
  3798. // }
  3799. //}
  3800. /// <summary>
  3801. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3802. /// </summary>
  3803. /// <returns></returns>
  3804. [HttpPost]
  3805. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3806. public async Task<IActionResult> SetDayAndCostAreaChange()
  3807. {
  3808. try
  3809. {
  3810. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3811. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3812. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3813. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3814. foreach (var item in unite) //处理交集数据
  3815. {
  3816. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3817. }
  3818. foreach (var item in merge) //处理差集数据
  3819. {
  3820. int nationalTravelFeeId = 0;
  3821. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3822. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3823. else
  3824. {
  3825. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3826. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3827. }
  3828. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3829. }
  3830. //只更新dayAndCost 的 nationalTravelFeeId;
  3831. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3832. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3833. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3834. }
  3835. catch (Exception ex)
  3836. {
  3837. return Ok(JsonView(false, ex.Message));
  3838. throw;
  3839. }
  3840. }
  3841. /// <summary>
  3842. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3843. /// </summary>
  3844. /// <returns></returns>
  3845. [HttpPost]
  3846. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3847. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3848. {
  3849. try
  3850. {
  3851. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3852. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3853. //SetDataInfoView
  3854. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3855. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3856. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3857. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3858. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3859. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3860. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3861. //默认币种显示
  3862. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3863. {
  3864. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3865. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3866. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3867. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3868. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3869. };
  3870. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3871. if (_currencyRate.Count > 0)
  3872. {
  3873. foreach (var item in _currencyInfos)
  3874. {
  3875. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3876. if (rateInfo != null)
  3877. {
  3878. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3879. rate1 *= 1.035M;
  3880. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3881. }
  3882. }
  3883. }
  3884. return Ok(JsonView(true, "查询成功!", new
  3885. {
  3886. GroupNameData = groupNameData.Data,
  3887. CurrencyData = _CurrencyData,
  3888. WordTypeData = _WordTypeData,
  3889. ExcelTypeData = _ExcelTypeData,
  3890. CurrencyInit = _currencyInfos
  3891. }));
  3892. }
  3893. catch (Exception ex)
  3894. {
  3895. return Ok(JsonView(false, ex.Message));
  3896. throw;
  3897. }
  3898. }
  3899. /// <summary>
  3900. /// 团组模块 - 出入境费用
  3901. /// 实时汇率 tips
  3902. /// 签证费用 tips
  3903. /// </summary>
  3904. /// <returns></returns>
  3905. [HttpPost]
  3906. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3907. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3908. {
  3909. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3910. //默认币种显示
  3911. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3912. {
  3913. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3914. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3915. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3916. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3917. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3918. };
  3919. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3920. List<dynamic> reteInfos = new List<dynamic>();
  3921. if (_currencyRate.Count > 0)
  3922. {
  3923. foreach (var item in _currencyInfos)
  3924. {
  3925. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3926. if (rateInfo != null)
  3927. {
  3928. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3929. decimal rate1 = item.Rate;
  3930. rate1 *= 1.03M;
  3931. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3932. reteInfos.Add(new
  3933. {
  3934. currCode = item.CurrencyCode,
  3935. currName = item.CurrencyName,
  3936. rate = rate2,
  3937. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3938. });
  3939. }
  3940. }
  3941. }
  3942. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3943. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3944. return Ok(JsonView(true, "查询成功!", new
  3945. {
  3946. //GroupNameData = groupNameData.Data,
  3947. visaData = visaData.Data,
  3948. airData = airData.Data,
  3949. reteInfos = reteInfos
  3950. }));
  3951. }
  3952. /// <summary>
  3953. /// 团组模块 - 出入境费用 - Info
  3954. /// </summary>
  3955. /// <returns></returns>
  3956. [HttpPost]
  3957. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3958. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3959. {
  3960. try
  3961. {
  3962. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3963. if (data.Code != 0)
  3964. {
  3965. return Ok(JsonView(false, data.Msg));
  3966. }
  3967. return Ok(JsonView(true, "查询成功!", data.Data));
  3968. }
  3969. catch (Exception ex)
  3970. {
  3971. return Ok(JsonView(false, ex.Message));
  3972. }
  3973. }
  3974. /// <summary>
  3975. /// 团组模块 - 出入境费用 - Add And Update
  3976. /// </summary>
  3977. /// <returns></returns>
  3978. [HttpPost]
  3979. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3980. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3981. {
  3982. try
  3983. {
  3984. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3985. if (data.Code != 0)
  3986. {
  3987. return Ok(JsonView(false, data.Msg));
  3988. }
  3989. //生成默认文件pdf并且通知人员
  3990. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3991. {
  3992. DiId = dto.DiId,
  3993. ExportType = 1,
  3994. SubTypeId = 1005
  3995. }, "pdf");
  3996. //发送通知
  3997. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3998. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3999. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  4000. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  4001. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  4002. return Ok(JsonView(true, data.Msg, data.Data));
  4003. }
  4004. catch (Exception ex)
  4005. {
  4006. return Ok(JsonView(false, ex.Message));
  4007. }
  4008. }
  4009. /// <summary>
  4010. /// 团组模块 - 出入境费用 - Confirm 费用
  4011. /// </summary>
  4012. /// <returns></returns>
  4013. [HttpPost]
  4014. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4015. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  4016. {
  4017. //TODO:测试完毕需把对应的用户ID更改
  4018. //1、数据表添加字段
  4019. //2、更改字段接口()
  4020. var _view = await _enterExitCostRep.ConfirmCost(dto);
  4021. //3、确认成功 给财务发送消息
  4022. if (_view.Code == 200)
  4023. {
  4024. if (dto.Type == 1)
  4025. {
  4026. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  4027. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  4028. }
  4029. }
  4030. return Ok(_view);
  4031. }
  4032. /// <summary>
  4033. /// 团组模块 - 出入境费用 - File downlaod
  4034. /// </summary>
  4035. /// <param name="dto"></param>
  4036. /// <returns></returns>
  4037. [HttpPost]
  4038. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4039. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  4040. {
  4041. try
  4042. {
  4043. if (dto.DiId < 1)
  4044. {
  4045. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4046. }
  4047. if (dto.ExportType < 1)
  4048. {
  4049. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  4050. }
  4051. if (dto.SubTypeId < 1)
  4052. {
  4053. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  4054. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  4055. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  4056. 3 团组成员名单 1 团组成员名单"));
  4057. }
  4058. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4059. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  4060. if (_EnterExitCosts == null)
  4061. {
  4062. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  4063. }
  4064. //数据源
  4065. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  4066. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  4067. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  4068. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  4069. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  4070. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  4071. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  4072. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  4073. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  4074. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  4075. .Select((tcl, dc, cc) => new
  4076. {
  4077. Name = dc.LastName + dc.FirstName,
  4078. Sex = dc.Sex,
  4079. Birthday = dc.BirthDay,
  4080. Company = cc.CompanyFullName,
  4081. Job = dc.Job
  4082. })
  4083. .ToList();
  4084. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4085. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  4086. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  4087. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  4088. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  4089. if (dto.ExportType == 1) //明细表
  4090. {
  4091. if (dto.SubTypeId == 1005) //1005(默认明细表)
  4092. {
  4093. //获取模板
  4094. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  4095. //载入模板
  4096. Document doc = new Document(tempPath);
  4097. DocumentBuilder builder = new DocumentBuilder(doc);
  4098. //利用键值对存放数据
  4099. Dictionary<string, string> dic = new Dictionary<string, string>();
  4100. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  4101. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  4102. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  4103. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  4104. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  4105. //境内费用(其他费用)
  4106. if (_EnterExitCosts.ChoiceOne == 1)
  4107. {
  4108. string row1_1 = "";
  4109. if (_EnterExitCosts.Visa > 0)
  4110. {
  4111. //insidePayTotal += _EnterExitCosts.Visa;
  4112. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  4113. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  4114. {
  4115. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  4116. }
  4117. }
  4118. string row1_2 = "";
  4119. if (_EnterExitCosts.YiMiao > 0)
  4120. {
  4121. //insidePayTotal += _EnterExitCosts.YiMiao;
  4122. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  4123. }
  4124. if (_EnterExitCosts.HeSuan > 0)
  4125. {
  4126. //insidePayTotal += _EnterExitCosts.HeSuan;
  4127. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4128. }
  4129. if (_EnterExitCosts.Service > 0)
  4130. {
  4131. //insidePayTotal += _EnterExitCosts.Service;
  4132. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4133. }
  4134. string row1_3 = "";
  4135. if (_EnterExitCosts.Safe > 0)
  4136. {
  4137. //insidePayTotal += _EnterExitCosts.Safe;
  4138. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4139. }
  4140. if (_EnterExitCosts.Ticket > 0)
  4141. {
  4142. //insidePayTotal += _EnterExitCosts.Ticket;
  4143. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4144. }
  4145. string row1 = "";
  4146. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4147. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4148. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4149. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4150. dic.Add("Row1Str", row1);
  4151. }
  4152. string airTotalStr = string.Empty,
  4153. airPriceStr = string.Empty;
  4154. //经济舱
  4155. if (_EnterExitCosts.SumJJC == 1)
  4156. {
  4157. airTotalStr += $"{_EnterExitCosts.OutsideJJPay.ToString("#0.00")}元/人(经济舱)";
  4158. airPriceStr += $"{_EnterExitCosts.AirJJ.ToString("#0.00")}元/人(经济舱)";
  4159. }
  4160. //公务舱
  4161. if (_EnterExitCosts.SumGWC == 1)
  4162. {
  4163. airTotalStr += $" {_EnterExitCosts.OutsideGWPay.ToString("#0.00")} 元/人(公务舱)";
  4164. airPriceStr += $" {_EnterExitCosts.AirGW.ToString("#0.00")} 元/人(公务舱)";
  4165. }
  4166. //头等舱
  4167. if (_EnterExitCosts.SumTDC == 1)
  4168. {
  4169. airTotalStr += $" {_EnterExitCosts.OutsideTDPay.ToString("#0.00")} 元/人(头等舱)";
  4170. airPriceStr += $" {_EnterExitCosts.AirTD.ToString("#0.00")} 元/人(头等舱)";
  4171. }
  4172. dic.Add("AirTotalStr", airTotalStr);
  4173. dic.Add("AirPriceStr", airPriceStr);
  4174. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4175. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4176. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4177. int table1Row = 0,
  4178. table2Row = 0,
  4179. table3Row = 0,
  4180. table4Row = 0;
  4181. //住宿费
  4182. if (_EnterExitCosts.ChoiceThree == 1)
  4183. {
  4184. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4185. table1Row = dac1.Count;
  4186. #region 填充word表格内容
  4187. for (int i = 0; i < dac1.Count; i++)
  4188. {
  4189. Grp_DayAndCost dac = dac1[i];
  4190. if (dac == null) continue;
  4191. builder.MoveToCell(0, i, 0, 0);
  4192. builder.Write("第" + dac.Days.ToString() + "晚:");
  4193. builder.MoveToCell(0, i, 1, 0);
  4194. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4195. //builder.Write(dac.Place == null ? "" : dac.Place);
  4196. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4197. builder.MoveToCell(0, i, 2, 0);
  4198. builder.Write("费用标准:");
  4199. string curr = "";
  4200. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4201. if (currData != null)
  4202. {
  4203. curr = currData.Name;
  4204. }
  4205. builder.MoveToCell(0, i, 3, 0);
  4206. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4207. builder.MoveToCell(0, i, 4, 0);
  4208. builder.Write("费用小计:");
  4209. builder.MoveToCell(0, i, 5, 0);
  4210. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4211. }
  4212. #endregion
  4213. }else dic.Add("SubZS","0.00");
  4214. //删除多余行
  4215. while (table1.Rows.Count > table1Row)
  4216. {
  4217. table1.Rows.RemoveAt(table1Row);
  4218. }
  4219. //伙食费
  4220. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4221. if (_EnterExitCosts.ChoiceFour == 1)
  4222. {
  4223. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4224. table2Row = dac2.Count;
  4225. #region 填充word表格内容
  4226. for (int i = 0; i < dac2.Count; i++)
  4227. {
  4228. Grp_DayAndCost dac = dac2[i];
  4229. if (dac == null) continue;
  4230. builder.MoveToCell(1, i, 0, 0);
  4231. builder.Write("第" + dac.Days.ToString() + "天:");
  4232. builder.MoveToCell(1, i, 1, 0);
  4233. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4234. builder.MoveToCell(1, i, 2, 0);
  4235. builder.Write("费用标准:");
  4236. string curr = "";
  4237. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4238. if (currData != null)
  4239. {
  4240. curr = currData.Name;
  4241. }
  4242. builder.MoveToCell(1, i, 3, 0);
  4243. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4244. builder.MoveToCell(1, i, 4, 0);
  4245. builder.Write("费用小计:");
  4246. builder.MoveToCell(1, i, 5, 0);
  4247. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4248. }
  4249. #endregion
  4250. }else dic.Add("SubHS","0.00");
  4251. //删除多余行
  4252. while (table2.Rows.Count > table2Row)
  4253. {
  4254. table2.Rows.RemoveAt(table2Row);
  4255. }
  4256. //公杂费
  4257. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4258. if (_EnterExitCosts.ChoiceFive == 1)
  4259. {
  4260. dic.Add("SubGZF", miscellaneousFeeTotal.ToString("#0.00"));
  4261. table3Row = dac3.Count;
  4262. #region 填充word表格内容
  4263. for (int i = 0; i < dac3.Count; i++)
  4264. {
  4265. Grp_DayAndCost dac = dac3[i];
  4266. if (dac == null) continue;
  4267. builder.MoveToCell(2, i, 0, 0);
  4268. builder.Write("第" + dac.Days.ToString() + "天:");
  4269. builder.MoveToCell(2, i, 1, 0);
  4270. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4271. builder.MoveToCell(2, i, 2, 0);
  4272. builder.Write("费用标准:");
  4273. string curr = "";
  4274. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4275. if (currData != null)
  4276. {
  4277. curr = currData.Name;
  4278. }
  4279. builder.MoveToCell(2, i, 3, 0);
  4280. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4281. builder.MoveToCell(2, i, 4, 0);
  4282. builder.Write("费用小计:");
  4283. builder.MoveToCell(2, i, 5, 0);
  4284. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4285. }
  4286. //删除多余行
  4287. while (table3.Rows.Count > table3Row)
  4288. {
  4289. table3.Rows.RemoveAt(table3Row);
  4290. }
  4291. #endregion
  4292. }else dic.Add("SubGZF", "0.00");
  4293. //删除多余行
  4294. while (table3.Rows.Count > table3Row)
  4295. {
  4296. table3.Rows.RemoveAt(table3Row);
  4297. }
  4298. //培训费
  4299. Aspose.Words.Tables.Table table4 = allTables[3] as Aspose.Words.Tables.Table;
  4300. if (_EnterExitCosts.ChoiceSix == 1)
  4301. {
  4302. string pxStr = $"六、培训费合计: {tainFeeTotal.ToString("#0.00")} 元/人";
  4303. dic.Add("SubPX", pxStr);
  4304. table4Row = dac4.Count;
  4305. #region 填充word表格内容
  4306. for (int i = 0; i < dac4.Count; i++)
  4307. {
  4308. Grp_DayAndCost dac = dac4[i];
  4309. if (dac == null) continue;
  4310. builder.MoveToCell(3, i, 0, 0);
  4311. builder.Write("第" + dac.Days.ToString() + "天:");
  4312. builder.MoveToCell(3, i, 1, 0);
  4313. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4314. builder.MoveToCell(3, i, 2, 0);
  4315. builder.Write("费用标准:");
  4316. string curr = "";
  4317. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4318. if (currData != null)
  4319. {
  4320. curr = currData.Name;
  4321. }
  4322. builder.MoveToCell(3, i, 3, 0);
  4323. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4324. builder.MoveToCell(3, i, 4, 0);
  4325. builder.Write("费用小计:");
  4326. builder.MoveToCell(3, i, 5, 0);
  4327. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4328. }
  4329. #endregion
  4330. }
  4331. //else dic.Add("SubPX","0.00");
  4332. //删除多余行
  4333. while (table4.Rows.Count > table4Row)
  4334. {
  4335. table4.Rows.RemoveAt(table4Row);
  4336. }
  4337. decimal otherFeeTotal = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal;
  4338. decimal subJJC = 0.00M,
  4339. subGWC = 0.00M,
  4340. subTDC = 0.00M;
  4341. //经济舱
  4342. if (_EnterExitCosts.SumJJC == 1) subJJC = otherFeeTotal + _EnterExitCosts.OutsideJJPay;
  4343. //公务舱
  4344. if (_EnterExitCosts.SumGWC == 1) subGWC = otherFeeTotal + _EnterExitCosts.OutsideGWPay;
  4345. //头等舱
  4346. if (_EnterExitCosts.SumTDC == 1) subTDC = otherFeeTotal + _EnterExitCosts.OutsideTDPay;
  4347. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4348. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4349. dic.Add("SubTDC", subTDC.ToString("#0.00"));
  4350. #region 填充word模板书签内容
  4351. foreach (var key in dic.Keys)
  4352. {
  4353. builder.MoveToBookmark(key);
  4354. builder.Write(dic[key]);
  4355. }
  4356. #endregion
  4357. //文件名
  4358. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4359. AsposeHelper.removewatermark_v2180();
  4360. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4361. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4362. return Ok(JsonView(true, "成功", new { Url = url }));
  4363. }
  4364. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4365. {
  4366. //获取模板
  4367. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4368. //载入模板
  4369. Document doc = new Document(tempPath);
  4370. DocumentBuilder builder = new DocumentBuilder(doc);
  4371. Dictionary<string, string> dic = new Dictionary<string, string>();
  4372. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4373. {
  4374. List<string> list = new List<string>();
  4375. try
  4376. {
  4377. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4378. foreach (var item in spilitArr)
  4379. {
  4380. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4381. var depCode = spDotandEmpty[2].Substring(0, 3);
  4382. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4383. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4384. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4385. list.Add(depName);
  4386. list.Add(arrName);
  4387. }
  4388. list = list.Distinct().ToList();
  4389. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4390. }
  4391. catch (Exception)
  4392. {
  4393. dic.Add("ReturnCode", "行程录入不正确!");
  4394. }
  4395. }
  4396. else
  4397. {
  4398. dic.Add("ReturnCode", "未录入行程!");
  4399. }
  4400. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4401. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4402. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4403. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4404. {
  4405. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4406. dic.Add("Day", sp.Days.ToString());
  4407. }
  4408. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4409. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4410. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4411. //dic.Add("Names", Names);
  4412. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4413. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4414. decimal dac1totalPrice = 0.00M;
  4415. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4416. foreach (var dac in dac1)
  4417. {
  4418. if (dac.SubTotal == 0.00M)
  4419. {
  4420. continue;
  4421. }
  4422. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4423. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4424. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4425. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4426. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4427. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4428. builder.Write(currency);//币种
  4429. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4430. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4431. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4432. builder.Write("");//人数
  4433. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4434. builder.Write("");//天数
  4435. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4436. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4437. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4438. decimal rate = 0.00M;
  4439. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4440. builder.Write(rate.ToString("#0.0000"));//汇率
  4441. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4442. decimal rbmPrice = dac.SubTotal;
  4443. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4444. accommodationStartIndex++;
  4445. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4446. }
  4447. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4448. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4449. {
  4450. table1.Rows.RemoveAt(i - 1);
  4451. foodandotherStartIndex--;
  4452. }
  4453. if (dac2.Count == dac3.Count)//国家 币种 金额
  4454. {
  4455. for (int i = 0; i < dac2.Count; i++)
  4456. {
  4457. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4458. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4459. }
  4460. }
  4461. decimal dac2totalPrice = 0.00M;
  4462. foreach (var dac in dac2)
  4463. {
  4464. if (dac.SubTotal == 0)
  4465. {
  4466. continue;
  4467. }
  4468. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4469. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4470. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4471. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4472. builder.Write(currency);//币种
  4473. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4474. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4475. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4476. builder.Write("");//人数
  4477. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4478. builder.Write("");//天数
  4479. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4480. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4481. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4482. decimal rate = 0.00M;
  4483. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4484. builder.Write(rate.ToString("#0.0000"));//汇率
  4485. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4486. decimal rbmPrice = dac.SubTotal;
  4487. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4488. foodandotherStartIndex++;
  4489. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4490. }
  4491. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4492. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4493. {
  4494. table1.Rows.RemoveAt(i - 1);
  4495. }
  4496. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4497. string otherFeeStr = "";
  4498. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4499. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4500. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4501. if (otherFeeStr.Length > 0)
  4502. {
  4503. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4504. otherFeeStr = $"({otherFeeStr})";
  4505. dic.Add("OtherFeeStr", otherFeeStr);
  4506. }
  4507. //总计
  4508. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4509. //国际旅费
  4510. string outsideAir = string.Empty;
  4511. string allPriceAir = string.Empty;
  4512. if (_EnterExitCosts.SumJJC == 1)
  4513. {
  4514. outsideAir += string.Format(@"经济舱:{0} 元/人;", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4515. allPriceAir += string.Format(@"经济舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4516. }
  4517. if (_EnterExitCosts.SumGWC == 1)
  4518. {
  4519. outsideAir += string.Format(@"公务舱:{0} 元/人;", _EnterExitCosts.AirGW.ToString("#0.00"));
  4520. allPriceAir += string.Format(@"公务舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideGWPay).ToString("#0.00"));
  4521. }
  4522. if (_EnterExitCosts.SumTDC == 1)
  4523. {
  4524. outsideAir += string.Format(@"头等舱:{0} 元/人;", _EnterExitCosts.AirTD.ToString("#0.00"));
  4525. allPriceAir += string.Format(@"头等舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideTDPay).ToString("#0.00"));
  4526. }
  4527. dic.Add("InTravelPrice", $"({outsideAir})");
  4528. dic.Add("FinalSumPrice", $"({allPriceAir})");
  4529. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4530. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4531. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4532. foreach (var key in dic.Keys)
  4533. {
  4534. builder.MoveToBookmark(key);
  4535. builder.Write(dic[key]);
  4536. }
  4537. //模板文件名
  4538. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  4539. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4540. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4541. return Ok(JsonView(true, "成功", new { Url = url }));
  4542. }
  4543. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4544. {
  4545. //获取模板
  4546. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4547. //载入模板
  4548. WorkbookDesigner designer = new WorkbookDesigner();
  4549. designer.Workbook = new Workbook(tempPath);
  4550. Dictionary<string, string> dic = new Dictionary<string, string>();
  4551. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4552. {
  4553. List<string> list = new List<string>();
  4554. try
  4555. {
  4556. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4557. foreach (var item in spilitArr)
  4558. {
  4559. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4560. var depCode = spDotandEmpty[2].Substring(0, 3);
  4561. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4562. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4563. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4564. list.Add(depName);
  4565. list.Add(arrName);
  4566. }
  4567. list = list.Distinct().ToList();
  4568. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4569. }
  4570. catch (Exception)
  4571. {
  4572. dic.Add("ReturnCode", "行程录入不正确!");
  4573. }
  4574. }
  4575. else
  4576. {
  4577. dic.Add("ReturnCode", "未录入行程!");
  4578. }
  4579. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4580. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4581. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4582. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4583. {
  4584. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4585. dic.Add("Day", sp.Days.ToString());
  4586. }
  4587. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4588. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4589. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4590. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4591. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4592. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4593. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4594. designer.SetDataSource("Name", Names);
  4595. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4596. designer.SetDataSource("Day", dic["Day"] + "天");
  4597. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4598. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4599. int startIndex = 10;
  4600. const int startIndexcopy = 10;
  4601. if (dac2.Count == dac3.Count)//国家 币种 金额
  4602. {
  4603. for (int i = 0; i < dac2.Count; i++)
  4604. {
  4605. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4606. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4607. }
  4608. }
  4609. DataTable dtdac1 = new DataTable();
  4610. List<string> place = new List<string>();
  4611. dtdac1.Columns.AddRange(new DataColumn[] {
  4612. new DataColumn(){ ColumnName = "city"},
  4613. new DataColumn(){ ColumnName = "curr"},
  4614. new DataColumn(){ ColumnName = "criterion"},
  4615. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4616. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4617. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4618. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4619. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4620. });
  4621. DataTable dtdac2 = new DataTable();
  4622. dtdac2.Columns.AddRange(new DataColumn[] {
  4623. new DataColumn(){ ColumnName = "city"},
  4624. new DataColumn(){ ColumnName = "curr"},
  4625. new DataColumn(){ ColumnName = "criterion"},
  4626. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4627. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4628. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4629. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4630. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4631. });
  4632. dtdac1.TableName = "tb1";
  4633. dtdac2.TableName = "tb2";
  4634. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4635. foreach (var item in dac1)
  4636. {
  4637. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4638. if (place.Contains(item.Place))
  4639. {
  4640. continue;
  4641. }
  4642. DataRow row = dtdac1.NewRow();
  4643. row["city"] = item.Place;
  4644. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4645. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4646. row["curr"] = currency;
  4647. row["rate"] = rate.ToString("#0.0000");
  4648. row["criterion"] = item.Cost.ToString("#0.00");
  4649. row["number"] = 1;
  4650. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4651. //row["costRMB"] = rbmPrice;
  4652. dtdac1.Rows.Add(row);
  4653. place.Add(item.Place);
  4654. }
  4655. place = new List<string>();
  4656. foreach (var item in dac2)
  4657. {
  4658. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4659. if (place.Contains(item.Place))
  4660. {
  4661. continue;
  4662. }
  4663. DataRow row = dtdac2.NewRow();
  4664. row["city"] = item.Place;
  4665. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4666. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4667. row["curr"] = currency;
  4668. row["rate"] = rate.ToString("#0.0000");
  4669. row["criterion"] = item.Cost.ToString("#0.00");
  4670. row["number"] = 1;
  4671. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4672. //row["cost"] = item.SubTotal;
  4673. //row["costRMB"] = rbmPrice;
  4674. dtdac2.Rows.Add(row);
  4675. place.Add(item.Place);
  4676. //dac2totalPrice += rbmPrice;
  4677. }
  4678. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4679. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4680. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4681. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4682. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4683. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4684. string cell4Str1 = string.Empty;
  4685. if (_EnterExitCosts.SumJJC == 1) cell4Str1 += $"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人;";
  4686. if (_EnterExitCosts.SumGWC == 1) cell4Str1 += $"公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人;";
  4687. if (_EnterExitCosts.SumTDC == 1) cell4Str1 += $"公务舱:{_EnterExitCosts.AirTD.ToString("#0.00")} 元/人;";
  4688. string cell4Str = $" 4.国际旅费:{cell4Str1}";
  4689. string cellStr = $" 5.其他费用(";
  4690. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4691. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4692. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4693. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4694. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4695. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4696. if (cellStr.Length > 8)
  4697. {
  4698. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4699. }
  4700. cellStr += ")";
  4701. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4702. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay + otherFee;
  4703. decimal pxFee = dac4.Sum(it => it.Cost);
  4704. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay;
  4705. string celllastStr1 = "";
  4706. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4707. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4708. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4709. celllastStr1 += $",国际旅费 元";
  4710. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4711. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4712. designer.SetDataSource("cell4Str", cell4Str);
  4713. designer.SetDataSource("cellStr", cellStr);
  4714. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4715. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay).ToString("#0.00"));
  4716. designer.SetDataSource("celllastStr", celllastStr);
  4717. Workbook wb = designer.Workbook;
  4718. var sheet = wb.Worksheets[0];
  4719. //绑定datatable数据集
  4720. designer.SetDataSource(dtdac1);
  4721. designer.SetDataSource(dtdac2);
  4722. designer.Process();
  4723. var rowStart = dtdac1.Rows.Count;
  4724. while (rowStart > 0)
  4725. {
  4726. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4727. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4728. startIndex++;
  4729. rowStart--;
  4730. }
  4731. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4732. startIndex += 1; //总计行
  4733. rowStart = dtdac2.Rows.Count;
  4734. while (rowStart > 0)
  4735. {
  4736. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4737. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4738. startIndex++;
  4739. rowStart--;
  4740. }
  4741. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4742. wb.CalculateFormula(true);
  4743. //模板文件名
  4744. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  4745. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4746. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4747. return Ok(JsonView(true, "成功", new { Url = url }));
  4748. }
  4749. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4750. {
  4751. //获取模板
  4752. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4753. //载入模板
  4754. Document doc = new Document(tempPath);
  4755. DocumentBuilder builder = new DocumentBuilder(doc);
  4756. Dictionary<string, string> dic = new Dictionary<string, string>();
  4757. dic.Add("GroupName", _DelegationInfo.TeamName);
  4758. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4759. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4760. string missionLeaderJob = "";//负责人job
  4761. int groupNumber = 0; //团人数
  4762. if (DeleClientList.Count > 0)
  4763. {
  4764. missionLeader = DeleClientList[0]?.Name ?? "";
  4765. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4766. }
  4767. dic.Add("MissionLeader", missionLeader); //团负责人
  4768. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4769. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4770. #region MyRegion
  4771. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4772. //{
  4773. // List<string> list = new List<string>();
  4774. // try
  4775. // {
  4776. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4777. // foreach (var item in spilitArr)
  4778. // {
  4779. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4780. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4781. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4782. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4783. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4784. // list.Add(depName);
  4785. // list.Add(arrName);
  4786. // }
  4787. // list = list.Distinct().ToList();
  4788. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4789. // }
  4790. // catch (Exception)
  4791. // {
  4792. // dic.Add("ReturnCode", "行程录入不正确!");
  4793. // }
  4794. //}
  4795. //else
  4796. //{
  4797. // dic.Add("ReturnCode", "未录入行程!");
  4798. //}
  4799. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4800. dic.Add("ReturnCode", string.Join("、", countrys));
  4801. #endregion
  4802. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4803. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4804. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4805. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4806. //{
  4807. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4808. // dic.Add("Day", sp.Days.ToString());
  4809. //}
  4810. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4811. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4812. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4813. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4814. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4815. //培训人员名单
  4816. int cultivateRowIndex = 7;
  4817. foreach (var item in DeleClientList)
  4818. {
  4819. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4820. builder.Write(item.Name);
  4821. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4822. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4823. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4824. string birthDay = "";
  4825. if (item.Birthday != null)
  4826. {
  4827. DateTime dt = Convert.ToDateTime(item.Birthday);
  4828. birthDay = $"{dt.Year}.{dt.Month}";
  4829. }
  4830. builder.Write(birthDay);
  4831. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4832. builder.Write(item.Company);
  4833. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4834. builder.Write(item.Job);
  4835. cultivateRowIndex++;
  4836. }
  4837. //删除多余行
  4838. //cultivateRowIndex -= 2;
  4839. int delRows = 10 + 7 - cultivateRowIndex;
  4840. if (delRows > 0)
  4841. {
  4842. for (int i = 0; i < delRows; i++)
  4843. {
  4844. table1.Rows.RemoveAt(cultivateRowIndex);
  4845. //cultivateRowIndex++;
  4846. }
  4847. }
  4848. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4849. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4850. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4851. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4852. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4853. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4854. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4855. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4856. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4857. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4858. //其他费用
  4859. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4860. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4861. //其他费用合计
  4862. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4863. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4864. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4865. //公务舱合计
  4866. //国际旅费
  4867. string outsideJJ = "";
  4868. string allPriceJJ = "";
  4869. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4870. {
  4871. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4872. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4873. }
  4874. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4875. {
  4876. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4877. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4878. }
  4879. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4880. {
  4881. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4882. dic.Add("AirFeeTotal", airFeeTotalStr);
  4883. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4884. dic.Add("FeeTotal", feeTotalStr);
  4885. }
  4886. foreach (var key in dic.Keys)
  4887. {
  4888. builder.MoveToBookmark(key);
  4889. builder.Write(dic[key]);
  4890. }
  4891. //模板文件名
  4892. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4893. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4894. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4895. return Ok(JsonView(true, "成功", new { Url = url }));
  4896. }
  4897. }
  4898. else if (dto.ExportType == 2) //表格
  4899. {
  4900. //利用键值对存放数据
  4901. Dictionary<string, string> dic = new Dictionary<string, string>();
  4902. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4903. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4904. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4905. dic.Add("Day", sp.Days.ToString());
  4906. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4907. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4908. {
  4909. //获取模板
  4910. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4911. //载入模板
  4912. Document doc = new Document(tempPath);
  4913. DocumentBuilder builder = new DocumentBuilder(doc);
  4914. dic.Add("TeamName", _DelegationInfo.TeamName);
  4915. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4916. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4917. string missionLeaderName = "",
  4918. missionLeaderJob = "";
  4919. if (DeleClientList.Count > 0)
  4920. {
  4921. missionLeaderName = DeleClientList[0].Name;
  4922. missionLeaderJob = DeleClientList[0].Job;
  4923. }
  4924. dic.Add("MissionLeaderName", missionLeaderName);
  4925. dic.Add("MissionLeaderJob", missionLeaderJob);
  4926. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4927. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4928. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4929. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4930. int rowCount = 10;//总人数行
  4931. int startRowIndex = 7; //起始行
  4932. for (int i = 0; i < DeleClientList.Count; i++)
  4933. {
  4934. builder.MoveToCell(0, startRowIndex, 0, 0);
  4935. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4936. builder.MoveToCell(0, startRowIndex, 1, 0);
  4937. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4938. builder.Write(sex);//性别
  4939. builder.MoveToCell(0, startRowIndex, 2, 0);
  4940. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4941. builder.MoveToCell(0, startRowIndex, 3, 0);
  4942. builder.Write(DeleClientList[i].Company);//工作单位
  4943. builder.MoveToCell(0, startRowIndex, 4, 0);
  4944. builder.Write(DeleClientList[i].Job);//职务及级别
  4945. builder.MoveToCell(0, startRowIndex, 5, 0);
  4946. builder.Write("");//人员属性
  4947. builder.MoveToCell(0, startRowIndex, 6, 0);
  4948. builder.Write("");//上次出国时间
  4949. startRowIndex++;
  4950. }
  4951. int nullRow = rowCount - DeleClientList.Count;//空行
  4952. for (int i = 0; i < nullRow; i++)
  4953. {
  4954. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4955. }
  4956. foreach (var key in dic.Keys)
  4957. {
  4958. builder.MoveToBookmark(key);
  4959. builder.Write(dic[key]);
  4960. }
  4961. //模板文件名
  4962. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4963. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4964. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4965. return Ok(JsonView(true, "成功", new { Url = url }));
  4966. }
  4967. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4968. {
  4969. //获取模板
  4970. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4971. //载入模板
  4972. Document doc = new Document(tempPath);
  4973. DocumentBuilder builder = new DocumentBuilder(doc);
  4974. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4975. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4976. dic.Add("Names", Names);
  4977. int accommodationRows = 12, foodandotherRows = 12;
  4978. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4979. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4980. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4981. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4982. int accommodationStartIndex = 6;
  4983. decimal dac1totalPrice = 0.00M;
  4984. foreach (var dac in dac1)
  4985. {
  4986. if (dac.SubTotal == 0)
  4987. {
  4988. continue;
  4989. }
  4990. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4991. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4992. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4993. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4994. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4995. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4996. builder.Write(currency);//币种
  4997. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4998. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4999. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  5000. builder.Write("");//人数
  5001. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  5002. builder.Write("");//天数
  5003. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  5004. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  5005. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  5006. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  5007. builder.Write(rate.ToString("#0.0000"));//汇率
  5008. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  5009. decimal rbmPrice = rate * dac.SubTotal;
  5010. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  5011. accommodationStartIndex++;
  5012. dac1totalPrice += rbmPrice;
  5013. }
  5014. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  5015. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  5016. builder.Write("小计");
  5017. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  5018. builder.Write(dac1totalPrice.ToString("#0.00"));
  5019. accommodationStartIndex++;
  5020. int nullRow = accommodationRows - dac1.Count;
  5021. //删除空行
  5022. //if (nullRow > 0)
  5023. //{
  5024. // int rowIndex = accommodationStartIndex;
  5025. // for (int i = 0; i < nullRow; i++)
  5026. // {
  5027. // Aspose.Words.Tables.Row row = table1.Rows[rowIndex];
  5028. // row.Remove();
  5029. // rowIndex++;
  5030. // }
  5031. //}
  5032. if (dac2.Count == dac3.Count)//国家 币种 金额
  5033. {
  5034. for (int i = 0; i < dac2.Count; i++)
  5035. {
  5036. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  5037. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  5038. }
  5039. }
  5040. int foodandotherStartIndex = 19;//
  5041. decimal dac2totalPrice = 0.00M;
  5042. foreach (var dac in dac2)
  5043. {
  5044. if (dac.SubTotal == 0)
  5045. {
  5046. continue;
  5047. }
  5048. //foodandotherStartIndex = 12;
  5049. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  5050. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  5051. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  5052. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  5053. builder.Write(currency);//币种
  5054. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  5055. builder.Write(dac.Cost.ToString("#0.00"));//标准
  5056. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  5057. builder.Write("");//人数
  5058. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  5059. builder.Write("");//天数
  5060. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  5061. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  5062. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  5063. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  5064. builder.Write(rate.ToString("#0.0000"));//汇率
  5065. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  5066. decimal rbmPrice = rate * dac.SubTotal;
  5067. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  5068. foodandotherStartIndex++;
  5069. dac2totalPrice += rbmPrice;
  5070. }
  5071. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  5072. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  5073. //删除空行
  5074. //if (dac2.Count < foodandotherRows)
  5075. //{
  5076. // while (table2.Rows.Count > dac2.Count)
  5077. // {
  5078. // table2.Rows.RemoveAt(dac2.Count);
  5079. // }
  5080. //}
  5081. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  5082. string otherFeeStr = "";
  5083. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  5084. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  5085. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  5086. if (otherFeeStr.Length > 0)
  5087. {
  5088. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  5089. otherFeeStr = $"({otherFeeStr})";
  5090. dic.Add("OtherFeeStr", otherFeeStr);
  5091. }
  5092. foreach (var key in dic.Keys)
  5093. {
  5094. builder.MoveToBookmark(key);
  5095. builder.Write(dic[key]);
  5096. }
  5097. //模板文件名
  5098. string strFileName = $"省级单位出(境)经费报销单{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  5099. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5100. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5101. return Ok(JsonView(true, "成功", new { Url = url }));
  5102. }
  5103. }
  5104. else if (dto.ExportType == 3)
  5105. {
  5106. if (dto.SubTypeId == 1) //团组成员名单
  5107. {
  5108. if (DeleClientList.Count < 1)
  5109. {
  5110. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  5111. }
  5112. //获取模板
  5113. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  5114. //载入模板
  5115. Document doc = new Document(tempPath);
  5116. DocumentBuilder builder = new DocumentBuilder(doc);
  5117. //获取word里所有表格
  5118. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5119. //获取所填表格的序数
  5120. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5121. var rowStart = tableOne.Rows[0]; //获取第1行
  5122. //循环赋值
  5123. for (int i = 0; i < DeleClientList.Count; i++)
  5124. {
  5125. builder.MoveToCell(0, i + 1, 0, 0);
  5126. builder.Write(DeleClientList[i].Name);
  5127. builder.MoveToCell(0, i + 1, 1, 0);
  5128. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  5129. builder.Write(sex);
  5130. builder.MoveToCell(0, i + 1, 2, 0);
  5131. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  5132. builder.MoveToCell(0, i + 1, 3, 0);
  5133. builder.Write(DeleClientList[i].Company);
  5134. builder.MoveToCell(0, i + 1, 4, 0);
  5135. builder.Write(DeleClientList[i].Job);
  5136. }
  5137. //删除多余行
  5138. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  5139. {
  5140. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  5141. }
  5142. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  5143. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  5144. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  5145. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5146. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5147. return Ok(JsonView(true, "成功", new { Url = url }));
  5148. }
  5149. }
  5150. return Ok(JsonView(false, "操作失败!"));
  5151. }
  5152. catch (Exception ex)
  5153. {
  5154. return Ok(JsonView(false, ex.Message));
  5155. }
  5156. }
  5157. /// <summary>
  5158. /// 获取三公费用标准city
  5159. /// </summary>
  5160. /// <param name="placeData"></param>
  5161. /// <param name="nationalTravelFeeId"></param>
  5162. /// <returns></returns>
  5163. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  5164. {
  5165. string _city = string.Empty;
  5166. if (placeData.Count < 1) return _city;
  5167. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  5168. if (data == null) return _city;
  5169. string country = data.Country;
  5170. string city = data.City;
  5171. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  5172. else _city = city;
  5173. return _city;
  5174. }
  5175. /// <summary>
  5176. /// 团组模块 - 出入境费用 - 明细表导出
  5177. /// </summary>
  5178. /// <returns></returns>
  5179. [HttpPost]
  5180. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5181. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  5182. {
  5183. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  5184. if (data.Code != 0)
  5185. {
  5186. return Ok(JsonView(false, data.Msg));
  5187. }
  5188. return Ok(JsonView(true, data.Msg, data.Data));
  5189. }
  5190. /// <summary>
  5191. /// 团组模块 - 出入境费用 - 一键清空
  5192. /// </summary>
  5193. /// <returns></returns>
  5194. [HttpPost]
  5195. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5196. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  5197. {
  5198. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  5199. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  5200. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  5201. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  5202. if (_view.Code == 0)
  5203. {
  5204. return Ok(JsonView(true, "操作成功"));
  5205. }
  5206. return Ok(JsonView(false, "操作失败"));
  5207. }
  5208. /// <summary>
  5209. /// 团组模块 - 出入境费用 - 子项删除
  5210. /// </summary>
  5211. /// <returns></returns>
  5212. [HttpPost]
  5213. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5214. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  5215. {
  5216. try
  5217. {
  5218. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  5219. if (data.Code != 0)
  5220. {
  5221. return Ok(JsonView(false, data.Msg));
  5222. }
  5223. return Ok(JsonView(true, "操作成功!", data.Data));
  5224. }
  5225. catch (Exception ex)
  5226. {
  5227. return Ok(JsonView(false, ex.Message));
  5228. }
  5229. }
  5230. /// <summary>
  5231. /// 团组模块 - 出入境国家费用标准 List
  5232. /// </summary>
  5233. /// <returns></returns>
  5234. [HttpPost]
  5235. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5236. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5237. {
  5238. try
  5239. {
  5240. Stopwatch sw = new Stopwatch();
  5241. sw.Start();
  5242. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5243. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5244. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5245. Where gntf.Isdel = 0");
  5246. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5247. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5248. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5249. //foreach (var item in nationalTravel)
  5250. //{
  5251. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5252. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5253. // if (otherData != null)
  5254. // {
  5255. // cityData.Remove(otherData);
  5256. // cityData.Add(otherData);
  5257. // }
  5258. // nationalTravelFeeData1.Add(new
  5259. // {
  5260. // Country = item.Country,
  5261. // CityData = cityData
  5262. // });
  5263. //}
  5264. sw.Stop();
  5265. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5266. }
  5267. catch (Exception ex)
  5268. {
  5269. return Ok(JsonView(false, ex.Message));
  5270. throw;
  5271. }
  5272. }
  5273. /// <summary>
  5274. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5275. /// </summary>
  5276. /// <returns></returns>
  5277. [HttpPost]
  5278. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5279. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5280. {
  5281. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5282. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5283. List<string> countryData = new List<string>();
  5284. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5285. countryData = countryData.Distinct().ToList();
  5286. List<dynamic> dataSource = new List<dynamic>();
  5287. foreach (var item in countryData)
  5288. {
  5289. List<string> cityData1 = new List<string>();
  5290. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5291. var countryData2 = new
  5292. {
  5293. CountryName = item,
  5294. CityData = cityData1
  5295. };
  5296. dataSource.Add(countryData2);
  5297. }
  5298. return Ok(JsonView(true, "查询成功!", dataSource));
  5299. }
  5300. /// <summary>
  5301. /// 团组模块 - 出入境国家费用标准 Page List
  5302. /// </summary>
  5303. /// <returns></returns>
  5304. [HttpPost]
  5305. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5306. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5307. {
  5308. int portId = dto.PortType;
  5309. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5310. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5311. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5312. string whereSql = string.Empty;
  5313. if (!string.IsNullOrEmpty(dto.Country))
  5314. {
  5315. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5316. }
  5317. if (!string.IsNullOrEmpty(dto.City))
  5318. {
  5319. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5320. }
  5321. string pageSql = string.Format(@"Select * From (
  5322. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5323. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5324. From Grp_NationalTravelFee gntf
  5325. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5326. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5327. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5328. RefAsync<int> total = 0;
  5329. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5330. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5331. }
  5332. /// <summary>
  5333. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5334. /// </summary>
  5335. /// <returns></returns>
  5336. [HttpPost]
  5337. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5338. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5339. {
  5340. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5341. int portId = dto.PortType;
  5342. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5343. string whereSql = string.Empty;
  5344. if (!string.IsNullOrEmpty(dto.Country))
  5345. {
  5346. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5347. }
  5348. if (!string.IsNullOrEmpty(dto.City))
  5349. {
  5350. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5351. }
  5352. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5353. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5354. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5355. From Grp_NationalTravelFee gntf
  5356. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5357. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5358. Where gntf.Isdel = 0 {0} ", whereSql);
  5359. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5360. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5361. }
  5362. /// <summary>
  5363. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5364. /// </summary>
  5365. /// <returns></returns>
  5366. [HttpPost]
  5367. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5368. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5369. {
  5370. try
  5371. {
  5372. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5373. if (data.Code != 0)
  5374. {
  5375. return Ok(JsonView(false, data.Msg));
  5376. }
  5377. return Ok(JsonView(true, "操作成功!", data.Data));
  5378. }
  5379. catch (Exception ex)
  5380. {
  5381. return Ok(JsonView(false, ex.Message));
  5382. }
  5383. }
  5384. /// <summary>
  5385. /// 团组模块 - 出入境国家费用标准 - Del
  5386. /// </summary>
  5387. /// <returns></returns>
  5388. [HttpPost]
  5389. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5390. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5391. {
  5392. try
  5393. {
  5394. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5395. {
  5396. Id = dto.Id,
  5397. DeleteUserId = dto.DeleteUserId,
  5398. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5399. IsDel = 1
  5400. };
  5401. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5402. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5403. .WhereColumns(it => new { it.Id })
  5404. .ExecuteCommandAsync();
  5405. if (delStatus <= 0)
  5406. {
  5407. return Ok(JsonView(false, "删除失败!"));
  5408. }
  5409. return Ok(JsonView(true, "操作成功!"));
  5410. }
  5411. catch (Exception ex)
  5412. {
  5413. return Ok(JsonView(false, ex.Message));
  5414. }
  5415. }
  5416. #endregion
  5417. #region 签证费用录入
  5418. /// <summary>
  5419. /// 根据diid查询签证费用列表
  5420. /// </summary>
  5421. /// <param name="dto"></param>
  5422. /// <returns></returns>
  5423. [HttpPost]
  5424. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5425. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5426. {
  5427. try
  5428. {
  5429. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5430. if (groupData.Code != 0)
  5431. {
  5432. return Ok(JsonView(false, groupData.Msg));
  5433. }
  5434. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5435. }
  5436. catch (Exception ex)
  5437. {
  5438. return Ok(JsonView(false, ex.Message));
  5439. }
  5440. }
  5441. /// <summary>
  5442. /// 根据签证费用Id查询单条数据及c表数据
  5443. /// </summary>
  5444. /// <param name="dto"></param>
  5445. /// <returns></returns>
  5446. [HttpPost]
  5447. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5448. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5449. {
  5450. try
  5451. {
  5452. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5453. if (groupData.Code != 0)
  5454. {
  5455. return Ok(JsonView(false, groupData.Msg));
  5456. }
  5457. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5458. }
  5459. catch (Exception ex)
  5460. {
  5461. return Ok(JsonView(false, ex.Message));
  5462. }
  5463. }
  5464. /// <summary>
  5465. /// 签证费用删除
  5466. /// </summary>
  5467. /// <param name="dto"></param>
  5468. /// <returns></returns>
  5469. [HttpPost]
  5470. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5471. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5472. {
  5473. _sqlSugar.BeginTran();
  5474. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5475. if (!res)
  5476. {
  5477. _sqlSugar.RollbackTran();
  5478. return Ok(JsonView(false, "删除失败"));
  5479. }
  5480. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5481. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5482. .SetColumns(a => new Grp_CreditCardPayment()
  5483. {
  5484. IsDel = 1,
  5485. DeleteUserId = dto.DeleteUserId,
  5486. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5487. }).ExecuteCommand();
  5488. if (resSub < 1)
  5489. {
  5490. _sqlSugar.RollbackTran();
  5491. return Ok(JsonView(false, "删除失败"));
  5492. }
  5493. _sqlSugar.CommitTran();
  5494. return Ok(JsonView(true, "删除成功!"));
  5495. }
  5496. /// <summary>
  5497. /// 签证费用录入下拉框初始化
  5498. /// </summary>
  5499. /// <returns></returns>
  5500. [HttpPost]
  5501. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5502. public async Task<IActionResult> VisaPriceAddSelect()
  5503. {
  5504. try
  5505. {
  5506. //支付方式
  5507. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5508. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5509. //币种
  5510. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5511. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5512. //乘客类型
  5513. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5514. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5515. //卡类型
  5516. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5517. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5518. var data = new
  5519. {
  5520. Payment = _Payment,
  5521. CurrencyList = _CurrencyList,
  5522. PassengerType = _PassengerType,
  5523. BankCard = _BankCard
  5524. };
  5525. return Ok(JsonView(true, "查询成功!", data));
  5526. }
  5527. catch (Exception ex)
  5528. {
  5529. return Ok(JsonView(false, "程序错误!"));
  5530. throw;
  5531. }
  5532. }
  5533. /// <summary>
  5534. /// 签证费用录入操作(Status:1.新增,2.修改)
  5535. /// </summary>
  5536. /// <param name="dto"></param>
  5537. /// <returns></returns>
  5538. [HttpPost]
  5539. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5540. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5541. {
  5542. try
  5543. {
  5544. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5545. if (groupData.Code != 0)
  5546. {
  5547. return Ok(JsonView(false, groupData.Msg));
  5548. }
  5549. #region 应用推送
  5550. try
  5551. {
  5552. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5553. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5554. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5555. }
  5556. catch (Exception ex)
  5557. {
  5558. }
  5559. #endregion
  5560. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5561. }
  5562. catch (Exception ex)
  5563. {
  5564. return Ok(JsonView(false, ex.Message));
  5565. }
  5566. }
  5567. #endregion
  5568. #region 签证提成录入
  5569. /// <summary>
  5570. /// 签证提成录入
  5571. /// 基础数据
  5572. /// </summary>
  5573. /// <param name="_dto"></param>
  5574. /// <returns></returns>
  5575. [HttpGet]
  5576. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5577. public async Task<IActionResult> VisaCommissionInit()
  5578. {
  5579. return Ok(await _visaCommissionRep.Init());
  5580. }
  5581. /// <summary>
  5582. /// 签证提成录入
  5583. /// Item
  5584. /// </summary>
  5585. /// <param name="_dto"></param>
  5586. /// <returns></returns>
  5587. [HttpPost]
  5588. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5589. public async Task<IActionResult> VisaCommissionItem(VisaCommissionItemDto _dto)
  5590. {
  5591. var validator = new VisaCommissionItemDtoValidator();
  5592. var validatorRes = await validator.ValidateAsync(_dto);
  5593. if (!validatorRes.IsValid)
  5594. {
  5595. StringBuilder sb = new StringBuilder();
  5596. foreach (var item in validatorRes.Errors)
  5597. {
  5598. sb.AppendLine(item.ErrorMessage);
  5599. }
  5600. return Ok(JsonView(false, sb.ToString()));
  5601. }
  5602. return Ok(await _visaCommissionRep.Item(_dto));
  5603. }
  5604. /// <summary>
  5605. /// 签证提成录入
  5606. /// Save
  5607. /// </summary>
  5608. /// <param name="_dto"></param>
  5609. /// <returns></returns>
  5610. [HttpPost]
  5611. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5612. public async Task<IActionResult> VisaCommissionSave(VisaCommissionSaveDto _dto)
  5613. {
  5614. //参数验证
  5615. if (_dto.Items.Length < 1) return Ok(JsonView(false, "请输入有效的请求!"));
  5616. foreach (var item in _dto.Items)
  5617. {
  5618. if (item.CurrUserId < 1) return Ok(JsonView(false, "请输入有效的CurrUserId!"));
  5619. if (item.DiId < 1) return Ok(JsonView(false, "请输入有效的DiId!"));
  5620. if (string.IsNullOrEmpty( item.Country) ) return Ok(JsonView(false, "国家为空!"));
  5621. if (item.Quantity < 1) return Ok(JsonView(false, "请输入有效的Qauntity!"));
  5622. }
  5623. return Ok(await _visaCommissionRep.Save(_dto));
  5624. }
  5625. /// <summary>
  5626. /// 签证提成录入
  5627. /// Create
  5628. /// </summary>
  5629. /// <param name="_dto"></param>
  5630. /// <returns></returns>
  5631. [HttpPost]
  5632. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5633. public async Task<IActionResult> VisaCommissionCreate(VisaCommissionCreateDto _dto)
  5634. {
  5635. var validator = new VisaCommissionCreateDtoValidator();
  5636. var validatorRes = await validator.ValidateAsync(_dto);
  5637. if (!validatorRes.IsValid)
  5638. {
  5639. StringBuilder sb = new StringBuilder();
  5640. foreach (var item in validatorRes.Errors)
  5641. {
  5642. sb.AppendLine(item.ErrorMessage);
  5643. }
  5644. return Ok(JsonView(false, sb.ToString()));
  5645. }
  5646. return Ok(await _visaCommissionRep.Create(_dto));
  5647. }
  5648. /// <summary>
  5649. /// 签证提成录入
  5650. /// Put(编辑)
  5651. /// </summary>
  5652. /// <param name="id"></param>
  5653. /// <param name="_dto"></param>
  5654. /// <returns></returns>
  5655. [HttpPut]
  5656. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5657. public async Task<IActionResult> VisaCommissionEdit(int id,VisaCommissionCreateDto _dto)
  5658. {
  5659. if (id < 1) return Ok(JsonView(false, "请输入正确的id参数!"));
  5660. var validator = new VisaCommissionCreateDtoValidator();
  5661. var validatorRes = await validator.ValidateAsync(_dto);
  5662. if (!validatorRes.IsValid)
  5663. {
  5664. StringBuilder sb = new StringBuilder();
  5665. foreach (var item in validatorRes.Errors)
  5666. {
  5667. sb.AppendLine(item.ErrorMessage);
  5668. }
  5669. return Ok(JsonView(false, sb.ToString()));
  5670. }
  5671. return Ok(await _visaCommissionRep.Edit(id,_dto));
  5672. }
  5673. /// <summary>
  5674. /// 签证提成录入
  5675. /// Del
  5676. /// </summary>
  5677. /// <param name="id"></param>
  5678. /// <param name="currUserId"></param>
  5679. /// <returns></returns>
  5680. [HttpPost]
  5681. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5682. public async Task<IActionResult> VisaCommissionDel(int id,int currUserId)
  5683. {
  5684. if (id < 1) return Ok(JsonView(false, "请输入正确的id参数!"));
  5685. if (currUserId < 1) return Ok(JsonView(false, "请输入正确的currUserId参数!"));
  5686. return Ok(await _visaCommissionRep.Del(id, currUserId));
  5687. }
  5688. #endregion
  5689. #region op费用录入
  5690. /// <summary>
  5691. /// 根据diid查询op费用列表
  5692. /// </summary>
  5693. /// <param name="dto"></param>
  5694. /// <returns></returns>
  5695. [HttpPost]
  5696. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5697. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5698. {
  5699. try
  5700. {
  5701. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5702. if (groupData.Code != 0)
  5703. {
  5704. return Ok(JsonView(false, groupData.Msg));
  5705. }
  5706. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5707. }
  5708. catch (Exception ex)
  5709. {
  5710. return Ok(JsonView(false, ex.Message));
  5711. }
  5712. }
  5713. /// <summary>
  5714. /// 根据op费用Id查询单条数据及c表数据
  5715. /// </summary>
  5716. /// <param name="dto"></param>
  5717. /// <returns></returns>
  5718. [HttpPost]
  5719. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5720. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5721. {
  5722. try
  5723. {
  5724. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5725. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5726. var data = new
  5727. {
  5728. CarTouristGuideGround = _groupData,
  5729. CreditCardPayment = _creditCardPayment
  5730. };
  5731. return Ok(JsonView(true, "查询成功!", data));
  5732. }
  5733. catch (Exception ex)
  5734. {
  5735. return Ok(JsonView(false, "程序错误!"));
  5736. }
  5737. }
  5738. /// <summary>
  5739. /// op费用删除
  5740. /// </summary>
  5741. /// <param name="dto"></param>
  5742. /// <returns></returns>
  5743. [HttpPost]
  5744. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5745. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5746. {
  5747. try
  5748. {
  5749. _sqlSugar.BeginTran();
  5750. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5751. if (!res)
  5752. {
  5753. return Ok(JsonView(false, "删除失败"));
  5754. }
  5755. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5756. {
  5757. IsDel = 1,
  5758. DeleteUserId = dto.DeleteUserId,
  5759. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5760. }).ExecuteCommandAsync();
  5761. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5762. {
  5763. IsDel = 1,
  5764. DeleteUserId = dto.DeleteUserId,
  5765. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5766. }).ExecuteCommandAsync();
  5767. #region 删除超支相关数据
  5768. //删除导入的超支数据
  5769. var ids = _sqlSugar.Queryable<Fin_LocalGuideRelevancyOverspend>().Where(x => x.LocalGuideId == dto.Id && x.IsDel == 0).Select(x => x.OverspendId).ToList();
  5770. var count = _sqlSugar.Updateable<Fin_GroupExtraCost>().Where(x => ids.Contains(x.Id) && x.IsDel == 0).SetColumns(x => new Fin_GroupExtraCost
  5771. {
  5772. IsDel = 1,
  5773. DeleteUserId = dto.DeleteUserId,
  5774. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5775. }).ExecuteCommand();
  5776. count = _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(x => x.CTable == 1015 && x.IsDel == 0 && ids.Contains(x.CId)).SetColumns(x => new Grp_CreditCardPayment
  5777. {
  5778. IsDel = 1,
  5779. DeleteUserId = dto.DeleteUserId,
  5780. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5781. }).ExecuteCommand() ;
  5782. count = _sqlSugar.Updateable<Fin_LocalGuideRelevancyOverspend>().Where(x=>x.IsDel == 0 && x.LocalGuideId == dto.Id).SetColumns(x => new Fin_LocalGuideRelevancyOverspend
  5783. {
  5784. IsDel = 1,
  5785. DeleteUserId = dto.DeleteUserId,
  5786. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5787. }).ExecuteCommand();
  5788. #endregion
  5789. _sqlSugar.CommitTran();
  5790. return Ok(JsonView(true, "删除成功!"));
  5791. }
  5792. catch (Exception ex)
  5793. {
  5794. _sqlSugar.RollbackTran();
  5795. return Ok(JsonView(false, "程序错误!" + ex.Message));
  5796. }
  5797. }
  5798. /// <summary>
  5799. /// op费用录入操作(Status:1.新增,2.修改)
  5800. /// </summary>
  5801. /// <param name="dto"></param>
  5802. /// <returns></returns>
  5803. [HttpPost]
  5804. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5805. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5806. {
  5807. try
  5808. {
  5809. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5810. if (groupData.Code != 0)
  5811. {
  5812. return Ok(JsonView(false, groupData.Msg));
  5813. }
  5814. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5815. }
  5816. catch (Exception ex)
  5817. {
  5818. return Ok(JsonView(false, ex.Message));
  5819. }
  5820. }
  5821. /// <summary>
  5822. /// 填写费用详细页面初始化绑定
  5823. /// </summary>
  5824. /// <param name="dto"></param>
  5825. /// <returns></returns>
  5826. [HttpPost]
  5827. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5828. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5829. {
  5830. try
  5831. {
  5832. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5833. if (groupData.Code != 0)
  5834. {
  5835. return Ok(JsonView(false, groupData.Msg));
  5836. }
  5837. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5838. }
  5839. catch (Exception ex)
  5840. {
  5841. return Ok(JsonView(false, ex.Message));
  5842. }
  5843. }
  5844. /// <summary>
  5845. /// 根据op费用Id查询详细数据
  5846. /// </summary>
  5847. /// <param name="dto"></param>
  5848. /// <returns></returns>
  5849. [HttpPost]
  5850. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5851. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5852. {
  5853. try
  5854. {
  5855. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5856. if (groupData.Code != 0)
  5857. {
  5858. return Ok(JsonView(false, groupData.Msg));
  5859. }
  5860. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5861. }
  5862. catch (Exception ex)
  5863. {
  5864. return Ok(JsonView(false, ex.Message));
  5865. }
  5866. }
  5867. /// <summary>
  5868. /// OP费用录入填写详情
  5869. /// </summary>
  5870. /// <param name="dto"></param>
  5871. /// <returns></returns>
  5872. [HttpPost]
  5873. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5874. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5875. {
  5876. try
  5877. {
  5878. #region 参数校验
  5879. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5880. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5881. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5882. #endregion
  5883. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5884. if (groupData.Code != 0)
  5885. {
  5886. return Ok(JsonView(false, groupData.Msg));
  5887. }
  5888. //自动审核
  5889. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5890. #region 应用推送
  5891. try
  5892. {
  5893. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5894. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5895. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5896. }
  5897. catch (Exception ex)
  5898. {
  5899. }
  5900. #endregion
  5901. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5902. }
  5903. catch (Exception ex)
  5904. {
  5905. return Ok(JsonView(false, ex.Message));
  5906. }
  5907. }
  5908. /// <summary>
  5909. /// 获取三公详细所有城市
  5910. /// </summary>
  5911. /// <returns></returns>
  5912. [HttpGet]
  5913. public IActionResult OpCarCityResult()
  5914. {
  5915. var jw = JsonView(false);
  5916. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5917. {
  5918. x.Id,
  5919. x.Country,
  5920. x.City,
  5921. }).ToList();
  5922. if (data.Count > 0)
  5923. {
  5924. jw = JsonView(true, "获取成功!", data);
  5925. }
  5926. else
  5927. {
  5928. jw.Msg = "城市数据为空!";
  5929. jw.Data = new string[0];
  5930. }
  5931. return Ok(jw);
  5932. }
  5933. /// <summary>
  5934. /// 导出地接费用明细
  5935. /// </summary>
  5936. /// <param name="dto"></param>
  5937. /// <returns></returns>
  5938. [HttpPost]
  5939. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5940. {
  5941. var jw = JsonView(false);
  5942. if (dto.Diid < 1)
  5943. {
  5944. jw.Msg = "请输入正确的diid!";
  5945. return Ok(jw);
  5946. }
  5947. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5948. if (group == null)
  5949. {
  5950. jw.Msg = "未找到团组信息!";
  5951. return Ok(jw);
  5952. }
  5953. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5954. if (localGuideArr.Count == 0)
  5955. {
  5956. jw.Msg = "该团组暂无地接信息!";
  5957. return Ok(jw);
  5958. }
  5959. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5960. var overspendSoure = new Dictionary<int, int>
  5961. {
  5962. { 91, 982 }, //车
  5963. { 92 , 1059} ,//导游
  5964. { 994 , 1073}, //翻译
  5965. { 988 , 1074 }, //早餐
  5966. { 93 , 1075 }, //午餐
  5967. { 989 , 1076 }, //晚餐
  5968. };
  5969. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5970. foreach (var groupArr in localGroup)
  5971. {
  5972. var keyValue = groupArr.Key;
  5973. if (int.TryParse(keyValue, out int cityid))
  5974. {
  5975. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5976. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5977. }
  5978. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5979. foreach (var item in groupArr)
  5980. {
  5981. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5982. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5983. new Grp_CarTouristGuideGroundReservationsContentExtend
  5984. {
  5985. Count = a.Count,
  5986. CreateTime = a.CreateTime,
  5987. CreateUserId = a.CreateUserId,
  5988. CTGGRId = a.CTGGRId,
  5989. Currency = a.Currency,
  5990. DatePrice = a.DatePrice,
  5991. DeleteTime = a.DeleteTime,
  5992. DeleteUserId = a.DeleteUserId,
  5993. DiId = a.DiId,
  5994. Id = a.Id,
  5995. IsDel = a.IsDel,
  5996. Price = a.Price,
  5997. PriceContent = a.PriceContent,
  5998. Remark = a.Remark,
  5999. SId = a.SId,
  6000. SidName = b.Name,
  6001. Units = a.Units,
  6002. }
  6003. ).ToList();
  6004. if (content.Count > 0)
  6005. {
  6006. contentArr.Add(content);
  6007. }
  6008. }
  6009. //open excel
  6010. //set excel
  6011. //save excel
  6012. try
  6013. {
  6014. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  6015. IWorkbook workbook;
  6016. if (Path.GetExtension(filePath).ToLower() == ".xls")
  6017. {
  6018. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  6019. }
  6020. else
  6021. {
  6022. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  6023. }
  6024. ISheet sheet = workbook.GetSheetAt(0);
  6025. var rowStartIndex = 2;
  6026. var clounmCount = 10;
  6027. var initStyleRow = sheet.GetRow(2);
  6028. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  6029. //var overspendArrDetail =
  6030. var existsId = new List<CarCompare>();
  6031. var lastElem = arr.Last();
  6032. var thisSid = -1;
  6033. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  6034. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  6035. {
  6036. Name = "未知币种!",
  6037. Remark = "未知币种!",
  6038. };
  6039. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  6040. Action cloneRowFn = () =>
  6041. {
  6042. rowStartIndex++;
  6043. var cloneRow = sheet.CreateRow(rowStartIndex);
  6044. // 复制样式
  6045. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  6046. {
  6047. ICell sourceCell = initStyleRow.GetCell(i);
  6048. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  6049. // 确保单元格存在样式
  6050. if (sourceCell.CellStyle != null)
  6051. {
  6052. targetCell.CellStyle = sourceCell.CellStyle;
  6053. }
  6054. }
  6055. };
  6056. var mergeRow = () =>
  6057. {
  6058. for (int i = 2; i < sheet.LastRowNum; i++)
  6059. {
  6060. var row = sheet.GetRow(i);
  6061. var cellFirst = row.GetCell(0);
  6062. var thisIndex = i + 1;
  6063. while (thisIndex < sheet.LastRowNum)
  6064. {
  6065. var nextRow = sheet.GetRow(thisIndex);
  6066. var nextCellFirst = nextRow.GetCell(0);
  6067. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  6068. {
  6069. thisIndex++;
  6070. }
  6071. else
  6072. {
  6073. break;
  6074. }
  6075. }
  6076. thisIndex--;
  6077. if (thisIndex != i)
  6078. {
  6079. //合并row
  6080. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6081. i, // 起始行索引(0-based)
  6082. thisIndex, // 结束行索引(0-based)
  6083. 0, // 起始列索引(0-based)
  6084. 0 // 结束列索引(0-based)
  6085. );
  6086. sheet.AddMergedRegion(cellRangeAddress);
  6087. i = thisIndex;
  6088. }
  6089. }
  6090. };
  6091. var chaoshiNumber = 0;
  6092. var totalNumber = 0.00M;
  6093. string lastStr = "";
  6094. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  6095. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  6096. {
  6097. b.IsAuditGM,
  6098. x.Id,
  6099. x.Area,
  6100. b.PayPercentage,
  6101. b.PayMoney,
  6102. }).ToList();
  6103. string yesPayment = "", noPayment = "";
  6104. foreach (var item in queryCarArrByCityAndDiid)
  6105. {
  6106. if (item.IsAuditGM == 1)
  6107. {
  6108. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  6109. }
  6110. else
  6111. {
  6112. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  6113. }
  6114. }
  6115. lastStr = yesPayment + noPayment;
  6116. foreach (var item in arr)
  6117. {
  6118. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  6119. {
  6120. if (thisSid != item.SId)
  6121. {
  6122. if (thisSid == -1)
  6123. {
  6124. thisSid = item.SId;
  6125. }
  6126. else
  6127. {
  6128. //合并小计行
  6129. //创建合并区域的实例
  6130. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6131. rowStartIndex, // 起始行索引(0-based)
  6132. rowStartIndex, // 结束行索引(0-based)
  6133. 0, // 起始列索引(0-based)
  6134. 3 // 结束列索引(0-based)
  6135. );
  6136. sheet.AddMergedRegion(cellRangeAddress);
  6137. var CellStyle = workbook.CreateCellStyle();
  6138. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6139. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  6140. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  6141. for (int i = 0; i <= clounmCount; i++)
  6142. {
  6143. if (i > 6)
  6144. {
  6145. var CellStyle1 = workbook.CreateCellStyle();
  6146. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6147. IFont Font = workbook.CreateFont(); // 创建字体
  6148. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  6149. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6150. CellStyle1.SetFont(Font);
  6151. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  6152. }
  6153. else
  6154. {
  6155. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6156. }
  6157. }
  6158. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6159. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6160. //超时合计
  6161. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6162. //超时数
  6163. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6164. //超时合计费用
  6165. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6166. thisSid = item.SId;
  6167. cloneRowFn();
  6168. chaoshiNumber = 0;
  6169. totalNumber = 0;
  6170. }
  6171. }
  6172. IRow row = sheet.GetRow(rowStartIndex);
  6173. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6174. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  6175. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  6176. if (isOpenOverspendSoure)
  6177. {
  6178. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6179. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  6180. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  6181. }
  6182. for (int i = 0; i <= clounmCount; i++)
  6183. {
  6184. var cell = row.GetCell(i);
  6185. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  6186. if (cell == null)
  6187. {
  6188. cell = row.CreateCell(i);
  6189. }
  6190. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  6191. fontRed.CloneStyleFrom(cell.CellStyle);
  6192. IFont Font = workbook.CreateFont(); // 创建字体
  6193. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  6194. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6195. fontRed.SetFont(Font);
  6196. byte[] rgb = new byte[3] { 255, 242, 204 };
  6197. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  6198. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  6199. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  6200. if (workbook is XSSFWorkbook)
  6201. {
  6202. BackgroundColor255_242_204.FillForegroundColor = 0;
  6203. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  6204. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  6205. }
  6206. else
  6207. {
  6208. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  6209. }
  6210. if (i == 1 || i > 6)
  6211. {
  6212. if (i > 6)
  6213. {
  6214. fontRed.FillForegroundColor = 0;
  6215. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  6216. fontRed.FillPattern = FillPattern.SolidForeground;
  6217. }
  6218. cell.CellStyle = fontRed;
  6219. }
  6220. if (i > 2 && i < 7)
  6221. {
  6222. cell.CellStyle = BackgroundColor255_242_204;
  6223. }
  6224. cell.SetCellValue(setCellValue); //写入单元格
  6225. }
  6226. if (overspendSoure.ContainsKey(thisSid))
  6227. {
  6228. var overspendId = overspendSoure[thisSid];
  6229. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6230. }
  6231. cloneRowFn();
  6232. existsId.Add(new CarCompare
  6233. {
  6234. DataPrice = item.DatePrice.ObjToDate(),
  6235. Sid = item.SId
  6236. });
  6237. }
  6238. if (item.Equals(lastElem))
  6239. {
  6240. //合并小计行
  6241. //创建合并区域的实例
  6242. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6243. rowStartIndex, // 起始行索引(0-based)
  6244. rowStartIndex, // 结束行索引(0-based)
  6245. 0, // 起始列索引(0-based)
  6246. 3 // 结束列索引(0-based)
  6247. );
  6248. sheet.AddMergedRegion(cellRangeAddress);
  6249. var CellStyle = workbook.CreateCellStyle();
  6250. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6251. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  6252. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  6253. for (int i = 0; i <= clounmCount; i++)
  6254. {
  6255. if (i > 6)
  6256. {
  6257. var CellStyle1 = workbook.CreateCellStyle();
  6258. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6259. IFont Font = workbook.CreateFont(); // 创建字体
  6260. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  6261. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6262. CellStyle1.SetFont(Font);
  6263. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  6264. }
  6265. else
  6266. {
  6267. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6268. }
  6269. }
  6270. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6271. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6272. //超时合计
  6273. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6274. //超时数
  6275. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6276. //超时合计费用
  6277. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6278. cloneRowFn();
  6279. // 创建合并区域的实例
  6280. cellRangeAddress = new CellRangeAddress(
  6281. rowStartIndex, // 起始行索引(0-based)
  6282. rowStartIndex, // 结束行索引(0-based)
  6283. 0, // 起始列索引(0-based)
  6284. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  6285. );
  6286. // 添加合并区域
  6287. sheet.AddMergedRegion(cellRangeAddress);
  6288. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  6289. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  6290. }
  6291. }
  6292. mergeRow();
  6293. // 保存修改后的Excel文件到新文件
  6294. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  6295. // new FileStream(newFilePath, FileMode.CreateNew)
  6296. using (var stream = new MemoryStream())
  6297. {
  6298. workbook.Write(stream, true);
  6299. stream.Flush();
  6300. stream.Seek(0, SeekOrigin.Begin);
  6301. MemoryStream memoryStream = new MemoryStream();
  6302. stream.CopyTo(memoryStream);
  6303. memoryStream.Seek(0, SeekOrigin.Begin);
  6304. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  6305. }
  6306. workbook.Close();
  6307. workbook.Dispose();
  6308. }
  6309. catch (Exception ex)
  6310. {
  6311. jw.Msg = "出现异常!" + ex.Message;
  6312. return Ok(jw);
  6313. }
  6314. }
  6315. if (Zips.Count > 0)
  6316. {
  6317. IOOperatorHelper io = new IOOperatorHelper();
  6318. var byts = io.ConvertZipStream(Zips);
  6319. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  6320. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  6321. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  6322. }
  6323. else
  6324. {
  6325. jw.Msg = "暂无生成文件!";
  6326. }
  6327. return Ok(jw);
  6328. }
  6329. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  6330. {
  6331. string outStr = string.Empty;
  6332. switch (i)
  6333. {
  6334. case 0:
  6335. outStr = arr[0].SidName;
  6336. break;
  6337. case 1:
  6338. outStr = arr[0].DataPriceStr;
  6339. break;
  6340. case 2:
  6341. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  6342. break;
  6343. case 4:
  6344. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  6345. break;
  6346. case 7:
  6347. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6348. {
  6349. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  6350. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  6351. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  6352. }
  6353. break;
  6354. case 8:
  6355. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6356. {
  6357. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  6358. }
  6359. break;
  6360. case 9:
  6361. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6362. {
  6363. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  6364. }
  6365. break;
  6366. case 10:
  6367. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6368. {
  6369. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6370. }
  6371. break;
  6372. }
  6373. return outStr;
  6374. }
  6375. #region OP行程单
  6376. /// <summary>
  6377. /// OP行程单初始化
  6378. /// </summary>
  6379. /// <param name="dto"></param>
  6380. /// <returns></returns>
  6381. [HttpPost]
  6382. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6383. {
  6384. var jw = JsonView(false);
  6385. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6386. var group = groupList.First();
  6387. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6388. if (group == null)
  6389. {
  6390. jw.Msg = "暂无团组!";
  6391. return Ok(jw);
  6392. }
  6393. group = groupList.Find(x => x.Id == diid);
  6394. if (group == null)
  6395. {
  6396. jw.Msg = "请输入正确的团组ID!";
  6397. return Ok(jw);
  6398. }
  6399. string city = string.Empty;
  6400. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6401. if (blackCode.Count > 0)
  6402. {
  6403. var black = blackCode.First();
  6404. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6405. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6406. if (blackSp.Length > 0)
  6407. {
  6408. try
  6409. {
  6410. var cityArrCode = new List<string>(20);
  6411. foreach (var item in blackSp)
  6412. {
  6413. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6414. var IndexSelect = itemSp[2];
  6415. var cityArrCodeLength = cityArrCode.Count - 1;
  6416. var startCity = IndexSelect.Substring(0, 3);
  6417. if (cityArrCodeLength > 0)
  6418. {
  6419. var arrEndCity = cityArrCode[cityArrCodeLength];
  6420. if (arrEndCity != startCity)
  6421. {
  6422. cityArrCode.Add(startCity.ToUpper());
  6423. }
  6424. }
  6425. else
  6426. {
  6427. cityArrCode.Add(startCity.ToUpper());
  6428. }
  6429. var endCity = IndexSelect.Substring(3, 3);
  6430. cityArrCode.Add(endCity.ToUpper());
  6431. }
  6432. var cityThree = string.Empty;
  6433. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6434. cityThree = cityThree.TrimEnd(',');
  6435. if (string.IsNullOrWhiteSpace(cityThree))
  6436. {
  6437. throw new
  6438. Exception("error");
  6439. }
  6440. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6441. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6442. foreach (var item in cityArrCode)
  6443. {
  6444. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6445. if (find != null)
  6446. {
  6447. city += find.City + "/";
  6448. }
  6449. else
  6450. {
  6451. city += item + "三字码未收入/";
  6452. }
  6453. }
  6454. city = city.TrimEnd('/');
  6455. }
  6456. catch (Exception e)
  6457. {
  6458. city = "黑屏代码格式不正确!";
  6459. }
  6460. }
  6461. }
  6462. else
  6463. {
  6464. city = "未录入黑屏代码";
  6465. }
  6466. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6467. {
  6468. Date = x.Date,
  6469. Days = x.Days,
  6470. Diffgroup = x.Diffgroup,
  6471. Diid = x.Diid,
  6472. Traffic_First = x.Traffic_First,
  6473. Traffic_Second = x.Traffic_Second,
  6474. Trip = x.Trip,
  6475. WeekDay = x.WeekDay,
  6476. Id = x.Id
  6477. }).ToList();
  6478. jw.Data = new
  6479. {
  6480. groupList = groupList.Select(x => new
  6481. {
  6482. x.Id,
  6483. x.TeamName,
  6484. x.TourCode
  6485. }).ToList(),
  6486. groupInfo = new
  6487. {
  6488. group.VisitDays,
  6489. group.TourCode,
  6490. group.VisitPNumber,
  6491. group.TeamName,
  6492. city
  6493. },
  6494. OpTravelList
  6495. };
  6496. jw.Code = 200;
  6497. jw.Msg = "操作成功!";
  6498. return Ok(jw);
  6499. }
  6500. /// <summary>
  6501. /// 删除团组行程单
  6502. /// </summary>
  6503. /// <returns></returns>
  6504. [HttpPost]
  6505. public IActionResult DelTravel(DelOpTravelDto dto)
  6506. {
  6507. var jw = JsonView(false);
  6508. if (dto.UserId <= 0 || dto.Diid <= 0)
  6509. {
  6510. jw.Msg = "请输入正确的参数!";
  6511. return Ok(jw);
  6512. }
  6513. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6514. .SetColumns(x => new Grp_TravelList
  6515. {
  6516. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6517. DeleteUserId = dto.UserId,
  6518. IsDel = 1,
  6519. }).ExecuteCommand();
  6520. jw = JsonView(true);
  6521. return Ok(jw);
  6522. }
  6523. /// <summary>
  6524. /// 行程单保存
  6525. /// </summary>
  6526. /// <returns></returns>
  6527. [HttpPost]
  6528. public IActionResult TravelSave(TravelSaveDto dto)
  6529. {
  6530. var jw = JsonView(false);
  6531. if (dto.Arr.Count > 0)
  6532. {
  6533. try
  6534. {
  6535. _sqlSugar.BeginTran();
  6536. foreach (var item in dto.Arr)
  6537. {
  6538. if (item.Id == 0)
  6539. {
  6540. throw new Exception("请传入正确的Id");
  6541. }
  6542. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6543. .SetColumns(x => new Grp_TravelList
  6544. {
  6545. Trip = item.Trip
  6546. }).ExecuteCommand();
  6547. }
  6548. _sqlSugar.CommitTran();
  6549. jw = JsonView(true);
  6550. }
  6551. catch (Exception ex)
  6552. {
  6553. _sqlSugar.RollbackTran();
  6554. jw.Msg = "程序异常!" + ex.Message;
  6555. }
  6556. }
  6557. else
  6558. {
  6559. jw.Msg = "请传入正确的参数!";
  6560. }
  6561. return Ok(jw);
  6562. }
  6563. /// <summary>
  6564. /// 导出行程单
  6565. /// </summary>
  6566. /// <param name="dto"></param>
  6567. /// <returns></returns>
  6568. [HttpPost]
  6569. public IActionResult ExportTravel(ExportTravelDto dto)
  6570. {
  6571. var jw = JsonView(false);
  6572. jw.Data = "";
  6573. int diid = 0;
  6574. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6575. if (Find == null)
  6576. {
  6577. jw.Msg = "请选择正确的团组!";
  6578. return Ok(jw);
  6579. }
  6580. else
  6581. {
  6582. diid = Find.Id;
  6583. }
  6584. //数据源
  6585. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6586. DataTable dtBlack = null;
  6587. try
  6588. {
  6589. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6590. }
  6591. catch (Exception)
  6592. {
  6593. jw.Msg = "机票黑屏代码有误!";
  6594. return Ok(jw);
  6595. }
  6596. string CityStr = string.Empty;
  6597. if (dtBlack.Rows.Count == 0)
  6598. {
  6599. jw.Msg = "机票黑屏代码有误!";
  6600. return Ok(jw);
  6601. }
  6602. else
  6603. {
  6604. foreach (DataRow row in dtBlack.Rows)
  6605. {
  6606. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6607. {
  6608. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6609. return Ok(jw);
  6610. }
  6611. }
  6612. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6613. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6614. }
  6615. //创建数据源Table
  6616. DataTable dtSource = new DataTable();
  6617. dtSource.Columns.Add("Days", typeof(string));
  6618. dtSource.Columns.Add("Date", typeof(string));
  6619. dtSource.Columns.Add("Week", typeof(string));
  6620. dtSource.Columns.Add("Traffic", typeof(string));
  6621. dtSource.Columns.Add("Trip", typeof(string));
  6622. //获取数据,放到datatable
  6623. foreach (var item in _travelList)
  6624. {
  6625. DataRow dr = dtSource.NewRow();
  6626. dr["Days"] = item.Days;
  6627. dr["Date"] = item.Date;
  6628. dr["Week"] = item.WeekDay;
  6629. dr["Traffic"] = item.Traffic_First
  6630. + "\r\n"
  6631. + item.Traffic_Second;
  6632. dr["Trip"] = item.Trip;
  6633. dtSource.Rows.Add(dr);
  6634. }
  6635. Dictionary<string, string> dic = new Dictionary<string, string>();
  6636. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6637. dic.Add("City", CityStr);
  6638. dic.Add("Days", Find.VisitDays.ToString());
  6639. dic.Add("DeleCode", Find.TourCode);
  6640. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6641. //模板路径
  6642. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6643. //载入模板
  6644. Document doc = null;
  6645. DocumentBuilder builder = null;
  6646. try
  6647. {
  6648. //载入模板
  6649. doc = new Document(tempPath);
  6650. builder = new DocumentBuilder(doc);
  6651. }
  6652. catch (Exception)
  6653. {
  6654. jw.Msg = "模板位置不存在!";
  6655. return Ok(jw);
  6656. }
  6657. foreach (var key in dic.Keys)
  6658. {
  6659. Bookmark bookmark = doc.Range.Bookmarks[key];
  6660. if (bookmark != null)
  6661. {
  6662. builder.MoveToBookmark(key);
  6663. builder.Write(dic[key]);
  6664. }
  6665. }
  6666. //获取word里所有表格
  6667. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6668. //获取所填表格的序数
  6669. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6670. try
  6671. {
  6672. //循环赋值
  6673. for (int i = 0; i < dtSource.Rows.Count; i++)
  6674. {
  6675. builder.MoveToCell(0, i + 1, 0, 0);
  6676. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6677. builder.MoveToCell(0, i + 1, 1, 0);
  6678. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6679. builder.MoveToCell(0, i + 1, 2, 0);
  6680. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6681. var trip = dtSource.Rows[i]["Trip"].ToString();
  6682. builder.MoveToCell(0, i + 1, 3, 0);
  6683. builder.Write(trip);
  6684. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6685. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6686. // 获取特定索引的段落
  6687. Paragraph paragraph = (Paragraph)paragraphs[0];
  6688. Run run = paragraph.Runs[0];
  6689. Aspose.Words.Font font = run.Font;
  6690. font.Name = "黑体";
  6691. //设置双休红色
  6692. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6693. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6694. paragraph = (Paragraph)paragraphs[1];
  6695. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6696. {
  6697. run = paragraph.Runs[0];
  6698. font = run.Font;
  6699. font.Color = Color.Red;
  6700. }
  6701. }
  6702. }
  6703. catch (Exception ex)
  6704. {
  6705. }
  6706. //删除多余行
  6707. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6708. {
  6709. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6710. }
  6711. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6712. if (!Directory.Exists(savePath))
  6713. {
  6714. try
  6715. {
  6716. Directory.CreateDirectory(savePath);
  6717. }
  6718. catch
  6719. {
  6720. }
  6721. }
  6722. string path = savePath + Find.TeamName + "出访日程";
  6723. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6724. try
  6725. {
  6726. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6727. string postfix = ".docx";
  6728. if (dto.IsPDF == 1)
  6729. {
  6730. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6731. postfix = ".pdf";
  6732. }
  6733. doc.Save(path + postfix, saveFormat);
  6734. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6735. }
  6736. catch (Exception)
  6737. {
  6738. jw = JsonView(false);
  6739. }
  6740. return Ok(jw);
  6741. }
  6742. /// <summary>
  6743. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6744. /// </summary>
  6745. /// <param name="num"></param>
  6746. /// <returns></returns>
  6747. string GetNum(string num)
  6748. {
  6749. string str = "";
  6750. switch (num)
  6751. {
  6752. case "1":
  6753. str = "一";
  6754. break;
  6755. case "2":
  6756. str = "二";
  6757. break;
  6758. case "3":
  6759. str = "三";
  6760. break;
  6761. case "4":
  6762. str = "四";
  6763. break;
  6764. case "5":
  6765. str = "五";
  6766. break;
  6767. case "6":
  6768. str = "六";
  6769. break;
  6770. case "7":
  6771. str = "七";
  6772. break;
  6773. case "8":
  6774. str = "八";
  6775. break;
  6776. case "9":
  6777. str = "九";
  6778. break;
  6779. case "10":
  6780. str = "十";
  6781. break;
  6782. case "11":
  6783. str = "十一";
  6784. break;
  6785. case "12":
  6786. str = "十二";
  6787. break;
  6788. case "一":
  6789. str = "1";
  6790. break;
  6791. case "二":
  6792. str = "2";
  6793. break;
  6794. case "三":
  6795. str = "3";
  6796. break;
  6797. case "四":
  6798. str = "4";
  6799. break;
  6800. case "五":
  6801. str = "5";
  6802. break;
  6803. case "六":
  6804. str = "6";
  6805. break;
  6806. case "七":
  6807. str = "7";
  6808. break;
  6809. case "八":
  6810. str = "8";
  6811. break;
  6812. case "九":
  6813. str = "9";
  6814. break;
  6815. case "十":
  6816. str = "10";
  6817. break;
  6818. case "十一":
  6819. str = "11";
  6820. break;
  6821. case "十二":
  6822. str = "12";
  6823. break;
  6824. }
  6825. return str;
  6826. }
  6827. #endregion
  6828. #endregion
  6829. #region 团组成本
  6830. /// <summary>
  6831. /// 团组成本数据初始化
  6832. /// </summary>
  6833. /// <param name="dto"></param>
  6834. /// <returns></returns>
  6835. [HttpPost]
  6836. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6837. {
  6838. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6839. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6840. WHEN COUNT(*) >= 0 THEN 'True'
  6841. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6842. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6843. ").ToList(); //团组列表
  6844. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6845. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6846. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6847. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6848. if (groupinfoValue != null)
  6849. {
  6850. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6851. var spArr = new string[1] { countryArr };
  6852. if (countryArr.Contains("|"))
  6853. {
  6854. spArr = countryArr.Split("|");
  6855. }
  6856. else if (countryArr.Contains("、"))
  6857. {
  6858. spArr = countryArr.Split("、");
  6859. }
  6860. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6861. {
  6862. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6863. if (dbQueryCountry != null)
  6864. {
  6865. visaCountryInfoArr.Add(dbQueryCountry);
  6866. }
  6867. }
  6868. }
  6869. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6870. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6871. var create = _GroupCostRepository.
  6872. CreateGroupCostByBlackCode(dto.Diid);
  6873. if (groupCost.Count == 0 && create.Code == 0)
  6874. {
  6875. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6876. }
  6877. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6878. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6879. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6880. groupCostMap = groupCostMap.Select(x =>
  6881. {
  6882. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6883. {
  6884. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6885. }
  6886. return x;
  6887. }).ToList();
  6888. //GroupCostParameter.Add(new
  6889. // Grp_GroupCostParameter());
  6890. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6891. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6892. return Ok(JsonView(new
  6893. {
  6894. groupList,
  6895. groupInfo,
  6896. groupChecks,
  6897. groupCost = groupCostMap,
  6898. hotelNumber,
  6899. GroupCostParameter = GroupCostParameterMap,
  6900. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6901. {
  6902. x.VisaCountry,
  6903. x.VisaPrice,
  6904. x.Id,
  6905. }).ToList(),
  6906. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6907. blackCodeIsTrue = create.Code == 0 ? true : false,
  6908. hotelIsTrue = hotelIsTrue,
  6909. }));
  6910. }
  6911. /// <summary>
  6912. /// 团组成本信息保存
  6913. /// </summary>
  6914. /// <param name="dto"></param>
  6915. /// <returns></returns>
  6916. [HttpPost]
  6917. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6918. {
  6919. if (dto.Diid <= 0 || dto.Userid <= 0)
  6920. {
  6921. return Ok(JsonView(false));
  6922. }
  6923. JsonView jw = null;
  6924. bool isTrue = false;
  6925. #region 复制团组成本
  6926. //if (dto.Diid == 2581)
  6927. //{
  6928. // dto.Diid = 2599;
  6929. // dto.CheckBoxs.ForEach(x =>
  6930. // {
  6931. // x.Diid = 2599;
  6932. // });
  6933. // dto.GroupCosts.ForEach(x =>
  6934. // {
  6935. // x.Diid = 2599;
  6936. // });
  6937. // dto.CostTypeHotelNumbers.ForEach(x =>
  6938. // {
  6939. // x.Diid = 2599;
  6940. // });
  6941. // dto.GroupCostParameters.ForEach(x =>
  6942. // {
  6943. // x.DiId = 2599;
  6944. // });
  6945. //}
  6946. #endregion
  6947. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6948. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6949. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6950. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6951. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6952. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6953. try
  6954. {
  6955. _sqlSugar.BeginTran();
  6956. isTrue = await _GroupCostRepository.
  6957. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6958. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6959. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6960. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6961. _sqlSugar.CommitTran();
  6962. jw = JsonView(true, "保存成功!", isTrue);
  6963. }
  6964. catch (Exception)
  6965. {
  6966. _sqlSugar.RollbackTran();
  6967. jw = JsonView(false);
  6968. }
  6969. return Ok(jw);
  6970. }
  6971. /// <summary>
  6972. /// 司兼导数据
  6973. /// </summary>
  6974. /// <param name="dto"></param>
  6975. /// <returns></returns>
  6976. [HttpPost]
  6977. public IActionResult GetCarGuides(CarGuidesDto dto)
  6978. {
  6979. JsonView jw = null;
  6980. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6981. jw = JsonView(true, "获取成功!", Data);
  6982. return Ok(jw);
  6983. }
  6984. /// <summary>
  6985. /// 导游数据
  6986. /// </summary>
  6987. /// <param name="dto"></param>
  6988. /// <returns></returns>
  6989. [HttpPost]
  6990. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6991. {
  6992. JsonView jw = null;
  6993. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6994. // 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
  6995. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6996. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6997. jw = JsonView(true, "获取成功!", Data);
  6998. return Ok(jw);
  6999. }
  7000. /// <summary>
  7001. /// 成本车数据
  7002. /// </summary>
  7003. /// <param name="dto"></param>
  7004. /// <returns></returns>
  7005. [HttpPost]
  7006. public IActionResult GetCarInfo(CarGuidesDto dto)
  7007. {
  7008. JsonView jw = null;
  7009. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  7010. jw = JsonView(true, "获取成功!", Data);
  7011. return Ok(jw);
  7012. }
  7013. /// <summary>
  7014. /// 景点数据
  7015. /// </summary>
  7016. /// <param name="dto"></param>
  7017. /// <returns></returns>
  7018. [HttpPost]
  7019. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  7020. {
  7021. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  7022. return Ok(JsonView(true, "获取成功!", Data));
  7023. }
  7024. /// <summary>
  7025. /// 成本通知
  7026. /// </summary>
  7027. /// <param name="dto"></param>
  7028. /// <returns></returns>
  7029. [HttpPost]
  7030. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  7031. {
  7032. if (dto.Diid < 0)
  7033. {
  7034. return Ok(JsonView(false));
  7035. }
  7036. JsonView jw = null;
  7037. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  7038. if (GroupCostParameter != null)
  7039. {
  7040. int IsShare = 0;
  7041. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  7042. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  7043. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  7044. string msg = string.Empty;
  7045. if (isTrue)
  7046. {
  7047. if (IsShare == 0)
  7048. {
  7049. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  7050. }
  7051. else
  7052. {
  7053. #region 企微通知对应岗位用户
  7054. try
  7055. {
  7056. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  7057. }
  7058. catch (Exception ex)
  7059. {
  7060. }
  7061. #endregion
  7062. msg = "通知成功,其他模块操作人员可见此成本信息!";
  7063. }
  7064. jw = JsonView(isTrue, msg, new { IsShare });
  7065. }
  7066. else
  7067. {
  7068. msg = "修改失败!";
  7069. jw = JsonView(isTrue, msg);
  7070. }
  7071. }
  7072. else
  7073. {
  7074. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  7075. }
  7076. return Ok(jw);
  7077. }
  7078. /// <summary>
  7079. /// 导出报价单
  7080. /// </summary>
  7081. /// <param name="dto"></param>
  7082. /// <returns></returns>
  7083. [HttpPost]
  7084. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  7085. {
  7086. if (dto.Diid == 0)
  7087. {
  7088. return Ok(JsonView(false, "请传递团组id"));
  7089. }
  7090. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7091. if (deleInfo.Code != 0)
  7092. {
  7093. return Ok(JsonView(false, "团组信息查询失败!"));
  7094. }
  7095. var di = deleInfo.Data as DelegationInfoWebView;
  7096. if (di != null)
  7097. {
  7098. di.TeamName = di.TeamName.Replace("|","、");
  7099. di.VisitCountry = di.VisitCountry.Replace("|", "、");
  7100. //文件名
  7101. string strFileName = di.TeamName + "-收款账单.doc";
  7102. //获取模板
  7103. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  7104. //载入模板
  7105. Document doc = new Document(tmppath);
  7106. decimal TotalPrice = 0.00M;
  7107. string itemStr = string.Empty;
  7108. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  7109. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  7110. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  7111. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  7112. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  7113. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  7114. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  7115. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  7116. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  7117. foreach (var cost in groupCostType)
  7118. {
  7119. var List = cost.ToList();
  7120. if (cost.Key == "A")
  7121. {
  7122. foreach (var ListItem in List)
  7123. {
  7124. if (ListItem.number > 0)
  7125. {
  7126. if (ListItem.code.Contains("TBR"))
  7127. {
  7128. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7129. }
  7130. else
  7131. {
  7132. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7133. }
  7134. TotalPrice += (ListItem.number * ListItem.price);
  7135. }
  7136. }
  7137. }
  7138. else
  7139. {
  7140. itemStr = itemStr.Insert(0, "A段\r\n");
  7141. itemStr += "B段\r\n";
  7142. foreach (var ListItem in List)
  7143. {
  7144. if (ListItem.number > 0)
  7145. {
  7146. if (ListItem.code.Contains("TBR"))
  7147. {
  7148. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7149. }
  7150. else
  7151. {
  7152. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7153. }
  7154. TotalPrice += (ListItem.number * ListItem.price);
  7155. }
  7156. }
  7157. }
  7158. }
  7159. #region 替换Word模板书签内容
  7160. Dictionary<string, string> marks = new Dictionary<string, string>();
  7161. marks.Add("To", di.ClientUnit);//付款方
  7162. marks.Add("ToTel", di.TellPhone);//付款方电话
  7163. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  7164. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  7165. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  7166. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  7167. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  7168. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  7169. marks.Add("PayItemContent", itemStr);//详细信息
  7170. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  7171. #endregion
  7172. ////注
  7173. //if (doc.Range.Bookmarks["Attention"] != null)
  7174. //{
  7175. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  7176. // mark.Text = frList[0].Attention;
  7177. //}
  7178. foreach (var item in marks.Keys)
  7179. {
  7180. if (doc.Range.Bookmarks[item] != null)
  7181. {
  7182. Bookmark mark = doc.Range.Bookmarks[item];
  7183. mark.Text = marks[item];
  7184. }
  7185. }
  7186. byte[] bytes = null;
  7187. using (MemoryStream stream = new MemoryStream())
  7188. {
  7189. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7190. bytes = stream.ToArray();
  7191. }
  7192. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  7193. return Ok(JsonView(true, "", new
  7194. {
  7195. Data = bytes,
  7196. strFileName,
  7197. }));
  7198. }
  7199. else
  7200. {
  7201. return Ok(JsonView(false, "团组信息不存在!"));
  7202. }
  7203. }
  7204. /// <summary>
  7205. /// 导出团组成本
  7206. /// </summary>
  7207. /// <param name="dto"></param>
  7208. /// <returns></returns>
  7209. [HttpPost]
  7210. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  7211. {
  7212. var jw = JsonView(false);
  7213. if (dto.Diid == 0)
  7214. {
  7215. return Ok(JsonView(false, "请传递团组id"));
  7216. }
  7217. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7218. if (deleInfo.Code != 0)
  7219. {
  7220. return Ok(JsonView(false, "团组信息查询失败!"));
  7221. }
  7222. var di = deleInfo.Data as DelegationInfoWebView;
  7223. if (di == null)
  7224. {
  7225. return Ok(JsonView(false, "团组信息查询失败!"));
  7226. }
  7227. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  7228. WorkbookDesigner designer = new WorkbookDesigner();
  7229. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  7230. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  7231. for (int i = 0; i < List_GC.Count; i++)
  7232. {
  7233. GroupCost_Excel gc = new GroupCost_Excel();
  7234. gc.Id = List_GC[i].Id;
  7235. gc.Diid = List_GC[i].Diid.ToString();
  7236. gc.DAY = List_GC[i].DAY;
  7237. string week = "";
  7238. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  7239. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  7240. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  7241. gc.ITIN = List_GC[i].ITIN;
  7242. gc.CarType = List_GC[i].CarType;
  7243. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  7244. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  7245. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  7246. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  7247. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  7248. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  7249. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  7250. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  7251. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  7252. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  7253. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  7254. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  7255. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7256. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7257. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  7258. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  7259. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  7260. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  7261. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  7262. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  7263. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  7264. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  7265. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  7266. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  7267. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  7268. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  7269. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  7270. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  7271. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  7272. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  7273. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  7274. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  7275. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  7276. List_GC1.Add(gc);
  7277. }
  7278. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  7279. dt.TableName = "TB";
  7280. //报表标题等不用dt的值
  7281. designer.SetDataSource("TeamName", dto.title.TeamName);
  7282. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  7283. designer.SetDataSource("Tax", dto.title.Tax);
  7284. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  7285. designer.SetDataSource("Currency", dto.title.Currency);
  7286. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  7287. designer.SetDataSource("Rate", dto.title.Rate);
  7288. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  7289. var Aparams = hotels.Find(x => x.Type == "Default");
  7290. if (Aparams == null)
  7291. {
  7292. return Ok(jw);
  7293. }
  7294. //酒店数量
  7295. var txtSGRNumber = Aparams.SGR.ToString();
  7296. var txtTBRNumber = Aparams.TBR.ToString();
  7297. var txtJSESNumber = Aparams.JSES.ToString();
  7298. var txtSUITENumbe = Aparams.SUITE.ToString();
  7299. if (dto.costType == "B")
  7300. {
  7301. Aparams = hotels.Find(x => x.Type == "A");
  7302. var Bparams = hotels.Find(x => x.Type == "B");
  7303. if (Aparams == null || Bparams == null)
  7304. {
  7305. return Ok(jw);
  7306. }
  7307. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  7308. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  7309. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  7310. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  7311. }
  7312. designer.SetDataSource("SGRNumber", txtSGRNumber);
  7313. designer.SetDataSource("TBRNumber", txtTBRNumber);
  7314. designer.SetDataSource("JSESNumber", txtJSESNumber);
  7315. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  7316. var ws = designer.Workbook.Worksheets[0];
  7317. int Row = List_GC.Count;
  7318. int startIndex = 11;
  7319. int HideRows = 0;
  7320. List<int> hideRowsList = new List<int>();
  7321. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  7322. #region A段left数据
  7323. var left = dto.leftInfo.Find(x => x.Type == "A");
  7324. if (left == null)
  7325. {
  7326. return Ok(jw);
  7327. }
  7328. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  7329. if (leftBindData != null)
  7330. {
  7331. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  7332. designer.SetDataSource("VisaRS", leftBindData.rs);
  7333. designer.SetDataSource("VisaXS", leftBindData.xs);
  7334. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7335. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7336. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7337. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7338. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7339. }
  7340. else
  7341. {
  7342. hideRowsList.Add(Row + startIndex + HideRows);
  7343. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7344. }
  7345. HideRows += 2;
  7346. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  7347. if (leftBindData != null)
  7348. {
  7349. designer.SetDataSource("BXDRCB", leftBindData.cb);
  7350. designer.SetDataSource("BXRS", leftBindData.rs);
  7351. designer.SetDataSource("BXXS", leftBindData.xs);
  7352. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7353. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7354. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7355. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7356. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7357. }
  7358. else
  7359. {
  7360. hideRowsList.Add(Row + startIndex + HideRows);
  7361. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7362. }
  7363. HideRows += 2;
  7364. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7365. if (leftBindData != null)
  7366. {
  7367. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7368. designer.SetDataSource("HSRS", leftBindData.rs);
  7369. designer.SetDataSource("HSXS", leftBindData.xs);
  7370. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7371. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7372. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7373. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7374. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7375. }
  7376. else
  7377. {
  7378. hideRowsList.Add(Row + startIndex + HideRows);
  7379. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7380. }
  7381. HideRows += 2;
  7382. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7383. if (leftBindData != null)
  7384. {
  7385. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7386. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7387. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7388. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7389. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7390. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7391. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7392. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7393. }
  7394. else
  7395. {
  7396. hideRowsList.Add(Row + startIndex + HideRows);
  7397. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7398. }
  7399. HideRows += 2;
  7400. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7401. if (leftBindData != null)
  7402. {
  7403. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7404. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7405. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7406. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7407. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7408. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7409. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7410. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7411. }
  7412. else
  7413. {
  7414. hideRowsList.Add(Row + startIndex + HideRows);
  7415. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7416. }
  7417. HideRows += 2;
  7418. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("头等舱"));
  7419. if (leftBindData != null)
  7420. {
  7421. designer.SetDataSource("JPTDCCB", leftBindData.cb);
  7422. designer.SetDataSource("JPTDCPNum", leftBindData.rs);
  7423. designer.SetDataSource("JPTDCXS", leftBindData.xs);
  7424. designer.SetDataSource("JPTDCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7425. designer.SetDataSource("JPTDCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7426. designer.SetDataSource("JPTDCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7427. designer.SetDataSource("JPTDCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7428. designer.SetDataSource("JPTDCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7429. }
  7430. else
  7431. {
  7432. hideRowsList.Add(Row + startIndex + HideRows);
  7433. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7434. }
  7435. HideRows += 2;
  7436. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7437. if (leftBindData != null)
  7438. {
  7439. ////TBR
  7440. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7441. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7442. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7443. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7444. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7445. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7446. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7447. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7448. }
  7449. else
  7450. {
  7451. hideRowsList.Add(Row + startIndex + HideRows);
  7452. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7453. }
  7454. HideRows += 2;
  7455. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7456. if (leftBindData != null)
  7457. {
  7458. ////SGR
  7459. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7460. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7461. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7462. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7463. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7464. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7465. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7466. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7467. }
  7468. else
  7469. {
  7470. hideRowsList.Add(Row + startIndex + HideRows);
  7471. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7472. }
  7473. HideRows += 2;
  7474. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7475. if (leftBindData != null)
  7476. {
  7477. ////JS/ES
  7478. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7479. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7480. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7481. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7482. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7483. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7484. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7485. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7486. }
  7487. else
  7488. {
  7489. hideRowsList.Add(Row + startIndex + HideRows);
  7490. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7491. }
  7492. HideRows += 2;
  7493. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7494. if (leftBindData != null)
  7495. {
  7496. ////SUITE
  7497. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7498. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7499. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7500. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7501. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7502. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7503. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7504. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7505. }
  7506. else
  7507. {
  7508. hideRowsList.Add(Row + startIndex + HideRows);
  7509. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7510. }
  7511. HideRows += 2;
  7512. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7513. if (leftBindData != null)
  7514. {
  7515. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7516. designer.SetDataSource("DJRS", leftBindData.rs);
  7517. designer.SetDataSource("DJXS", leftBindData.xs);
  7518. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7519. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7520. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7521. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7522. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7523. }
  7524. else
  7525. {
  7526. hideRowsList.Add(Row + startIndex + HideRows);
  7527. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7528. }
  7529. HideRows += 2;
  7530. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7531. if (leftBindData != null)
  7532. {
  7533. designer.SetDataSource("HCPCB", leftBindData.cb);
  7534. designer.SetDataSource("HCPRS", leftBindData.rs);
  7535. designer.SetDataSource("HCPXS", leftBindData.xs);
  7536. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7537. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7538. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7539. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7540. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7541. }
  7542. else
  7543. {
  7544. hideRowsList.Add(Row + startIndex + HideRows);
  7545. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7546. }
  7547. HideRows += 2;
  7548. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7549. if (leftBindData != null)
  7550. {
  7551. designer.SetDataSource("CPCB", leftBindData.cb);
  7552. designer.SetDataSource("CPRS", leftBindData.rs);
  7553. designer.SetDataSource("CPXS", leftBindData.xs);
  7554. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7555. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7556. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7557. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7558. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7559. }
  7560. else
  7561. {
  7562. hideRowsList.Add(Row + startIndex + HideRows);
  7563. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7564. }
  7565. HideRows += 2;
  7566. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7567. if (leftBindData != null)
  7568. {
  7569. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7570. designer.SetDataSource("GWRS", leftBindData.rs);
  7571. designer.SetDataSource("GWXS", leftBindData.xs);
  7572. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7573. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7574. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7575. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7576. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7577. }
  7578. else
  7579. {
  7580. hideRowsList.Add(Row + startIndex + HideRows);
  7581. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7582. }
  7583. HideRows += 2;
  7584. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7585. if (leftBindData != null)
  7586. {
  7587. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7588. designer.SetDataSource("LYJRS", leftBindData.rs);
  7589. designer.SetDataSource("LYJXS", leftBindData.xs);
  7590. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7591. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7592. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7593. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7594. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7595. }
  7596. else
  7597. {
  7598. hideRowsList.Add(Row + startIndex + HideRows);
  7599. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7600. }
  7601. #endregion
  7602. #region A段Right信息
  7603. var right = dto.rightInfo.Find(x => x.Type == "A");
  7604. if (right == null)
  7605. {
  7606. return Ok(jw);
  7607. }
  7608. HideRows += 4;
  7609. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7610. if (rightBindData != null)
  7611. {
  7612. //经济舱 + 双人间 TBR
  7613. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7614. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7615. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7616. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7617. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7618. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7619. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7620. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7621. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7622. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7623. }
  7624. else
  7625. {
  7626. hideRowsList.Add(Row + startIndex + HideRows);
  7627. }
  7628. HideRows += 2;
  7629. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7630. if (rightBindData != null)
  7631. {
  7632. //经济舱 + 单人间 SGR
  7633. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7634. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7635. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7636. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7637. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7638. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7639. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7640. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7641. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7642. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7643. }
  7644. else
  7645. {
  7646. hideRowsList.Add(Row + startIndex + HideRows);
  7647. }
  7648. HideRows += 2;
  7649. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7650. if (rightBindData != null)
  7651. {
  7652. //公务舱 + 单人间 SGR
  7653. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7654. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7655. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7656. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7657. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7658. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7659. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7660. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7661. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7662. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7663. }
  7664. else
  7665. {
  7666. hideRowsList.Add(Row + startIndex + HideRows);
  7667. }
  7668. HideRows += 2;
  7669. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7670. if (rightBindData != null)
  7671. {
  7672. //公务舱 + 小套房 JSES
  7673. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7674. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7675. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7676. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7677. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7678. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7679. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7680. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7681. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7682. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7683. }
  7684. else
  7685. {
  7686. hideRowsList.Add(Row + startIndex + HideRows);
  7687. }
  7688. HideRows += 2;
  7689. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7690. if (rightBindData != null)
  7691. {
  7692. //公务舱 + 小套房 JSES
  7693. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7694. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7695. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7696. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7697. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7698. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7699. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7700. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7701. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7702. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7703. }
  7704. else
  7705. {
  7706. hideRowsList.Add(Row + startIndex + HideRows);
  7707. }
  7708. HideRows += 2;
  7709. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7710. if (rightBindData != null)
  7711. {
  7712. //经济舱 + 大套房
  7713. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7714. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7715. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7716. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7717. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7718. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7719. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7720. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7721. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7722. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7723. }
  7724. else
  7725. {
  7726. hideRowsList.Add(Row + startIndex + HideRows);
  7727. }
  7728. HideRows += 2;
  7729. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 JS/ES"));
  7730. if (rightBindData != null)
  7731. {
  7732. //头等舱 + 小套房 JSES
  7733. designer.SetDataSource("lblTDCJSESDRCB", rightBindData.cb);
  7734. designer.SetDataSource("txtTDCJSESRS", rightBindData.rs);
  7735. designer.SetDataSource("lblTDCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7736. designer.SetDataSource("lblTDCJSESDRBJ", rightBindData.bj);
  7737. designer.SetDataSource("lblTDCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7738. designer.SetDataSource("lblTDCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7739. designer.SetDataSource("lblTDCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7740. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7741. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7742. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7743. }
  7744. else
  7745. {
  7746. hideRowsList.Add(Row + startIndex + HideRows);
  7747. }
  7748. HideRows += 2;
  7749. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 SUITE"));
  7750. if (rightBindData != null)
  7751. {
  7752. //头等舱 + 大套房
  7753. designer.SetDataSource("lblTDCSUITEDRCB", rightBindData.cb);
  7754. designer.SetDataSource("txtTDCSUITERS", rightBindData.rs);
  7755. designer.SetDataSource("lblTDCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7756. designer.SetDataSource("lblTDCSUITEDRBJ", rightBindData.bj);
  7757. designer.SetDataSource("lblTDCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7758. designer.SetDataSource("lblTDCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7759. designer.SetDataSource("lblTDCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7760. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7761. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7762. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7763. }
  7764. else
  7765. {
  7766. hideRowsList.Add(Row + startIndex + HideRows);
  7767. }
  7768. #endregion
  7769. #region B段标题清空
  7770. designer.SetDataSource("CostBDRCB", "");
  7771. designer.SetDataSource("CostBRS", "");
  7772. designer.SetDataSource("CostBXS", "");
  7773. designer.SetDataSource("CostBZCB", "");
  7774. designer.SetDataSource("CostBDRBJ", "");
  7775. designer.SetDataSource("CostBZBJ", "");
  7776. designer.SetDataSource("CostBDRLR", "");
  7777. designer.SetDataSource("CostBZLR", "");
  7778. designer.SetDataSource("CostBDRCBOM", "");
  7779. designer.SetDataSource("CostBRSOM", "");
  7780. designer.SetDataSource("CostBZCBOM", "");
  7781. designer.SetDataSource("CostBDRBJOM", "");
  7782. designer.SetDataSource("CostBZBJOM", "");
  7783. designer.SetDataSource("CostBDRLROM", "");
  7784. designer.SetDataSource("CostBZLROM", "");
  7785. #endregion
  7786. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7787. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7788. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7789. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7790. designer.SetDataSource("DJName", "地接(CNY)");
  7791. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7792. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7793. designer.SetDataSource("GWName", "公务(CNY)");
  7794. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7795. designer.SetDataSource("LYJName", "零用金(CNY)");
  7796. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7797. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7798. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7799. designer.SetDataSource("AirTDCName", "机票-头等舱(CNY)");
  7800. designer.SetDataSource("BXName", "保险(CNY)");
  7801. designer.SetDataSource("VisaName", "签证(CNY)");
  7802. #region B段基本数据
  7803. if (dto.costType == "B")
  7804. {
  7805. left = dto.leftInfo.Find(x => x.Type == "B");
  7806. if (left == null)
  7807. {
  7808. return Ok(jw);
  7809. }
  7810. #region B段left数据
  7811. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7812. if (leftBindData != null)
  7813. {
  7814. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7815. designer.SetDataSource("BHSRS", leftBindData.rs);
  7816. designer.SetDataSource("BHSXS", leftBindData.xs);
  7817. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7818. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7819. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7820. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7821. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7822. }
  7823. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7824. if (leftBindData != null)
  7825. {
  7826. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7827. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7828. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7829. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7830. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7831. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7832. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7833. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7834. }
  7835. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7836. if (leftBindData != null)
  7837. {
  7838. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7839. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7840. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7841. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7842. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7843. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7844. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7845. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7846. }
  7847. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("头等舱"));
  7848. if (leftBindData != null)
  7849. {
  7850. designer.SetDataSource("BJPTDCCB", leftBindData.cb);
  7851. designer.SetDataSource("BJPTDCPNum", leftBindData.rs);
  7852. designer.SetDataSource("BJPTDCXS", leftBindData.xs);
  7853. designer.SetDataSource("BJPTDCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7854. designer.SetDataSource("BJPTDCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7855. designer.SetDataSource("BJPTDCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7856. designer.SetDataSource("BJPTDCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7857. designer.SetDataSource("BJPTDCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7858. }
  7859. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7860. if (leftBindData != null)
  7861. {
  7862. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7863. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7864. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7865. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7866. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7867. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7868. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7869. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7870. }
  7871. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7872. if (leftBindData != null)
  7873. {
  7874. designer.SetDataSource("BCPCB", leftBindData.cb);
  7875. designer.SetDataSource("BCPRS", leftBindData.rs);
  7876. designer.SetDataSource("BCPXS", leftBindData.xs);
  7877. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7878. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7879. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7880. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7881. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7882. }
  7883. //TBR
  7884. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7885. if (leftBindData != null)
  7886. {
  7887. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7888. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7889. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7890. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7891. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7892. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7893. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7894. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7895. }
  7896. //SGR
  7897. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7898. if (leftBindData != null)
  7899. {
  7900. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7901. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7902. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7903. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7904. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7905. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7906. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7907. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7908. }
  7909. //JS/ES
  7910. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7911. if (leftBindData != null)
  7912. {
  7913. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7914. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7915. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7916. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7917. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7918. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7919. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7920. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7921. }
  7922. //SUITE
  7923. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7924. if (leftBindData != null)
  7925. {
  7926. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7927. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7928. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7929. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7930. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7931. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7932. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7933. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7934. }
  7935. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7936. if (leftBindData != null)
  7937. {
  7938. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7939. designer.SetDataSource("BDJRS", leftBindData.rs);
  7940. designer.SetDataSource("BDJXS", leftBindData.xs);
  7941. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7942. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7943. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7944. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7945. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7946. }
  7947. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7948. if (leftBindData != null)
  7949. {
  7950. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7951. designer.SetDataSource("BGWRS", leftBindData.rs);
  7952. designer.SetDataSource("BGWXS", leftBindData.xs);
  7953. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7954. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7955. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7956. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7957. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7958. }
  7959. #region 优化方案
  7960. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7961. //excelBind.Add("零用金", new {
  7962. //cb="",
  7963. //rs="",
  7964. //xs ="",
  7965. //zcb = "",
  7966. //});
  7967. #endregion
  7968. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7969. if (leftBindData != null)
  7970. {
  7971. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7972. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7973. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7974. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7975. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7976. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7977. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7978. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7979. }
  7980. #endregion
  7981. #region B段Right信息
  7982. right = dto.rightInfo.Find(x => x.Type == "B");
  7983. if (right == null)
  7984. {
  7985. return Ok(jw);
  7986. }
  7987. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7988. if (rightBindData != null)
  7989. {
  7990. //经济舱 + 双人间 TBR
  7991. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7992. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7993. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7994. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7995. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7996. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7997. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7998. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7999. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8000. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8001. }
  8002. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  8003. if (rightBindData != null)
  8004. {
  8005. //经济舱 + 单人间 SGR
  8006. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  8007. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  8008. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8009. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  8010. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8011. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8012. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8013. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8014. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8015. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8016. }
  8017. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  8018. if (rightBindData != null)
  8019. {
  8020. //公务舱 + 单人间 SGR
  8021. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  8022. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  8023. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8024. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  8025. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8026. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8027. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8028. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8029. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8030. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8031. }
  8032. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  8033. if (rightBindData != null)
  8034. {
  8035. //公务舱 + 小套房 JSES
  8036. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  8037. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  8038. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8039. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  8040. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8041. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8042. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8043. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8044. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8045. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8046. }
  8047. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  8048. if (rightBindData != null)
  8049. {
  8050. //公务舱 + 小套房 JSES
  8051. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  8052. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  8053. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8054. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  8055. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8056. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8057. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8058. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8059. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8060. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8061. }
  8062. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  8063. if (rightBindData != null)
  8064. {
  8065. //经济舱 + 大套房
  8066. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  8067. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  8068. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8069. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  8070. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8071. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8072. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8073. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8074. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8075. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8076. }
  8077. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 JS/ES"));
  8078. if (rightBindData != null)
  8079. {
  8080. //头等舱 + 小套房 JSES
  8081. designer.SetDataSource("BlblTDCJSESDRCB", rightBindData.cb);
  8082. designer.SetDataSource("BtxtTDCJSESRS", rightBindData.rs);
  8083. designer.SetDataSource("BlblTDCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8084. designer.SetDataSource("BlblTDCJSESDRBJ", rightBindData.bj);
  8085. designer.SetDataSource("BlblTDCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8086. designer.SetDataSource("BlblTDCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8087. designer.SetDataSource("BlblTDCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8088. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8089. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8090. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8091. }
  8092. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 SUITE"));
  8093. if (rightBindData != null)
  8094. {
  8095. //头等舱 + 大套房
  8096. designer.SetDataSource("BlblTDCSUITEDRCB", rightBindData.cb);
  8097. designer.SetDataSource("BtxtTDCSUITERS", rightBindData.rs);
  8098. designer.SetDataSource("BlblTDCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8099. designer.SetDataSource("BlblTDCSUITEDRBJ", rightBindData.bj);
  8100. designer.SetDataSource("BlblTDCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8101. designer.SetDataSource("BlblTDCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8102. designer.SetDataSource("BlblTDCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8103. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8104. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8105. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8106. }
  8107. #endregion
  8108. #region 标题
  8109. designer.SetDataSource("CostBDRCB", "单人成本");
  8110. designer.SetDataSource("CostBRS", "人数");
  8111. designer.SetDataSource("CostBXS", "系数");
  8112. designer.SetDataSource("CostBZCB", "总成本");
  8113. designer.SetDataSource("CostBDRBJ", "单人报价");
  8114. designer.SetDataSource("CostBZBJ", "总报价");
  8115. designer.SetDataSource("CostBDRLR", "单人利润");
  8116. designer.SetDataSource("CostBZLR", "总利润");
  8117. designer.SetDataSource("CostBDRCBOM", "单人成本");
  8118. designer.SetDataSource("CostBRSOM", "人数");
  8119. designer.SetDataSource("CostBZCBOM", "总成本");
  8120. designer.SetDataSource("CostBDRBJOM", "单人报价");
  8121. designer.SetDataSource("CostBZBJOM", "总报价");
  8122. designer.SetDataSource("CostBDRLROM", "单人利润");
  8123. designer.SetDataSource("CostBZLROM", "总利润");
  8124. #endregion
  8125. }
  8126. #endregion
  8127. designer.SetDataSource("TzZCB2", TzZCB2);
  8128. designer.SetDataSource("TzZBJ2", TzZBJ2);
  8129. designer.SetDataSource("TzZLR2", TzZLR2);
  8130. string[] dataSourceKeys = new string[]
  8131. {
  8132. "VF",
  8133. "TGS",
  8134. "TGOF",
  8135. "TGM",
  8136. "TGA",
  8137. "TGTF",
  8138. "TGEF",
  8139. "CFM",
  8140. "CFOF",
  8141. "B",
  8142. "L",
  8143. "D",
  8144. "TBR",
  8145. "SGR",
  8146. "JSES",
  8147. "Suite",
  8148. "TV",
  8149. "1L",
  8150. "IF",
  8151. "EF",
  8152. "BRF",
  8153. "TE",
  8154. "TGT",
  8155. "DRVT",
  8156. "PC",
  8157. "TLF",
  8158. "ECT"
  8159. };
  8160. foreach (var item in dataSourceKeys)
  8161. {
  8162. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  8163. if (find != null)
  8164. {
  8165. designer.SetDataSource(item, find.text);
  8166. }
  8167. else
  8168. {
  8169. designer.SetDataSource(item, 0);
  8170. }
  8171. }
  8172. designer.SetDataSource(dt);
  8173. //根据数据源处理生成报表内容
  8174. designer.Process();
  8175. designer.Workbook.Worksheets[0].Name = "清单";
  8176. Worksheet sheet = designer.Workbook.Worksheets[0];
  8177. foreach (var Rowindex in hideRowsList)
  8178. {
  8179. ws.Cells.HideRows(Rowindex, 2);
  8180. }
  8181. byte[] bytes = null;
  8182. string strFileName = di.TeamName + "-团组-成本.xls";
  8183. using (MemoryStream stream = new MemoryStream())
  8184. {
  8185. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  8186. bytes = stream.ToArray();
  8187. }
  8188. return Ok(JsonView(true, "", new
  8189. {
  8190. Data = bytes,
  8191. strFileName,
  8192. }));
  8193. }
  8194. /// <summary>
  8195. /// 导出客户报表
  8196. /// </summary>
  8197. /// <returns></returns>
  8198. [HttpPost]
  8199. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  8200. {
  8201. var jw = JsonView(false);
  8202. if (dto.Diid == 0)
  8203. {
  8204. return Ok(JsonView(false, "请传递团组id"));
  8205. }
  8206. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  8207. if (deleInfo.Code != 0)
  8208. {
  8209. return Ok(JsonView(false, "团组信息查询失败!"));
  8210. }
  8211. var di = deleInfo.Data as DelegationInfoWebView;
  8212. if (di == null)
  8213. {
  8214. return Ok(JsonView(false, "团组信息查询失败!"));
  8215. }
  8216. //文件名
  8217. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  8218. //获取模板
  8219. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  8220. //载入模板
  8221. Document doc = new Document(tmppath);
  8222. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  8223. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  8224. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  8225. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  8226. var AParameter = ParameterList.Find(x => x.CostType == "A");
  8227. var BParameter = ParameterList.Find(x => x.CostType == "B");
  8228. if (AParameter == null)
  8229. {
  8230. return Ok(JsonView(false, "系数不存在!"));
  8231. }
  8232. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  8233. , TzAirDesc, TzZCost;
  8234. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  8235. = TzAirDesc = TzZCost = string.Empty;
  8236. TzNumber = AParameter.CostTypenumber.ToString();
  8237. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  8238. CarGuides1 = dto.CarGuides1;
  8239. Meal = dto.Meal;
  8240. SubsidizedMeals = dto.SubsidizedMeals;
  8241. NightRepair = dto.NightRepair;
  8242. AttractionsTickets = dto.AttractionsTickets;
  8243. MiscellaneousFees = dto.MiscellaneousFees;
  8244. ATip = dto.ATip;
  8245. TzHotelDesc = "";
  8246. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  8247. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  8248. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  8249. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  8250. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  8251. TzAirDesc = "";
  8252. TzZCost = dto.TzZCost;
  8253. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  8254. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  8255. var index = 1;
  8256. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  8257. foreach (var item in TzHotelDescArr)
  8258. {
  8259. if (AinfoArr != null)
  8260. {
  8261. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8262. if (Ainfo != null)
  8263. {
  8264. if (int.Parse(Ainfo.rs) <= 0)
  8265. {
  8266. continue;
  8267. }
  8268. var hotelText = string.Empty;
  8269. switch (item)
  8270. {
  8271. case "SGR":
  8272. hotelText = "单人间";
  8273. break;
  8274. case "JSES":
  8275. hotelText = "小套房";
  8276. break;
  8277. case "SUITE":
  8278. hotelText = "套房";
  8279. break;
  8280. case "TBR":
  8281. hotelText = "双人间";
  8282. break;
  8283. }
  8284. if (item != "TBR")
  8285. {
  8286. 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";
  8287. }
  8288. else
  8289. {
  8290. 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";
  8291. }
  8292. index++;
  8293. }
  8294. }
  8295. }
  8296. index = 1;
  8297. foreach (var item in TzAirDescArr)
  8298. {
  8299. if (AinfoArr != null)
  8300. {
  8301. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8302. if (Ainfo != null)
  8303. {
  8304. if (int.Parse(Ainfo.rs) <= 0)
  8305. {
  8306. continue;
  8307. }
  8308. 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";
  8309. index++;
  8310. }
  8311. }
  8312. }
  8313. if (dto.costType == "B")
  8314. {
  8315. if (BParameter == null)
  8316. {
  8317. return Ok(JsonView(false, "B段系数不存在!"));
  8318. }
  8319. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  8320. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  8321. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  8322. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  8323. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  8324. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  8325. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  8326. foreach (var item in TzHotelDescArr)
  8327. {
  8328. if (AinfoArr != null)
  8329. {
  8330. TzHotelDesc += "B段信息 \r\n";
  8331. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8332. if (Ainfo != null)
  8333. {
  8334. if (int.Parse(Ainfo.rs) <= 0)
  8335. {
  8336. continue;
  8337. }
  8338. var hotelText = string.Empty;
  8339. switch (item)
  8340. {
  8341. case "SGR":
  8342. hotelText = "单人间";
  8343. break;
  8344. case "JSES":
  8345. hotelText = "小套房";
  8346. break;
  8347. case "SUITE":
  8348. hotelText = "套房";
  8349. break;
  8350. case "TBR":
  8351. hotelText = "双人间";
  8352. break;
  8353. }
  8354. if (item != "TBR")
  8355. {
  8356. 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";
  8357. }
  8358. else
  8359. {
  8360. 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";
  8361. }
  8362. index++;
  8363. }
  8364. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  8365. }
  8366. }
  8367. index = 1;
  8368. foreach (var item in TzAirDescArr)
  8369. {
  8370. if (AinfoArr != null)
  8371. {
  8372. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8373. if (Ainfo != null)
  8374. {
  8375. if (int.Parse(Ainfo.rs) <= 0)
  8376. {
  8377. continue;
  8378. }
  8379. 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";
  8380. index++;
  8381. }
  8382. }
  8383. }
  8384. }
  8385. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  8386. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  8387. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  8388. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  8389. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  8390. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  8391. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  8392. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  8393. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  8394. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  8395. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  8396. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  8397. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  8398. DickeyValue.Add("Visa", Visa); // 签证单人报价
  8399. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  8400. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  8401. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  8402. DickeyValue.Add("TzZCost", TzZCost);
  8403. foreach (var key in DickeyValue.Keys)
  8404. {
  8405. if (doc.Range.Bookmarks[key] != null)
  8406. {
  8407. Bookmark mark = doc.Range.Bookmarks[key];
  8408. mark.Text = DickeyValue[key];
  8409. }
  8410. }
  8411. byte[] bytes = null;
  8412. string strFileName = di.TeamName + "-客户报价.doc";
  8413. using (MemoryStream stream = new MemoryStream())
  8414. {
  8415. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  8416. bytes = stream.ToArray();
  8417. }
  8418. return Ok(JsonView(true, "", new
  8419. {
  8420. Data = bytes,
  8421. strFileName,
  8422. }));
  8423. }
  8424. /// <summary>
  8425. /// 团组成本 各模块(酒店,地接,机票)成本提示
  8426. /// </summary>
  8427. /// <param name="dto"></param>
  8428. /// <returns></returns>
  8429. [HttpPost]
  8430. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8431. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  8432. {
  8433. try
  8434. {
  8435. #region 参数验证
  8436. if (dto.DiId < 0)
  8437. {
  8438. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  8439. }
  8440. List<int> cTableIds = new List<int>() {
  8441. 76 ,//酒店预订
  8442. 77 ,//行程
  8443. 79 ,//车/导游地接
  8444. 80 ,//签证
  8445. 81 ,//邀请/公务活
  8446. 82 ,//团组客户保险
  8447. 85 ,//机票预订
  8448. 98 ,//其他款项
  8449. 285 ,//收款退还
  8450. 751 ,//酒店早餐
  8451. 1015 // 超支费用
  8452. };
  8453. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  8454. {
  8455. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  8456. }
  8457. #endregion
  8458. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  8459. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  8460. if (_GroupCostParameters.Count <= 0)
  8461. {
  8462. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  8463. }
  8464. if (_GroupCostParameters[0].IsShare == 0)
  8465. {
  8466. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  8467. }
  8468. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8469. //处理date为空问题
  8470. if (_GroupCosts.Count > 0)
  8471. {
  8472. for (int i = 0; i < _GroupCosts.Count; i++)
  8473. {
  8474. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8475. {
  8476. if (i > 0)
  8477. {
  8478. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8479. }
  8480. }
  8481. }
  8482. }
  8483. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8484. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8485. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8486. string currCode = "";
  8487. #region currCode 验证
  8488. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8489. if (isInt)
  8490. {
  8491. var currData = currDatas.Find(it => it.Id == intCurrency);
  8492. if (currData != null)
  8493. {
  8494. currCode = currData.Name;
  8495. }
  8496. }
  8497. else
  8498. {
  8499. currCode = _GroupCostParameters[0].Currency.Trim();
  8500. }
  8501. #endregion
  8502. //op,酒店单段模式存储
  8503. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8504. {
  8505. CurrencyCode = currCode,
  8506. Rate = _GroupCostParameters[0].Rate,
  8507. CostType = _GroupCostParameters[0].CostType,
  8508. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8509. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8510. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8511. };
  8512. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8513. if (_GroupCostParameters.Count == 2)
  8514. {
  8515. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8516. }
  8517. foreach (var item in _GroupCostParameters)
  8518. {
  8519. decimal _rate = 1;
  8520. decimal _rate1 = item.Rate;
  8521. decimal _scale = 1;
  8522. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8523. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8524. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8525. //if (userInfo != null)
  8526. //{
  8527. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8528. // {
  8529. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8530. // {
  8531. // _scale = 1.00M;
  8532. // }
  8533. // }
  8534. //}
  8535. #endregion
  8536. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8537. {
  8538. CurrencyCode = currCode,
  8539. Rate = _rate1,
  8540. CostType = item.CostType,
  8541. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8542. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8543. CostTypeNumber = item.CostTypenumber
  8544. };
  8545. if (_GroupCostParameters.Count > 1)
  8546. {
  8547. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8548. }
  8549. else
  8550. {
  8551. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8552. }
  8553. if (dto.CTable == 79)//
  8554. {
  8555. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8556. modulePromptInfo.TotalCost = item.DJCB;
  8557. }
  8558. List<string> costTypes = new List<string>() { "A", "B" };
  8559. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8560. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8561. if (_GroupCostsDuplicates.Count() == 1)
  8562. {
  8563. _GroupCostsTypeData = _GroupCosts;
  8564. }
  8565. else
  8566. {
  8567. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8568. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8569. }
  8570. /*
  8571. * 76 酒店预订
  8572. * 77 行程
  8573. * 79 车/导游地接
  8574. * 80 签证
  8575. * 81 邀请/公务活动
  8576. * 82 团组客户保险
  8577. * 85 机票预订
  8578. * 98 其他款项
  8579. * 285 收款退还
  8580. * 751 酒店早餐
  8581. * 1015 超支费用
  8582. */
  8583. switch (dto.CTable)
  8584. {
  8585. case 76: // 酒店预订
  8586. _ModuleSubPromptInfo.AddRange(
  8587. _GroupCostsTypeData.Select(it => new
  8588. {
  8589. it.DAY,
  8590. it.Date,
  8591. it.ACCON,
  8592. it.ITIN,
  8593. it.SGR,
  8594. it.TBR,
  8595. it.JS_ES,
  8596. it.Suite
  8597. })
  8598. );
  8599. break;
  8600. case 79: // 车/导游地接
  8601. _ModuleSubPromptInfo.AddRange(
  8602. _GroupCostsTypeData.Select(it => new
  8603. {
  8604. Date = it.Date, //日期
  8605. CarFee = it.CarCost * _rate * _scale, //车费用
  8606. CarType = it.CarType, //车型
  8607. DriverFee = it.CFS * _rate * _scale, //司机工资
  8608. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8609. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8610. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8611. GuideFee = it.TGS * _rate * _scale, //导游费用
  8612. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8613. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8614. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8615. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8616. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8617. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8618. Breakfast = it.B * _rate * _scale, //早餐费
  8619. Lunch = it.L * _rate * _scale, //午餐费
  8620. Dinner = it.D * _rate * _scale, //晚餐费
  8621. OfficialActivitiesFee = it.TV * _rate * _scale,//会务活动费 --新加
  8622. OfficialTransFee = it.IF * _rate * _scale, //公务翻译费 --新加
  8623. InvitationFee = it.iL * _rate * _scale, //邀请函费用 --新加
  8624. TicketFee = it.EF * _rate * _scale, //门票费
  8625. TicketRemark = it.EFR, //门票费描述
  8626. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8627. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8628. SpentCash = it.PC * _rate * _scale, //零用金
  8629. LeadersFee = it.TLF * _rate * _scale, //领队费
  8630. ActivitiesFee = it.ECT * _rate * _scale, //会务费 --新加
  8631. })
  8632. );
  8633. break;
  8634. case 85: // 机票
  8635. List<dynamic> datas = new List<dynamic>();
  8636. datas.Add(
  8637. new
  8638. {
  8639. AirType = "经济舱",
  8640. AirNum = item.JJCRS,
  8641. AirDRCB = item.JJCCB,
  8642. AirZCB = (item.JJCRS * item.JJCCB)
  8643. }
  8644. );
  8645. datas.Add(
  8646. new
  8647. {
  8648. AirType = "公务舱",
  8649. AirNum = item.GWCRS,
  8650. AirDRCB = item.GWCCB,
  8651. AirZCB = (item.GWCRS * item.GWCCB)
  8652. }
  8653. );
  8654. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8655. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8656. modulePromptInfo.Data = new
  8657. {
  8658. airFeeData = datas,
  8659. airInitData = initDatas
  8660. };
  8661. _ModulePromptInfos.Add(modulePromptInfo);
  8662. break;
  8663. default:
  8664. break;
  8665. }
  8666. }
  8667. if (dto.CTable != 85)
  8668. {
  8669. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8670. _ModulePromptInfos.Add(_ModulePromptInfo);
  8671. }
  8672. _view.ModulePromptInfos = _ModulePromptInfos;
  8673. return Ok(JsonView(true, "操作成功!", _view));
  8674. }
  8675. catch (Exception ex)
  8676. {
  8677. return Ok(JsonView(false, ex.Message));
  8678. }
  8679. }
  8680. /// <summary>
  8681. /// 根据黑屏代码重新生成行程
  8682. /// </summary>
  8683. /// <param name="dto"></param>
  8684. /// <returns></returns>
  8685. [HttpPost]
  8686. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8687. {
  8688. var jw = JsonView(false);
  8689. var Create = _GroupCostRepository.
  8690. CreateGroupCostByBlackCode(dto.Diid);
  8691. jw.Msg = Create.Msg;
  8692. if (Create.Code == 0)
  8693. {
  8694. jw.Code = 200;
  8695. jw.Data = new
  8696. {
  8697. groupCost = Create.Data,
  8698. blackCodeIsTrue = true
  8699. };
  8700. }
  8701. else
  8702. {
  8703. jw.Code = 400;
  8704. jw.Data = new
  8705. {
  8706. groupCost = Create.Data,
  8707. blackCodeIsTrue = false,
  8708. };
  8709. }
  8710. return Ok(jw);
  8711. }
  8712. /// <summary>
  8713. /// 成本获取OP历史车费用
  8714. /// </summary>
  8715. /// <param name="dto"></param>
  8716. /// <returns></returns>
  8717. [HttpPost]
  8718. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8719. {
  8720. var jw = JsonView(false);
  8721. try
  8722. {
  8723. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8724. //获取现有所有车的数据
  8725. if (!dto.Param.IsNullOrWhiteSpace())
  8726. {
  8727. string sql = $@"
  8728. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8729. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8730. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8731. 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
  8732. AND gctggr.ServiceEndTime is not NULL
  8733. ORDER by gctggrc.id DESC
  8734. ";
  8735. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8736. var numeberResult = await Task.Run(() =>
  8737. {
  8738. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8739. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8740. return numberArr;
  8741. });
  8742. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8743. foreach (var item in numeberResult)
  8744. {
  8745. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8746. {
  8747. Country = "数据异常!",
  8748. City = string.Empty,
  8749. };
  8750. item.Area = find.Country + " " + find.City;
  8751. }
  8752. dbResult.AddRange(numeberResult);
  8753. if (dto.Param.Contains("、"))
  8754. {
  8755. var sp = dto.Param.Split("、");
  8756. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8757. .Where(x =>
  8758. {
  8759. return System.Array.Exists(sp, e =>
  8760. {
  8761. bool where = false;
  8762. if (x.Area != null)
  8763. {
  8764. where = x.Area.Contains(e);
  8765. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8766. {
  8767. return false;
  8768. }
  8769. }
  8770. if (x.PriceName != null && !where)
  8771. {
  8772. where = x.PriceName.Contains(e);
  8773. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8774. {
  8775. return false;
  8776. }
  8777. }
  8778. return where;
  8779. });
  8780. }).ToList();
  8781. }
  8782. else
  8783. {
  8784. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8785. .Where(x =>
  8786. {
  8787. bool where = false;
  8788. if (x.Area != null)
  8789. {
  8790. where = x.Area.Contains(dto.Param);
  8791. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8792. {
  8793. return false;
  8794. }
  8795. }
  8796. if (x.PriceName != null && !where)
  8797. {
  8798. where = x.PriceName.Contains(dto.Param);
  8799. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8800. {
  8801. return false;
  8802. }
  8803. }
  8804. return where;
  8805. }
  8806. )
  8807. .ToList();
  8808. }
  8809. }
  8810. var view = dbResult.Select(x =>
  8811. {
  8812. decimal dp = 0.00M;
  8813. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8814. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8815. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8816. {
  8817. if (startB && endB)
  8818. {
  8819. var timesp = endD.Subtract(startD);
  8820. if ((timesp.Days + 1) != 0)
  8821. {
  8822. dp = x.Price / (timesp.Days + 1);
  8823. }
  8824. }
  8825. }
  8826. else
  8827. {
  8828. dp = x.Price;
  8829. }
  8830. return new
  8831. {
  8832. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8833. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8834. x.Area,
  8835. x.id,
  8836. price = x.Price.ToString("F2"),
  8837. x.PriceName,
  8838. x.PriceContent,
  8839. x.TeamName,
  8840. x.DatePrice,
  8841. dayPrice = dp.ToString("F2"),
  8842. };
  8843. }).OrderByDescending(x => x.id).ToList();
  8844. jw = JsonView(true, "获取成功!", view);
  8845. }
  8846. catch (Exception e)
  8847. {
  8848. jw = JsonView(false, e.Message);
  8849. }
  8850. return Ok(jw);
  8851. }
  8852. #endregion
  8853. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8854. /// <summary>
  8855. /// 酒店预订
  8856. /// 酒店费用列表 根据团组Id查询
  8857. /// </summary>
  8858. /// <param name="_dto"></param>
  8859. /// <returns></returns>
  8860. [HttpPost]
  8861. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8862. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8863. {
  8864. #region 参数验证
  8865. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8866. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8867. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8868. #region 团组操作权限验证 76 酒店预定模块
  8869. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8870. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8871. #endregion
  8872. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8873. #region 页面操作权限验证
  8874. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8875. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8876. #endregion
  8877. #endregion
  8878. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8879. }
  8880. /// <summary>
  8881. /// 酒店预订
  8882. /// 基础数据
  8883. /// </summary>
  8884. /// <param name="_dto"></param>
  8885. /// <returns></returns>
  8886. [HttpPost]
  8887. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8888. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8889. {
  8890. #region 参数验证
  8891. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8892. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8893. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8894. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8895. #region 页面操作权限验证
  8896. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8897. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8898. #endregion
  8899. #region 团组操作权限验证 76 酒店预定模块
  8900. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8901. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8902. #endregion
  8903. #endregion
  8904. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8905. }
  8906. /// <summary>
  8907. /// 酒店预订
  8908. /// 创建 入住卷号码
  8909. /// </summary>
  8910. /// <param name="_dto"></param>
  8911. /// <returns></returns>
  8912. [HttpPost]
  8913. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8914. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8915. {
  8916. try
  8917. {
  8918. #region 参数验证
  8919. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8920. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8921. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8922. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8923. #region 页面操作权限验证
  8924. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8925. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8926. #endregion
  8927. #region 团组操作权限验证 76 酒店预定模块
  8928. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8929. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8930. #endregion
  8931. #endregion
  8932. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8933. if (data.Code != 0)
  8934. {
  8935. return Ok(JsonView(false, data.Msg));
  8936. }
  8937. return Ok(JsonView(true, data.Msg, data.Data));
  8938. }
  8939. catch (Exception ex)
  8940. {
  8941. return Ok(JsonView(false, ex.Message));
  8942. }
  8943. }
  8944. /// <summary>
  8945. /// 酒店预订
  8946. /// 详情
  8947. /// </summary>
  8948. /// <param name="_dto"></param>
  8949. /// <returns></returns>
  8950. [HttpPost]
  8951. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8952. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8953. {
  8954. #region 参数验证
  8955. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8956. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8957. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8958. #region 团组操作权限验证 76 酒店预定模块
  8959. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8960. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8961. #endregion
  8962. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8963. #region 页面操作权限验证
  8964. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8965. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8966. #endregion
  8967. #endregion
  8968. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8969. }
  8970. /// <summary>
  8971. /// 酒店预订
  8972. /// Add Or Edit
  8973. /// </summary>
  8974. /// <param name="_dto"></param>
  8975. /// <returns></returns>
  8976. [HttpPost]
  8977. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8978. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8979. {
  8980. #region 参数验证
  8981. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8982. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8983. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8984. #region 团组操作权限验证 76 酒店预定模块
  8985. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8986. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8987. #endregion
  8988. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8989. #region 页面操作权限验证
  8990. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8991. if (_dto.Id == 0) // Add
  8992. {
  8993. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8994. }
  8995. else if (_dto.Id > 1) // Edit
  8996. {
  8997. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8998. }
  8999. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  9000. #endregion
  9001. #endregion
  9002. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  9003. if (_view.Code != 200)
  9004. {
  9005. return Ok(_view);
  9006. }
  9007. #region 应用推送
  9008. try
  9009. {
  9010. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  9011. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  9012. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  9013. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9014. //自动审核
  9015. var autoAdit = await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  9016. //if (autoAdit.Code != 200) _view.Msg += $"\r\n{autoAdit.Msg}";
  9017. _logger.LogInformation($"【酒店自动审核】【{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}】执行调用 调用结果:{JsonConvert.SerializeObject(autoAdit)}");
  9018. }
  9019. catch (Exception ex)
  9020. {
  9021. }
  9022. #endregion
  9023. return Ok(_view);
  9024. }
  9025. /// <summary>
  9026. /// 酒店自动审核测试
  9027. /// Add Or Edit
  9028. /// </summary>
  9029. /// <param name="_dto"></param>
  9030. /// <returns></returns>
  9031. [HttpPost]
  9032. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9033. public async Task<IActionResult> PostHotelAutoAuditTest(int diid,int dataId)
  9034. {
  9035. #region 应用推送
  9036. try
  9037. {
  9038. //自动审核
  9039. await _feeAuditRep.FeeAutomaticAudit(1, diid, dataId);
  9040. }
  9041. catch (Exception ex)
  9042. {
  9043. return Ok(JsonView(false, "操作失败"));
  9044. }
  9045. #endregion
  9046. return Ok(JsonView(false,"操作成功"));
  9047. }
  9048. /// <summary>
  9049. /// 酒店预订
  9050. /// Del
  9051. /// </summary>
  9052. /// <param name="_dto"></param>
  9053. /// <returns></returns>
  9054. [HttpPost]
  9055. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9056. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  9057. {
  9058. #region 参数验证
  9059. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9060. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9061. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9062. #region 团组操作权限验证 76 酒店预定模块
  9063. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9064. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9065. #endregion
  9066. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9067. #region 页面操作权限验证
  9068. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9069. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9070. #endregion
  9071. #endregion
  9072. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  9073. }
  9074. /// <summary>
  9075. /// 酒店预订
  9076. /// 生成VOUCHER
  9077. /// 2024.05.06 之前版本
  9078. /// </summary>
  9079. /// <param name="_dto"></param>
  9080. /// <returns></returns>
  9081. [HttpPost]
  9082. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9083. public async Task<IActionResult> PostHotelReservationsCreateVoucherOld(HotelReservationsCreateVoucherDto _dto)
  9084. {
  9085. try
  9086. {
  9087. #region 参数验证
  9088. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9089. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9090. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9091. if (_dto.Id < 1) return Ok(JsonView(false, "Id为空"));
  9092. #region 团组操作权限验证 76 酒店预定模块
  9093. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9094. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9095. #endregion
  9096. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9097. #region 页面操作权限验证
  9098. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9099. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9100. #endregion
  9101. #endregion
  9102. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  9103. //判断数据是否完整
  9104. if (hr != null)
  9105. {
  9106. if (!string.IsNullOrEmpty(hr.DetermineNo))
  9107. {
  9108. string strFileName = "HotelStatement/";
  9109. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  9110. if (dele != null)
  9111. strFileName += dele.TourCode;
  9112. //载入模板
  9113. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  9114. Document doc = new Document(sss);
  9115. DocumentBuilder builder = new DocumentBuilder(doc);
  9116. #region 替换Word模板书签内容
  9117. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  9118. //入住卷预定号码
  9119. if (doc.Range.Bookmarks["VNO"] != null)
  9120. {
  9121. Bookmark mark = doc.Range.Bookmarks["VNO"];
  9122. mark.Text = hr.CheckNumber;
  9123. }
  9124. //酒店时间
  9125. if (doc.Range.Bookmarks["Date"] != null)
  9126. {
  9127. Bookmark mark = doc.Range.Bookmarks["Date"];
  9128. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  9129. }
  9130. //团号
  9131. if (doc.Range.Bookmarks["TNo"] != null)
  9132. {
  9133. Bookmark mark = doc.Range.Bookmarks["TNo"];
  9134. mark.Text = dele.TourCode;
  9135. }
  9136. //预定号码
  9137. if (doc.Range.Bookmarks["BookingId"] != null)
  9138. {
  9139. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  9140. mark.Text = hr.ReservationsNo;
  9141. }
  9142. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  9143. {
  9144. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  9145. mark.Text = hr.DetermineNo;
  9146. }
  9147. //酒店城市
  9148. if (doc.Range.Bookmarks["City"] != null)
  9149. {
  9150. Bookmark mark = doc.Range.Bookmarks["City"];
  9151. mark.Text = hr.City;
  9152. }
  9153. //酒店名称
  9154. if (doc.Range.Bookmarks["HName"] != null)
  9155. {
  9156. Bookmark mark = doc.Range.Bookmarks["HName"];
  9157. mark.Text = hr.HotelName;
  9158. }
  9159. //酒店地址
  9160. if (doc.Range.Bookmarks["Address"] != null)
  9161. {
  9162. Bookmark mark = doc.Range.Bookmarks["Address"];
  9163. mark.Text = hr.HotelAddress;
  9164. }
  9165. //酒店电话
  9166. if (doc.Range.Bookmarks["Tel"] != null)
  9167. {
  9168. Bookmark mark = doc.Range.Bookmarks["Tel"];
  9169. mark.Text = hr.HotelTel;
  9170. }
  9171. //酒店传真
  9172. if (doc.Range.Bookmarks["Fax"] != null)
  9173. {
  9174. Bookmark mark = doc.Range.Bookmarks["Fax"];
  9175. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  9176. {
  9177. mark.Text = hr.HotelFax;
  9178. }
  9179. }
  9180. //入住时间
  9181. if (doc.Range.Bookmarks["CIn"] != null)
  9182. {
  9183. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  9184. Bookmark mark = doc.Range.Bookmarks["CIn"];
  9185. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  9186. }
  9187. //退房时间
  9188. if (doc.Range.Bookmarks["COut"] != null)
  9189. {
  9190. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  9191. Bookmark mark = doc.Range.Bookmarks["COut"];
  9192. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  9193. }
  9194. //客户名称
  9195. if (doc.Range.Bookmarks["GName"] != null)
  9196. {
  9197. string guestName = "";
  9198. string[] clients = new string[] { };
  9199. if (hr.GuestName.Contains(","))
  9200. {
  9201. clients = hr.GuestName.Split(",");
  9202. }
  9203. else
  9204. {
  9205. clients = new string[] { hr.GuestName };
  9206. }
  9207. List<int> clientIds_int = new List<int>();
  9208. if (clients.Length > 0)
  9209. {
  9210. foreach (var item in clients)
  9211. {
  9212. if (item.IsNumeric())
  9213. {
  9214. clientIds_int.Add(int.Parse(item));
  9215. }
  9216. }
  9217. }
  9218. if (clientIds_int.Count > 0)
  9219. {
  9220. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  9221. foreach (var client in _clientDatas)
  9222. {
  9223. //男
  9224. if (client.Sex == 0) guestName += $"Mr.";
  9225. //女
  9226. else if (client.Sex == 1) guestName += $"Ms.";
  9227. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  9228. {
  9229. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  9230. }
  9231. //guestName += $"{client.Pinyin},";
  9232. }
  9233. if (guestName.Length > 0)
  9234. {
  9235. guestName = guestName.Substring(0, guestName.Length - 1);
  9236. }
  9237. }
  9238. else
  9239. {
  9240. guestName = hr.GuestName;
  9241. }
  9242. Bookmark mark = doc.Range.Bookmarks["GName"];
  9243. mark.Text = guestName;
  9244. }
  9245. //房间介绍
  9246. if (doc.Range.Bookmarks["ROOM"] != null)
  9247. {
  9248. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  9249. mark.Text = hr.RoomExplanation;
  9250. }
  9251. //报价描述
  9252. if (doc.Range.Bookmarks["NOTE"] != null)
  9253. {
  9254. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  9255. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  9256. if (ss != null)
  9257. mark.Text = ss.Name;
  9258. }
  9259. //入住时间
  9260. if (doc.Range.Bookmarks["CheckIn"] != null)
  9261. {
  9262. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  9263. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  9264. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  9265. }
  9266. //退房时间
  9267. if (doc.Range.Bookmarks["CheckOut"] != null)
  9268. {
  9269. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  9270. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  9271. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  9272. }
  9273. //日期
  9274. if (doc.Range.Bookmarks["DT"] != null)
  9275. {
  9276. Bookmark mark = doc.Range.Bookmarks["DT"];
  9277. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  9278. }
  9279. //名称
  9280. if (doc.Range.Bookmarks["VName"] != null)
  9281. {
  9282. Bookmark mark = doc.Range.Bookmarks["VName"];
  9283. mark.Text = hr.HotelName;
  9284. }
  9285. //号码
  9286. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  9287. {
  9288. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  9289. mark.Text = hr.CheckNumber;
  9290. }
  9291. #endregion
  9292. strFileName += "VOUCHER.doc";
  9293. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9294. doc.Save(fileDir);
  9295. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9296. return Ok(JsonView(true, "操作成功!", Url));
  9297. }
  9298. else
  9299. {
  9300. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  9301. }
  9302. }
  9303. else
  9304. {
  9305. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  9306. }
  9307. }
  9308. catch (Exception ex)
  9309. {
  9310. return Ok(JsonView(false, ex.Message));
  9311. }
  9312. }
  9313. /// <summary>
  9314. /// 酒店预订
  9315. /// 生成VOUCHER
  9316. /// 2024.05.06 之后版本
  9317. /// </summary>
  9318. /// <param name="_dto"></param>
  9319. /// <returns></returns>
  9320. [HttpPost]
  9321. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9322. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  9323. {
  9324. #region 参数验证
  9325. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9326. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9327. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9328. #region 团组操作权限验证 76 酒店预定模块
  9329. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9330. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9331. #endregion
  9332. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9333. #region 页面操作权限验证
  9334. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9335. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9336. #endregion
  9337. #endregion
  9338. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9339. //判断数据是否完整
  9340. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  9341. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9342. string strFileName = "HotelStatement/";
  9343. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9344. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  9345. #region 数据处理
  9346. List<int> guestIds = new List<int>();
  9347. int index = 0;
  9348. foreach (var item in hrDtas)
  9349. {
  9350. if (item.GuestName.Contains(","))
  9351. {
  9352. string[] guestIdArr = item.GuestName.Split(',');
  9353. foreach (var guestIdStr in guestIdArr)
  9354. {
  9355. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  9356. if (guestBool)
  9357. {
  9358. guestIds.Add(guestId);
  9359. }
  9360. }
  9361. }
  9362. else guestNames += item.GuestName;
  9363. var voucherInfo = new HotelVoucherInfoView()
  9364. {
  9365. HotelName = item.HotelName,
  9366. CheckInDate = item.CheckInDate,
  9367. CheckOutDate = item.CheckOutDate,
  9368. ConfirmationNumber = item.DetermineNo.Trim(),
  9369. RoomType = item.RoomExplanation
  9370. };
  9371. vouchers.Add(voucherInfo);
  9372. }
  9373. if (guestIds.Count > 0)
  9374. {
  9375. guestIds = guestIds.Distinct().ToList();
  9376. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  9377. if (guestDatas.Count > 0)
  9378. {
  9379. guestNames = "";
  9380. foreach (var guest in guestDatas)
  9381. {
  9382. string guestName = "";
  9383. if (guest.Sex == 0) guestName += @"MR.";
  9384. else if (guest.Sex == 1) guestName += @"MS.";
  9385. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9386. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9387. guestNames += @$"{guestName.Trim()}、";
  9388. }
  9389. if (guestNames.Length > 0)
  9390. {
  9391. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9392. }
  9393. }
  9394. }
  9395. #endregion
  9396. //载入模板
  9397. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  9398. Document doc = new Document(sss);
  9399. DocumentBuilder builder = new DocumentBuilder(doc);
  9400. if (doc.Range.Bookmarks["GuestName"] != null)
  9401. {
  9402. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9403. mark.Text = guestNames;
  9404. }
  9405. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9406. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9407. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9408. for (int i = 1; i <= vouchers.Count; i++)
  9409. {
  9410. HotelVoucherInfoView hviv = vouchers[i - 1];
  9411. builder.MoveToCell(0, i, 0, 0);
  9412. builder.Write(hviv.HotelName);
  9413. builder.MoveToCell(0, i, 1, 0);
  9414. builder.Write(hviv.CheckInDate);
  9415. builder.MoveToCell(0, i, 2, 0);
  9416. builder.Write(hviv.CheckOutDate);
  9417. builder.MoveToCell(0, i, 3, 0);
  9418. builder.Write(hviv.RoomType);
  9419. builder.MoveToCell(0, i, 4, 0);
  9420. builder.Write(hviv.ConfirmationNumber);
  9421. }
  9422. //删除多余行
  9423. int currRowIndex = vouchers.Count + 1;
  9424. int delRows = 21 - currRowIndex;
  9425. if (delRows > 0)
  9426. {
  9427. for (int i = 0; i < delRows; i++)
  9428. {
  9429. table.Rows.RemoveAt(currRowIndex);
  9430. //cultivateRowIndex++;
  9431. }
  9432. }
  9433. strFileName += "VOUCHER.docx";
  9434. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9435. doc.Save(fileDir);
  9436. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9437. return Ok(JsonView(true, "操作成功!", Url));
  9438. }
  9439. /// <summary>
  9440. /// 酒店预订
  9441. /// 生成VOUCHER 批量生成
  9442. /// New
  9443. /// </summary>
  9444. /// <param name="_dto"></param>
  9445. /// <returns></returns>
  9446. [HttpPost]
  9447. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9448. public async Task<IActionResult> PostHotelReservationsCreateVoucherBatchNew(HotelReservationsCreateVoucherDto _dto)
  9449. {
  9450. #region 参数验证
  9451. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9452. if (_dto.PageId < 1) _dto.PageId = 28;
  9453. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9454. #region 团组操作权限验证 76 酒店预定模块
  9455. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9456. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9457. #endregion
  9458. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9459. #region 页面操作权限验证
  9460. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9461. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9462. #endregion
  9463. #endregion
  9464. var hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>()
  9465. .Where(it => it.IsDel == 0 && it.DiId == _dto.DiId)
  9466. .OrderBy(x => x.CreateTime)
  9467. .ToListAsync();
  9468. //判断数据是否完整
  9469. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  9470. string strFileName = "HotelStatement/";
  9471. var dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  9472. if (dele != null)
  9473. strFileName += $"{dele?.TeamName ?? ""}_{dele.TourCode}_";
  9474. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToListAsync();
  9475. for (int i = 0; i < hrDtas.Count; i++)
  9476. {
  9477. string guestNames = string.Empty;
  9478. List<int> guestIds = new List<int>();
  9479. var item = hrDtas[i];
  9480. //处理客户姓名
  9481. if (item.GuestName.Contains(","))
  9482. {
  9483. string[] guestIdArr = item.GuestName.Split(',');
  9484. foreach (var guestIdStr in guestIdArr)
  9485. if (int.TryParse(guestIdStr, out int guestId))
  9486. guestIds.Add(guestId);
  9487. }
  9488. else {
  9489. //NaN
  9490. if (item.GuestName.Contains("NaN"))
  9491. {
  9492. guestNames += item.GuestName.Replace("NaN", "").Replace(",", "");
  9493. }
  9494. }
  9495. if (guestIds.Count > 0)
  9496. {
  9497. guestIds = guestIds.Distinct().ToList();
  9498. var guestDatas1 = guestDatas.Where(it => guestIds.Contains(it.Id)).ToList();
  9499. if (guestDatas1.Count > 0)
  9500. {
  9501. guestNames = "";
  9502. foreach (var guest in guestDatas1)
  9503. {
  9504. string guestName = "";
  9505. if (guest.Sex == 0) guestName += @"MR.";
  9506. else if (guest.Sex == 1) guestName += @"MS.";
  9507. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9508. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9509. guestNames += @$"{guestName.Trim()}、";
  9510. }
  9511. if (guestNames.Length > 0)
  9512. {
  9513. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9514. }
  9515. }
  9516. }
  9517. //if (!string.IsNullOrEmpty(guestNames))
  9518. //{
  9519. hrDtas[i].GuestName = guestNames;
  9520. //}
  9521. }
  9522. strFileName += $"VOUCHER_{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  9523. Document doc = new Document();
  9524. DocumentBuilder builder = new DocumentBuilder(doc);
  9525. try
  9526. {
  9527. builder.MoveToDocumentStart();
  9528. foreach (var item in hrDtas)
  9529. {
  9530. //标题
  9531. builder.ParagraphFormat.StyleIdentifier = StyleIdentifier.Title;
  9532. builder.ParagraphFormat.LineSpacing = 1;
  9533. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9534. builder.ParagraphFormat.Style.Font.Size = 9;
  9535. builder.ParagraphFormat.Style.Font.Bold = true;
  9536. builder.ParagraphFormat.Alignment = ParagraphAlignment.Center;
  9537. builder.Writeln(@$"ACCOMMODATION VOUCHER");
  9538. builder.ParagraphFormat.StyleIdentifier = StyleIdentifier.Title;
  9539. builder.ParagraphFormat.Alignment = ParagraphAlignment.Center;
  9540. builder.ParagraphFormat.LineSpacing = 1;
  9541. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9542. builder.ParagraphFormat.Style.Font.Size = 9;
  9543. builder.ParagraphFormat.Style.Font.Bold = true;
  9544. builder.Writeln(@$"VOUCHER No:{item.CheckNumber} DATE: {item.CreateTime.ToString("yyyy-MM-dd")}");
  9545. builder.StartTable();
  9546. // 设置边框颜色
  9547. builder.CellFormat.Borders.Top.Color = System.Drawing.Color.Black;
  9548. //设置边框样式
  9549. builder.CellFormat.Borders.LineStyle = Aspose.Words.LineStyle.Dot;
  9550. //表格
  9551. #region 第一行
  9552. builder.InsertCell();
  9553. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9554. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9555. //builder.CellFormat.AllowAutoFit = false;
  9556. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9557. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9558. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9559. builder.CellFormat.WrapText = true; //自动换行
  9560. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9561. builder.RowFormat.AllowBreakAcrossPages = false; //文字自适应大小
  9562. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9563. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9564. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9565. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9566. builder.Write("TOUR NO:");
  9567. builder.InsertCell();
  9568. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9569. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9570. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9571. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9572. builder.ParagraphFormat.Style.Font.Bold = false;
  9573. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9574. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9575. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9576. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9577. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9578. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9579. builder.Write($"{dele?.TourCode ?? "-"}");
  9580. builder.InsertCell();
  9581. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9582. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9583. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9584. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9585. builder.ParagraphFormat.Style.Font.Bold = false;
  9586. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9587. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9588. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9589. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9590. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9591. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9592. builder.Write($"CITY:");
  9593. builder.InsertCell();
  9594. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9595. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9596. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9597. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9598. builder.ParagraphFormat.Style.Font.Bold = false;
  9599. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9600. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9601. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9602. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9603. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9604. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9605. builder.Write($"{item.City}");
  9606. builder.EndRow();
  9607. #endregion
  9608. #region 第二行
  9609. builder.InsertCell();
  9610. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9611. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9612. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9613. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9614. builder.ParagraphFormat.Style.Font.Bold = false;
  9615. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9616. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9617. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9618. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9619. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9620. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9621. builder.Write("CONFIRMATION NO:");
  9622. builder.InsertCell();
  9623. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9624. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9625. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9626. builder.ParagraphFormat.Style.Font.Bold = false;
  9627. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9628. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9629. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9630. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9631. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9632. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9633. builder.CellFormat.VerticalMerge = CellMerge.None;
  9634. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9635. builder.Write($"{item.DetermineNo}");
  9636. builder.InsertCell();
  9637. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9638. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9639. builder.InsertCell();
  9640. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9641. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9642. builder.EndRow();
  9643. #endregion
  9644. #region 第三行
  9645. builder.InsertCell();
  9646. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9647. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9648. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9649. builder.ParagraphFormat.Style.Font.Bold = false;
  9650. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9651. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9652. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9653. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9654. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9655. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9656. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9657. builder.Write($"HOTEL NAME:");
  9658. builder.InsertCell();
  9659. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9660. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9661. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9662. builder.ParagraphFormat.Style.Font.Bold = false;
  9663. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9664. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9665. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9666. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9667. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9668. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9669. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9670. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9671. builder.Write($"{item.HotelName}");
  9672. builder.InsertCell();
  9673. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9674. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9675. builder.InsertCell();
  9676. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9677. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9678. builder.EndRow();
  9679. #endregion
  9680. #region 第四行
  9681. builder.InsertCell();
  9682. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9683. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9684. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9685. builder.ParagraphFormat.Style.Font.Bold = false;
  9686. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9687. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9688. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9689. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9690. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9691. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9692. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9693. builder.Write($"HOTEL ADDRESS:");
  9694. builder.InsertCell();
  9695. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9696. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9697. builder.ParagraphFormat.Style.Font.Size = 8;
  9698. builder.ParagraphFormat.Style.Font.Bold = false;
  9699. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9700. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9701. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9702. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9703. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9704. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9705. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9706. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9707. builder.Write($"{item.HotelAddress}");
  9708. builder.InsertCell();
  9709. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9710. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9711. builder.InsertCell();
  9712. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9713. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9714. builder.EndRow();
  9715. #endregion
  9716. #region 第五行
  9717. builder.InsertCell();
  9718. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9719. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9720. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9721. builder.ParagraphFormat.Style.Font.Bold = false;
  9722. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9723. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9724. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9725. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9726. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9727. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9728. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9729. builder.Write("TEL:");
  9730. builder.InsertCell();
  9731. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9732. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9733. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9734. builder.ParagraphFormat.Style.Font.Bold = false;
  9735. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9736. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9737. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9738. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9739. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9740. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9741. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9742. builder.Write($"{item.HotelTel}");
  9743. builder.InsertCell();
  9744. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9745. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9746. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9747. builder.ParagraphFormat.Style.Font.Bold = false;
  9748. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9749. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9750. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9751. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9752. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9753. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9754. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9755. builder.Write($"FAX:");
  9756. builder.InsertCell();
  9757. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9758. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9759. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9760. builder.ParagraphFormat.Style.Font.Bold = false;
  9761. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9762. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9763. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9764. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9765. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9766. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9767. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9768. builder.Write($"{item.HotelFax}");
  9769. builder.EndRow();
  9770. #endregion
  9771. #region 第六行
  9772. builder.InsertCell();
  9773. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9774. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9775. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9776. builder.ParagraphFormat.Style.Font.Bold = false;
  9777. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9778. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9779. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9780. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9781. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9782. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9783. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9784. builder.Write("CHECK IN:");
  9785. builder.InsertCell();
  9786. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9787. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9788. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9789. builder.ParagraphFormat.Style.Font.Bold = false;
  9790. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9791. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9792. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9793. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9794. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9795. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9796. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9797. DateTime dtCheckIn = Convert.ToDateTime(item.CheckInDate);
  9798. string checkInStr = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  9799. builder.Write($"{checkInStr}");
  9800. builder.InsertCell();
  9801. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9802. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9803. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9804. builder.ParagraphFormat.Style.Font.Bold = false;
  9805. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9806. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9807. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9808. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9809. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9810. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9811. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9812. builder.Write($"CHECK OUT:");
  9813. builder.InsertCell();
  9814. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9815. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9816. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9817. builder.ParagraphFormat.Style.Font.Bold = false;
  9818. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9819. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9820. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9821. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9822. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9823. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9824. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9825. DateTime dtCheckOut = Convert.ToDateTime(item.CheckOutDate);
  9826. string checkOutStr = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year + " ";
  9827. builder.Write($"{checkOutStr}");
  9828. builder.EndRow();
  9829. #endregion
  9830. #region 第七行
  9831. builder.InsertCell();
  9832. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9833. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9834. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9835. builder.ParagraphFormat.Style.Font.Bold = false;
  9836. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9837. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9838. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9839. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9840. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9841. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9842. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9843. builder.Write($"GUEST NAME:");
  9844. builder.InsertCell();
  9845. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9846. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9847. builder.ParagraphFormat.Style.Font.Size = 8;
  9848. builder.ParagraphFormat.Style.Font.Bold = false;
  9849. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9850. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9851. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9852. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9853. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9854. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9855. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9856. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9857. builder.Write($"{item.GuestName}");
  9858. builder.InsertCell();
  9859. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9860. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9861. builder.InsertCell();
  9862. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9863. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9864. builder.EndRow();
  9865. #endregion
  9866. #region 第八行
  9867. builder.InsertCell();
  9868. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9869. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9870. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9871. builder.ParagraphFormat.Style.Font.Bold = false;
  9872. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9873. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9874. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9875. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9876. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9877. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9878. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9879. builder.Write($"ROOM TYPE:");
  9880. builder.InsertCell();
  9881. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9882. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9883. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9884. builder.ParagraphFormat.Style.Font.Bold = false;
  9885. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9886. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9887. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9888. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9889. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9890. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9891. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9892. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9893. builder.Write($"{item.RoomExplanation}");
  9894. builder.InsertCell();
  9895. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9896. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9897. builder.InsertCell();
  9898. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9899. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9900. builder.EndRow();
  9901. #endregion
  9902. #region 第九行
  9903. builder.InsertCell();
  9904. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9905. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9906. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9907. builder.ParagraphFormat.Style.Font.Bold = false;
  9908. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9909. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9910. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9911. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9912. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9913. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9914. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9915. builder.Write($"NOTE:");
  9916. builder.InsertCell();
  9917. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9918. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9919. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9920. builder.ParagraphFormat.Style.Font.Bold = false;
  9921. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9922. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9923. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9924. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9925. builder.Write($"ROOM WITH BREAKFAST AND TAX ONLY.\r\nTHIS SERVICE IS PAYABLE BY C-TRIP. FOR EXTRA CHARGE TO BE COLLECTED FROM THE GUEST.");
  9926. builder.InsertCell();
  9927. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9928. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9929. builder.InsertCell();
  9930. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9931. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9932. builder.EndRow();
  9933. #endregion
  9934. builder.EndTable();
  9935. //换行
  9936. builder.Writeln("");
  9937. builder.Writeln("");
  9938. }
  9939. #region 获取文档中的所有表格 设置文字自适应
  9940. // 获取文档中的所有表格。
  9941. foreach (Table table in doc.GetChildNodes(NodeType.Table, true))
  9942. {
  9943. // 遍历表格中的所有行。
  9944. foreach (Aspose.Words.Tables.Row row in table.Rows)
  9945. {
  9946. foreach (Cell cell in row.Cells)
  9947. {
  9948. Aspose.Words.Tables.CellFormat cellFormat = cell.CellFormat;
  9949. cellFormat.Width = 0;
  9950. }
  9951. }
  9952. }
  9953. #endregion
  9954. #region 设置页眉
  9955. builder.MoveToHeaderFooter(HeaderFooterType.HeaderPrimary);
  9956. string voucherHeaderPath = $"./Images/VoucherHeader.png";
  9957. if (System.IO.File.Exists(voucherHeaderPath))
  9958. {
  9959. byte[] imageBytes = System.IO.File.ReadAllBytes(voucherHeaderPath);
  9960. //Image image = Image.FromStream(imageBytes, ImageType.Png);
  9961. //builder.InsertImage(imageBytes, RelativeHorizontalPosition.Margin, 0, RelativeVerticalPosition.Margin, 0, 81, 36, WrapType.None);
  9962. Shape shape = builder.InsertImage(imageBytes);
  9963. // 调整图片位置
  9964. shape.RelativeHorizontalPosition = RelativeHorizontalPosition.Page; // 将图片的水平位置设置为页面
  9965. shape.RelativeVerticalPosition = RelativeVerticalPosition.TopMargin; // 将图片的垂直位置设置为页眉上边距
  9966. shape.Top = 50; // 将图片距离页眉上边缘的距离
  9967. shape.Left = 0; // 将图片距离页面左边缘的距离
  9968. shape.Width = 81; // 设置图片宽度
  9969. shape.Height = 36; // 设置图片高度
  9970. }
  9971. //靠右
  9972. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;
  9973. //// 设置页脚上下边距
  9974. //builder.PageSetup.HeaderDistance = 42;
  9975. // 添加页眉线
  9976. Aspose.Words.Border borderHeader = null;
  9977. try
  9978. {
  9979. borderHeader = builder.ParagraphFormat.Borders.Bottom;
  9980. }
  9981. catch (Exception e)
  9982. {
  9983. // TODO Auto-generated catch block
  9984. //e.printStackTrace();
  9985. }
  9986. borderHeader.Shadow = true;
  9987. borderHeader.DistanceFromText = 2;
  9988. borderHeader.LineStyle = Aspose.Words.LineStyle.Single;
  9989. #endregion
  9990. }
  9991. catch (Exception ex)
  9992. {
  9993. }
  9994. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9995. doc.Save(fileDir);
  9996. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9997. return Ok(JsonView(true, "操作成功!", Url));
  9998. }
  9999. /// <summary>
  10000. /// 酒店预订
  10001. /// 生成 预定成本 Excel
  10002. /// </summary>
  10003. /// <param name="_dto"></param>
  10004. /// <returns></returns>
  10005. [HttpPost]
  10006. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10007. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  10008. {
  10009. #region 参数验证
  10010. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  10011. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  10012. if (!vadalitorRes.IsValid)
  10013. {
  10014. var errors = new StringBuilder();
  10015. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  10016. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  10017. }
  10018. #region 团组操作权限验证 76 酒店预定模块
  10019. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  10020. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  10021. #endregion
  10022. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10023. #region 页面操作权限验证
  10024. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10025. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10026. #endregion
  10027. #endregion
  10028. decimal _rate = 1.00M;
  10029. string _currency = "";
  10030. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  10031. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  10032. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  10033. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  10034. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  10035. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  10036. {
  10037. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  10038. }
  10039. _currency = _GroupCostParameter.Currency;
  10040. bool isIntType = int.TryParse(_currency, out int currId);
  10041. if (isIntType)
  10042. {
  10043. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  10044. }
  10045. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  10046. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  10047. if (currInfo == null)
  10048. {
  10049. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  10050. }
  10051. if (!_currency.ToUpper().Equals("CNY"))
  10052. {
  10053. _rate = _GroupCostParameter.Rate;
  10054. }
  10055. _rate = currInfo.Rate;
  10056. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  10057. string strFileName = "HotelStatement/";
  10058. string guestNames = ""; //格式Mr.xxx Ms.xxx
  10059. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  10060. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  10061. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  10062. #region 数据处理
  10063. foreach (var item in hrDtas)
  10064. {
  10065. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  10066. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  10067. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  10068. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  10069. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  10070. string roomCurr = currDatas.Find(it => it.Id == roomInfo?.Currency)?.Name ?? "";
  10071. string singleRoomFeeStr = string.Empty,
  10072. doubleRoomFeeStr = string.Empty,
  10073. suiteRoomFeeStr = string.Empty,
  10074. otherRoomFeeStr = string.Empty,
  10075. payMoneyStr = string.Empty,
  10076. cardPriceStr = string.Empty;
  10077. if (roomCurr.Equals(_currency))
  10078. {
  10079. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  10080. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  10081. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  10082. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  10083. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  10084. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  10085. }
  10086. else
  10087. {
  10088. singleRoomFeeStr = $"{((item.SingleRoomPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  10089. doubleRoomFeeStr = $"{((item.DoubleRoomPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  10090. suiteRoomFeeStr = $"{((item.SuiteRoomPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  10091. otherRoomFeeStr = $"{((item.OtherRoomPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  10092. payMoneyStr = $"{((ccpInfo.PayMoney * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  10093. cardPriceStr = $"{((item.CardPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  10094. }
  10095. string breakfastPriceStr = string.Empty,
  10096. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  10097. governmentRentStr = string.Empty,
  10098. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  10099. cityTaxStrStr = string.Empty,
  10100. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  10101. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  10102. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  10103. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  10104. int payDId = roomInfo?.PayDId ?? 0;
  10105. pcfds.Add(new HotelReservations_PCFD_View()
  10106. {
  10107. City = item.City,
  10108. HotelName = item.HotelName,
  10109. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  10110. // SingleRoomCount = item.SingleRoomCount,
  10111. SingleRoomPrice = singleRoomFeeStr,
  10112. // DoubleRoomCount = item.DoubleRoomCount,
  10113. DoubleRoomPrice = doubleRoomFeeStr,
  10114. //SuiteRoomCount = item.SuiteRoomCount,
  10115. SuiteRoomPrice = suiteRoomFeeStr,
  10116. OtherRoomPrice = otherRoomFeeStr,
  10117. //OtherRoomCount = item.OtherRoomCount,
  10118. BreakfastPrice = breakfastPriceStr,
  10119. GovernmentRent = governmentRentStr,
  10120. CityTax = cityTaxStrStr,
  10121. RoomExplanation = item.RoomExplanation,
  10122. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == payDId).First()?.Name ?? "",
  10123. PayTime = roomInfo?.ConsumptionDate,
  10124. BankNo = roomInfo?.BankNo,
  10125. PayMoney = payMoneyStr,
  10126. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  10127. ConsumptionPatterns = roomInfo?.ConsumptionPatterns,
  10128. CardPrice = cardPriceStr,
  10129. Remark = ccpInfo.Remark
  10130. });
  10131. }
  10132. #endregion
  10133. //载入模板
  10134. WorkbookDesigner designer = new WorkbookDesigner();
  10135. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  10136. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  10137. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  10138. designer.SetDataSource("TourNo", groupInfo.TourCode);
  10139. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  10140. designer.SetDataSource("Opertor", userInfo.CnName);
  10141. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  10142. dt.TableName = "ViewMyHotelReservations";
  10143. designer.SetDataSource(dt);
  10144. designer.Process();
  10145. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  10146. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  10147. designer.Workbook.Save(serverPath);
  10148. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  10149. #region 删除指定行
  10150. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  10151. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  10152. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  10153. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  10154. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  10155. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  10156. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  10157. cssIndex = dt.Columns["CityTax"].Ordinal,
  10158. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  10159. remarkIndex = dt.Columns["Remark"].Ordinal;
  10160. //删除指定列
  10161. foreach (DataRow item in dt.Rows)
  10162. {
  10163. string singleStr = item["SingleRoomPrice"].ToString();
  10164. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  10165. if (containsDigitButNotZero1) singleDel = false;
  10166. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  10167. string doubleStr = item["DoubleRoomPrice"].ToString();
  10168. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  10169. if (containsDigitButNotZero2) doubleDel = false;
  10170. string suiteStr = item["SuiteRoomPrice"].ToString();
  10171. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  10172. if (containsDigitButNotZero3) suiteDel = false;
  10173. string otherStr = item["OtherRoomPrice"].ToString();
  10174. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  10175. if (containsDigitButNotZero4) otherDel = false;
  10176. string zcStr = item["BreakfastPrice"].ToString();
  10177. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  10178. if (containsDigitButNotZero5) zcDel = false;
  10179. string dsStr = item["GovernmentRent"].ToString();
  10180. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  10181. if (containsDigitButNotZero6) dsDel = false;
  10182. string cssStr = item["CityTax"].ToString();
  10183. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  10184. if (containsDigitButNotZero7) cssDel = false;
  10185. string cpStr = item["ConsumptionPatterns"].ToString();
  10186. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  10187. string remarkStr = item["Remark"].ToString();
  10188. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  10189. }
  10190. DeleteColumn(serverPath, remarkIndex, remarkDel);
  10191. DeleteColumn(serverPath, cpIndex, cpDel);
  10192. DeleteColumn(serverPath, dsIndex, dsDel);
  10193. DeleteColumn(serverPath, cssIndex, cssDel);
  10194. DeleteColumn(serverPath, zcIndex, zcDel);
  10195. DeleteColumn(serverPath, otherIndex, otherDel);
  10196. DeleteColumn(serverPath, suiteIndex, suiteDel);
  10197. DeleteColumn(serverPath, doubleIndex, doubleDel);
  10198. DeleteColumn(serverPath, singleIndex, singleDel);
  10199. #endregion
  10200. //只保留第一个表格
  10201. DeleteSheet(serverPath);
  10202. return Ok(JsonView(true, "操作成功", url = rst));
  10203. }
  10204. /// <summary>
  10205. /// 删除指定列
  10206. /// </summary>
  10207. /// <param name="file"></param>
  10208. /// <param name="columnIndex"></param>
  10209. /// <param name="isDel"></param>
  10210. private void DeleteColumn(string file, int columnIndex, bool isDel)
  10211. {
  10212. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  10213. //wb.Save(file);
  10214. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  10215. if (sheet1 != null)
  10216. {
  10217. if (isDel)
  10218. {
  10219. Cells cells = sheet1.Cells;
  10220. cells.DeleteColumn(columnIndex);
  10221. }
  10222. }
  10223. wb.Save(file);
  10224. }
  10225. /// <summary>
  10226. /// 删除sheet
  10227. /// </summary>
  10228. /// <param name="file"></param>
  10229. /// <param name="sheetName"></param>
  10230. private void DeleteSheet(string file, string sheetName = "")
  10231. {
  10232. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  10233. //wb.Save(file);
  10234. List<string> sheets = new List<string>();
  10235. foreach (var item in wb.Worksheets)
  10236. {
  10237. sheets.Add(item.Name);
  10238. }
  10239. if (sheets.Count > 0)
  10240. {
  10241. sheets.RemoveAt(0);//不删除第一个sheet
  10242. foreach (var item in sheets)
  10243. {
  10244. wb.Worksheets.RemoveAt(item);
  10245. }
  10246. }
  10247. wb.Save(file);
  10248. }
  10249. /// <summary>
  10250. /// 酒店预订
  10251. /// 确认单
  10252. /// </summary>
  10253. /// <param name="_dto"></param>
  10254. /// <returns></returns>
  10255. [HttpPost]
  10256. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10257. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  10258. {
  10259. try
  10260. {
  10261. #region 参数验证
  10262. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  10263. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  10264. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  10265. #region 团组操作权限验证 76 酒店预定模块
  10266. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  10267. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  10268. #endregion
  10269. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10270. #region 页面操作权限验证
  10271. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10272. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10273. #endregion
  10274. #endregion
  10275. //团组信息
  10276. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  10277. //酒店数据
  10278. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  10279. if (listhoteldata.Count < 0)
  10280. {
  10281. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  10282. }
  10283. //利datatable存储
  10284. DataTable dt = new DataTable();
  10285. dt.Columns.Add("CheckInDate", typeof(string));
  10286. dt.Columns.Add("City", typeof(string));
  10287. dt.Columns.Add("Hotel", typeof(string));
  10288. dt.Columns.Add("Room", typeof(string));
  10289. for (int i = 0; i < listhoteldata.Count; i++)
  10290. {
  10291. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  10292. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  10293. while (dayStart < dayEnd)
  10294. {
  10295. string temp = "";
  10296. DataRow row = dt.NewRow();
  10297. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  10298. row["City"] = listhoteldata[i].City;
  10299. row["Hotel"] = listhoteldata[i].HotelName;
  10300. if (listhoteldata[i].SingleRoomCount > 0)
  10301. {
  10302. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  10303. }
  10304. if (listhoteldata[i].DoubleRoomCount > 0)
  10305. {
  10306. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  10307. }
  10308. if (listhoteldata[i].SuiteRoomCount > 0)
  10309. {
  10310. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  10311. }
  10312. if (listhoteldata[i].OtherRoomCount > 0)
  10313. {
  10314. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  10315. }
  10316. row["Room"] = temp;
  10317. dt.Rows.Add(row);
  10318. dayStart = dayStart.AddDays(1);
  10319. }
  10320. }
  10321. Dictionary<string, string> dic = new Dictionary<string, string>();
  10322. dic.Add("Dele", di.TeamName);
  10323. dic.Add("City", di.VisitCountry);
  10324. //模板路径
  10325. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  10326. //载入模板
  10327. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  10328. DocumentBuilder builder = new DocumentBuilder(doc);
  10329. foreach (var key in dic.Keys)
  10330. {
  10331. builder.MoveToBookmark(key);
  10332. builder.Write(dic[key]);
  10333. }
  10334. //获取word里所有表格
  10335. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10336. //获取所填表格的序数
  10337. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10338. var rowStart = tableOne.Rows[0]; //获取第1行
  10339. //循环赋值
  10340. for (int i = 0; i < dt.Rows.Count; i++)
  10341. {
  10342. builder.MoveToCell(0, i + 1, 0, 0);
  10343. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  10344. builder.MoveToCell(0, i + 1, 1, 0);
  10345. builder.Write(dt.Rows[i]["City"].ToString());
  10346. builder.MoveToCell(0, i + 1, 2, 0);
  10347. builder.Write(dt.Rows[i]["Hotel"].ToString());
  10348. builder.MoveToCell(0, i + 1, 3, 0);
  10349. builder.Write(dt.Rows[i]["Room"].ToString());
  10350. }
  10351. //删除多余行
  10352. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  10353. {
  10354. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  10355. }
  10356. string strFileName = di.TeamName + "酒店确认单.doc";
  10357. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  10358. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  10359. return Ok(JsonView(true, "成功", url));
  10360. }
  10361. catch (Exception ex)
  10362. {
  10363. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  10364. }
  10365. }
  10366. #endregion
  10367. #region 团组状态
  10368. /// <summary>
  10369. /// 团组状态列表 Page
  10370. /// </summary>
  10371. /// <param name="dto">团组列表请求dto</param>
  10372. /// <returns></returns>
  10373. [HttpPost]
  10374. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10375. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  10376. {
  10377. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  10378. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  10379. {
  10380. string sqlWhere = string.Empty;
  10381. if (dto.IsSure == 0) //未完成
  10382. {
  10383. sqlWhere += string.Format(@" And IsSure = 0");
  10384. }
  10385. else if (dto.IsSure == 1) //已完成
  10386. {
  10387. sqlWhere += string.Format(@" And IsSure = 1");
  10388. }
  10389. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  10390. {
  10391. string tj = dto.SearchCriteria;
  10392. 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}%')",
  10393. tj, tj, tj, tj, tj);
  10394. }
  10395. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  10396. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  10397. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  10398. From (
  10399. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  10400. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  10401. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  10402. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  10403. From Grp_DelegationInfo gdi
  10404. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  10405. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  10406. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  10407. Where gdi.IsDel = 0 {0}
  10408. ) temp ", sqlWhere);
  10409. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  10410. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  10411. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  10412. }
  10413. else
  10414. {
  10415. return Ok(JsonView(false, "查询失败"));
  10416. }
  10417. }
  10418. /// <summary>
  10419. /// 团组状态
  10420. /// 设置操作完成
  10421. /// </summary>
  10422. /// <param name="dto">团组列表请求dto</param>
  10423. /// <returns></returns>
  10424. [HttpPost]
  10425. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10426. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  10427. {
  10428. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  10429. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  10430. {
  10431. Id = dto.Id,
  10432. IsSure = 1
  10433. };
  10434. var result = await _sqlSugar.Updateable(_DelegationInfo)
  10435. .UpdateColumns(it => new { it.IsSure })
  10436. .WhereColumns(it => new { it.Id })
  10437. .ExecuteCommandAsync();
  10438. if (result > 0)
  10439. {
  10440. return Ok(JsonView(true, "操作完成!"));
  10441. }
  10442. return Ok(JsonView(false, "操作失败!"));
  10443. }
  10444. #endregion
  10445. #region 保险费用录入
  10446. /// <summary>
  10447. /// 根据团组Id查询保险费用列表
  10448. /// </summary>
  10449. /// <param name="dto"></param>
  10450. /// <returns></returns>
  10451. [HttpPost]
  10452. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10453. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  10454. {
  10455. try
  10456. {
  10457. Result groupData = await _customersRep.CustomersByDiId(dto);
  10458. if (groupData.Code != 0)
  10459. {
  10460. return Ok(JsonView(false, groupData.Msg));
  10461. }
  10462. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10463. }
  10464. catch (Exception ex)
  10465. {
  10466. return Ok(JsonView(false, ex.Message));
  10467. }
  10468. }
  10469. /// <summary>
  10470. /// 根据保险费用Id查询保险费用详细
  10471. /// </summary>
  10472. /// <param name="dto"></param>
  10473. /// <returns></returns>
  10474. [HttpPost]
  10475. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10476. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  10477. {
  10478. try
  10479. {
  10480. Result groupData = await _customersRep.CustomersById(dto);
  10481. if (groupData.Code != 0)
  10482. {
  10483. return Ok(JsonView(false, groupData.Msg));
  10484. }
  10485. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10486. }
  10487. catch (Exception ex)
  10488. {
  10489. return Ok(JsonView(false, ex.Message));
  10490. }
  10491. }
  10492. /// <summary>
  10493. /// 保险费用录入页面初始化绑定
  10494. /// </summary>
  10495. /// <param name="dto"></param>
  10496. /// <returns></returns>
  10497. [HttpPost]
  10498. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10499. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  10500. {
  10501. try
  10502. {
  10503. Result groupData = await _customersRep.CustomersInitialize(dto);
  10504. if (groupData.Code != 0)
  10505. {
  10506. return Ok(JsonView(false, groupData.Msg));
  10507. }
  10508. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10509. }
  10510. catch (Exception ex)
  10511. {
  10512. return Ok(JsonView(false, ex.Message));
  10513. }
  10514. }
  10515. /// <summary>
  10516. /// 保险费用操作(Status:1.新增,2.修改)
  10517. /// </summary>
  10518. /// <param name="dto"></param>
  10519. /// <returns></returns>
  10520. [HttpPost]
  10521. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10522. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  10523. {
  10524. try
  10525. {
  10526. Result groupData = await _customersRep.OpCustomers(dto);
  10527. if (groupData.Code != 0)
  10528. {
  10529. return Ok(JsonView(false, groupData.Msg));
  10530. }
  10531. #region 应用推送
  10532. try
  10533. {
  10534. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  10535. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  10536. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  10537. }
  10538. catch (Exception ex)
  10539. {
  10540. }
  10541. #endregion
  10542. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10543. }
  10544. catch (Exception ex)
  10545. {
  10546. return Ok(JsonView(false, ex.Message));
  10547. }
  10548. }
  10549. /// <summary>
  10550. /// 保险文件上传
  10551. /// </summary>
  10552. /// <param name="file"></param>
  10553. /// <returns></returns>
  10554. [HttpPost]
  10555. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10556. public async Task<IActionResult> UploadCus(IFormFile file)
  10557. {
  10558. try
  10559. {
  10560. if (file != null)
  10561. {
  10562. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  10563. //文件名称
  10564. string projectFileName = file.FileName;
  10565. //上传的文件的路径
  10566. string filePath = "";
  10567. if (!Directory.Exists(fileDir))
  10568. {
  10569. Directory.CreateDirectory(fileDir);
  10570. }
  10571. //上传的文件的路径
  10572. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  10573. using (FileStream fs = System.IO.File.Create(filePath))
  10574. {
  10575. file.CopyTo(fs);
  10576. fs.Flush();
  10577. }
  10578. return Ok(JsonView(true, "上传成功!", projectFileName));
  10579. }
  10580. else
  10581. {
  10582. return Ok(JsonView(false, "上传失败!"));
  10583. }
  10584. }
  10585. catch (Exception ex)
  10586. {
  10587. return Ok(JsonView(false, "程序错误!"));
  10588. throw;
  10589. }
  10590. }
  10591. /// <summary>
  10592. /// 保险删除指定文件
  10593. /// </summary>
  10594. /// <param name="dto"></param>
  10595. /// <returns></returns>
  10596. [HttpPost]
  10597. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10598. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  10599. {
  10600. try
  10601. {
  10602. string filePath = "";
  10603. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  10604. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  10605. //int id = 0;
  10606. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  10607. // 删除该文件
  10608. try
  10609. {
  10610. System.IO.File.Delete(filePath);
  10611. 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()
  10612. {
  10613. Attachment = "",
  10614. }).ExecuteCommandAsync();
  10615. if (result != 0)
  10616. {
  10617. return Ok(JsonView(true, "成功!"));
  10618. }
  10619. else
  10620. {
  10621. return Ok(JsonView(false, "失败!"));
  10622. }
  10623. }
  10624. catch (Exception)
  10625. {
  10626. 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()
  10627. {
  10628. Attachment = "",
  10629. }).ExecuteCommandAsync();
  10630. if (result != 0)
  10631. {
  10632. return Ok(JsonView(true, "成功!"));
  10633. }
  10634. else
  10635. {
  10636. return Ok(JsonView(false, "失败!"));
  10637. }
  10638. }
  10639. }
  10640. catch (Exception ex)
  10641. {
  10642. return Ok(JsonView(false, "程序错误!"));
  10643. throw;
  10644. }
  10645. }
  10646. /// <summary>
  10647. /// 保险费用操作(删除)
  10648. /// </summary>
  10649. /// <param name="dto"></param>
  10650. /// <returns></returns>
  10651. [HttpPost]
  10652. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10653. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  10654. {
  10655. try
  10656. {
  10657. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  10658. if (!res)
  10659. {
  10660. return Ok(JsonView(false, "删除失败"));
  10661. }
  10662. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  10663. {
  10664. IsDel = 1,
  10665. DeleteUserId = dto.DeleteUserId,
  10666. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  10667. }).ExecuteCommandAsync();
  10668. return Ok(JsonView(true, "删除成功!"));
  10669. }
  10670. catch (Exception ex)
  10671. {
  10672. return Ok(JsonView(false, "程序错误!"));
  10673. throw;
  10674. }
  10675. }
  10676. #endregion
  10677. #region 接团客户名单 PageId 104
  10678. /// <summary>
  10679. /// 接团客户名单
  10680. /// 迁移数据(慎用!)
  10681. /// </summary>
  10682. /// <param name="dto"></param>
  10683. /// <returns></returns>
  10684. [HttpPost]
  10685. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10686. public async Task<IActionResult> PostTourClientListChange()
  10687. {
  10688. try
  10689. {
  10690. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  10691. //var groupClinetData1
  10692. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  10693. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  10694. int updateCount = 0;
  10695. if (oldOAClientList.Count > 0)
  10696. {
  10697. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  10698. _sqlSugar.BeginTran();
  10699. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  10700. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  10701. foreach (var item in oldOAClientList)
  10702. {
  10703. int comId = 0;
  10704. string format = "yyyy-MM-dd HH:mm:ss";
  10705. string data11 = "1990-01-01 00:00";
  10706. var data1 = IsValidDate(item.OPdate, format);
  10707. if (data1) data11 = item.OPdate;
  10708. //客户公司验证
  10709. if (!string.IsNullOrEmpty(item.Company))
  10710. {
  10711. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  10712. if (clientComInfo == null) // add
  10713. {
  10714. var addInfo = new Crm_CustomerCompany()
  10715. {
  10716. CompanyAbbreviation = "",
  10717. CompanyFullName = item.Company,
  10718. Address = "",
  10719. PostCodes = "",
  10720. LastedOpUserId = item.OPer,
  10721. LastedOpDt = Convert.ToDateTime(data11),
  10722. CreateUserId = item.OPer,
  10723. CreateTime = Convert.ToDateTime(data11),
  10724. IsDel = 0
  10725. };
  10726. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  10727. if (comId1 > 0) comId = comId1;
  10728. }
  10729. else comId = clientComInfo.Id;
  10730. }
  10731. //客户人员验证
  10732. int clientId = 0;
  10733. string name = item.LastName + item.Name;
  10734. if (!string.IsNullOrEmpty(name))
  10735. {
  10736. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  10737. if (clientInfo == null)
  10738. {
  10739. DateTime? dateTime = null;
  10740. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  10741. if (isDt) dateTime = birthDayDt;
  10742. var addInfo1 = new Crm_DeleClient()
  10743. {
  10744. CrmCompanyId = comId,
  10745. DiId = -1,
  10746. LastName = item.LastName,
  10747. FirstName = item.Name,
  10748. OldName = "",
  10749. Pinyin = item.Pinyin,
  10750. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  10751. Marriage = 0,
  10752. Phone = item.Phone,
  10753. Job = item.Job,
  10754. BirthDay = dateTime
  10755. };
  10756. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  10757. if (clientId1 > 0) clientId = clientId1;
  10758. }
  10759. else clientId = clientInfo.Id;
  10760. }
  10761. if (clientId < 1)
  10762. {
  10763. continue;
  10764. }
  10765. int airType = 0;
  10766. if (item.AirType == "超经舱") airType = 459;
  10767. else if (item.AirType == "公务舱") airType = 458;
  10768. else if (item.AirType == "经济舱") airType = 460;
  10769. else if (item.AirType == "其他") airType = 565;
  10770. else if (item.AirType == "头等舱") airType = 457;
  10771. var _TourClientListEntity = new Grp_TourClientList()
  10772. {
  10773. DiId = item.Diid,
  10774. ClientId = clientId,
  10775. CreateUserId = item.OPer,
  10776. CreateTime = Convert.ToDateTime(data11),
  10777. Remark = item.Remark,
  10778. IsDel = item.Isdel,
  10779. ShippingSpaceTypeId = airType,
  10780. ShippingSpaceSpecialNeeds = item.AirRemark,
  10781. HotelSpecialNeeds = item.RoomType
  10782. };
  10783. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  10784. if (_TourClientList > 0)
  10785. {
  10786. updateCount++;
  10787. }
  10788. }
  10789. _sqlSugar.CommitTran();
  10790. }
  10791. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  10792. }
  10793. catch (Exception ex)
  10794. {
  10795. _sqlSugar.RollbackTran();
  10796. return Ok(JsonView(false, ex.Message));
  10797. }
  10798. return Ok(JsonView(true));
  10799. }
  10800. private bool IsValidDate(string dateString, string format)
  10801. {
  10802. DateTime dateValue;
  10803. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  10804. return valid;
  10805. }
  10806. /// <summary>
  10807. /// 接团客户名单
  10808. /// 根据团组Id查询List
  10809. /// </summary>
  10810. /// <param name="dto"></param>
  10811. /// <returns></returns>
  10812. [HttpPost]
  10813. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10814. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  10815. {
  10816. #region 参数验证
  10817. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  10818. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10819. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  10820. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10821. #region 页面操作权限验证
  10822. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10823. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10824. #endregion
  10825. #endregion
  10826. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  10827. if (viewData.Code != 0)
  10828. {
  10829. return Ok(JsonView(false, viewData.Msg));
  10830. }
  10831. return Ok(JsonView(viewData.Data));
  10832. }
  10833. /// <summary>
  10834. /// 接团客户名单
  10835. /// 基础数据 Init
  10836. /// </summary>
  10837. /// <param name="_dto"></param>
  10838. /// <returns></returns>
  10839. [HttpPost]
  10840. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10841. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  10842. {
  10843. #region 参数验证
  10844. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10845. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10846. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10847. #region 页面操作权限验证
  10848. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10849. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10850. #endregion
  10851. #endregion
  10852. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  10853. if (viewData.Code != 0)
  10854. {
  10855. return Ok(JsonView(false, viewData.Msg));
  10856. }
  10857. return Ok(JsonView(viewData.Data));
  10858. }
  10859. /// <summary>
  10860. /// 接团客户名单
  10861. /// 根据 Id查询 Details
  10862. /// </summary>
  10863. /// <param name="_dto"></param>
  10864. /// <returns></returns>
  10865. [HttpPost]
  10866. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10867. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  10868. {
  10869. #region 参数验证
  10870. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10871. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10872. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10873. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10874. #region 页面操作权限验证
  10875. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10876. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10877. #endregion
  10878. #endregion
  10879. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  10880. if (viewData.Code != 0)
  10881. {
  10882. return Ok(JsonView(false, viewData.Msg));
  10883. }
  10884. return Ok(JsonView(viewData.Data));
  10885. }
  10886. /// <summary>
  10887. /// 接团客户名单
  10888. /// Add Or Edit
  10889. /// </summary>
  10890. /// <param name="_dto"></param>
  10891. /// <returns></returns>
  10892. [HttpPost]
  10893. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10894. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  10895. {
  10896. #region 参数验证
  10897. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10898. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10899. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10900. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10901. #region 页面操作权限验证
  10902. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10903. if (_dto.Id == 0) //添加
  10904. {
  10905. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10906. }
  10907. else if (_dto.Id >= 0) //修改
  10908. {
  10909. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  10910. }
  10911. #endregion
  10912. #endregion
  10913. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  10914. if (viewData.Code != 0)
  10915. {
  10916. return Ok(JsonView(false, viewData.Msg));
  10917. }
  10918. return Ok(JsonView(true));
  10919. }
  10920. /// <summary>
  10921. /// 接团客户名单
  10922. /// AddMultiple(添加多个)
  10923. /// </summary>
  10924. /// <param name="_dto"></param>
  10925. /// <returns></returns>
  10926. [HttpPost]
  10927. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10928. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  10929. {
  10930. #region 参数验证
  10931. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10932. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10933. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10934. #region 页面操作权限验证
  10935. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10936. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10937. #endregion
  10938. #endregion
  10939. var viewData = await _tourClientListRep._AddMultiple(_dto);
  10940. if (viewData.Code != 0)
  10941. {
  10942. return Ok(JsonView(false, viewData.Msg));
  10943. }
  10944. return Ok(JsonView(true));
  10945. }
  10946. /// <summary>
  10947. /// 接团客户名单
  10948. /// Del
  10949. /// </summary>
  10950. /// <param name="_dto"></param>
  10951. /// <returns></returns>
  10952. [HttpPost]
  10953. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10954. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  10955. {
  10956. #region 参数验证
  10957. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10958. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10959. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10960. #region 页面操作权限验证
  10961. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10962. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  10963. #endregion
  10964. #endregion
  10965. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  10966. if (viewData.Code != 0)
  10967. {
  10968. return Ok(JsonView(false, viewData.Msg));
  10969. }
  10970. return Ok(JsonView(true));
  10971. }
  10972. /// <summary>
  10973. /// 接团客户名单
  10974. /// 文件下载 客户名单
  10975. /// </summary>
  10976. /// <param name="_dto"></param>
  10977. /// <returns></returns>
  10978. [HttpPost]
  10979. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10980. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  10981. {
  10982. #region 参数验证
  10983. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10984. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10985. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10986. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10987. #region 页面操作权限验证
  10988. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10989. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10990. #endregion
  10991. #endregion
  10992. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10993. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10994. From Grp_TourClientList tcl
  10995. Left Join
  10996. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10997. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10998. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10999. From Crm_DeleClient dc
  11000. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  11001. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  11002. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  11003. Where dc.IsDel = 0) temp
  11004. On temp.DcId =tcl.ClientId
  11005. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  11006. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  11007. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  11008. //载入模板
  11009. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  11010. if (_dto.Language == 1)
  11011. {
  11012. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  11013. }
  11014. //载入模板
  11015. var doc = new Document(tempPath);
  11016. DocumentBuilder builder = new DocumentBuilder(doc);
  11017. //获取word里所有表格
  11018. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11019. //获取所填表格的序数
  11020. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11021. var rowStart = tableOne.Rows[0]; //获取第1行
  11022. if (_dto.Language == 0)
  11023. {
  11024. //循环赋值
  11025. for (int i = 0; i < DcList.Count; i++)
  11026. {
  11027. builder.MoveToCell(0, i + 1, 0, 0);
  11028. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  11029. builder.MoveToCell(0, i + 1, 1, 0);
  11030. int sex = DcList[i].Sex;
  11031. string sexStr = string.Empty;
  11032. if (sex == 0) sexStr = "男";
  11033. else if (sex == 1) sexStr = "女";
  11034. else sexStr = "未设置";
  11035. builder.Write(sexStr);
  11036. builder.MoveToCell(0, i + 1, 2, 0);
  11037. string birthDay = DcList[i].BirthDay;
  11038. string birthDayStr = string.Empty;
  11039. if (!string.IsNullOrEmpty(birthDay))
  11040. {
  11041. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  11042. }
  11043. builder.Write(birthDayStr);
  11044. builder.MoveToCell(0, i + 1, 3, 0);
  11045. string company = "";
  11046. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  11047. {
  11048. company = DcList[i].CompanyFullName.ToString();
  11049. }
  11050. builder.Write(company);
  11051. builder.MoveToCell(0, i + 1, 4, 0);
  11052. builder.Write(DcList[i].Job);
  11053. }
  11054. }
  11055. else if (_dto.Language == 1)
  11056. {
  11057. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  11058. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  11059. List<string> transArrayStr = new List<string>();
  11060. string transStrRes1 = "";
  11061. for (int i = 0; i < DcList.Count; i++)
  11062. {
  11063. var dc = DcList[i];
  11064. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  11065. if (dc.Job.Equals("暂无")) dc.Job = "-";
  11066. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  11067. if (DcList.Count - 1 == i) transStrRes1 += str1;
  11068. else transStrRes1 += $"{str1}|";
  11069. }
  11070. //string transStrRes = "0 & Provincial Health & Health Commission Deputy Director | 1 & Provincial People's Hospital & Provincial People's Hospital Chief Accountant | 2 & Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College & North Sichuan Medical College | 3 & Provincial Health Commission Planning & Provincial Health Commission Planning and Information Division Director | 4 &-& Deputy Director | 5 & Provincial Health Commission population and Family Division & Provincial Health Commission population and Family Division Director";
  11071. string transStrRes = "";
  11072. if (transStrRes1.Length > 0 )
  11073. {
  11074. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  11075. }
  11076. //0、 Deputy Director of the Provincial Health and Health Commission | 1、 Chief Accountant of the provincial People's Hospital | 2、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 3、 Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director | 5、 Director of the population and Family Department of the Provincial Health and Health Commission | 3、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 4、 Deputy Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director of the population and Family Department of the Provincial Health and Health Commission | 5、 Director of the population and Family Department of the Provincial Health and Health Commission
  11077. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  11078. //List<string> transArray = new List<string> { };
  11079. List<TranslateInfo> transArray = new List<TranslateInfo>();
  11080. if (transStrRes.Contains("|"))
  11081. {
  11082. string[] transArray1 = transStrRes.Split('|');
  11083. if (transArray1.Length > 0)
  11084. {
  11085. foreach (var item in transArray1)
  11086. {
  11087. if (item.Contains("&"))
  11088. {
  11089. string[] transArray2 = item.Split('&');
  11090. int index = 0;
  11091. string companyName = "", job = "";
  11092. if (transArray2.Length > 0)
  11093. {
  11094. bool success = int.TryParse(transArray2[0].Trim(), out index);
  11095. if (1 < transArray2.Length) companyName = transArray2[1];
  11096. if (2 < transArray2.Length) job = transArray2[2];
  11097. }
  11098. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  11099. }
  11100. }
  11101. }
  11102. }
  11103. //循环赋值
  11104. for (int i = 0; i < DcList.Count; i++)
  11105. {
  11106. string PYName = "";
  11107. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  11108. {
  11109. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  11110. string PY_First = DcList[i].Pinyin.Split('/')[1];
  11111. PYName = PY_First + " " + PY_Last;
  11112. }
  11113. else
  11114. {
  11115. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  11116. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  11117. PYName = PY_First + " " + PY_Last;
  11118. }
  11119. builder.MoveToCell(0, i + 1, 0, 0);
  11120. builder.Write(PYName);
  11121. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  11122. builder.MoveToCell(0, i + 1, 1, 0);
  11123. builder.Write(sex);
  11124. DateTime birthDt;
  11125. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  11126. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  11127. builder.MoveToCell(0, i + 1, 2, 0);
  11128. builder.Write(birthday);
  11129. string company = string.Empty,job = string.Empty;
  11130. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  11131. if (dcTransInfo != null)
  11132. {
  11133. company = dcTransInfo.CompanyName;
  11134. job = dcTransInfo.Job;
  11135. }
  11136. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  11137. {
  11138. //查询对照表
  11139. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  11140. if (tempCec != null)
  11141. {
  11142. company = tempCec.enName;
  11143. }
  11144. //翻译
  11145. else
  11146. {
  11147. }
  11148. }
  11149. builder.MoveToCell(0, i + 1, 3, 0);
  11150. builder.Write(company);
  11151. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  11152. {
  11153. //查询对照表
  11154. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  11155. if (tempPec != null)
  11156. {
  11157. job = tempPec.enName;
  11158. }
  11159. //翻译
  11160. else
  11161. {
  11162. }
  11163. }
  11164. builder.MoveToCell(0, i + 1, 4, 0);
  11165. builder.Write(job);
  11166. }
  11167. }
  11168. //删除多余行
  11169. while (tableOne.Rows.Count > DcList.Count + 1)
  11170. {
  11171. tableOne.Rows.RemoveAt(DcList.Count + 1);
  11172. }
  11173. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  11174. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  11175. doc.Save(fileDir);
  11176. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  11177. return Ok(JsonView(true, "操作成功!", Url));
  11178. }
  11179. private class TranslateInfo
  11180. {
  11181. public int Index { get; set; }
  11182. public string CompanyName { get; set; }
  11183. public string Job { get; set; }
  11184. }
  11185. #endregion
  11186. #region 团组倒推表
  11187. /// <summary>
  11188. /// 倒推表基础数据
  11189. /// Init
  11190. /// </summary>
  11191. /// <param name="dto"></param>
  11192. /// <returns></returns>
  11193. [HttpPost]
  11194. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11195. public async Task<IActionResult> PostInvertedListInit()
  11196. {
  11197. var viewData = await _invertedListRep._Init();
  11198. if (viewData.Code != 0)
  11199. {
  11200. return Ok(JsonView(false, viewData.Msg));
  11201. }
  11202. return Ok(JsonView(viewData.Data));
  11203. }
  11204. /// <summary>
  11205. /// 倒推表
  11206. /// Info
  11207. /// </summary>
  11208. /// <param name="dto"></param>
  11209. /// <returns></returns>
  11210. [HttpPost]
  11211. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11212. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  11213. {
  11214. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  11215. if (viewData.Code != 0)
  11216. {
  11217. return Ok(JsonView(false, viewData.Msg));
  11218. }
  11219. return Ok(JsonView(viewData.Data));
  11220. }
  11221. /// <summary>
  11222. /// 倒推表
  11223. /// Create
  11224. /// </summary>
  11225. /// <param name="dto"></param>
  11226. /// <returns></returns>
  11227. [HttpPost]
  11228. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11229. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  11230. {
  11231. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  11232. if (viewData.Code != 0)
  11233. {
  11234. return Ok(JsonView(false, viewData.Msg));
  11235. }
  11236. return Ok(JsonView(viewData.Data));
  11237. }
  11238. /// <summary>
  11239. /// 倒推表
  11240. /// Update
  11241. /// </summary>
  11242. /// <param name="dto"></param>
  11243. /// <returns></returns>
  11244. [HttpPost]
  11245. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11246. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  11247. {
  11248. var viewData = await _invertedListRep._Update(dto);
  11249. if (viewData.Code != 0)
  11250. {
  11251. return Ok(JsonView(false, viewData.Msg));
  11252. }
  11253. return Ok(JsonView(viewData.Data));
  11254. }
  11255. /// <summary>
  11256. /// 倒推表
  11257. /// File Download
  11258. /// </summary>
  11259. /// <param name="dto"></param>
  11260. /// <returns></returns>
  11261. [HttpPost]
  11262. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11263. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  11264. {
  11265. var info2 = await _invertedListRep._Info(1, dto.DiId);
  11266. if (info2.Code != 0)
  11267. {
  11268. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  11269. }
  11270. var info1 = info2.Data as InvertedListInfoView;
  11271. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  11272. string teamName = "";
  11273. if (info != null) teamName = info.TeamName;
  11274. //载入模板
  11275. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  11276. DocumentBuilder builder = new DocumentBuilder(doc);
  11277. //利用键值对存放数据
  11278. Dictionary<string, string> dic = new Dictionary<string, string>();
  11279. dic.Add("TeamName", teamName);
  11280. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  11281. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  11282. dic.Add("BPRemark", info1.ApprovalDataRemark);
  11283. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  11284. dic.Add("SQRemark", info1.ApprovalRemark);
  11285. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  11286. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  11287. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  11288. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  11289. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  11290. dic.Add("QZRemark", info1.VisaInformationRemark);
  11291. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  11292. dic.Add("SQQZRemark", info1.SendVisaRemark);
  11293. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  11294. dic.Add("CQRemark", info1.IssueVisaRemark);
  11295. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  11296. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  11297. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  11298. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  11299. #region 填充word模板书签内容
  11300. foreach (var key in dic.Keys)
  11301. {
  11302. builder.MoveToBookmark(key);
  11303. builder.Write(dic[key]);
  11304. }
  11305. #endregion
  11306. var fileDir = AppSettingsHelper.Get("WordBasePath");
  11307. string fileName = $"{teamName}团出行准备流程表.doc";
  11308. string filePath = fileDir + $@"InvertedList/{fileName}";
  11309. doc.Save(filePath);
  11310. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  11311. return Ok(JsonView(true, "操作成功!", Url));
  11312. }
  11313. #endregion
  11314. #region 三公签证费用(签证费、代办费)
  11315. /// <summary>
  11316. /// 三公签证费用(签证费、代办费)
  11317. /// List
  11318. /// </summary>
  11319. /// <returns></returns>
  11320. [HttpPost]
  11321. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11322. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  11323. {
  11324. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  11325. if (_view.Code != 0)
  11326. {
  11327. return Ok(JsonView(false, _view.Msg));
  11328. }
  11329. return Ok(JsonView(true, "操作成功!", _view.Data));
  11330. }
  11331. /// <summary>
  11332. /// 三公签证费用(签证费、代办费)
  11333. /// Add Or Update
  11334. /// </summary>
  11335. /// <returns></returns>
  11336. [HttpPost]
  11337. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11338. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  11339. {
  11340. var _view = await _visaFeeInfoRep._Update(_dto);
  11341. if (_view.Code != 0)
  11342. {
  11343. return Ok(JsonView(false, _view.Msg));
  11344. }
  11345. return Ok(JsonView(true, _view.Msg));
  11346. }
  11347. #endregion
  11348. #region 酒店询价
  11349. /// <summary>
  11350. /// 酒店询价
  11351. /// Init
  11352. /// </summary>
  11353. /// <param name="dto"></param>
  11354. /// <returns></returns>
  11355. [HttpPost]
  11356. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11357. public async Task<IActionResult> PostHotelInquiryInit()
  11358. {
  11359. var res = await _hotelInquiryRep._Init();
  11360. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11361. return Ok(JsonView(true, res.Msg, res.Data));
  11362. }
  11363. /// <summary>
  11364. /// 酒店询价
  11365. /// page Item
  11366. /// </summary>
  11367. /// <param name="_dto"></param>
  11368. /// <returns></returns>
  11369. [HttpPost]
  11370. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11371. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  11372. {
  11373. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  11374. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11375. var view = res.Data as PageDataViewBase;
  11376. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  11377. }
  11378. /// <summary>
  11379. /// 酒店询价
  11380. /// info
  11381. /// </summary>
  11382. /// <param name="_dto"></param>
  11383. /// <returns></returns>
  11384. [HttpPost]
  11385. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11386. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  11387. {
  11388. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  11389. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11390. return Ok(JsonView(true, res.Msg, res.Data));
  11391. }
  11392. /// <summary>
  11393. /// 酒店询价
  11394. /// Add Or Edit
  11395. /// </summary>
  11396. /// <param name="_dto"></param>
  11397. /// <returns></returns>
  11398. [HttpPost]
  11399. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11400. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  11401. {
  11402. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  11403. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11404. return Ok(JsonView(true, res.Msg, res.Data));
  11405. }
  11406. /// <summary>
  11407. /// 酒店询价
  11408. /// Del
  11409. /// </summary>
  11410. /// <param name="_dto"></param>
  11411. /// <returns></returns>
  11412. [HttpPost]
  11413. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11414. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  11415. {
  11416. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  11417. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11418. return Ok(JsonView(true, res.Msg, res.Data));
  11419. }
  11420. #endregion
  11421. #region 下载匹配op行程单
  11422. /// <summary>
  11423. /// 匹配op行程单
  11424. /// Init
  11425. /// </summary>
  11426. /// <param name="dto">团组列表请求dto</param>
  11427. /// <returns></returns>
  11428. [HttpPost]
  11429. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11430. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  11431. {
  11432. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  11433. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  11434. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  11435. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  11436. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  11437. .Where(it => it.IsDel == 0)
  11438. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  11439. .OrderByDescending(it => it.CreateUserId)
  11440. .ToList();
  11441. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  11442. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11443. var diids = groupInfos.Select(it => it.Id).ToList();
  11444. List<string> countrys = new List<string>();
  11445. foreach (var item in country)
  11446. {
  11447. var data = _groupRepository.FormartTeamName(item);
  11448. var dataArray = _groupRepository.GroupSplitCountry(data);
  11449. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11450. }
  11451. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  11452. List<string> areaArray = new List<string>(); //GetGroupCityLine
  11453. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  11454. foreach (var item in areaItem)
  11455. {
  11456. string areaStr = item.Value;
  11457. if (!string.IsNullOrEmpty(areaStr))
  11458. {
  11459. string[] str1 = areaStr.Split("-");
  11460. if (str1.Length > 0)
  11461. {
  11462. areaArray.AddRange(str1);
  11463. }
  11464. }
  11465. }
  11466. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  11467. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  11468. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  11469. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  11470. .ToList();
  11471. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  11472. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  11473. .Where(it => countriesIds.Contains(it.Id))
  11474. .Select(it => new { it.Id, Name = it.Name_CN })
  11475. .ToList();
  11476. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  11477. .Select(it => it.TeamName).ToList();
  11478. stopwatch.Stop();
  11479. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  11480. }
  11481. ///// <summary>
  11482. ///// 匹配op行程单
  11483. ///// Init 查询区域数据
  11484. ///// </summary>
  11485. ///// <param name="dto">团组列表请求dto</param>
  11486. ///// <returns></returns>
  11487. //[HttpPost]
  11488. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11489. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  11490. //{
  11491. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  11492. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  11493. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  11494. // if (string.IsNullOrEmpty(countriesDataStr))
  11495. // {
  11496. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  11497. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  11498. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  11499. // }
  11500. // else
  11501. // {
  11502. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  11503. // }
  11504. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  11505. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  11506. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  11507. // List<dynamic> childList = new List<dynamic>();
  11508. // int parentId = dto.CountriesId;
  11509. // if (provinceData.Count > 1)
  11510. // {
  11511. // foreach (var item1 in provinceData)
  11512. // {
  11513. // List<dynamic> childList1 = new List<dynamic>();
  11514. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  11515. // foreach (var item2 in citiesData1)
  11516. // {
  11517. // List<dynamic> childList2 = new List<dynamic>();
  11518. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  11519. // foreach (var item3 in countiesData1)
  11520. // {
  11521. // childList2.Add(new
  11522. // {
  11523. // id = item3.Id,
  11524. // parentId = item2.Id,
  11525. // level = "district",
  11526. // name = item3.Name_CN,
  11527. // });
  11528. // }
  11529. // childList1.Add(new
  11530. // {
  11531. // id = item2.Id,
  11532. // parentId = item1.Id,
  11533. // level = "city",
  11534. // name = item2.Name_CN,
  11535. // childList = childList2
  11536. // });
  11537. // }
  11538. // childList.Add(new
  11539. // {
  11540. // id = item1.Id,
  11541. // parentId = parentId,
  11542. // level = "province",
  11543. // name = item1.Name_CN,
  11544. // childList = childList1
  11545. // });
  11546. // }
  11547. // //城市
  11548. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  11549. // foreach (var item2 in citiesData2)
  11550. // {
  11551. // List<dynamic> childList22 = new List<dynamic>();
  11552. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  11553. // foreach (var item3 in countiesData1)
  11554. // {
  11555. // childList22.Add(new
  11556. // {
  11557. // id = item3.Id,
  11558. // parentId = item2.Id,
  11559. // level = "district",
  11560. // name = item3.Name_CN,
  11561. // });
  11562. // }
  11563. // childList.Add(new
  11564. // {
  11565. // id = item2.Id,
  11566. // parentId = parentId,
  11567. // level = "city",
  11568. // name = item2.Name_CN,
  11569. // childList = childList22
  11570. // });
  11571. // }
  11572. // }
  11573. // else
  11574. // {
  11575. // foreach (var item2 in citiesData)
  11576. // {
  11577. // string cname = item2.Name_CN;
  11578. // List<dynamic> childList1 = new List<dynamic>();
  11579. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  11580. // foreach (var item3 in countiesData1)
  11581. // {
  11582. // childList1.Add(new
  11583. // {
  11584. // Id = item3.Id,
  11585. // parentId = item2.Id,
  11586. // level = "district",
  11587. // name = item3.Name_CN
  11588. // });
  11589. // }
  11590. // childList.Add(new
  11591. // {
  11592. // id = item2.Id,
  11593. // parentId = parentId,
  11594. // level = "city",
  11595. // name = item2.Name_CN,
  11596. // childList = childList1
  11597. // });
  11598. // }
  11599. // }
  11600. // stopwatch.Stop();
  11601. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  11602. //}
  11603. /// <summary>
  11604. /// 匹配op行程单
  11605. /// 接团信息列表 Page
  11606. /// </summary>
  11607. /// <param name="dto">团组列表请求dto</param>
  11608. /// <returns></returns>
  11609. [HttpPost]
  11610. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11611. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  11612. {
  11613. var swatch = new Stopwatch();
  11614. swatch.Start();
  11615. #region 参数验证
  11616. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  11617. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  11618. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11619. #region 页面操作权限验证
  11620. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  11621. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  11622. #endregion
  11623. #endregion
  11624. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  11625. {
  11626. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  11627. string sqlWhere = "";
  11628. if (!string.IsNullOrEmpty(dto.Country))
  11629. {
  11630. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  11631. }
  11632. if (!string.IsNullOrEmpty(dto.Area))
  11633. {
  11634. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  11635. }
  11636. if (!string.IsNullOrEmpty(dto.TeamName))
  11637. {
  11638. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  11639. }
  11640. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  11641. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  11642. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  11643. swatch.Stop();
  11644. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  11645. }
  11646. else
  11647. {
  11648. return Ok(JsonView(false, "查询失败"));
  11649. }
  11650. }
  11651. /// <summary>
  11652. /// 匹配op行程单
  11653. /// 行程单下载
  11654. /// </summary>
  11655. /// <param name="dto">团组列表请求dto</param>
  11656. /// <returns></returns>
  11657. [HttpPost]
  11658. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11659. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  11660. {
  11661. #region 参数验证
  11662. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  11663. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  11664. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11665. #region 页面操作权限验证
  11666. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  11667. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  11668. #endregion
  11669. #endregion
  11670. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  11671. {
  11672. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  11673. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  11674. }
  11675. else
  11676. {
  11677. return Ok(JsonView(false, "下载失败!"));
  11678. }
  11679. }
  11680. #endregion
  11681. #region 国家信息 数据 注释
  11682. //[HttpPost]
  11683. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  11684. //{
  11685. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  11686. // foreach (var item in dto)
  11687. // {
  11688. // infos.Add(new Grp_GroupsTaskAssignment()
  11689. // {
  11690. // DIId = item,
  11691. // CTId = 82,
  11692. // UId = 248,
  11693. // IsEnable = 1,
  11694. // CreateUserId = 233,
  11695. // CreateTime = DateTime.Now,
  11696. // IsDel = 0
  11697. // });
  11698. // infos.Add(new Grp_GroupsTaskAssignment()
  11699. // {
  11700. // DIId = item,
  11701. // CTId = 82,
  11702. // UId = 286,
  11703. // IsEnable = 1,
  11704. // CreateUserId = 233,
  11705. // CreateTime = DateTime.Now,
  11706. // IsDel = 0
  11707. // });
  11708. // }
  11709. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  11710. // return Ok("操作成功");
  11711. //}
  11712. //public class paramJsonDto
  11713. //{
  11714. // public List<CountriesInfo> str { get; set; }
  11715. //}
  11716. //[HttpPost]
  11717. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  11718. //{
  11719. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  11720. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  11721. // List<Sys_Cities> cities = new List<Sys_Cities>();
  11722. // List<Sys_Cities> districts = new List<Sys_Cities>();
  11723. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  11724. // _sqlSugar.BeginTran();
  11725. // int countitiesIndex = 0;
  11726. // foreach (var item in dto.str)
  11727. // {
  11728. // dynamic data = item.c;
  11729. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  11730. // if (data != null)
  11731. // {
  11732. // countitiesIndex++;
  11733. // foreach (var item1 in data)
  11734. // {
  11735. // string cnname = item1.cn;
  11736. // string enname = item1.en;
  11737. // Sys_Cities provinceInfo = new Sys_Cities()
  11738. // {
  11739. // CountriesId = countriesId,
  11740. // Name_CN = cnname,
  11741. // Name_EN = enname,
  11742. // ParentId = 0,
  11743. // IsCapital = 1,
  11744. // CreateUserId = 208,
  11745. // CreateTime = DateTime.Now,
  11746. // IsDel = 0
  11747. // };
  11748. // if (item1.lv == "province") //省份
  11749. // {
  11750. // provinceInfo.Level = 1;
  11751. // int provinceId = 0;
  11752. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  11753. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  11754. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  11755. // var data1 = item1.c;
  11756. // foreach (var item2 in data1)
  11757. // {
  11758. // if (item2.lv == "city")
  11759. // {
  11760. // string citycnname = item2.cn;
  11761. // string cityenname = item2.en;
  11762. // Sys_Cities cityInfo = new Sys_Cities()
  11763. // {
  11764. // CountriesId = countriesId,
  11765. // ParentId = provinceId,
  11766. // Level = 2,
  11767. // Name_CN = citycnname,
  11768. // Name_EN = cityenname,
  11769. // IsCapital = 1,
  11770. // CreateUserId = 208,
  11771. // CreateTime = DateTime.Now,
  11772. // IsDel = 0
  11773. // };
  11774. // if (item2.c != null)
  11775. // {
  11776. // int cityId = 0;
  11777. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  11778. // if (citiesInfo != null) cityId = citiesInfo.Id;
  11779. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  11780. // foreach (var item3 in item2.c)
  11781. // {
  11782. // if (item3.lv == "district")
  11783. // {
  11784. // var districtInfo = new Sys_Cities()
  11785. // {
  11786. // CountriesId = countriesId,
  11787. // Name_CN = item3.cn,
  11788. // Name_EN = item3.en,
  11789. // Level = 3,
  11790. // ParentId = cityId,
  11791. // IsCapital = 1,
  11792. // CreateUserId = 208,
  11793. // CreateTime = DateTime.Now,
  11794. // IsDel = 0
  11795. // };
  11796. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  11797. // //{
  11798. // districts.Add(districtInfo);
  11799. // //}
  11800. // }
  11801. // }
  11802. // }
  11803. // else
  11804. // {
  11805. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  11806. // //{
  11807. // cities.Add(cityInfo);
  11808. // //}
  11809. // }
  11810. // }
  11811. // }
  11812. // }
  11813. // else if (item1.lv == "city")//城市
  11814. // {
  11815. // provinceInfo.Level = 2;
  11816. // if (item1.c != null)
  11817. // {
  11818. // int cityId = 0;
  11819. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  11820. // if (citiesInfo != null) cityId = citiesInfo.Id;
  11821. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  11822. // foreach (var item3 in item1.c)
  11823. // {
  11824. // if (item3.lv == "district")
  11825. // {
  11826. // var districtInfo = new Sys_Cities()
  11827. // {
  11828. // CountriesId = countriesId,
  11829. // Name_CN = item3.cn,
  11830. // Name_EN = item3.en,
  11831. // Level = 3,
  11832. // ParentId = cityId,
  11833. // IsCapital = 1,
  11834. // CreateUserId = 208,
  11835. // CreateTime = DateTime.Now,
  11836. // IsDel = 0
  11837. // };
  11838. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  11839. // //{
  11840. // districts.Add(districtInfo);
  11841. // //}
  11842. // }
  11843. // }
  11844. // }
  11845. // else
  11846. // {
  11847. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  11848. // //{
  11849. // cities.Add(provinceInfo);
  11850. // //}
  11851. // }
  11852. // }
  11853. // }
  11854. // }
  11855. // }
  11856. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  11857. // cities = cities.Distinct().ToList();
  11858. // districts = districts.Distinct().ToList();
  11859. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  11860. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  11861. // cities.AddRange(districts);
  11862. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  11863. // //_sqlSugar.RollbackTran();
  11864. // _sqlSugar.CommitTran();
  11865. // return Ok(JsonView(false, "操作成功!"));
  11866. //}
  11867. //[HttpPost]
  11868. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  11869. //{
  11870. // List<CountitiesInfo> infos = dto.MyProperty;
  11871. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  11872. // _sqlSugar.BeginTran();
  11873. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  11874. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  11875. // foreach (var item in infos)
  11876. // {
  11877. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  11878. // if (countryInfo != null)
  11879. // {
  11880. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  11881. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  11882. // if (cityInfo1 != null)
  11883. // {
  11884. // cityInfo1.IsCapital = 0;
  11885. // cityInfos.Add(cityInfo1);
  11886. // }
  11887. // }
  11888. // }
  11889. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  11890. // .UpdateColumns(it => it.IsCapital)
  11891. // .WhereColumns(it => it.Id)
  11892. // .ExecuteCommand();
  11893. // //_sqlSugar.RollbackTran();
  11894. // _sqlSugar.CommitTran();
  11895. // return Ok(JsonView(false, "操作成功!"));
  11896. //}
  11897. //public class CounrtiesDto
  11898. //{
  11899. // public List<CountitiesInfo> MyProperty { get; set; }
  11900. //}
  11901. //public class CountitiesInfo
  11902. //{
  11903. // /// <summary>
  11904. // /// 圣约翰
  11905. // /// </summary>
  11906. // public string capital_name_chinese { get; set; }
  11907. // /// <summary>
  11908. // ///
  11909. // /// </summary>
  11910. // public string capital_name { get; set; }
  11911. // /// <summary>
  11912. // ///
  11913. // /// </summary>
  11914. // public string country_type { get; set; }
  11915. // /// <summary>
  11916. // /// 安提瓜和巴布达
  11917. // /// </summary>
  11918. // public string country_name_chinese { get; set; }
  11919. // /// <summary>
  11920. // /// 安提瓜和巴布达
  11921. // /// </summary>
  11922. // public string country_name_chinese_short { get; set; }
  11923. // /// <summary>
  11924. // /// 安提瓜和巴布达
  11925. // /// </summary>
  11926. // public string country_name_chinese_UN { get; set; }
  11927. // /// <summary>
  11928. // ///
  11929. // /// </summary>
  11930. // public string country_name_english_abbreviation { get; set; }
  11931. // /// <summary>
  11932. // ///
  11933. // /// </summary>
  11934. // public string country_name_english_formal { get; set; }
  11935. // /// <summary>
  11936. // ///
  11937. // /// </summary>
  11938. // public string country_name_english_UN { get; set; }
  11939. // /// <summary>
  11940. // ///
  11941. // /// </summary>
  11942. // public string continent_name { get; set; }
  11943. // /// <summary>
  11944. // ///
  11945. // /// </summary>
  11946. // public string subregion_name { get; set; }
  11947. // /// <summary>
  11948. // ///
  11949. // /// </summary>
  11950. // public string country_code2 { get; set; }
  11951. // /// <summary>
  11952. // ///
  11953. // /// </summary>
  11954. // public string country_code3 { get; set; }
  11955. // /// <summary>
  11956. // ///
  11957. // /// </summary>
  11958. // public string phone_code { get; set; }
  11959. //}
  11960. //public class CountriesInfo : BasicInfo
  11961. //{
  11962. // public List<CitiesInfo> c { get; set; }
  11963. //}
  11964. //public class CitiesInfo : BasicInfo
  11965. //{
  11966. // public List<AreaInfo> c { get; set; }
  11967. //}
  11968. //public class AreaInfo : BasicInfo
  11969. //{
  11970. // public List<AreaInfo> c { get; set; }
  11971. //}
  11972. //public class BasicInfo
  11973. //{
  11974. // public string code { get; set; }
  11975. // public string cn { get; set; }
  11976. // public string lv { get; set; }
  11977. // public string en { get; set; }
  11978. //}
  11979. #endregion
  11980. #region 查看邀请方
  11981. /// <summary>
  11982. /// 查看邀请方
  11983. /// 邀请方信息 Init
  11984. /// </summary>
  11985. /// <param name="dto"></param>
  11986. /// <returns></returns>
  11987. [HttpPost]
  11988. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11989. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  11990. {
  11991. string sqlWhere = string.Empty;
  11992. if (!string.IsNullOrEmpty(dto.Search))
  11993. {
  11994. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  11995. }
  11996. string sql = string.Format($@"Select
  11997. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  11998. Id,
  11999. UnitName
  12000. From Res_InvitationOfficialActivityData
  12001. Where IsDel = 0
  12002. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  12003. RefAsync<int> total = 0;
  12004. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12005. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  12006. }
  12007. /// <summary>
  12008. /// 查看邀请方
  12009. /// 国家信息 Init
  12010. /// </summary>
  12011. /// <param name="dto"></param>
  12012. /// <returns></returns>
  12013. [HttpPost]
  12014. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12015. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  12016. {
  12017. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  12018. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  12019. var diids = groupInfos.Select(it => it.Id).ToList();
  12020. List<string> countrys = new List<string>();
  12021. foreach (var item in country)
  12022. {
  12023. var data = _groupRepository.FormartTeamName(item);
  12024. var dataArray = _groupRepository.GroupSplitCountry(data);
  12025. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  12026. }
  12027. countrys = countrys.Distinct().ToList();
  12028. for (int i = 0; i < countrys.Count; i++)
  12029. {
  12030. string item = countrys[i];
  12031. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  12032. {
  12033. countrys.Remove(item);
  12034. i--;
  12035. }
  12036. }
  12037. RefAsync<int> total = 0;
  12038. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  12039. .Where(it => countrys.Contains(it.Name_CN))
  12040. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  12041. .Select(it => new { id = it.Id, name = it.Name_CN })
  12042. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12043. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  12044. }
  12045. /// <summary>
  12046. /// 查看邀请方
  12047. /// 城市信息 Init
  12048. /// </summary>
  12049. /// <param name="dto"></param>
  12050. /// <returns></returns>
  12051. [HttpPost]
  12052. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12053. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  12054. {
  12055. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  12056. RefAsync<int> total = 0;
  12057. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  12058. .Where(it => it.CountriesId == dto.CountiesId)
  12059. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  12060. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  12061. .Select(it => new { id = it.Id, name = it.Name_CN })
  12062. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12063. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  12064. }
  12065. /// <summary>
  12066. /// 查看邀请方
  12067. /// 团组名称 Init
  12068. /// </summary>
  12069. /// <param name="dto"></param>
  12070. /// <returns></returns>
  12071. [HttpPost]
  12072. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12073. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  12074. {
  12075. var watch = new Stopwatch();
  12076. watch.Start();
  12077. RefAsync<int> total = 0;
  12078. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  12079. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  12080. .Where((oa, di) => oa.IsDel == 0)
  12081. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  12082. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  12083. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  12084. .Distinct()
  12085. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12086. watch.Stop();
  12087. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  12088. }
  12089. /// <summary>
  12090. /// 查看邀请方
  12091. /// 团组 & 邀请方信息
  12092. /// </summary>
  12093. /// <param name="dto"></param>
  12094. /// <returns></returns>
  12095. [HttpPost]
  12096. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12097. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  12098. {
  12099. var watch = new Stopwatch();
  12100. watch.Start();
  12101. RefAsync<int> total = 0;
  12102. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  12103. .AS("Grp_DelegationInfo")
  12104. .Includes(x => x.InvitingInfos)
  12105. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  12106. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  12107. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  12108. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  12109. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  12110. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  12111. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12112. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  12113. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  12114. infos.ForEach(x =>
  12115. {
  12116. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  12117. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  12118. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  12119. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  12120. });
  12121. watch.Stop();
  12122. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  12123. }
  12124. #endregion
  12125. #region 报批行程
  12126. /// <summary>
  12127. /// 报批行程初始化
  12128. /// </summary>
  12129. /// <param name="dto"></param>
  12130. /// <returns></returns>
  12131. [HttpPost]
  12132. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  12133. {
  12134. const int chiNumber = 5;
  12135. var jw = JsonView(false);
  12136. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  12137. var group = groupList.First();
  12138. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  12139. group = groupList.First(x => x.Id == diid);
  12140. if (group == null)
  12141. {
  12142. jw.Msg = "暂无团组!";
  12143. return Ok(jw);
  12144. }
  12145. var data = new
  12146. {
  12147. groupList = groupList.Select(x => new
  12148. {
  12149. x.TeamName,
  12150. x.Id
  12151. }),
  12152. content = new ArrayList(),
  12153. groupInfo = new
  12154. {
  12155. group.VisitDays,
  12156. group.TourCode,
  12157. group.VisitPNumber,
  12158. group.TeamName,
  12159. group.Id,
  12160. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  12161. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  12162. },
  12163. };
  12164. var resultArr = new ArrayList();
  12165. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  12166. if (content.Count == 0)
  12167. {
  12168. var stay = "-";
  12169. var cityPath = "-";
  12170. //添加城市路径以及住宿地
  12171. //黑屏代码数据
  12172. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  12173. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  12174. {
  12175. jw = JsonView(true, "黑屏代码有误!", data);
  12176. return Ok(jw);
  12177. }
  12178. foreach (DataRow row in dtBlack.Rows)
  12179. {
  12180. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  12181. {
  12182. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  12183. return Ok(jw);
  12184. }
  12185. }
  12186. //黑屏代码获取时间区间
  12187. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  12188. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  12189. _sqlSugar.BeginTran();
  12190. for (int i = 0; i < timeArr.Count; i++)
  12191. {
  12192. stay = "-";
  12193. cityPath = "-";
  12194. DateTime NewData = DateTime.Parse(timeArr[i]);
  12195. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  12196. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  12197. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  12198. if (tbSelect.Length > 0)
  12199. {
  12200. List<string> threeCodeStr = new List<string>();
  12201. foreach (var item in tbSelect)
  12202. {
  12203. var threeCode = item["Three"].ToString() ?? "";
  12204. if (threeCode.Length == 6)
  12205. {
  12206. var start = threeCode.Substring(0, 3);
  12207. var end = threeCode.Substring(3, 3);
  12208. if (threeCodeStr.Count == 0)
  12209. {
  12210. threeCodeStr.Add(start);
  12211. threeCodeStr.Add(end);
  12212. }
  12213. else
  12214. {
  12215. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  12216. {
  12217. threeCodeStr.Add(end);
  12218. }
  12219. else
  12220. {
  12221. threeCodeStr.Add(start);
  12222. threeCodeStr.Add(end);
  12223. }
  12224. }
  12225. }
  12226. }
  12227. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  12228. var last = threeCodeStr.Last();
  12229. foreach (var item in threeCodeStr)
  12230. {
  12231. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  12232. if (item.Equals(last))
  12233. {
  12234. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  12235. }
  12236. }
  12237. cityPath = cityPath.Trim('-');
  12238. }
  12239. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  12240. appro.Diid = diid ?? -1;
  12241. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  12242. appro.Id = thisId;
  12243. appro.CreateUserId = dto.UserId;
  12244. appro.CreateTime = DateTime.Now;
  12245. content.Add(appro);
  12246. }
  12247. _sqlSugar.CommitTran();
  12248. }
  12249. foreach (var x in content)
  12250. {
  12251. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  12252. if (chiList.Count < chiNumber)
  12253. {
  12254. for (int i = chiList.Count; i < chiNumber; i++)
  12255. {
  12256. chiList.Add(new Grp_ApprovalTravelDetails());
  12257. }
  12258. }
  12259. resultArr.Add(new
  12260. {
  12261. x.Id,
  12262. x.Date,
  12263. x.Diid,
  12264. chiList = chiList.Select(x1 => new
  12265. {
  12266. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  12267. x1.Details,
  12268. x1.ParentId,
  12269. x1.Id
  12270. })
  12271. });
  12272. }
  12273. data = data with
  12274. {
  12275. content = resultArr,
  12276. };
  12277. jw = JsonView(true, "获取成功!", data);
  12278. return Ok(jw);
  12279. }
  12280. /// <summary>
  12281. /// 报批行程删除
  12282. /// </summary>
  12283. /// <param name="dto"></param>
  12284. /// <returns></returns>
  12285. [HttpPost]
  12286. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  12287. {
  12288. var jw = JsonView(false);
  12289. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  12290. if (group == null)
  12291. {
  12292. jw.Msg = "团组参数有误!";
  12293. return Ok(jw);
  12294. }
  12295. try
  12296. {
  12297. _sqlSugar.BeginTran();
  12298. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  12299. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  12300. {
  12301. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  12302. DeleteUserId = dto.uesrId,
  12303. IsDel = 1
  12304. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  12305. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  12306. {
  12307. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  12308. DeleteUserId = dto.uesrId,
  12309. IsDel = 1
  12310. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  12311. _sqlSugar.CommitTran();
  12312. jw = JsonView(true, "删除成功");
  12313. }
  12314. catch (Exception ex)
  12315. {
  12316. jw = JsonView(false, ex.Message);
  12317. }
  12318. return Ok(jw);
  12319. }
  12320. /// <summary>
  12321. /// 报批行程保存
  12322. /// </summary>
  12323. /// <param name="dto"></param>
  12324. /// <returns></returns>
  12325. [HttpPost]
  12326. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  12327. {
  12328. var jw = JsonView(false);
  12329. var Find = dto.Arr.Find(x => x.id == 0);
  12330. if (Find != null)
  12331. {
  12332. jw.Msg = "生成的ID为0!";
  12333. return Ok(jw);
  12334. }
  12335. foreach (var item in dto.Arr)
  12336. {
  12337. foreach (var chi in item.chiList)
  12338. {
  12339. if (chi.parentId == 0)
  12340. {
  12341. chi.parentId = item.id;
  12342. }
  12343. }
  12344. }
  12345. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  12346. _sqlSugar.BeginTran();
  12347. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  12348. {
  12349. var parentIds = dto.Arr.Select(x => x.id).ToList();
  12350. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  12351. {
  12352. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  12353. DeleteUserId = dto.UserId,
  12354. IsDel = 1
  12355. }).ExecuteCommand();
  12356. }
  12357. try
  12358. {
  12359. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  12360. {
  12361. CreateTime = DateTime.Now,
  12362. CreateUserId = dto.UserId,
  12363. Details = x.details,
  12364. ParentId = x.parentId,
  12365. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  12366. Remark = "",
  12367. IsDel = 0
  12368. }).ToList()).ExecuteCommand();
  12369. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  12370. {
  12371. Id = x.id,
  12372. Details = x.details,
  12373. ParentId = x.parentId,
  12374. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  12375. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  12376. {
  12377. Details = x.Details,
  12378. ParentId = x.ParentId,
  12379. Time = x.Time
  12380. }).ExecuteCommand();
  12381. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  12382. {
  12383. Id = x.id,
  12384. Date = x.date,
  12385. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  12386. {
  12387. Date = x.Date
  12388. }).ExecuteCommand();
  12389. _sqlSugar.CommitTran();
  12390. jw = JsonView(true, "保存成功!");
  12391. }
  12392. catch (Exception ex)
  12393. {
  12394. _sqlSugar.RollbackTran();
  12395. jw = JsonView(false, "保存失败!" + ex.Message);
  12396. }
  12397. return Ok(jw);
  12398. }
  12399. /// <summary>
  12400. /// 报批行程生成
  12401. /// </summary>
  12402. /// <param name="dto"></param>
  12403. /// <returns></returns>
  12404. [HttpPost]
  12405. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  12406. {
  12407. var jw = JsonView(false);
  12408. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  12409. if (group == null)
  12410. {
  12411. jw.Msg = "暂无该团组!";
  12412. return Ok(jw);
  12413. }
  12414. //黑屏代码数据
  12415. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  12416. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  12417. {
  12418. jw.Msg = "黑屏代码有误!";
  12419. return Ok(jw);
  12420. }
  12421. foreach (DataRow row in dtBlack.Rows)
  12422. {
  12423. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  12424. {
  12425. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  12426. return Ok(jw);
  12427. }
  12428. }
  12429. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  12430. var resultArr = new ArrayList();
  12431. if (officialActivitiesArr.Count == 0)
  12432. {
  12433. jw.Msg = "暂无公务出访信息!";
  12434. return Ok(jw);
  12435. }
  12436. try
  12437. {
  12438. _sqlSugar.BeginTran();
  12439. DeleteApprovalJourney(new
  12440. Domain.Dtos.Groups.DeleteApprovalJourney
  12441. {
  12442. Diid = dto.Diid,
  12443. uesrId = dto.Userid
  12444. });
  12445. var stay = "-";
  12446. var cityPath = "-";
  12447. //添加城市路径以及住宿地
  12448. //黑屏代码获取时间区间
  12449. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  12450. var empty = "【未收入该三字码!请机票同事录入】";
  12451. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  12452. for (int i = 0; i < timeArr.Count; i++)
  12453. {
  12454. stay = "-";
  12455. cityPath = "-";
  12456. var chiarr = new List<Grp_ApprovalTravelDetails>();
  12457. DateTime NewData = DateTime.Parse(timeArr[i]);
  12458. 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();
  12459. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  12460. if (tbSelect.Length > 0)
  12461. {
  12462. List<string> threeCodeStr = new List<string>();
  12463. bool isTrade = false;
  12464. string trip = string.Empty;
  12465. var rowLast = tbSelect.Last();
  12466. var rowFirst = tbSelect.First();
  12467. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  12468. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  12469. var takeOffTime = DateTime.Parse(timeArr[i]);
  12470. var fallToTime = DateTime.Parse(timeArr[i]);
  12471. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  12472. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  12473. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  12474. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  12475. foreach (var item in tbSelect)
  12476. {
  12477. var start = string.Empty;
  12478. var end = string.Empty;
  12479. var threeCode = item["Three"].ToString() ?? "";
  12480. if (threeCode.Length == 6)
  12481. {
  12482. start = threeCode.Substring(0, 3);
  12483. end = threeCode.Substring(3, 3);
  12484. if (threeCodeStr.Count == 0)
  12485. {
  12486. threeCodeStr.Add(start);
  12487. threeCodeStr.Add(end);
  12488. }
  12489. else
  12490. {
  12491. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  12492. {
  12493. threeCodeStr.Add(end);
  12494. }
  12495. else
  12496. {
  12497. threeCodeStr.Add(start);
  12498. threeCodeStr.Add(end);
  12499. }
  12500. }
  12501. }
  12502. //处理机票信息
  12503. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  12504. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  12505. if (start_Object == null)
  12506. {
  12507. start_Object = new Res_ThreeCode()
  12508. {
  12509. AirPort = empty,
  12510. AirPort_En = empty,
  12511. City = empty,
  12512. Country = empty,
  12513. Four = empty,
  12514. Three = empty,
  12515. };
  12516. }
  12517. if (end_Object == null)
  12518. {
  12519. end_Object = new Res_ThreeCode()
  12520. {
  12521. AirPort = empty,
  12522. AirPort_En = empty,
  12523. City = empty,
  12524. Country = empty,
  12525. Four = empty,
  12526. Three = empty,
  12527. };
  12528. }
  12529. //机型判断
  12530. string airModel = item["AirModel"].ToString();
  12531. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  12532. string flightTime = item["FlightTime"].ToString();
  12533. if (flightTime!.Contains(":"))
  12534. {
  12535. flightTime = flightTime.Replace(":", "小时");
  12536. flightTime += "分钟";
  12537. }
  12538. if (flightTime.Contains("H"))
  12539. {
  12540. flightTime = flightTime.Replace("H", "小时");
  12541. }
  12542. if (flightTime.Contains("M"))
  12543. {
  12544. flightTime = flightTime.Replace("M", "分钟");
  12545. }
  12546. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  12547. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  12548. {
  12549. flightTime = flightDataTime.Hour > 0
  12550. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  12551. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  12552. ? flightDataTime.Minute.ToString() + "分钟" : "";
  12553. }
  12554. //航班号
  12555. string flightcode = item["Fliagtcode"].ToString();
  12556. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  12557. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  12558. if (aircompany == null)
  12559. {
  12560. aircompany = new Res_AirCompany
  12561. {
  12562. CnName = hsEmpty,
  12563. EnName = hsEmpty,
  12564. ShortCode = hsEmpty,
  12565. };
  12566. }
  12567. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  12568. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  12569. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  12570. if (isTrade)
  12571. {
  12572. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  12573. }
  12574. else
  12575. {
  12576. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  12577. }
  12578. }
  12579. chiarr.Add(new Grp_ApprovalTravelDetails
  12580. {
  12581. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  12582. CreateTime = DateTime.Now,
  12583. CreateUserId = dto.Userid,
  12584. ParentId = 0,
  12585. Details = trip
  12586. });
  12587. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  12588. var last = threeCodeStr.Last();
  12589. foreach (var item in threeCodeStr)
  12590. {
  12591. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  12592. if (item.Equals(last))
  12593. {
  12594. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  12595. }
  12596. }
  12597. cityPath = cityPath.Trim('-');
  12598. }
  12599. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  12600. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  12601. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  12602. appro.Diid = dto.Diid;
  12603. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  12604. appro.Id = thisId;
  12605. appro.CreateUserId = dto.Userid;
  12606. appro.CreateTime = DateTime.Now;
  12607. foreach (var item in gwinfo)
  12608. {
  12609. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  12610. chi.Details = "拜访" + item.Client;
  12611. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  12612. {
  12613. chi.Details += "," + item.ReqSample;
  12614. }
  12615. chi.ParentId = thisId;
  12616. chi.Time = item.Time;
  12617. chiarr.Add(chi);
  12618. }
  12619. if (chiarr.Count < 5)
  12620. {
  12621. for (int j = chiarr.Count; j < 5; j++)
  12622. {
  12623. chiarr.Add(new
  12624. Grp_ApprovalTravelDetails());
  12625. }
  12626. }
  12627. resultArr.Add(new
  12628. {
  12629. appro.Id,
  12630. appro.Date,
  12631. appro.Diid,
  12632. chiList = chiarr.Select(x1 => new
  12633. {
  12634. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  12635. x1.Details,
  12636. x1.ParentId,
  12637. x1.Id
  12638. })
  12639. });
  12640. }
  12641. _sqlSugar.CommitTran();
  12642. jw = JsonView(true, "生成成功!", resultArr);
  12643. }
  12644. catch (Exception ex)
  12645. {
  12646. jw.Code = 400;
  12647. jw.Msg = "生成失败!" + ex.Message;
  12648. }
  12649. return Ok(jw);
  12650. }
  12651. /// <summary>
  12652. /// 报批行程word导出
  12653. /// </summary>
  12654. /// <param name="dto"></param>
  12655. /// <returns></returns>
  12656. [HttpPost]
  12657. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  12658. {
  12659. var jw = JsonView(false);
  12660. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  12661. if (group == null)
  12662. {
  12663. jw.Msg = "暂无该团组!";
  12664. return Ok(jw);
  12665. }
  12666. //模板路径
  12667. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  12668. //载入模板
  12669. Document doc = new Document(tempPath);
  12670. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  12671. //获取所填表格的序数
  12672. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  12673. Aspose.Words.Tables.Row titleRowClone = null;
  12674. Aspose.Words.Tables.Row CenterRowClone = null;
  12675. int index = 0;
  12676. int indexChi = 0;
  12677. int SetIndex = 0;
  12678. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  12679. //获取数据,放到datatable
  12680. foreach (var item in ApprovalTravelArr)
  12681. {
  12682. if (index > 0)
  12683. {
  12684. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  12685. tableOne.AppendChild(titleRowClone);
  12686. }
  12687. var textTime = item.Date;
  12688. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  12689. SetCells(tableOne, doc, SetIndex, 0, textTime);
  12690. SetIndex++;
  12691. if (ChiRep.Count > 0)
  12692. {
  12693. foreach (var itemChi in ChiRep)
  12694. {
  12695. var txtTime = itemChi.Time;
  12696. var txtDetail = itemChi.Details;
  12697. if (indexChi > 0)
  12698. {
  12699. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  12700. tableOne.AppendChild(CenterRowClone);
  12701. }
  12702. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  12703. {
  12704. SetCells(tableOne, doc, SetIndex, 0, "");
  12705. SetCells(tableOne, doc, SetIndex, 1, "");
  12706. indexChi++;
  12707. SetIndex++;
  12708. break;
  12709. }
  12710. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  12711. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  12712. indexChi++;
  12713. SetIndex++;
  12714. }
  12715. }
  12716. else
  12717. {
  12718. if (indexChi > 0)
  12719. {
  12720. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  12721. tableOne.AppendChild(CenterRowClone);
  12722. }
  12723. SetCells(tableOne, doc, SetIndex, 0, "");
  12724. SetCells(tableOne, doc, SetIndex, 1, "");
  12725. indexChi++;
  12726. SetIndex++;
  12727. }
  12728. index++;
  12729. }
  12730. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  12731. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  12732. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  12733. jw.Code = 200;
  12734. jw.Msg = "";
  12735. return Ok(jw);
  12736. }
  12737. private string intToString(int numberVal)
  12738. {
  12739. string numberval = numberVal.ToString();
  12740. Dictionary<char, string> Number = new Dictionary<char, string>();
  12741. Number.Add('1', "一");
  12742. Number.Add('2', "二");
  12743. Number.Add('3', "三");
  12744. Number.Add('4', "四");
  12745. Number.Add('5', "五");
  12746. Number.Add('6', "六");
  12747. Number.Add('7', "七");
  12748. Number.Add('8', "八");
  12749. Number.Add('9', "九");
  12750. string stringNumberVal = string.Empty;
  12751. for (int i = 0; i < numberval.Length; i++)
  12752. {
  12753. if (i == 0)
  12754. {
  12755. stringNumberVal += Number[numberval[i]];
  12756. }
  12757. else if (i >= 1)
  12758. {
  12759. if (numberval[i] == '0')
  12760. {
  12761. stringNumberVal = "十";
  12762. }
  12763. else
  12764. {
  12765. stringNumberVal += "十" + Number[numberval[i]];
  12766. }
  12767. }
  12768. }
  12769. return stringNumberVal;
  12770. }
  12771. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  12772. {
  12773. //获取table中的某个单元格,从0开始
  12774. Cell lshCell = table.Rows[rows].Cells[cells];
  12775. //将单元格中段落移除
  12776. foreach (Node item in lshCell.Paragraphs)
  12777. {
  12778. lshCell.Paragraphs.Remove(item);
  12779. }
  12780. if (val.Contains("\r\n"))
  12781. {
  12782. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  12783. foreach (var item in spArr)
  12784. {
  12785. //新建一个段落
  12786. Paragraph p = new Paragraph(doc);
  12787. var r = new Run(doc, item);
  12788. //把设置的值赋给之前新建的段落
  12789. p.AppendChild(r);
  12790. //将此段落加到单元格内
  12791. lshCell.AppendChild(p);
  12792. }
  12793. }
  12794. else
  12795. {
  12796. //新建一个段落
  12797. Paragraph p = new Paragraph(doc);
  12798. var r = new Run(doc, val);
  12799. //把设置的值赋给之前新建的段落
  12800. p.AppendChild(r);
  12801. //将此段落加到单元格内
  12802. lshCell.AppendChild(p);
  12803. }
  12804. }
  12805. [HttpPost]
  12806. public async Task<IActionResult> ServerHttp(string paramStr)
  12807. {
  12808. paramStr = paramStr.TrimEnd('\'');
  12809. paramStr = paramStr.TrimStart('\'');
  12810. JsonView jw = JsonView(false);
  12811. JObject param = JObject.Parse(paramStr);
  12812. if (!param.ContainsKey("url"))
  12813. {
  12814. jw.Msg = "url null";
  12815. return Ok(jw);
  12816. }
  12817. string url = param["url"]!.ToString();
  12818. var methon = "get";
  12819. Dictionary<string, string> bodyValues = null;
  12820. Dictionary<string, string> headValues = null;
  12821. if (param.ContainsKey("methon"))
  12822. {
  12823. methon = param["methon"]!.ToString();
  12824. }
  12825. if (param.ContainsKey("header"))
  12826. {
  12827. var header = param["header"]!.ToString();
  12828. JObject headerJobject = JObject.Parse(header);
  12829. headValues = new Dictionary<string, string>();
  12830. foreach (JProperty item in headerJobject.Properties())
  12831. {
  12832. var value = item.Value.ToString();
  12833. var head = item.Path;
  12834. headValues.Add(head, value);
  12835. }
  12836. }
  12837. if (param.ContainsKey("body"))
  12838. {
  12839. var body = param["body"]!.ToString();
  12840. bodyValues = new Dictionary<string, string>();
  12841. JObject bodyJobject = JObject.Parse(body);
  12842. foreach (JProperty item in bodyJobject.Properties())
  12843. {
  12844. var value = item.Value.ToString();
  12845. var head = item.Path;
  12846. bodyValues.Add(head, value);
  12847. }
  12848. }
  12849. HttpClient client = new HttpClient();
  12850. string responseString = string.Empty;
  12851. if (param.ContainsKey("isJson"))
  12852. {
  12853. }
  12854. if (headValues != null)
  12855. {
  12856. foreach (var item in headValues.Keys)
  12857. {
  12858. client.DefaultRequestHeaders.Add(item, headValues[item]);
  12859. }
  12860. }
  12861. try
  12862. {
  12863. if (methon == "get")
  12864. {
  12865. responseString = await client.GetStringAsync(url);
  12866. }
  12867. else if (methon == "post")
  12868. {
  12869. if (bodyValues == null)
  12870. {
  12871. jw.Msg = "methon post body null";
  12872. return Ok(jw);
  12873. }
  12874. // 数据转化为 key=val 格式
  12875. var content = new FormUrlEncodedContent(bodyValues);
  12876. var response = await client.PostAsync(url, content);
  12877. // 获取数据
  12878. responseString = await response.Content.ReadAsStringAsync();
  12879. }
  12880. else
  12881. {
  12882. jw.Msg = "methon error";
  12883. }
  12884. jw = JsonView(true, "success", responseString);
  12885. }
  12886. catch (Exception ex)
  12887. {
  12888. jw.Msg = "error " + ex.Message;
  12889. jw.Data = ex.StackTrace;
  12890. }
  12891. finally
  12892. {
  12893. client.Dispose();
  12894. }
  12895. return Ok(jw);
  12896. }
  12897. #endregion
  12898. // /// <summary>
  12899. // ///
  12900. // /// </summary>
  12901. // /// <param name="_dto"></param>
  12902. // /// <returns></returns>
  12903. // [HttpPost]
  12904. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12905. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12906. // {
  12907. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12908. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  12909. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  12910. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12911. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  12912. // dic_psg.Add("客人", 974);
  12913. // dic_psg.Add("司机", 975);
  12914. // dic_psg.Add("导游", 976);
  12915. // dic_psg.Add("公司内部人员", 977);
  12916. // dic_psg.Add("司机/导游/公司内部人员", 978);
  12917. // foreach (var item in list_visa)
  12918. // {
  12919. // Grp_VisaInfo temp = new Grp_VisaInfo();
  12920. // temp.Id = item.Id;
  12921. // temp.DIId = item.DIId;
  12922. // temp.VisaClient = item.VisaClient;
  12923. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  12924. // temp.VisaCurrency = item.VisaCurrency;
  12925. // temp.IsThird = item.IsThird;
  12926. // if (dic_psg.ContainsKey(item.PassengerType))
  12927. // {
  12928. // temp.PassengerType = dic_psg[item.PassengerType];
  12929. // }
  12930. // else {
  12931. // temp.PassengerType = -1;
  12932. // }
  12933. // temp.VisaNumber = item.VisaNumber;
  12934. // temp.VisaFreeNumber = item.VisaFreeNumber;
  12935. // temp.CreateUserId = item.Operators;
  12936. // DateTime dt_ct;
  12937. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  12938. // if (b_ct)
  12939. // {
  12940. // temp.CreateTime = dt_ct;
  12941. // }
  12942. // else
  12943. // {
  12944. // temp.CreateTime = DateTime.Now;
  12945. // }
  12946. // temp.DeleteTime = "";
  12947. // temp.DeleteUserId = 0;
  12948. // temp.Remark = item.Remark;
  12949. // if (string.IsNullOrEmpty(temp.Remark)) {
  12950. // temp.Remark = "";
  12951. // }
  12952. // temp.IsDel = item.IsDel;
  12953. // temp.VisaDescription = item.VisaAttachment;
  12954. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  12955. //([Id]
  12956. // ,[DIId]
  12957. // ,[VisaClient]
  12958. // ,[VisaPrice]
  12959. // ,[VisaCurrency]
  12960. // ,[IsThird]
  12961. // ,[PassengerType]
  12962. // ,[VisaNumber]
  12963. // ,[VisaFreeNumber]
  12964. // ,[CreateUserId]
  12965. // ,[CreateTime]
  12966. // ,[DeleteTime]
  12967. // ,[DeleteUserId]
  12968. // ,[Remark]
  12969. // ,[IsDel]
  12970. // ,[visaDescription])
  12971. // VALUES
  12972. // ({0},{1},'{2}',{3},{4}
  12973. //,{5},{6},{7},{8},{9}
  12974. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  12975. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  12976. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  12977. //);
  12978. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  12979. // }
  12980. // return Ok(JsonView(true, "操作成功!"));
  12981. // }
  12982. /// <summary>
  12983. /// 123132123
  12984. /// </summary>
  12985. /// <param name="_dto"></param>
  12986. /// <returns></returns>
  12987. [HttpPost]
  12988. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12989. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12990. {
  12991. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12992. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  12993. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  12994. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12995. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  12996. dicDetail.Add(789, 1034);
  12997. dicDetail.Add(790, 1035);
  12998. dicDetail.Add(791, 1036);
  12999. dicDetail.Add(792, 1037);
  13000. dicDetail.Add(793, 1038);
  13001. dicDetail.Add(794, 1039);
  13002. dicDetail.Add(795, 1040);
  13003. dicDetail.Add(796, 1041);
  13004. dicDetail.Add(797, 1042);
  13005. dicDetail.Add(798, 1043);
  13006. dicDetail.Add(801, 1044);
  13007. dicDetail.Add(802, 1045);
  13008. dicDetail.Add(803, 1046);
  13009. Dictionary<int, int> dic = new Dictionary<int, int>();
  13010. dic.Add(806, 1027);
  13011. dic.Add(807, 1028);
  13012. dic.Add(808, 1029);
  13013. dic.Add(809, 1030);
  13014. dic.Add(810, 1031);
  13015. dic.Add(811, 1032);
  13016. dic.Add(812, 1033);
  13017. foreach (var item in list_visa)
  13018. {
  13019. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  13020. temp.Coefficient = item.coefficient;
  13021. DateTime dtCrt;
  13022. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  13023. if (b1)
  13024. {
  13025. temp.CreateTime = dtCrt;
  13026. }
  13027. else
  13028. {
  13029. temp.CreateTime = DateTime.Now;
  13030. }
  13031. temp.CreateUserId = item.Operators;
  13032. temp.DeleteTime = "";
  13033. temp.DeleteUserId = 0;
  13034. temp.DiId = int.Parse(item.DIID);
  13035. temp.FilePath = item.FilePath;
  13036. temp.IsDel = item.IsDel;
  13037. temp.Price = item.Price;
  13038. temp.PriceCount = 1;
  13039. temp.PriceCurrency = item.Currency;
  13040. int detailId = 0;
  13041. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  13042. {
  13043. detailId = dicDetail[item.PriceTypeDetail];
  13044. }
  13045. temp.PriceDetailType = detailId;
  13046. temp.PriceDt = DateTime.Now;
  13047. temp.PriceName = item.PriceName;
  13048. temp.PriceSum = item.Price;
  13049. int tid = 0;
  13050. if (dic.ContainsKey(item.PriceType))
  13051. {
  13052. tid = dic[item.PriceType];
  13053. }
  13054. temp.PriceType = tid;
  13055. temp.Remark = item.Remark;
  13056. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  13057. }
  13058. return Ok(JsonView(true, "操作成功!"));
  13059. }
  13060. }
  13061. }