GroupsController.cs 640 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. using NPOI.HSSF.Util;
  78. using NPOI.HSSF.UserModel;
  79. using NPOI.SS.UserModel;
  80. using NPOI.XSSF.UserModel;
  81. using MySqlX.XDevAPI.Relational;
  82. using SqlSugar.Extensions;
  83. using Table = Aspose.Words.Tables.Table;
  84. using Aspose.Cells.Tables;
  85. using NPOI.SS.Util;
  86. using RestSharp.Extensions;
  87. using Microsoft.AspNetCore.WebUtilities;
  88. using K4os.Compression.LZ4.Internal;
  89. using static Pipelines.Sockets.Unofficial.SocketConnection;
  90. using System.Diagnostics.PerformanceData;
  91. using System.Drawing.Printing;
  92. using OASystem.Domain.Dtos.FileDto;
  93. using Microsoft.VisualBasic;
  94. using Microsoft.EntityFrameworkCore.Query.Internal;
  95. using MathNet.Numerics.Distributions;
  96. namespace OASystem.API.Controllers
  97. {
  98. /// <summary>
  99. /// 团组相关
  100. /// </summary>
  101. //[Authorize]
  102. [Route("api/[controller]/[action]")]
  103. public class GroupsController : ControllerBase
  104. {
  105. private readonly GrpScheduleRepository _grpScheduleRep;
  106. private readonly IMapper _mapper;
  107. private readonly DelegationInfoRepository _groupRepository;
  108. private readonly TaskAssignmentRepository _taskAssignmentRep;
  109. private readonly AirTicketResRepository _airTicketResRep;
  110. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  111. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  112. private readonly DelegationEnDataRepository _delegationEnDataRep;
  113. private readonly DelegationVisaRepository _delegationVisaRep;
  114. private readonly VisaPriceRepository _visaPriceRep;
  115. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  116. private readonly HotelPriceRepository _hotelPriceRep;
  117. private readonly CustomersRepository _customersRep;
  118. private readonly MessageRepository _message;
  119. private readonly SqlSugarClient _sqlSugar;
  120. private readonly TourClientListRepository _tourClientListRep;
  121. private readonly TeamRateRepository _teamRateRep;
  122. #region 成本相关
  123. private readonly CheckBoxsRepository _checkBoxs;
  124. private readonly GroupCostRepository _GroupCostRepository;
  125. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  126. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  127. #endregion
  128. private readonly SetDataRepository _setDataRep;
  129. private string url;
  130. private string path;
  131. private readonly EnterExitCostRepository _enterExitCostRep;
  132. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  133. private readonly UsersRepository _usersRep;
  134. private readonly IJuHeApiService _juHeApi;
  135. private readonly InvertedListRepository _invertedListRep;
  136. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  137. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  138. private readonly ThreeCodeRepository _threeCodeRepository;
  139. private readonly HotelInquiryRepository _hotelInquiryRep;
  140. private readonly FeeAuditRepository _feeAuditRep;
  141. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  142. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  143. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  144. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  145. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  146. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  147. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  148. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  149. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  150. {
  151. _mapper = mapper;
  152. _grpScheduleRep = grpScheduleRep;
  153. _groupRepository = groupRepository;
  154. _taskAssignmentRep = taskAssignmentRep;
  155. _airTicketResRep = airTicketResRep;
  156. _sqlSugar = sqlSugar;
  157. url = AppSettingsHelper.Get("ExcelBaseUrl");
  158. path = AppSettingsHelper.Get("ExcelBasePath");
  159. if (!System.IO.Directory.Exists(path))
  160. {
  161. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  162. }
  163. _decreasePaymentsRep = decreasePaymentsRep;
  164. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  165. _delegationEnDataRep = delegationEnDataRep;
  166. _enterExitCostRep = enterExitCostRep;
  167. _delegationVisaRep = delegationVisaRep;
  168. _message = message;
  169. _visaPriceRep = visaPriceRep;
  170. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  171. _checkBoxs = checkBoxs;
  172. _GroupCostRepository = GroupCostRepository;
  173. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  174. _GroupCostParameterRepository = GroupCostParameterRepository;
  175. _hotelPriceRep = hotelPriceRep;
  176. _customersRep = customersRep;
  177. _setDataRep = setDataRep;
  178. _tourClientListRep = tourClientListRep;
  179. _teamRateRep = teamRateRep;
  180. _hubContext = hubContext;
  181. _usersRep = usersRep;
  182. _juHeApi = juHeApi;
  183. _invertedListRep = invertedListRep;
  184. _visaFeeInfoRep = visaFeeInfoRep;
  185. _ticketBlackCodeRep = ticketBlackCodeRep;
  186. _hotelInquiryRep = hotelInquiryRep;
  187. _threeCodeRepository = threeCodeRepository;
  188. _feeAuditRep = feeAuditRep;
  189. }
  190. #region 流程管控
  191. /// <summary>
  192. /// 获取团组流程管控信息
  193. /// </summary>
  194. /// <param name="paras">参数Json字符串</param>
  195. /// <returns></returns>
  196. [HttpPost]
  197. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  198. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  199. {
  200. if (string.IsNullOrEmpty(_jsonDto.Paras))
  201. {
  202. return Ok(JsonView(false, "参数为空"));
  203. }
  204. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  205. if (_ScheduleDto != null)
  206. {
  207. if (_ScheduleDto.SearchType == 2)//获取列表
  208. {
  209. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  210. return Ok(JsonView(_grpScheduleViewList));
  211. }
  212. else//获取对象
  213. {
  214. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  215. if (_grpScheduleView != null)
  216. {
  217. return Ok(JsonView(_grpScheduleView));
  218. }
  219. }
  220. }
  221. else
  222. {
  223. return Ok(JsonView(false, "参数反序列化失败"));
  224. }
  225. return Ok(JsonView(false, "暂无数据!"));
  226. }
  227. /// <summary>
  228. /// 修改团组流程管控详细表数据
  229. /// </summary>
  230. /// <param name="paras"></param>
  231. /// <returns></returns>
  232. [HttpPost]
  233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  234. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  235. {
  236. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  237. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  238. .SetColumns(it => it.Duty == _detail.Duty)
  239. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  240. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  241. .SetColumns(it => it.JobContent == _detail.JobContent)
  242. .SetColumns(it => it.Remark == _detail.Remark)
  243. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  244. .Where(s => s.Id == dto.Id)
  245. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  246. .ExecuteCommandAsync();
  247. if (result > 0)
  248. {
  249. return Ok(JsonView(true, "保存成功!"));
  250. }
  251. return Ok(JsonView(false, "保存失败!"));
  252. }
  253. /// <summary>
  254. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  255. /// </summary>
  256. /// <param name="dto"></param>
  257. /// <returns></returns>
  258. [HttpPost]
  259. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  260. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  261. {
  262. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  263. _detail.IsDel = 1;
  264. _detail.DeleteUserId = dto.Duty;
  265. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  266. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  267. .SetColumns(it => it.IsDel == _detail.IsDel)
  268. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  269. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  270. .Where(it => it.Id == dto.Id)
  271. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  272. //.WhereColumns(s => s.Id == dto.Id)
  273. .ExecuteCommandAsync();
  274. if (result > 0)
  275. {
  276. return Ok(JsonView(true, "删除成功!"));
  277. }
  278. return Ok(JsonView(false, "删除失败!"));
  279. }
  280. /// <summary>
  281. /// 增加团组流程管控详细表数据
  282. /// </summary>
  283. /// <param name="dto"></param>
  284. /// <returns></returns>
  285. [HttpPost]
  286. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  287. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  288. {
  289. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  290. if (DateTime.Now < _detail.ExpectBeginDt)
  291. {
  292. _detail.StepStatus = 0;
  293. }
  294. else
  295. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  296. _detail.StepStatus = 1;
  297. }
  298. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  299. if (result > 0)
  300. {
  301. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  302. return Ok(JsonView(true, "添加成功!", _result));
  303. }
  304. return Ok(JsonView(false, "添加失败!"));
  305. }
  306. #endregion
  307. #region 团组基本信息
  308. /// <summary>
  309. /// 接团信息列表
  310. /// </summary>
  311. /// <param name="dto">团组列表请求dto</param>
  312. /// <returns></returns>
  313. [HttpPost]
  314. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  315. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  316. {
  317. var groupData = await _groupRepository.GetGroupList(dto);
  318. if (groupData.Code != 0)
  319. {
  320. return Ok(JsonView(false, groupData.Msg));
  321. }
  322. return Ok(JsonView(groupData.Data));
  323. }
  324. /// <summary>
  325. /// 分页查询团组列表
  326. /// </summary>
  327. /// <param name="dto"></param>
  328. /// <returns></returns>
  329. [HttpPost]
  330. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  331. public async Task<IActionResult> QueryGroupListOffset(QueryGroupListOffsetDto dto)
  332. {
  333. var watch = new Stopwatch();
  334. watch.Start();
  335. RefAsync<int> total = 0;
  336. var countyDatas = await _sqlSugar.Queryable<Grp_DelegationInfo>()
  337. .Where((di) => di.IsDel == 0 && !string.IsNullOrWhiteSpace(di.TeamName))
  338. .WhereIF(!string.IsNullOrEmpty(dto.Search), (di) => di.TeamName.Contains(dto.Search))
  339. .OrderBy((di) => new { id = SqlFunc.Desc(di.Id) })
  340. .Select((di) => new { id = di.Id, name = di.TeamName })
  341. .Distinct()
  342. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  343. watch.Stop();
  344. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  345. }
  346. /// <summary>
  347. /// 接团信息列表 Page
  348. /// </summary>
  349. /// <param name="dto">团组列表请求dto</param>
  350. /// <returns></returns>
  351. [HttpPost]
  352. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  353. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  354. {
  355. #region 参数验证
  356. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  357. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  358. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  359. #region 页面操作权限验证
  360. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  361. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  362. #endregion
  363. #endregion
  364. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  365. {
  366. string sqlWhere = string.Empty;
  367. if (dto.IsSure == 0) //未完成
  368. {
  369. sqlWhere += string.Format(@" And IsSure = 0");
  370. }
  371. else if (dto.IsSure == 1) //已完成
  372. {
  373. sqlWhere += string.Format(@" And IsSure = 1");
  374. }
  375. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  376. {
  377. string tj = dto.SearchCriteria;
  378. 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}%')",
  379. tj, tj, tj, tj, tj);
  380. }
  381. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  382. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  383. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  384. JietuanOperator,IsSure,CreateTime
  385. From (
  386. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  387. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  388. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  389. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  390. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  391. From Grp_DelegationInfo gdi
  392. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  393. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  394. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  395. Where gdi.IsDel = 0 {0}
  396. ) temp", sqlWhere);
  397. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  398. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  399. #region 处理所属部门
  400. /*
  401. * 1.sq 和 gyy 等显示 市场部
  402. * 2.王鸽和主管及张总还有管理员号统一国交部
  403. * 2-1. 4 管理员 ,21 张海麟
  404. */
  405. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  406. List<int> userIds1 = new List<int>() { 4, 21 };
  407. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  408. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  409. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  410. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  411. .ToList();
  412. foreach (var item in _DelegationList)
  413. {
  414. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  415. }
  416. #endregion
  417. var _view = new
  418. {
  419. PageFuncAuth = pageFunAuthView,
  420. Data = _DelegationList
  421. };
  422. return Ok(JsonView(true, "查询成功!", _view, total));
  423. }
  424. else
  425. {
  426. return Ok(JsonView(false, "查询失败"));
  427. }
  428. }
  429. /// <summary>
  430. /// 团组列表
  431. /// </summary>
  432. /// <returns></returns>
  433. [HttpPost]
  434. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  435. {
  436. #region 参数验证
  437. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  438. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  439. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  440. #region 页面操作权限验证
  441. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  442. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  443. #endregion
  444. #endregion
  445. if (dto.PortType != 1 && dto.PortType != 2)
  446. {
  447. return Ok(JsonView(false, "查询失败!"));
  448. }
  449. string orderbyStr = "order by gdi.CreateTime Desc";
  450. string sqlWhere = string.Empty;
  451. if (dto.IsSure == 0) //未完成
  452. {
  453. sqlWhere += string.Format(@" And IsSure = 0");
  454. }
  455. else if (dto.IsSure == 1) //已完成
  456. {
  457. sqlWhere += string.Format(@" And IsSure = 1");
  458. }
  459. //团组类型
  460. if (dto.TeamDid > 0)
  461. {
  462. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  463. }
  464. //团组名称
  465. if (!string.IsNullOrEmpty(dto.TeamName))
  466. {
  467. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  468. }
  469. //客户名称
  470. if (!string.IsNullOrEmpty(dto.ClientName))
  471. {
  472. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  473. }
  474. //客户单位
  475. if (!string.IsNullOrEmpty(dto.ClientUnit))
  476. {
  477. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  478. }
  479. //出访时间
  480. if (!string.IsNullOrEmpty(dto.visitDataTime))
  481. {
  482. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  483. orderbyStr = "order by gdi.VisitDate";
  484. }
  485. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  486. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  487. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  488. JietuanOperator,IsSure,CreateTime
  489. From (
  490. Select row_number() over({0}) as Row_Number,
  491. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  492. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  493. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  494. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  495. From Grp_DelegationInfo gdi
  496. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  497. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  498. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  499. Where gdi.IsDel = 0 {1}
  500. ) temp ", orderbyStr, sqlWhere);
  501. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  502. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  503. #region 处理所属部门
  504. /*
  505. * 1.sq 和 gyy 等显示 市场部
  506. * 2.王鸽和主管及张总还有管理员号统一国交部
  507. * 2-1. 4 管理员 ,21 张海麟
  508. */
  509. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  510. List<int> userIds1 = new List<int>() { 4, 21 };
  511. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  512. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  513. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  514. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  515. .ToList();
  516. foreach (var item in _DelegationList)
  517. {
  518. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  519. }
  520. #endregion
  521. var _view = new
  522. {
  523. PageFuncAuth = pageFunAuthView,
  524. Data = _DelegationList
  525. };
  526. return Ok(JsonView(true, "查询成功!", _view, total));
  527. }
  528. /// <summary>
  529. /// 接团信息详情
  530. /// </summary>
  531. /// <param name="dto">团组info请求dto</param>
  532. /// <returns></returns>
  533. [HttpPost]
  534. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  535. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  536. {
  537. var groupData = await _groupRepository.GetGroupInfo(dto);
  538. if (groupData.Code != 0)
  539. {
  540. return Ok(JsonView(false, groupData.Msg));
  541. }
  542. return Ok(JsonView(groupData.Data));
  543. }
  544. /// <summary>
  545. /// 接团信息 编辑添加
  546. /// 基础信息数据源
  547. /// </summary>
  548. /// <param name="dto"></param>
  549. /// <returns></returns>
  550. [HttpPost]
  551. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  552. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  553. {
  554. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  555. if (groupData.Code != 0)
  556. {
  557. return Ok(JsonView(false, groupData.Msg));
  558. }
  559. return Ok(JsonView(groupData.Data));
  560. }
  561. /// <summary>
  562. /// 接团信息 操作(增改)
  563. /// </summary>
  564. /// <param name="dto"></param>
  565. /// <returns></returns>
  566. [HttpPost]
  567. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  568. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  569. {
  570. try
  571. {
  572. var groupData = await _groupRepository.GroupOperation(dto);
  573. if (groupData.Code != 0)
  574. {
  575. return Ok(JsonView(false, groupData.Msg));
  576. }
  577. int diId = 0;
  578. //添加时 默认加入团组汇率
  579. if (dto.Status == 1) //添加
  580. {
  581. diId = groupData.Data;
  582. //添加默认币种
  583. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  584. //默认分配权限
  585. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  586. //消息提示 王鸽 主管号
  587. List<int> _managerIds = new List<int>() { 22, 32 };
  588. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  589. if (userIds.Count > 0)
  590. {
  591. userIds.Add(208);
  592. //创建团组管控
  593. GroupStepForDelegation.CreateWorkStep(diId);
  594. //发送消息
  595. string groupName = dto.TeamName;
  596. string createGroupUser = string.Empty;
  597. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  598. if (userInfo != null) createGroupUser = userInfo.CnName;
  599. string title = $"系统通知";
  600. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  601. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  602. }
  603. //默认创建倒推表
  604. await _invertedListRep._Create(dto.UserId, diId);
  605. }
  606. else if (dto.Status == 2)
  607. {
  608. diId = dto.Id;
  609. }
  610. return Ok(JsonView(true, "操作成功!", diId));
  611. }
  612. catch (Exception ex)
  613. {
  614. Logs("[response]" + JsonConvert.SerializeObject(dto));
  615. Logs(ex.Message);
  616. return Ok(JsonView(false, ex.Message));
  617. }
  618. }
  619. /// <summary>
  620. /// 接团流程操作(增改)
  621. /// 安卓端使用 建团时添加客户名单
  622. /// </summary>
  623. /// <param name="dto"></param>
  624. /// <returns></returns>
  625. [HttpPost]
  626. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  627. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  628. {
  629. try
  630. {
  631. #region 参数验证
  632. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  633. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  634. #region 页面操作权限验证
  635. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  636. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  637. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  638. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  639. #endregion
  640. #endregion
  641. _sqlSugar.BeginTran();
  642. var _dto = new GroupOperationDto();
  643. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  644. var groupData = await _groupRepository.GroupOperation(_dto);
  645. if (groupData.Code != 0)
  646. {
  647. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  648. }
  649. int diId = 0;
  650. //添加时 默认加入团组汇率
  651. if (dto.Status == 1) //添加
  652. {
  653. diId = groupData.Data;
  654. //添加默认币种
  655. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  656. //默认分配权限
  657. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  658. //消息提示 王鸽 主管号
  659. List<int> _managerIds = new List<int>() { 22, 32 };
  660. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  661. if (userIds.Count > 0)
  662. {
  663. userIds.Add(208);
  664. //创建团组管控
  665. GroupStepForDelegation.CreateWorkStep(diId);
  666. //发送消息
  667. string groupName = dto.TeamName;
  668. string createGroupUser = string.Empty;
  669. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  670. if (userInfo != null) createGroupUser = userInfo.CnName;
  671. string title = $"系统通知";
  672. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  673. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  674. }
  675. }
  676. if (dto.Status == 2)
  677. {
  678. diId = dto.Id;
  679. if (diId == 0)
  680. {
  681. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  682. }
  683. }
  684. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  685. if (viewData.Code != 0)
  686. {
  687. _sqlSugar.RollbackTran();
  688. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  689. }
  690. _sqlSugar.CommitTran();
  691. return Ok(JsonView(true, "添加成功"));
  692. }
  693. catch (Exception ex)
  694. {
  695. _sqlSugar.RollbackTran();
  696. return Ok(JsonView(false, ex.Message));
  697. }
  698. }
  699. /// <summary>
  700. /// 接团信息 操作(删除)
  701. /// </summary>
  702. /// <param name="dto"></param>
  703. /// <returns></returns>
  704. [HttpPost]
  705. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  706. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  707. {
  708. try
  709. {
  710. var groupData = await _groupRepository.GroupDel(dto);
  711. if (groupData.Code != 0)
  712. {
  713. return Ok(JsonView(false, groupData.Msg));
  714. }
  715. return Ok(JsonView(true));
  716. }
  717. catch (Exception ex)
  718. {
  719. Logs("[response]" + JsonConvert.SerializeObject(dto));
  720. Logs(ex.Message);
  721. return Ok(JsonView(false, ex.Message));
  722. }
  723. }
  724. /// <summary>
  725. /// 获取团组销售报价号
  726. /// 团组添加时 使用
  727. /// </summary>
  728. /// <returns></returns>
  729. [HttpPost]
  730. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  731. public async Task<IActionResult> GetGroupSalesQuoteNo()
  732. {
  733. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  734. if (groupData.Code != 0)
  735. {
  736. return Ok(JsonView(false, groupData.Msg));
  737. }
  738. object salesQuoteNo = new
  739. {
  740. SalesQuoteNo = groupData.Data
  741. };
  742. return Ok(JsonView(salesQuoteNo));
  743. }
  744. /// <summary>
  745. /// 设置确认出团
  746. /// </summary>
  747. /// <param name="dto"></param>
  748. /// <returns></returns>
  749. [HttpPost]
  750. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  751. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  752. {
  753. var groupData = await _groupRepository.ConfirmationGroup(dto);
  754. if (groupData.Code != 0)
  755. {
  756. return Ok(JsonView(false, groupData.Msg));
  757. }
  758. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  759. #region OA消息推送
  760. try
  761. {
  762. string groupName = groupInfo.TeamName;
  763. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  764. List<int> userIds = new List<int>();
  765. listUser.ForEach(s => userIds.Add(s.Id));
  766. string title = $"系统通知";
  767. string content = $"团组[{groupName}]已确认出团!";
  768. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  769. }
  770. catch (Exception ex)
  771. {
  772. }
  773. #endregion
  774. #region 应用推送
  775. try
  776. {
  777. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  778. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  779. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  780. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  781. {
  782. List<string> userList = new List<string>() { users.QiyeChatUserId };
  783. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  784. }
  785. }
  786. catch (Exception ex)
  787. {
  788. }
  789. #endregion
  790. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  791. return Ok(JsonView(true, "操作成功!", groupData.Data));
  792. }
  793. /// <summary>
  794. /// 获取团组名称data And 签证国别Data
  795. /// </summary>
  796. /// <param name="dto"></param>
  797. /// <returns></returns>
  798. [HttpPost]
  799. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  800. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  801. {
  802. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  803. if (groupData.Code != 0)
  804. {
  805. return Ok(JsonView(false, groupData.Msg));
  806. }
  807. return Ok(JsonView(groupData.Data));
  808. }
  809. /// <summary>
  810. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  811. /// </summary>
  812. /// <returns></returns>
  813. [HttpPost]
  814. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  815. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  816. {
  817. try
  818. {
  819. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  820. if (groupData.Code != 0)
  821. {
  822. return Ok(JsonView(false, groupData.Msg));
  823. }
  824. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  825. }
  826. catch (Exception ex)
  827. {
  828. return Ok(JsonView(false, "程序错误!"));
  829. throw;
  830. }
  831. }
  832. #endregion
  833. #region 团组&签证
  834. /// <summary>
  835. /// 根据团组Id获取签证客户信息List
  836. /// </summary>
  837. /// <param name="dto">请求dto</param>
  838. /// <returns></returns>
  839. [HttpPost]
  840. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  841. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  842. {
  843. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  844. if (groupData.Code != 0)
  845. {
  846. return Ok(JsonView(false, groupData.Msg));
  847. }
  848. return Ok(JsonView(groupData.Data));
  849. }
  850. /// <summary>
  851. /// IOS获取团组签证拍照上传进度01(团组列表)
  852. /// </summary>
  853. /// <param name="dto">请求dto</param>
  854. /// <returns></returns>
  855. [HttpPost]
  856. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  857. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  858. {
  859. if (dto == null)
  860. {
  861. return Ok(JsonView(false, "参数为空"));
  862. }
  863. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  864. return Ok(JsonView(visaList));
  865. }
  866. /// <summary>
  867. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  868. /// </summary>
  869. /// <returns></returns>
  870. [HttpPost]
  871. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  872. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  873. {
  874. if (dto == null)
  875. {
  876. return Ok(JsonView(false, "请求错误:"));
  877. }
  878. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  879. return Ok(JsonView(list));
  880. }
  881. /// <summary>
  882. /// IOS获取团组签证拍照上传进度03(相册)
  883. /// </summary>
  884. /// <returns></returns>
  885. [HttpPost]
  886. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  887. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  888. {
  889. if (dto == null)
  890. {
  891. return Ok(JsonView(false, "请求错误:"));
  892. }
  893. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  894. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  895. list.ForEach(s => s.url = url);
  896. return Ok(JsonView(list));
  897. }
  898. /// <summary>
  899. /// IOS获取团组签证拍照上传进度04(图片上传)
  900. /// </summary>
  901. /// <param name="dto"></param>
  902. /// <returns></returns>
  903. [HttpPost]
  904. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  905. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  906. {
  907. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  908. //if (!string.IsNullOrEmpty(result))
  909. //{
  910. //}
  911. //else {
  912. // return Ok(JsonView(false, "上传失败"));
  913. //}
  914. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  915. int sucNum = 0;
  916. try
  917. {
  918. foreach (var item in dto.base64DataList)
  919. {
  920. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  921. string result = decodeBase64ToImage(item, imageName);
  922. if (!string.IsNullOrEmpty(result))
  923. {
  924. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  925. pic.CreateUserId = dto.CreateUserId;
  926. pic.PicName = imageName;
  927. pic.PicPath = result;
  928. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  929. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  930. if (insertResult > 0)
  931. {
  932. sucNum++;
  933. }
  934. }
  935. }
  936. }
  937. catch (Exception ex)
  938. {
  939. return Ok(JsonView(false, ex.Message));
  940. }
  941. string msg = string.Format(@"成功上传{0}张", sucNum);
  942. return Ok(JsonView(true, msg));
  943. }
  944. private string decodeBase64ToImage(string base64DataURL, string imgName)
  945. {
  946. string filename = "";//声明一个string类型的相对路径
  947. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  948. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  949. try//会有异常抛出,try,catch一下
  950. {
  951. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  952. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  953. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  954. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  955. //文件名称
  956. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  957. //上传的文件的路径
  958. string filePath = "";
  959. if (!Directory.Exists(fileDir))
  960. {
  961. Directory.CreateDirectory(fileDir);
  962. }
  963. //上传的文件的路径
  964. filePath = fileDir + filename;
  965. //string url = HttpRuntime.AppDomainAppPath.ToString();
  966. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  967. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  968. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  969. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  970. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  971. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  972. ms.Close();//关闭当前流,并释放所有与之关联的资源
  973. bitmap.Dispose();
  974. }
  975. catch (Exception e)
  976. {
  977. string massage = e.Message;
  978. Logs("IOS图片上传Error:" + massage);
  979. //filename = e.Message;
  980. }
  981. return filename;//返回相对路径
  982. }
  983. /// <summary>
  984. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  985. /// </summary>
  986. /// <param name="dto"></param>
  987. /// <returns></returns>
  988. [HttpPost]
  989. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  990. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  991. {
  992. if (dto == null)
  993. {
  994. return Ok(JsonView(false, "请求错误:"));
  995. }
  996. string msg = "参数错误";
  997. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  998. {
  999. try
  1000. {
  1001. //_delegationVisaRep.BeginTran();
  1002. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  1003. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  1004. .Where(s => s.Id == dto.visaProgressCustomerId)
  1005. .ExecuteCommandAsync();
  1006. if (updCount > 0 && dto.publishCode == 1)
  1007. {
  1008. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  1009. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  1010. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  1011. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  1012. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  1013. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  1014. if (groupData == null)
  1015. {
  1016. _delegationVisaRep.RollbackTran();
  1017. }
  1018. string title = string.Format(@"[签证进度更新]");
  1019. string content = string.Format(@"测试文本");
  1020. bool rst = await _message.AddMsg(new MessageDto()
  1021. {
  1022. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  1023. IssuerId = dto.publisher,
  1024. Title = title,
  1025. Content = content,
  1026. ReleaseTime = DateTime.Now,
  1027. UIdList = new List<int> {
  1028. 234
  1029. }
  1030. });
  1031. if (rst)
  1032. {
  1033. return Ok(JsonView(true, "发送通知成功"));
  1034. }
  1035. }
  1036. //_delegationVisaRep.CommitTran();
  1037. }
  1038. catch (Exception)
  1039. {
  1040. //_delegationVisaRep.RollbackTran();
  1041. }
  1042. }
  1043. return Ok(JsonView(true, msg));
  1044. }
  1045. #endregion
  1046. #region 团组任务分配
  1047. /// <summary>
  1048. /// 团组任务分配初始化
  1049. /// </summary>
  1050. /// <param name="dto"></param>
  1051. /// <returns></returns>
  1052. [HttpPost]
  1053. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1054. public async Task<IActionResult> GetTaskAssignmen()
  1055. {
  1056. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1057. if (groupData.Code != 0)
  1058. {
  1059. return Ok(JsonView(false, groupData.Msg));
  1060. }
  1061. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1062. }
  1063. /// <summary>
  1064. /// 团组任务分配查询
  1065. /// </summary>
  1066. /// <param name="dto"></param>
  1067. /// <returns></returns>
  1068. [HttpPost]
  1069. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1070. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1071. {
  1072. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1073. if (groupData.Code != 0)
  1074. {
  1075. return Ok(JsonView(false, groupData.Msg));
  1076. }
  1077. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1078. }
  1079. /// <summary>
  1080. /// 团组任务分配操作
  1081. /// </summary>
  1082. /// <param name="dto"></param>
  1083. /// <returns></returns>
  1084. [HttpPost]
  1085. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1086. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1087. {
  1088. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1089. if (groupData.Code != 0)
  1090. {
  1091. return Ok(JsonView(false, groupData.Msg));
  1092. }
  1093. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1094. }
  1095. #endregion
  1096. #region 团组费用审核
  1097. /// <summary>
  1098. /// 费用审核
  1099. /// 团组列表 Page
  1100. /// </summary>
  1101. /// <param name="_dto">团组列表请求dto</param>
  1102. /// <returns></returns>
  1103. [HttpPost]
  1104. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1105. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1106. {
  1107. #region 参数验证
  1108. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1109. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1110. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1111. #region 页面操作权限验证
  1112. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1113. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1114. #endregion
  1115. #endregion
  1116. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1117. {
  1118. string sqlWhere = string.Empty;
  1119. if (_dto.IsSure == 0) //未完成
  1120. {
  1121. sqlWhere += string.Format(@" And IsSure = 0");
  1122. }
  1123. else if (_dto.IsSure == 1) //已完成
  1124. {
  1125. sqlWhere += string.Format(@" And IsSure = 1");
  1126. }
  1127. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1128. {
  1129. string tj = _dto.SearchCriteria;
  1130. 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}%')",
  1131. tj, tj, tj, tj, tj);
  1132. }
  1133. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1134. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1135. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1136. From (
  1137. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1138. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1139. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1140. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1141. From Grp_DelegationInfo gdi
  1142. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1143. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1144. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1145. Where gdi.IsDel = 0 {0}
  1146. ) temp ", sqlWhere);
  1147. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1148. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1149. var _view = new
  1150. {
  1151. PageFuncAuth = pageFunAuthView,
  1152. Data = _DelegationList
  1153. };
  1154. return Ok(JsonView(true, "查询成功!", _view, total));
  1155. }
  1156. else
  1157. {
  1158. return Ok(JsonView(false, "查询失败"));
  1159. }
  1160. }
  1161. /// <summary>
  1162. /// 获取团组费用审核
  1163. /// </summary>
  1164. /// <param name="paras">参数Json字符串</param>
  1165. /// <returns></returns>
  1166. [HttpPost]
  1167. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1168. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1169. {
  1170. try
  1171. {
  1172. #region 参数验证
  1173. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1174. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1175. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1176. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1177. #region 页面操作权限验证
  1178. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1179. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1180. #endregion
  1181. #endregion
  1182. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1183. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1184. #region 费用清单
  1185. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1186. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1187. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1188. List<Grp_CreditCardPayment> entityList = _groupRepository
  1189. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1190. .Where(exp.ToExpression())
  1191. .ToList();
  1192. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1193. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1194. /*
  1195. * 76://酒店预订
  1196. */
  1197. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1198. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1199. .ToListAsync();
  1200. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1201. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1202. .ToListAsync();
  1203. /*
  1204. * 79://车/导游地接
  1205. */
  1206. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1207. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1208. .ToListAsync();
  1209. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1210. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1211. .ToListAsync();
  1212. /*
  1213. * 80: //签证
  1214. */
  1215. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1216. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1217. .ToListAsync();
  1218. /*
  1219. *81: //邀请/公务活动
  1220. */
  1221. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1222. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1223. .ToListAsync();
  1224. /*
  1225. * 82: //团组客户保险
  1226. */
  1227. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1228. /*
  1229. * Lable = 85 机票预订
  1230. */
  1231. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1232. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1233. .ToListAsync();
  1234. /*
  1235. * 85 机票预定
  1236. */
  1237. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1238. /*
  1239. * 98 其他款项
  1240. */
  1241. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1242. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1243. .ToListAsync();
  1244. /*
  1245. * 285:收款退还
  1246. */
  1247. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1248. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1249. .ToListAsync();
  1250. /*
  1251. * 1015: //超支费用
  1252. */
  1253. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1254. /*
  1255. * 币种信息
  1256. */
  1257. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1258. /*
  1259. * 车/导游地接 费用类型
  1260. */
  1261. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1262. /*
  1263. * 车/导游地接 费用类型
  1264. */
  1265. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1266. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1267. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1268. /*
  1269. * 用户信息
  1270. */
  1271. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1272. /*
  1273. * 费用模块
  1274. */
  1275. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1276. string priceModule = string.Empty;
  1277. if (sdPriceName != null)
  1278. {
  1279. priceModule = sdPriceName.Name;
  1280. }
  1281. /*
  1282. * 成本信息
  1283. */
  1284. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1285. decimal _groupRate = 0.0000M;
  1286. string _groupCurrencyCode = "-";
  1287. if (groupCost != null)
  1288. {
  1289. _groupRate = groupCost.Rate;
  1290. if (int.TryParse(groupCost.Currency, out int _currency))
  1291. {
  1292. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1293. }
  1294. else _groupCurrencyCode = groupCost.Currency;
  1295. }
  1296. string costContentSql = $"Select * From Grp_GroupCost";
  1297. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1298. //处理日期为空的天数
  1299. for (int i = 0; i < groupCostDetails.Count; i++)
  1300. if (i != 0)
  1301. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1302. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1303. /*
  1304. * 处理详情数据
  1305. */
  1306. foreach (var entity in entityList)
  1307. {
  1308. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1309. _detail.Id = entity.Id;
  1310. _detail.PriceName = priceModule;
  1311. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1312. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1313. /*
  1314. * 应付款金额
  1315. */
  1316. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1317. string PaymentCurrency_WaitPay = "Unknown";
  1318. string hotelCurrncyCode = "Unknown";
  1319. string hotelCurrncyName = "Unknown";
  1320. if (sdPaymentCurrency_WaitPay != null)
  1321. {
  1322. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1323. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1324. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1325. if (hotelCurrncyCode.Equals("CNY"))
  1326. {
  1327. entity.DayRate = 1.0000M;
  1328. }
  1329. }
  1330. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1331. /*
  1332. * 此次付款金额
  1333. */
  1334. decimal CurrPayStr = 0;
  1335. if (entity.PayPercentage == 0)
  1336. {
  1337. if (entity.PayThenMoney != 0)
  1338. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1339. }
  1340. else
  1341. {
  1342. if (entity.PayMoney != 0)
  1343. {
  1344. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1345. }
  1346. }
  1347. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1348. /*
  1349. * 剩余尾款
  1350. */
  1351. decimal BalanceStr = 0;
  1352. if (CurrPayStr != 0)
  1353. {
  1354. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1355. BalanceStr = 0;
  1356. else
  1357. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1358. }
  1359. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1360. /*
  1361. * Bus名称
  1362. */
  1363. _detail.BusName = "待增加";
  1364. /*
  1365. *费用所属
  1366. */
  1367. switch (entity.CTable)
  1368. {
  1369. case 76://酒店预订
  1370. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1371. if (hotelReservations != null)
  1372. {
  1373. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1374. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1375. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1376. string roomFeeStr = "", roomFeestr1 = "";
  1377. //是否比较房型价格
  1378. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1379. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1380. if (hotelReservations.SingleRoomPrice > 0)
  1381. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1382. if (hotelReservations.DoubleRoomPrice > 0)
  1383. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1384. if (hotelReservations.SuiteRoomPrice > 0)
  1385. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1386. if (hotelReservations.OtherRoomPrice > 0)
  1387. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1388. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1389. else roomFeeStr += " 0.00 * 0";
  1390. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1391. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1392. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1393. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1394. /*
  1395. * 费用类型
  1396. * 1:房费
  1397. * 2:早餐
  1398. * 3:地税
  1399. * 4:城市税
  1400. * </summary>
  1401. */
  1402. //地税
  1403. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1404. if (governmentRentData != null)
  1405. {
  1406. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1407. governmentRentFee = governmentRentData.Price;
  1408. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1409. if (governmentRentCurrData != null)
  1410. {
  1411. governmentRentCode = governmentRentCurrData.Name;
  1412. governmentRentName = $"({governmentRentCurrData.Remark})";
  1413. }
  1414. }
  1415. //城市税
  1416. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1417. if (cityTaxData != null)
  1418. {
  1419. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1420. cityTaxFee = cityTaxData.Price;
  1421. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1422. if (cityTaxCurrData != null)
  1423. {
  1424. cityTaxCode = cityTaxCurrData.Name;
  1425. cityTaxName = $"({cityTaxCurrData.Remark})";
  1426. }
  1427. }
  1428. //酒店早餐
  1429. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1430. if (breakfastData != null)
  1431. {
  1432. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1433. breakfastFee = breakfastData.Price;
  1434. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1435. if (breakfastCurrData != null)
  1436. {
  1437. breakfastCode = breakfastCurrData.Name;
  1438. breakfastName = $"({breakfastCurrData.Remark})";
  1439. }
  1440. }
  1441. //房间费用
  1442. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1443. if (roomData != null)
  1444. {
  1445. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1446. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1447. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1448. roomFee = roomData.Price;
  1449. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1450. if (roomCurrData != null)
  1451. {
  1452. roomCode = roomCurrData.Name;
  1453. roomName = $"({roomCurrData.Remark})";
  1454. }
  1455. }
  1456. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1457. string hotelCostStr = "";
  1458. decimal hotelCsotTotal = 0.00M;
  1459. if (groupCost != null)
  1460. {
  1461. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1462. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1463. }
  1464. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1465. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1466. string hotelCost_day = "";
  1467. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1468. foreach (var item in hotelCostDetails1)
  1469. {
  1470. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1471. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1472. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1473. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1474. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1475. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1476. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1477. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1478. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1479. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1480. hotelCost_day += @$"</br>";
  1481. }
  1482. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1483. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1484. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1485. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1486. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1487. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1488. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1489. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1490. $"房间说明: {hotelReservations.Remark} <br/>" +
  1491. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1492. $"{hotelBreakfastStr}" +
  1493. $"{hotelGovernmentRentStr}" +
  1494. $"{hotelCityTaxStr}";
  1495. _detail.PriceNameContent = hotelReservations.HotelName;
  1496. }
  1497. break;
  1498. case 79://车/导游地接
  1499. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1500. if (touristGuideGroundReservations != null)
  1501. {
  1502. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1503. {
  1504. _detail.BusName = touristGuideGroundReservations.BusName;
  1505. }
  1506. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1507. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1508. //if (isInt)
  1509. //{
  1510. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1511. // if (cityInfo != null)
  1512. // {
  1513. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1514. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1515. // if (carFeeItem != null)
  1516. // {
  1517. // nameContent += $@"({carFeeItem.Name})";
  1518. // }
  1519. // _detail.PriceNameContent = nameContent;
  1520. // }
  1521. //}
  1522. //else
  1523. //{
  1524. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1525. //}
  1526. var touristGuideGroundReservationsContents =
  1527. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1528. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1529. foreach (var item in touristGuideGroundReservationsContents)
  1530. {
  1531. string typeName = "Unknown";
  1532. string carCurrencyCode = "Unknown";
  1533. string carCurrencyName = "Unknown";
  1534. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1535. if (carTypeData != null) typeName = carTypeData.Name;
  1536. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1537. if (currencyData != null)
  1538. {
  1539. carCurrencyCode = currencyData.Name;
  1540. carCurrencyName = currencyData.Remark;
  1541. }
  1542. string opCostStr = string.Empty;
  1543. decimal opCostTypePrice = 0.00M;
  1544. #region 处理成本各项费用
  1545. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1546. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1547. if (opCost.Count > 0)
  1548. {
  1549. switch (item.SId)
  1550. {
  1551. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1552. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1553. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1554. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1555. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1556. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1557. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1558. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1559. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1560. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1561. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1562. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1563. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1564. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1565. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1566. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1567. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1568. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1569. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1570. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1571. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1572. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1573. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1574. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1575. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1576. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1577. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1578. }
  1579. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1580. }
  1581. #endregion
  1582. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1583. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1584. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1585. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1586. }
  1587. _detail.PriceMsgContent = priceMsg;
  1588. }
  1589. break;
  1590. case 80: //签证
  1591. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1592. if (visaInfo != null)
  1593. {
  1594. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1595. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1596. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1597. }
  1598. break;
  1599. case 81: //邀请/公务活动
  1600. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1601. if (_ioa != null)
  1602. {
  1603. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1604. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1605. sendCurrName = "Unknown", //快递费用币种 Name
  1606. sendCurrCode = "Unknown", //快递费用币种 Code
  1607. eventsCurrName = "Unknown", //公务活动费币种 Name
  1608. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1609. translateCurrName = "Unknown", //公务翻译费 Name
  1610. translateCurrCode = "Unknown"; //公务翻译费 Code
  1611. #region 处理费用币种
  1612. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1613. if (inviteCurrData != null)
  1614. {
  1615. inviteCurrName = inviteCurrData.Remark;
  1616. inviteCurrCode = inviteCurrData.Name;
  1617. }
  1618. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1619. if (sendCurrData != null)
  1620. {
  1621. sendCurrName = sendCurrData.Remark;
  1622. sendCurrCode = sendCurrData.Name;
  1623. }
  1624. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1625. if (eventsCurrData != null)
  1626. {
  1627. eventsCurrName = eventsCurrData.Remark;
  1628. eventsCurrCode = eventsCurrData.Name;
  1629. }
  1630. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1631. if (translateCurrData != null)
  1632. {
  1633. translateCurrName = translateCurrData.Remark;
  1634. translateCurrCode = translateCurrData.Name;
  1635. }
  1636. #endregion
  1637. _detail.PriceNameContent = _ioa.InviterArea;
  1638. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1639. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1640. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1641. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1642. $@"备注:" + _ioa.Remark + "<br/>";
  1643. }
  1644. break;
  1645. case 82: //团组客户保险
  1646. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1647. if (customers != null)
  1648. {
  1649. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1650. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1651. }
  1652. break;
  1653. case 85: //机票预订
  1654. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1655. if (jpRes != null)
  1656. {
  1657. string FlightsDescription = jpRes.FlightsDescription;
  1658. string PriceDescription = jpRes.PriceDescription;
  1659. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1660. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1661. }
  1662. break;
  1663. case 98://其他款项
  1664. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1665. if (gdpRes != null)
  1666. {
  1667. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1668. _detail.PriceNameContent = gdpRes.PriceName;
  1669. }
  1670. break;
  1671. case 285://收款退还
  1672. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1673. if (refundAndOtherMoney != null)
  1674. {
  1675. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1676. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1677. }
  1678. break;
  1679. case 751://酒店早餐
  1680. break;
  1681. case 1015://超支费用
  1682. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1683. if (groupExtraCost != null)
  1684. {
  1685. _detail.PriceNameContent = groupExtraCost.PriceName;
  1686. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1687. }
  1688. break;
  1689. default:
  1690. break;
  1691. }
  1692. /*
  1693. * 申请人
  1694. */
  1695. string operatorName = " - ";
  1696. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1697. if (_opUser != null)
  1698. {
  1699. operatorName = _opUser.CnName;
  1700. }
  1701. _detail.OperatorName = operatorName;
  1702. /*
  1703. * 审核人
  1704. */
  1705. string auditOperatorName = "Unknown";
  1706. if (entity.AuditGMOperate == 0)
  1707. auditOperatorName = " - ";
  1708. else if (entity.AuditGMOperate == 4)
  1709. auditOperatorName = "自动审核";
  1710. else
  1711. {
  1712. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1713. if (_adUser != null)
  1714. {
  1715. auditOperatorName = _adUser.CnName;
  1716. }
  1717. }
  1718. _detail.AuditOperatorName = auditOperatorName;
  1719. /*
  1720. * 超预算比例
  1721. */
  1722. string overBudgetStr = "";
  1723. if (entity.ExceedBudget == -1)
  1724. overBudgetStr = sdPriceName.Name + "尚无预算";
  1725. else if (entity.ExceedBudget == 0)
  1726. {
  1727. if (entity.CTable == 76 || entity.CTable == 79)
  1728. {
  1729. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1730. else overBudgetStr = "超预算";
  1731. }
  1732. else
  1733. {
  1734. overBudgetStr = "未超预算";
  1735. }
  1736. }
  1737. else
  1738. overBudgetStr = entity.ExceedBudget.ToString("P");
  1739. _detail.OverBudget = overBudgetStr;
  1740. /*
  1741. * 费用总计
  1742. */
  1743. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1744. {
  1745. CurrencyId = entity.PaymentCurrency,
  1746. CurrencyName = PaymentCurrency_WaitPay,
  1747. AmountPayable = entity.PayMoney,
  1748. ThisPayment = CurrPayStr,
  1749. BalancePayment = BalanceStr,
  1750. AuditedFunds = CurrPayStr
  1751. });
  1752. _detail.IsAuditGM = entity.IsAuditGM;
  1753. detailList.Add(_detail);
  1754. }
  1755. #endregion
  1756. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1757. /*
  1758. * 下方描述处理
  1759. */
  1760. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1761. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1762. if (ccpCurrencyPrice != null)
  1763. {
  1764. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1765. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1766. }
  1767. else
  1768. {
  1769. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1770. }
  1771. string amountPayableStr = string.Format(@"应付款总金额: ");
  1772. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1773. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1774. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1775. foreach (var item in nonDuplicat)
  1776. {
  1777. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1778. if (strs.Count > 0)
  1779. {
  1780. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1781. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1782. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1783. //单独处理此次付款金额
  1784. if (item.CurrencyId == 836) //人民币
  1785. {
  1786. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1787. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1788. }
  1789. else
  1790. {
  1791. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1792. }
  1793. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1794. //单独处理已审核费用
  1795. if (item.CurrencyId == 836) //人民币
  1796. {
  1797. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1798. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1799. }
  1800. else
  1801. {
  1802. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1803. }
  1804. }
  1805. }
  1806. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1807. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1808. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1809. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1810. var _view1 = new
  1811. {
  1812. PageFuncAuth = pageFunAuthView,
  1813. Data = _view
  1814. };
  1815. return Ok(JsonView(_view1));
  1816. }
  1817. catch (Exception ex)
  1818. {
  1819. return Ok(JsonView(false, ex.Message));
  1820. }
  1821. }
  1822. /// <summary>
  1823. /// 费用审核
  1824. /// 修改团组费用审核状态
  1825. /// </summary>
  1826. /// <param name="_dto">参数Json字符串</param>
  1827. /// <returns></returns>
  1828. [HttpPost]
  1829. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1830. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1831. {
  1832. #region 参数验证
  1833. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1834. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1835. #endregion
  1836. #region 页面操作权限验证
  1837. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1838. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1839. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1840. #endregion
  1841. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1842. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1843. DateTime dtNow = DateTime.Now;
  1844. _groupRepository.BeginTran();
  1845. int rst = 0;
  1846. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1847. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1848. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1849. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1850. List<dynamic> msgDatas = new List<dynamic>();
  1851. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1852. foreach (var item in idList)
  1853. {
  1854. int CreditId = int.Parse(item);
  1855. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1856. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1857. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1858. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1859. .Where(s => s.Id == CreditId)
  1860. .ExecuteCommandAsync();
  1861. if (result < 1)
  1862. {
  1863. rst = -1;
  1864. _groupRepository.RollbackTran();
  1865. return Ok(JsonView(false, "操作失败并回滚!"));
  1866. }
  1867. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1868. if (creditData != null)
  1869. {
  1870. #region 应用通知配置
  1871. try
  1872. {
  1873. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1874. }
  1875. catch (Exception ex)
  1876. {
  1877. }
  1878. #endregion
  1879. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1880. string groupNameStr = string.Empty;
  1881. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1882. if (groupData != null) groupNameStr = groupData.TeamName;
  1883. string creditTypeStr = string.Empty;
  1884. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1885. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1886. string creditCurrency = string.Empty;
  1887. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1888. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1889. if (creditCurrency.Equals("CNY"))
  1890. {
  1891. creditData.DayRate = 1.0000M;
  1892. }
  1893. if (creditData.PayPercentage == 0.00M)
  1894. {
  1895. creditData.PayPercentage = 100M;
  1896. }
  1897. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1898. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1899. string msgContent = "";
  1900. if (creditCurrency.Equals("CNY"))
  1901. {
  1902. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1903. }
  1904. else
  1905. {
  1906. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1907. }
  1908. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1909. }
  1910. }
  1911. if (rst == 0)
  1912. {
  1913. _groupRepository.CommitTran();
  1914. foreach (var item in msgDatas)
  1915. {
  1916. //发送消息
  1917. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1918. }
  1919. #region 应用推送
  1920. try
  1921. {
  1922. foreach (var ccpId in dic_ccp_user.Keys)
  1923. {
  1924. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1925. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1926. }
  1927. }
  1928. catch (Exception)
  1929. {
  1930. }
  1931. #endregion
  1932. return Ok(JsonView(true, "操作成功!"));
  1933. }
  1934. return Ok(JsonView(false, "操作失败!"));
  1935. }
  1936. #endregion
  1937. #region 机票费用录入
  1938. /// <summary>
  1939. /// 机票录入当前登录人可操作团组
  1940. /// </summary>
  1941. /// <param name="dto"></param>
  1942. /// <returns></returns>
  1943. [HttpPost]
  1944. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1945. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1946. {
  1947. try
  1948. {
  1949. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1950. if (groupData.Code != 0)
  1951. {
  1952. return Ok(JsonView(false, groupData.Msg));
  1953. }
  1954. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1955. }
  1956. catch (Exception ex)
  1957. {
  1958. return Ok(JsonView(false, "程序错误!"));
  1959. throw;
  1960. }
  1961. }
  1962. /// <summary>
  1963. /// 机票费用录入列表
  1964. /// </summary>
  1965. /// <param name="dto"></param>
  1966. /// <returns></returns>
  1967. [HttpPost]
  1968. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1969. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1970. {
  1971. try
  1972. {
  1973. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1974. if (groupData.Code != 0)
  1975. {
  1976. return Ok(JsonView(false, groupData.Msg));
  1977. }
  1978. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1979. }
  1980. catch (Exception ex)
  1981. {
  1982. return Ok(JsonView(false, ex.Message));
  1983. throw;
  1984. }
  1985. }
  1986. /// <summary>
  1987. /// 根据id查询费用录入信息
  1988. /// </summary>
  1989. /// <param name="dto"></param>
  1990. /// <returns></returns>
  1991. [HttpPost]
  1992. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1993. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1994. {
  1995. try
  1996. {
  1997. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1998. if (groupData.Code != 0)
  1999. {
  2000. return Ok(JsonView(false, groupData.Msg));
  2001. }
  2002. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2003. }
  2004. catch (Exception ex)
  2005. {
  2006. return Ok(JsonView(false, "程序错误!"));
  2007. throw;
  2008. }
  2009. }
  2010. /// <summary>
  2011. /// 机票费用录入操作(Status:1.新增,2.修改)
  2012. /// </summary>
  2013. /// <param name="dto"></param>
  2014. /// <returns></returns>
  2015. [HttpPost]
  2016. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2017. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  2018. {
  2019. try
  2020. {
  2021. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  2022. if (groupData.Code != 0)
  2023. {
  2024. return Ok(JsonView(false, groupData.Msg));
  2025. }
  2026. #region 应用推送
  2027. try
  2028. {
  2029. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2030. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2031. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2032. }
  2033. catch (Exception ex)
  2034. {
  2035. }
  2036. #endregion
  2037. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2038. }
  2039. catch (Exception ex)
  2040. {
  2041. return Ok(JsonView(false, "程序错误!"));
  2042. throw;
  2043. }
  2044. }
  2045. /// <summary>
  2046. /// 根据舱位类型查询接团客户名单信息
  2047. /// </summary>
  2048. /// <param name="dto"></param>
  2049. /// <returns></returns>
  2050. [HttpPost]
  2051. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2052. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2053. {
  2054. try
  2055. {
  2056. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2057. if (crm_Groups.Count != 0)
  2058. {
  2059. List<dynamic> Customer = new List<dynamic>();
  2060. foreach (var item in crm_Groups)
  2061. {
  2062. var data = new
  2063. {
  2064. Id = item.Id,
  2065. Pinyin = item.Pinyin,
  2066. Name = item.LastName + item.FirstName
  2067. };
  2068. Customer.Add(data);
  2069. }
  2070. return Ok(JsonView(true, "查询成功!", Customer));
  2071. }
  2072. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2073. }
  2074. catch (Exception ex)
  2075. {
  2076. return Ok(JsonView(false, "程序错误!"));
  2077. throw;
  2078. }
  2079. }
  2080. /// <summary>
  2081. /// 根据团号获取客户信息
  2082. /// </summary>
  2083. /// <param name="dto"></param>
  2084. /// <returns></returns>
  2085. [HttpPost]
  2086. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2087. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2088. {
  2089. var jw = JsonView(false);
  2090. if (dto.DIID < 1)
  2091. {
  2092. jw.Msg += "请输入正确的diid";
  2093. return Ok(jw);
  2094. }
  2095. var arr = getSimplClientList(dto.DIID);
  2096. jw = JsonView(true, "获取成功!", arr);
  2097. return Ok(jw);
  2098. }
  2099. private List<SimplClientInfo> getSimplClientList(int diId)
  2100. {
  2101. 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);
  2102. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2103. return arr;
  2104. }
  2105. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2106. {
  2107. string result = origin;
  2108. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2109. {
  2110. string[] temparr = origin.Split(',');
  2111. string fistrStr = temparr[0];
  2112. int count = temparr.Count();
  2113. int tempId;
  2114. bool success = int.TryParse(fistrStr, out tempId);
  2115. if (success)
  2116. {
  2117. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2118. if (tempInfo != null)
  2119. {
  2120. if (count > 1)
  2121. {
  2122. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2123. }
  2124. else
  2125. {
  2126. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2127. }
  2128. }
  2129. }
  2130. }
  2131. return result;
  2132. }
  2133. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2134. {
  2135. string result = origin;
  2136. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2137. {
  2138. string[] temparr = origin.Split(',');
  2139. result = "";
  2140. foreach (var item in temparr)
  2141. {
  2142. int tempId;
  2143. bool success = int.TryParse(item, out tempId);
  2144. if (success)
  2145. {
  2146. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2147. if (tempInfo != null)
  2148. {
  2149. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2150. }
  2151. }
  2152. }
  2153. }
  2154. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2155. return result;
  2156. }
  2157. /// <summary>
  2158. /// 机票费用录入,删除
  2159. /// </summary>
  2160. /// <param name="dto"></param>
  2161. /// <returns></returns>
  2162. [HttpPost]
  2163. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2164. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2165. {
  2166. try
  2167. {
  2168. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2169. if (res)
  2170. {
  2171. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2172. {
  2173. IsDel = 1,
  2174. DeleteUserId = dto.DeleteUserId,
  2175. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2176. }).ExecuteCommandAsync();
  2177. return Ok(JsonView(true, "删除成功!"));
  2178. }
  2179. return Ok(JsonView(false, "删除失败!"));
  2180. }
  2181. catch (Exception ex)
  2182. {
  2183. return Ok(JsonView(false, "程序错误!"));
  2184. throw;
  2185. }
  2186. }
  2187. /// <summary>
  2188. /// 导出机票录入报表
  2189. /// </summary>
  2190. /// <param name="dto"></param>
  2191. /// <returns></returns>
  2192. [HttpPost]
  2193. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2194. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2195. {
  2196. try
  2197. {
  2198. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2199. if (groupData.Code != 0)
  2200. {
  2201. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2202. }
  2203. else
  2204. {
  2205. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2206. if (AirTicketReservations.Count != 0)
  2207. {
  2208. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2209. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2210. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2211. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2212. WorkbookDesigner designer = new WorkbookDesigner();
  2213. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2214. decimal countCost = 0;
  2215. foreach (var item in AirTicketReservations)
  2216. {
  2217. #region 处理客人姓名
  2218. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2219. item.ClientName = clientNames;
  2220. #endregion
  2221. if (item.BankType == "其他")
  2222. {
  2223. item.BankNo = "--";
  2224. }
  2225. else
  2226. {
  2227. if (!string.IsNullOrEmpty(item.BankType))
  2228. {
  2229. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2230. }
  2231. }
  2232. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2233. item.Price = System.Decimal.Round(item.Price, 2);
  2234. countCost += Convert.ToDecimal(item.Price);
  2235. }
  2236. designer.SetDataSource("Export", AirTicketReservations);
  2237. designer.SetDataSource("ExportDiCode", diCode);
  2238. designer.SetDataSource("ExportDiName", diName);
  2239. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2240. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2241. designer.Process();
  2242. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2243. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2244. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2245. return Ok(JsonView(true, "成功", url = rst));
  2246. }
  2247. else
  2248. {
  2249. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2250. }
  2251. }
  2252. }
  2253. catch (Exception ex)
  2254. {
  2255. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2256. throw;
  2257. }
  2258. }
  2259. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2260. /// <summary>
  2261. /// 行程单导出
  2262. /// </summary>
  2263. /// <param name="dto"></param>
  2264. /// <returns></returns>
  2265. [HttpPost]
  2266. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2267. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2268. {
  2269. try
  2270. {
  2271. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2272. if (groupData.Code != 0)
  2273. {
  2274. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2275. }
  2276. else
  2277. {
  2278. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2279. if (dto.Language == "CN")
  2280. {
  2281. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2282. DocumentBuilder builder = new DocumentBuilder(doc);
  2283. int tableIndex = 0;//表格索引
  2284. //得到文档中的第一个表格
  2285. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2286. foreach (var item in _AirTicketReservations)
  2287. {
  2288. #region 处理固定数据
  2289. string[] FlightsCode = item.FlightsCode.Split('/');
  2290. if (FlightsCode.Length != 0)
  2291. {
  2292. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2293. if (_AirCompany != null)
  2294. {
  2295. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2296. }
  2297. else
  2298. {
  2299. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2300. }
  2301. }
  2302. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2303. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2304. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2305. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2306. string name = "";
  2307. foreach (string clientName in nameArray)
  2308. {
  2309. if (!name.Contains(clientName))
  2310. {
  2311. name += clientName + ",";
  2312. }
  2313. }
  2314. if (!string.IsNullOrWhiteSpace(name))
  2315. {
  2316. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2317. }
  2318. else
  2319. {
  2320. table.Range.Bookmarks["ClientName"].Text = "--";
  2321. }
  2322. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2323. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2324. table.Range.Bookmarks["JointTicket"].Text = "--";
  2325. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2326. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2327. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2328. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2329. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2330. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2331. #endregion
  2332. #region 循环数据处理
  2333. List<AirInfo> airs = new List<AirInfo>();
  2334. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2335. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2336. for (int i = 0; i < FlightsCode.Length; i++)
  2337. {
  2338. AirInfo air = new AirInfo();
  2339. string[] tempstr = DayArray[i]
  2340. .Replace("\r\n", string.Empty)
  2341. .Replace("\\r\\n", string.Empty)
  2342. .TrimStart().TrimEnd()
  2343. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2344. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2345. string starCity = "";
  2346. if (star_Three != null)
  2347. {
  2348. starCity = star_Three.AirPort;
  2349. }
  2350. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2351. string EndCity = "";
  2352. if (End_Three != null)
  2353. {
  2354. EndCity = End_Three.AirPort;
  2355. }
  2356. air.Destination = starCity + "/" + EndCity;
  2357. air.Flight = FlightsCode[i];
  2358. air.SeatingClass = item.CTypeName;
  2359. string dateTime = tempstr[2];
  2360. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2361. air.FlightDate = DateTemp;
  2362. air.DepartureTime = tempstr[5];
  2363. air.LandingTime = tempstr[6];
  2364. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2365. air.TicketStatus = "--";
  2366. air.Luggage = "--";
  2367. air.DepartureTerminal = "--";
  2368. air.LandingTerminal = "--";
  2369. airs.Add(air);
  2370. }
  2371. int row = 13;
  2372. for (int i = 0; i < airs.Count; i++)
  2373. {
  2374. if (airs.Count > 2)
  2375. {
  2376. for (int j = 0; j < airs.Count - 2; j++)
  2377. {
  2378. var CopyRow = table.Rows[12].Clone(true);
  2379. table.Rows.Add(CopyRow);
  2380. }
  2381. }
  2382. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2383. int index = 0;
  2384. foreach (PropertyInfo property in properties)
  2385. {
  2386. string value = property.GetValue(airs[i]).ToString();
  2387. Cell ishcel0 = table.Rows[row].Cells[index];
  2388. Paragraph p = new Paragraph(doc);
  2389. string s = value;
  2390. p.AppendChild(new Run(doc, s));
  2391. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2392. ishcel0.AppendChild(p);
  2393. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2394. index++;
  2395. }
  2396. row++;
  2397. }
  2398. #endregion
  2399. Paragraph lastParagraph = new Paragraph(doc);
  2400. //第一个表格末尾加段落
  2401. table.ParentNode.InsertAfter(lastParagraph, table);
  2402. //复制第一个表格
  2403. Table cloneTable = (Table)table.Clone(true);
  2404. //在文档末尾段落后面加入复制的表格
  2405. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2406. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2407. {
  2408. int rownewsIndex = 13;
  2409. for (int i = 0; i < 2; i++)
  2410. {
  2411. var CopyRow = table.Rows[12].Clone(true);
  2412. table.Rows.RemoveAt(13);
  2413. table.Rows.Add(CopyRow);
  2414. rownewsIndex++;
  2415. }
  2416. }
  2417. else
  2418. {
  2419. table.Rows.RemoveAt(12);
  2420. }
  2421. cloneTable.Rows.RemoveAt(12);
  2422. }
  2423. if (_AirTicketReservations.Count != 0)
  2424. {
  2425. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2426. if (FlightsCode.Length != 0)
  2427. {
  2428. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2429. if (_AirCompany != null)
  2430. {
  2431. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2432. }
  2433. else
  2434. {
  2435. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2436. }
  2437. }
  2438. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2439. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2440. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2441. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2442. string name = "";
  2443. foreach (string clientName in nameArray)
  2444. {
  2445. if (!name.Contains(clientName))
  2446. {
  2447. name += clientName + ",";
  2448. }
  2449. }
  2450. if (!string.IsNullOrWhiteSpace(name))
  2451. {
  2452. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2453. }
  2454. else
  2455. {
  2456. table.Range.Bookmarks["ClientName"].Text = "--";
  2457. }
  2458. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2459. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2460. table.Range.Bookmarks["JointTicket"].Text = "--";
  2461. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2462. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2463. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2464. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2465. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2466. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2467. }
  2468. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2469. //保存合并后的文档
  2470. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2471. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2472. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2473. return Ok(JsonView(true, "成功!", rst));
  2474. }
  2475. else
  2476. {
  2477. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2478. DocumentBuilder builder = new DocumentBuilder(doc);
  2479. int tableIndex = 0;//表格索引
  2480. //得到文档中的第一个表格
  2481. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2482. List<string> texts = new List<string>();
  2483. foreach (var item in _AirTicketReservations)
  2484. {
  2485. string[] FlightsCode = item.FlightsCode.Split('/');
  2486. if (FlightsCode.Length != 0)
  2487. {
  2488. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2489. if (_AirCompany != null)
  2490. {
  2491. if (!transDic.ContainsKey(_AirCompany.CnName))
  2492. {
  2493. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2494. }
  2495. }
  2496. else
  2497. {
  2498. if (!transDic.ContainsKey("--"))
  2499. {
  2500. transDic.Add("--", "--");
  2501. }
  2502. }
  2503. }
  2504. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2505. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2506. string name = "";
  2507. foreach (string clientName in nameArray)
  2508. {
  2509. name += clientName + ",";
  2510. }
  2511. if (!texts.Contains(name))
  2512. {
  2513. texts.Add(name);
  2514. }
  2515. List<AirInfo> airs = new List<AirInfo>();
  2516. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2517. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2518. for (int i = 0; i < FlightsCode.Length; i++)
  2519. {
  2520. AirInfo air = new AirInfo();
  2521. string[] tempstr = DayArray[i]
  2522. .Replace("\r\n", string.Empty)
  2523. .Replace("\\r\\n", string.Empty)
  2524. .TrimStart().TrimEnd()
  2525. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2526. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2527. if (star_Three != null)
  2528. {
  2529. if (!transDic.ContainsKey(star_Three.AirPort))
  2530. {
  2531. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2532. }
  2533. }
  2534. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2535. if (End_Three != null)
  2536. {
  2537. if (!transDic.ContainsKey(End_Three.AirPort))
  2538. {
  2539. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2540. }
  2541. }
  2542. if (!texts.Contains(item.CTypeName))
  2543. {
  2544. texts.Add(item.CTypeName);
  2545. }
  2546. }
  2547. }
  2548. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2549. if (transData.Count > 0)
  2550. {
  2551. foreach (TranslateResult item in transData)
  2552. {
  2553. if (!transDic.ContainsKey(item.Query))
  2554. {
  2555. transDic.Add(item.Query, item.Translation);
  2556. }
  2557. }
  2558. }
  2559. foreach (var item in _AirTicketReservations)
  2560. {
  2561. #region 处理固定数据
  2562. string[] FlightsCode = item.FlightsCode.Split('/');
  2563. if (FlightsCode.Length != 0)
  2564. {
  2565. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2566. if (_AirCompany != null)
  2567. {
  2568. string str = "--";
  2569. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2570. if (!string.IsNullOrEmpty(translateResult))
  2571. {
  2572. str = translateResult;
  2573. str = _airTicketResRep.Processing(str);
  2574. }
  2575. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2576. }
  2577. else
  2578. {
  2579. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2580. }
  2581. }
  2582. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2583. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2584. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2585. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2586. string names = "";
  2587. foreach (string clientName in nameArray)
  2588. {
  2589. names += clientName + ",";
  2590. }
  2591. if (!string.IsNullOrWhiteSpace(names))
  2592. {
  2593. string str = "--";
  2594. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2595. if (!string.IsNullOrEmpty(translateResult))
  2596. {
  2597. str = translateResult;
  2598. str = _airTicketResRep.Processing(str);
  2599. }
  2600. table.Range.Bookmarks["ClientName"].Text = str;
  2601. }
  2602. else
  2603. {
  2604. table.Range.Bookmarks["ClientName"].Text = "--";
  2605. }
  2606. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2607. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2608. table.Range.Bookmarks["JointTicket"].Text = "--";
  2609. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2610. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2611. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2612. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2613. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2614. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2615. #endregion
  2616. #region 循环数据处理
  2617. List<AirInfo> airs = new List<AirInfo>();
  2618. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2619. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2620. for (int i = 0; i < FlightsCode.Length; i++)
  2621. {
  2622. AirInfo air = new AirInfo();
  2623. string[] tempstr = DayArray[i]
  2624. .Replace("\r\n", string.Empty)
  2625. .Replace("\\r\\n", string.Empty)
  2626. .TrimStart().TrimEnd()
  2627. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2628. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2629. string starCity = "";
  2630. if (star_Three != null)
  2631. {
  2632. string str2 = "--";
  2633. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2634. if (!string.IsNullOrEmpty(translateResult2))
  2635. {
  2636. str2 = translateResult2;
  2637. str2 = _airTicketResRep.Processing(str2);
  2638. }
  2639. starCity = str2;
  2640. }
  2641. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2642. string EndCity = "";
  2643. if (End_Three != null)
  2644. {
  2645. string str1 = "--";
  2646. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2647. if (!string.IsNullOrEmpty(translateResult1))
  2648. {
  2649. str1 = translateResult1;
  2650. str1 = _airTicketResRep.Processing(str1);
  2651. }
  2652. EndCity = str1;
  2653. }
  2654. air.Destination = starCity + "/" + EndCity;
  2655. air.Flight = FlightsCode[i];
  2656. string str = "--";
  2657. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2658. if (!string.IsNullOrEmpty(translateResult))
  2659. {
  2660. str = translateResult;
  2661. str = _airTicketResRep.Processing(str);
  2662. }
  2663. air.SeatingClass = str;
  2664. string dateTime = tempstr[2];
  2665. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2666. air.FlightDate = DateTemp;
  2667. air.DepartureTime = tempstr[5];
  2668. air.LandingTime = tempstr[6];
  2669. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2670. air.TicketStatus = "--";
  2671. air.Luggage = "--";
  2672. air.DepartureTerminal = "--";
  2673. air.LandingTerminal = "--";
  2674. airs.Add(air);
  2675. }
  2676. int row = 13;
  2677. for (int i = 0; i < airs.Count; i++)
  2678. {
  2679. if (airs.Count > 2)
  2680. {
  2681. for (int j = 0; j < airs.Count - 2; j++)
  2682. {
  2683. var CopyRow = table.Rows[12].Clone(true);
  2684. table.Rows.Add(CopyRow);
  2685. }
  2686. }
  2687. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2688. int index = 0;
  2689. foreach (PropertyInfo property in properties)
  2690. {
  2691. string value = property.GetValue(airs[i]).ToString();
  2692. Cell ishcel0 = table.Rows[row].Cells[index];
  2693. Paragraph p = new Paragraph(doc);
  2694. string s = value;
  2695. p.AppendChild(new Run(doc, s));
  2696. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2697. ishcel0.AppendChild(p);
  2698. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2699. //ishcel0.CellFormat.VerticalAlignment=
  2700. index++;
  2701. }
  2702. row++;
  2703. }
  2704. #endregion
  2705. Paragraph lastParagraph = new Paragraph(doc);
  2706. //第一个表格末尾加段落
  2707. table.ParentNode.InsertAfter(lastParagraph, table);
  2708. //复制第一个表格
  2709. Table cloneTable = (Table)table.Clone(true);
  2710. //在文档末尾段落后面加入复制的表格
  2711. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2712. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2713. {
  2714. int rownewsIndex = 13;
  2715. for (int i = 0; i < 2; i++)
  2716. {
  2717. var CopyRow = table.Rows[12].Clone(true);
  2718. table.Rows.RemoveAt(13);
  2719. table.Rows.Add(CopyRow);
  2720. rownewsIndex++;
  2721. }
  2722. }
  2723. else
  2724. {
  2725. table.Rows.RemoveAt(12);
  2726. }
  2727. cloneTable.Rows.RemoveAt(12);
  2728. }
  2729. if (_AirTicketReservations.Count != 0)
  2730. {
  2731. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2732. if (FlightsCode.Length != 0)
  2733. {
  2734. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2735. if (_AirCompany != null)
  2736. {
  2737. string str = "--";
  2738. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2739. if (!string.IsNullOrEmpty(translateResult))
  2740. {
  2741. str = translateResult;
  2742. str = _airTicketResRep.Processing(str);
  2743. }
  2744. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2745. }
  2746. else
  2747. {
  2748. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2749. }
  2750. }
  2751. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2752. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2753. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2754. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2755. string names = "";
  2756. foreach (string clientName in nameArray)
  2757. {
  2758. names += clientName + ",";
  2759. }
  2760. if (!string.IsNullOrWhiteSpace(names))
  2761. {
  2762. string str = "--";
  2763. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2764. if (!string.IsNullOrEmpty(translateResult))
  2765. {
  2766. str = translateResult;
  2767. str = _airTicketResRep.Processing(str);
  2768. }
  2769. table.Range.Bookmarks["ClientName"].Text = str;
  2770. }
  2771. else
  2772. {
  2773. table.Range.Bookmarks["ClientName"].Text = "--";
  2774. }
  2775. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2776. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2777. table.Range.Bookmarks["JointTicket"].Text = "--";
  2778. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2779. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2780. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2781. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2782. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2783. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2784. }
  2785. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2786. //保存合并后的文档
  2787. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2788. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2789. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2790. return Ok(JsonView(true, "成功!", rst));
  2791. }
  2792. }
  2793. }
  2794. catch (Exception ex)
  2795. {
  2796. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2797. throw;
  2798. }
  2799. }
  2800. #endregion
  2801. #region 团组增减款项 --> 其他款项
  2802. /// <summary>
  2803. /// 团组增减款项下拉框绑定
  2804. /// </summary>
  2805. /// <param name="dto"></param>
  2806. /// <returns></returns>
  2807. [HttpPost]
  2808. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2809. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2810. {
  2811. #region 参数验证
  2812. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2813. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2814. #endregion
  2815. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2816. }
  2817. /// <summary>
  2818. /// 根据团组Id查询团组增减款项
  2819. /// </summary>
  2820. /// <param name="dto"></param>
  2821. /// <returns></returns>
  2822. [HttpPost]
  2823. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2824. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2825. {
  2826. #region 参数验证
  2827. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2828. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2829. #endregion
  2830. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2831. }
  2832. /// <summary>
  2833. /// 团组增减款项操作(Status:1.新增,2.修改)
  2834. /// </summary>
  2835. /// <param name="dto"></param>
  2836. /// <returns></returns>
  2837. [HttpPost]
  2838. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2839. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2840. {
  2841. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2842. if (groupData.Code != 200)
  2843. {
  2844. return Ok(JsonView(false, groupData.Msg));
  2845. }
  2846. #region 应用推送
  2847. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2848. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2849. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2850. #endregion
  2851. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2852. }
  2853. /// <summary>
  2854. /// 团组增减款项操作 删除
  2855. /// </summary>
  2856. /// <param name="dto"></param>
  2857. /// <returns></returns>
  2858. [HttpPost]
  2859. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2860. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2861. {
  2862. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2863. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2864. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2865. if (res.Code == 0)
  2866. {
  2867. return Ok(JsonView(true, "删除成功!"));
  2868. }
  2869. return Ok(JsonView(false, "删除失败!"));
  2870. }
  2871. /// <summary>
  2872. /// 根据团组增减款项Id查询
  2873. /// </summary>
  2874. /// <param name="dto"></param>
  2875. /// <returns></returns>
  2876. [HttpPost]
  2877. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2878. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2879. {
  2880. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2881. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2882. }
  2883. /// <summary>
  2884. /// 查询供应商名称
  2885. /// </summary>
  2886. /// <param name="dto"></param>
  2887. /// <returns></returns>
  2888. [HttpPost]
  2889. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2890. {
  2891. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2892. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2893. ?? new List<Grp_DecreasePayments>();
  2894. dbResult = dbResult.Distinct(new
  2895. ProductComparer()).ToList();
  2896. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2897. {
  2898. x.Id,
  2899. x.SupplierAddress,
  2900. x.SupplierArea,
  2901. x.SupplierContact,
  2902. x.SupplierContactNumber,
  2903. x.SupplierEmail,
  2904. x.SupplierName,
  2905. x.SupplierSocialAccount,
  2906. x.SupplierTypeId,
  2907. }).ToList());
  2908. return Ok(jw);
  2909. }
  2910. #endregion
  2911. #region 文件上传、删除
  2912. /// <summary>
  2913. /// region 文件上传 可以带参数
  2914. /// </summary>
  2915. /// <param name="file"></param>
  2916. /// <returns></returns>
  2917. [HttpPost]
  2918. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2919. public async Task<IActionResult> UploadProject(IFormFile file)
  2920. {
  2921. try
  2922. {
  2923. var TypeName = Request.Headers["TypeName"].ToString();
  2924. if (file != null)
  2925. {
  2926. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2927. //文件名称
  2928. string projectFileName = file.FileName;
  2929. //上传的文件的路径
  2930. string filePath = "";
  2931. if (TypeName == "A")//A代表团组增减款项
  2932. {
  2933. if (!Directory.Exists(fileDir))
  2934. {
  2935. Directory.CreateDirectory(fileDir);
  2936. }
  2937. //上传的文件的路径
  2938. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2939. }
  2940. else if (TypeName == "B")//B代表商邀相关文件
  2941. {
  2942. if (!Directory.Exists(fileDir))
  2943. {
  2944. Directory.CreateDirectory(fileDir);
  2945. }
  2946. //上传的文件的路径
  2947. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2948. }
  2949. using (FileStream fs = System.IO.File.Create(filePath))
  2950. {
  2951. file.CopyTo(fs);
  2952. fs.Flush();
  2953. }
  2954. return Ok(JsonView(true, "上传成功!", projectFileName));
  2955. }
  2956. else
  2957. {
  2958. return Ok(JsonView(false, "上传失败!"));
  2959. }
  2960. }
  2961. catch (Exception ex)
  2962. {
  2963. return Ok(JsonView(false, "程序错误!"));
  2964. throw;
  2965. }
  2966. }
  2967. /// <summary>
  2968. /// 删除指定文件
  2969. /// </summary>
  2970. /// <param name="dto"></param>
  2971. /// <returns></returns>
  2972. [HttpPost]
  2973. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2974. public async Task<IActionResult> DelFile(DelFileDto dto)
  2975. {
  2976. try
  2977. {
  2978. var TypeName = Request.Headers["TypeName"].ToString();
  2979. string filePath = "";
  2980. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2981. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2982. int id = 0;
  2983. if (TypeName == "A")
  2984. {
  2985. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2986. // 删除该文件
  2987. System.IO.File.Delete(filePath);
  2988. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2989. }
  2990. else if (TypeName == "B")
  2991. {
  2992. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2993. // 删除该文件
  2994. System.IO.File.Delete(filePath);
  2995. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2996. }
  2997. if (id != 0)
  2998. {
  2999. return Ok(JsonView(true, "成功!"));
  3000. }
  3001. else
  3002. {
  3003. return Ok(JsonView(false, "失败!"));
  3004. }
  3005. }
  3006. catch (Exception ex)
  3007. {
  3008. return Ok(JsonView(false, "程序错误!"));
  3009. throw;
  3010. }
  3011. }
  3012. #endregion
  3013. #region 商邀费用录入
  3014. /// <summary>
  3015. /// 根据团组Id查询商邀费用列表
  3016. /// </summary>
  3017. /// <param name="dto"></param>
  3018. /// <returns></returns>
  3019. [HttpPost]
  3020. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3021. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  3022. {
  3023. try
  3024. {
  3025. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3026. if (groupData.Code != 0)
  3027. {
  3028. return Ok(JsonView(false, groupData.Msg));
  3029. }
  3030. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3031. }
  3032. catch (Exception ex)
  3033. {
  3034. return Ok(JsonView(false, "程序错误!"));
  3035. throw;
  3036. }
  3037. }
  3038. //
  3039. /// <summary>
  3040. /// 商邀费用 Info Page 基础数据源
  3041. /// </summary>
  3042. /// <param name="dto"></param>
  3043. /// <returns></returns>
  3044. [HttpPost]
  3045. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3046. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3047. {
  3048. try
  3049. {
  3050. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3051. if (groupData.Code != 0)
  3052. {
  3053. return Ok(JsonView(false, groupData.Msg));
  3054. }
  3055. return Ok(JsonView(true, "操作成功", groupData.Data));
  3056. }
  3057. catch (Exception ex)
  3058. {
  3059. return Ok(JsonView(false, ex.Message));
  3060. throw;
  3061. }
  3062. }
  3063. /// <summary>
  3064. /// 根据商邀费用ID查询C表和商邀费用数据
  3065. /// </summary>
  3066. /// <param name="dto"></param>
  3067. /// <returns></returns>
  3068. [HttpPost]
  3069. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3070. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3071. {
  3072. try
  3073. {
  3074. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3075. if (groupData.Code != 0)
  3076. {
  3077. return Ok(JsonView(false, groupData.Msg));
  3078. }
  3079. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3080. }
  3081. catch (Exception ex)
  3082. {
  3083. return Ok(JsonView(false, ex.Message));
  3084. throw;
  3085. }
  3086. }
  3087. /// <summary>
  3088. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3089. /// </summary>
  3090. /// <param name="dto"></param>
  3091. /// <returns></returns>
  3092. [HttpPost]
  3093. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3094. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3095. {
  3096. try
  3097. {
  3098. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3099. if (groupData.Code != 0)
  3100. {
  3101. return Ok(JsonView(false, groupData.Msg));
  3102. }
  3103. #region 应用推送
  3104. try
  3105. {
  3106. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3107. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3108. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3109. }
  3110. catch (Exception ex)
  3111. {
  3112. }
  3113. #endregion
  3114. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3115. }
  3116. catch (Exception ex)
  3117. {
  3118. return Ok(JsonView(false, "程序错误!"));
  3119. throw;
  3120. }
  3121. }
  3122. /// <summary>
  3123. /// 商邀删除
  3124. /// </summary>
  3125. /// <param name="dto"></param>
  3126. /// <returns></returns>
  3127. [HttpPost]
  3128. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3129. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3130. {
  3131. try
  3132. {
  3133. _sqlSugar.BeginTran();
  3134. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3135. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3136. {
  3137. IsDel = 1,
  3138. DeleteUserId = dto.DeleteUserId,
  3139. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3140. })
  3141. .Where(it => it.Id == dto.Id)
  3142. .ExecuteCommand();
  3143. if (res1 > 0)
  3144. {
  3145. int _diId = 0;
  3146. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3147. if (_ioaInfo != null)
  3148. {
  3149. _diId = _ioaInfo.DiId;
  3150. }
  3151. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3152. .SetColumns(a => new Grp_CreditCardPayment()
  3153. {
  3154. IsDel = 1,
  3155. DeleteUserId = dto.DeleteUserId,
  3156. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3157. })
  3158. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3159. .ExecuteCommand();
  3160. if (res2 > 0)
  3161. {
  3162. _sqlSugar.CommitTran();
  3163. return Ok(JsonView(true, "删除成功!"));
  3164. }
  3165. }
  3166. _sqlSugar.RollbackTran();
  3167. return Ok(JsonView(false, "删除失败"));
  3168. }
  3169. catch (Exception ex)
  3170. {
  3171. _sqlSugar.RollbackTran();
  3172. return Ok(JsonView(false, ex.Message));
  3173. }
  3174. }
  3175. /// <summary>
  3176. /// 团组模块文件上传
  3177. /// </summary>
  3178. /// <param name="dto"></param>
  3179. /// <returns></returns>
  3180. [HttpPost]
  3181. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3182. {
  3183. var jw = JsonView(false);
  3184. long M = 1024 * 1024;
  3185. if (dto.Files == null || dto.Files.Count == 0)
  3186. {
  3187. jw.Msg = "无文件信息!";
  3188. return Ok(jw);
  3189. }
  3190. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3191. {
  3192. jw.Msg = "文件大小超过20M!";
  3193. return Ok(jw);
  3194. }
  3195. //var nameSp = dto.File.FileName.Split(".");
  3196. //if (nameSp.Length < 2)
  3197. //{
  3198. // jw.Msg = "拓展名称有误!";
  3199. // return Ok(jw);
  3200. //}
  3201. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3202. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3203. //{
  3204. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3205. // return Ok(jw);
  3206. //}
  3207. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3208. if (Ctable == null)
  3209. {
  3210. jw.Msg = "Ctable指向有误!";
  3211. return Ok(jw);
  3212. }
  3213. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3214. if (groupInfo == null)
  3215. {
  3216. jw.Msg = "团组信息不存在!";
  3217. return Ok(jw);
  3218. }
  3219. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3220. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3221. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3222. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3223. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3224. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3225. try
  3226. {
  3227. if (!Directory.Exists(fileBase))
  3228. {
  3229. Directory.CreateDirectory(fileBase);
  3230. }
  3231. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3232. foreach (var fileStream in dto.Files)
  3233. {
  3234. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3235. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3236. {
  3237. Cid = dto.Cid,
  3238. CreateTime = DateTime.Now,
  3239. CreateUserId = dto.Userid,
  3240. Ctable = dto.Ctable,
  3241. Diid = dto.Diid,
  3242. IsDel = 0,
  3243. FilePath = saveFilePath,
  3244. FileName = fileStream.FileName
  3245. };
  3246. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3247. {
  3248. fileStream.CopyTo(fs);
  3249. fs.Flush();
  3250. }
  3251. saveArr.Add(file);
  3252. }
  3253. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3254. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3255. jw = JsonView(true, "保存成功!", new
  3256. {
  3257. count = addResult,
  3258. filesName = saveArr.Select(x => x.FileName)
  3259. }) ;
  3260. }
  3261. catch (Exception ex)
  3262. {
  3263. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3264. {
  3265. count = 0,
  3266. filesName = new string[0],
  3267. }) ;
  3268. }
  3269. return Ok(jw);
  3270. }
  3271. /// <summary>
  3272. /// 查询各模块已保存文件
  3273. /// </summary>
  3274. /// <param name="dto"></param>
  3275. /// <returns></returns>
  3276. [HttpPost]
  3277. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3278. {
  3279. var expression = Expressionable.Create<Grp_GroupModelFile>()
  3280. .AndIF(dto.UserId != -1 , x => x.CreateUserId == dto.UserId);
  3281. var visaIds = _sqlSugar.Queryable<Sys_Users>().Where(x => x.JobPostId == 26).Select(x=>x.Id).ToList();
  3282. if (visaIds.Contains(dto.UserId) && dto.Ctable == 80)
  3283. {
  3284. expression = Expressionable.Create<Grp_GroupModelFile>()
  3285. .And(x=>visaIds.Contains(x.CreateUserId));
  3286. }
  3287. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3288. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3289. .Where(expression.ToExpression())
  3290. .ToList();
  3291. //.ToPageList(pagenumber, pageSize, ref totalCount, ref totalPage)
  3292. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3293. {
  3294. x.FileName,
  3295. x.Id,
  3296. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"), AppSettingsHelper.Get("GrpFileFtpPath")),
  3297. CreateTime = x.CreateTime.ToString("yyyy-MM-dd HH-mm"),
  3298. })));
  3299. }
  3300. /// <summary>
  3301. /// 下载该团组下的所有文件
  3302. /// </summary>
  3303. /// <param name="dto"></param>
  3304. /// <returns></returns>
  3305. [HttpPost]
  3306. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3307. {
  3308. var jw = JsonView(false);
  3309. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3310. if (groupInfo == null)
  3311. {
  3312. jw.Msg = "团组信息不存在!";
  3313. return Ok(jw);
  3314. }
  3315. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3316. var isModule = Convert.ToBoolean(dto.isModule);
  3317. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3318. IOOperatorHelper io = new IOOperatorHelper();
  3319. if (isModule)
  3320. {
  3321. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3322. foreach (var moduleArr in moduleGroup)
  3323. {
  3324. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3325. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3326. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3327. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3328. foreach (var item in moduleArr)
  3329. {
  3330. if (System.IO.File.Exists(item.FilePath))
  3331. {
  3332. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3333. {
  3334. byte[] bytes = new byte[fileStream.Length];
  3335. fileStream.Read(bytes, 0, bytes.Length);
  3336. fileStream.Close();
  3337. Stream stream = new MemoryStream(bytes);
  3338. chiZips.Add(item.FileName, stream);
  3339. }
  3340. }
  3341. }
  3342. if (chiZips.Count > 0)
  3343. {
  3344. var byts = io.ConvertZipStream(chiZips);
  3345. Stream stream = new MemoryStream(byts);
  3346. Zips.Add(key.Name+"_.zip", stream);
  3347. }
  3348. }
  3349. }
  3350. else
  3351. {
  3352. foreach (var item in dbQuery)
  3353. {
  3354. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3355. {
  3356. byte[] bytes = new byte[fileStream.Length];
  3357. fileStream.Read(bytes, 0, bytes.Length);
  3358. fileStream.Close();
  3359. Stream stream = new MemoryStream(bytes);
  3360. while (Zips.Keys.Contains(item.FileName))
  3361. {
  3362. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3363. }
  3364. Zips.Add(item.FileName, stream);
  3365. }
  3366. }
  3367. }
  3368. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3369. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3370. if (Zips.Count > 0)
  3371. {
  3372. var byts = io.ConvertZipStream(Zips);
  3373. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3374. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3375. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3376. }
  3377. else
  3378. {
  3379. jw.Msg = "暂无生成文件!";
  3380. }
  3381. return Ok(jw);
  3382. }
  3383. /// <summary>
  3384. /// 下载该团组下此模块的所有文件
  3385. /// </summary>
  3386. /// <param name="dto"></param>
  3387. /// <returns></returns>
  3388. [HttpPost]
  3389. public IActionResult ExportGroupByModule(ExportGroupByModuleDto dto)
  3390. {
  3391. var jw = JsonView(false);
  3392. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3393. if (groupInfo == null)
  3394. {
  3395. jw.Msg = "团组信息不存在!";
  3396. return Ok(jw);
  3397. }
  3398. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid && x.Ctable == dto.Ctable).ToList();
  3399. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == dto.Ctable
  3400. && x.IsDel == 0);
  3401. if (key == null)
  3402. {
  3403. jw.Msg = "Ctable指向错误!";
  3404. return Ok(jw);
  3405. }
  3406. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3407. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3408. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3409. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3410. IOOperatorHelper io = new IOOperatorHelper();
  3411. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3412. foreach (var item in dbQuery)
  3413. {
  3414. if (System.IO.File.Exists(item.FilePath))
  3415. {
  3416. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3417. {
  3418. byte[] bytes = new byte[fileStream.Length];
  3419. fileStream.Read(bytes, 0, bytes.Length);
  3420. fileStream.Close();
  3421. Stream stream = new MemoryStream(bytes);
  3422. while (Zips.Keys.Contains(item.FileName))
  3423. {
  3424. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3425. }
  3426. Zips.Add(item.FileName, stream);
  3427. }
  3428. }
  3429. }
  3430. if (Zips.Count > 0)
  3431. {
  3432. var byts = io.ConvertZipStream(Zips);
  3433. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3434. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_{key.Name}_.Zip");
  3435. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_{key.Name}_.Zip" });
  3436. }
  3437. else
  3438. {
  3439. jw.Msg = "暂无生成文件!";
  3440. }
  3441. return Ok(jw);
  3442. }
  3443. /// <summary>
  3444. /// 删除该团组下的指定文件
  3445. /// </summary>
  3446. /// <param name="dto"></param>
  3447. /// <returns></returns>
  3448. [HttpPost]
  3449. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3450. {
  3451. var jw = JsonView(false);
  3452. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3453. if (sing == null)
  3454. {
  3455. jw.Msg = "暂无";
  3456. return Ok(jw);
  3457. }
  3458. if (System.IO.File.Exists(sing.FilePath))
  3459. {
  3460. try
  3461. {
  3462. System.IO.File.Delete(sing.FilePath);
  3463. }
  3464. catch (Exception ex)
  3465. {
  3466. jw.Msg = "删除失败!" + ex.Message;
  3467. return Ok(jw);
  3468. }
  3469. }
  3470. sing.IsDel = 1;
  3471. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3472. sing.DeleteUserId = dto.UserId;
  3473. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3474. jw = JsonView(true, "删除成功!");
  3475. return Ok(jw);
  3476. }
  3477. #endregion
  3478. #region 团组英文资料
  3479. /// <summary>
  3480. /// 查询团组英文所有资料
  3481. /// </summary>
  3482. /// <param name="dto"></param>
  3483. /// <returns></returns>
  3484. [HttpPost]
  3485. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3486. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3487. {
  3488. try
  3489. {
  3490. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3491. if (groupData.Code != 0)
  3492. {
  3493. return Ok(JsonView(false, groupData.Msg));
  3494. }
  3495. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3496. }
  3497. catch (Exception ex)
  3498. {
  3499. return Ok(JsonView(false, "程序错误!"));
  3500. throw;
  3501. }
  3502. }
  3503. /// <summary>
  3504. /// 团组英文资料操作(Status:1.新增,2.修改)
  3505. /// </summary>
  3506. /// <param name="dto"></param>
  3507. /// <returns></returns>
  3508. [HttpPost]
  3509. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3510. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3511. {
  3512. try
  3513. {
  3514. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3515. if (groupData.Code != 0)
  3516. {
  3517. return Ok(JsonView(false, groupData.Msg));
  3518. }
  3519. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3520. }
  3521. catch (Exception ex)
  3522. {
  3523. return Ok(JsonView(false, "程序错误!"));
  3524. throw;
  3525. }
  3526. }
  3527. /// <summary>
  3528. /// 团组英文资料Id查询数据
  3529. /// </summary>
  3530. /// <param name="dto"></param>
  3531. /// <returns></returns>
  3532. [HttpPost]
  3533. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3534. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3535. {
  3536. try
  3537. {
  3538. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3539. if (_DelegationEnData != null)
  3540. {
  3541. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3542. }
  3543. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3544. }
  3545. catch (Exception ex)
  3546. {
  3547. return Ok(JsonView(false, "程序错误!"));
  3548. throw;
  3549. }
  3550. }
  3551. /// <summary>
  3552. /// 团组英文资料删除
  3553. /// </summary>
  3554. /// <param name="dto"></param>
  3555. /// <returns></returns>
  3556. [HttpPost]
  3557. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3558. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3559. {
  3560. try
  3561. {
  3562. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3563. if (!res)
  3564. {
  3565. return Ok(JsonView(false, "删除失败"));
  3566. }
  3567. return Ok(JsonView(true, "删除成功!"));
  3568. }
  3569. catch (Exception ex)
  3570. {
  3571. return Ok(JsonView(false, "程序错误!"));
  3572. throw;
  3573. }
  3574. }
  3575. #endregion
  3576. #region 导出邀请函
  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> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3585. {
  3586. try
  3587. {
  3588. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3589. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3590. if (dto.DiId == 0)
  3591. {
  3592. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3593. }
  3594. else
  3595. {
  3596. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3597. }
  3598. return Ok(JsonView(true, "查询成功!", new
  3599. {
  3600. deleClient = crm_Deles,
  3601. delegations = grp_Delegations
  3602. }));
  3603. }
  3604. catch (Exception ex)
  3605. {
  3606. return Ok(JsonView(false, "程序错误!"));
  3607. throw;
  3608. }
  3609. }
  3610. /// <summary>
  3611. /// 导出邀请函
  3612. /// </summary>
  3613. /// <param name="dto"></param>
  3614. /// <returns></returns>
  3615. [HttpPost]
  3616. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3617. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3618. {
  3619. #region 参数验证
  3620. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3621. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3622. #endregion
  3623. try
  3624. {
  3625. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3626. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3627. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3628. From Grp_TourClientList tcl
  3629. Left Join
  3630. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3631. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3632. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3633. From Crm_DeleClient dc
  3634. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3635. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3636. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3637. Where dc.IsDel = 0) temp
  3638. On temp.DcId =tcl.ClientId
  3639. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3640. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3641. List<string> texts = new List<string>();
  3642. if (datas.Count != 0)
  3643. {
  3644. foreach (TourClientListDetailsView item in datas)
  3645. {
  3646. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3647. {
  3648. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3649. }
  3650. else
  3651. {
  3652. string name = item.LastName + item.FirstName;
  3653. texts.Add(name);
  3654. }
  3655. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3656. {
  3657. if (!transDic.ContainsKey(item.Job))
  3658. {
  3659. texts.Add(item.Job);
  3660. }
  3661. }
  3662. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3663. {
  3664. texts.Add(item.CompanyFullName);
  3665. }
  3666. }
  3667. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3668. if (transData.Count > 0)
  3669. {
  3670. foreach (TranslateResult item in transData)
  3671. {
  3672. if (!transDic.ContainsKey(item.Query))
  3673. {
  3674. transDic.Add(item.Query, item.Translation);
  3675. }
  3676. }
  3677. }
  3678. List<GuestList> list = new List<GuestList>();
  3679. foreach (TourClientListDetailsView dele in datas)
  3680. {
  3681. GuestList guestList = new GuestList();
  3682. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3683. {
  3684. guestList.Name = dele.Pinyin;
  3685. }
  3686. else
  3687. {
  3688. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3689. guestList.Name = Name;
  3690. }
  3691. if (dele.Sex == 0)
  3692. {
  3693. guestList.Sex = "Male";
  3694. }
  3695. else if (dele.Sex == 1)
  3696. {
  3697. guestList.Sex = "Female";
  3698. }
  3699. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3700. if (!string.IsNullOrEmpty(dele.Job))
  3701. {
  3702. guestList.Job = dele.Job;
  3703. }
  3704. list.Add(guestList);
  3705. }
  3706. //载入模板
  3707. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3708. DocumentBuilder builder = new DocumentBuilder(doc);
  3709. //获取word里所有表格
  3710. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3711. //获取所填表格的序数
  3712. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3713. var rowStart = tableOne.Rows[0]; //获取第1行
  3714. //循环赋值
  3715. for (int i = 0; i < list.Count; i++)
  3716. {
  3717. builder.MoveToCell(0, i + 1, 0, 0);
  3718. builder.Write(list[i].Name.ToString());
  3719. builder.MoveToCell(0, i + 1, 1, 0);
  3720. builder.Write(list[i].Sex.ToString());
  3721. builder.MoveToCell(0, i + 1, 2, 0);
  3722. builder.Write(list[i].DOB.ToString());
  3723. builder.MoveToCell(0, i + 1, 3, 0);
  3724. builder.Write(list[i].Job.ToString());
  3725. }
  3726. //删除多余行
  3727. while (tableOne.Rows.Count > list.Count + 1)
  3728. {
  3729. tableOne.Rows.RemoveAt(list.Count + 1);
  3730. }
  3731. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3732. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3733. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3734. doc.Save(filePath);
  3735. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3736. return Ok(JsonView(true, "操作成功!", Url));
  3737. }
  3738. else
  3739. {
  3740. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3741. }
  3742. }
  3743. catch (Exception ex)
  3744. {
  3745. return Ok(JsonView(false, ex.Message));
  3746. throw;
  3747. }
  3748. }
  3749. #endregion
  3750. #region 团组经理模块 出入境费用
  3751. ///// <summary>
  3752. ///// 团组模块 - 出入境费用
  3753. ///// </summary>
  3754. ///// <returns></returns>
  3755. //[HttpPost]
  3756. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3757. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3758. //{
  3759. // try
  3760. // {
  3761. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3762. // if (data.Code != 0)
  3763. // {
  3764. // return Ok(JsonView(false, data.Msg));
  3765. // }
  3766. // return Ok(JsonView(true, "查询成功!"));
  3767. // }
  3768. // catch (Exception ex)
  3769. // {
  3770. // return Ok(JsonView(false, ex.Message));
  3771. // throw;
  3772. // }
  3773. //}
  3774. /// <summary>
  3775. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3776. /// </summary>
  3777. /// <returns></returns>
  3778. [HttpPost]
  3779. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3780. public async Task<IActionResult> SetDayAndCostAreaChange()
  3781. {
  3782. try
  3783. {
  3784. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3785. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3786. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3787. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3788. foreach (var item in unite) //处理交集数据
  3789. {
  3790. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3791. }
  3792. foreach (var item in merge) //处理差集数据
  3793. {
  3794. int nationalTravelFeeId = 0;
  3795. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3796. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3797. else
  3798. {
  3799. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3800. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3801. }
  3802. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3803. }
  3804. //只更新dayAndCost 的 nationalTravelFeeId;
  3805. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3806. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3807. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3808. }
  3809. catch (Exception ex)
  3810. {
  3811. return Ok(JsonView(false, ex.Message));
  3812. throw;
  3813. }
  3814. }
  3815. /// <summary>
  3816. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3817. /// </summary>
  3818. /// <returns></returns>
  3819. [HttpPost]
  3820. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3821. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3822. {
  3823. try
  3824. {
  3825. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3826. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3827. //SetDataInfoView
  3828. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3829. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3830. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3831. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3832. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3833. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3834. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3835. //默认币种显示
  3836. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3837. {
  3838. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3839. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3840. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3841. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3842. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3843. };
  3844. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3845. if (_currencyRate.Count > 0)
  3846. {
  3847. foreach (var item in _currencyInfos)
  3848. {
  3849. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3850. if (rateInfo != null)
  3851. {
  3852. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3853. rate1 *= 1.035M;
  3854. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3855. }
  3856. }
  3857. }
  3858. return Ok(JsonView(true, "查询成功!", new
  3859. {
  3860. GroupNameData = groupNameData.Data,
  3861. CurrencyData = _CurrencyData,
  3862. WordTypeData = _WordTypeData,
  3863. ExcelTypeData = _ExcelTypeData,
  3864. CurrencyInit = _currencyInfos
  3865. }));
  3866. }
  3867. catch (Exception ex)
  3868. {
  3869. return Ok(JsonView(false, ex.Message));
  3870. throw;
  3871. }
  3872. }
  3873. /// <summary>
  3874. /// 团组模块 - 出入境费用
  3875. /// 实时汇率 tips
  3876. /// 签证费用 tips
  3877. /// </summary>
  3878. /// <returns></returns>
  3879. [HttpPost]
  3880. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3881. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3882. {
  3883. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3884. //默认币种显示
  3885. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3886. {
  3887. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3888. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3889. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3890. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3891. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3892. };
  3893. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3894. List<dynamic> reteInfos = new List<dynamic>();
  3895. if (_currencyRate.Count > 0)
  3896. {
  3897. foreach (var item in _currencyInfos)
  3898. {
  3899. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3900. if (rateInfo != null)
  3901. {
  3902. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3903. decimal rate1 = item.Rate;
  3904. rate1 *= 1.03M;
  3905. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3906. reteInfos.Add(new
  3907. {
  3908. currCode = item.CurrencyCode,
  3909. currName = item.CurrencyName,
  3910. rate = rate2,
  3911. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3912. });
  3913. }
  3914. }
  3915. }
  3916. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3917. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3918. return Ok(JsonView(true, "查询成功!", new
  3919. {
  3920. //GroupNameData = groupNameData.Data,
  3921. visaData = visaData.Data,
  3922. airData = airData.Data,
  3923. reteInfos = reteInfos
  3924. }));
  3925. }
  3926. /// <summary>
  3927. /// 团组模块 - 出入境费用 - Info
  3928. /// </summary>
  3929. /// <returns></returns>
  3930. [HttpPost]
  3931. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3932. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3933. {
  3934. try
  3935. {
  3936. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3937. if (data.Code != 0)
  3938. {
  3939. return Ok(JsonView(false, data.Msg));
  3940. }
  3941. return Ok(JsonView(true, "查询成功!", data.Data));
  3942. }
  3943. catch (Exception ex)
  3944. {
  3945. return Ok(JsonView(false, ex.Message));
  3946. }
  3947. }
  3948. /// <summary>
  3949. /// 团组模块 - 出入境费用 - Add And Update
  3950. /// </summary>
  3951. /// <returns></returns>
  3952. [HttpPost]
  3953. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3954. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3955. {
  3956. try
  3957. {
  3958. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3959. if (data.Code != 0)
  3960. {
  3961. return Ok(JsonView(false, data.Msg));
  3962. }
  3963. //生成默认文件pdf并且通知人员
  3964. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3965. {
  3966. DiId = dto.DiId,
  3967. ExportType = 1,
  3968. SubTypeId = 1005
  3969. }, "pdf");
  3970. //发送通知
  3971. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3972. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3973. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3974. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3975. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3976. return Ok(JsonView(true, data.Msg, data.Data));
  3977. }
  3978. catch (Exception ex)
  3979. {
  3980. return Ok(JsonView(false, ex.Message));
  3981. }
  3982. }
  3983. /// <summary>
  3984. /// 团组模块 - 出入境费用 - Confirm 费用
  3985. /// </summary>
  3986. /// <returns></returns>
  3987. [HttpPost]
  3988. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3989. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3990. {
  3991. //TODO:测试完毕需把对应的用户ID更改
  3992. //1、数据表添加字段
  3993. //2、更改字段接口()
  3994. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3995. //3、确认成功 给财务发送消息
  3996. if (_view.Code == 200)
  3997. {
  3998. if (dto.Type == 1)
  3999. {
  4000. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  4001. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  4002. }
  4003. }
  4004. return Ok(_view);
  4005. }
  4006. /// <summary>
  4007. /// 团组模块 - 出入境费用 - File downlaod
  4008. /// </summary>
  4009. /// <param name="dto"></param>
  4010. /// <returns></returns>
  4011. [HttpPost]
  4012. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4013. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  4014. {
  4015. try
  4016. {
  4017. if (dto.DiId < 1)
  4018. {
  4019. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4020. }
  4021. if (dto.ExportType < 1)
  4022. {
  4023. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  4024. }
  4025. if (dto.SubTypeId < 1)
  4026. {
  4027. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  4028. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  4029. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  4030. 3 团组成员名单 1 团组成员名单"));
  4031. }
  4032. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4033. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  4034. if (_EnterExitCosts == null)
  4035. {
  4036. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  4037. }
  4038. //数据源
  4039. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  4040. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  4041. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  4042. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  4043. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  4044. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  4045. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  4046. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  4047. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  4048. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  4049. .Select((tcl, dc, cc) => new
  4050. {
  4051. Name = dc.LastName + dc.FirstName,
  4052. Sex = dc.Sex,
  4053. Birthday = dc.BirthDay,
  4054. Company = cc.CompanyFullName,
  4055. Job = dc.Job
  4056. })
  4057. .ToList();
  4058. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4059. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  4060. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  4061. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  4062. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  4063. if (dto.ExportType == 1) //明细表
  4064. {
  4065. if (dto.SubTypeId == 1005) //1005(默认明细表)
  4066. {
  4067. //获取模板
  4068. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  4069. //载入模板
  4070. Document doc = new Document(tempPath);
  4071. DocumentBuilder builder = new DocumentBuilder(doc);
  4072. //利用键值对存放数据
  4073. Dictionary<string, string> dic = new Dictionary<string, string>();
  4074. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  4075. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  4076. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  4077. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  4078. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  4079. //境内费用(其他费用)
  4080. if (_EnterExitCosts.ChoiceOne == 1)
  4081. {
  4082. string row1_1 = "";
  4083. if (_EnterExitCosts.Visa > 0)
  4084. {
  4085. //insidePayTotal += _EnterExitCosts.Visa;
  4086. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  4087. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  4088. {
  4089. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  4090. }
  4091. }
  4092. string row1_2 = "";
  4093. if (_EnterExitCosts.YiMiao > 0)
  4094. {
  4095. //insidePayTotal += _EnterExitCosts.YiMiao;
  4096. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  4097. }
  4098. if (_EnterExitCosts.HeSuan > 0)
  4099. {
  4100. //insidePayTotal += _EnterExitCosts.HeSuan;
  4101. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4102. }
  4103. if (_EnterExitCosts.Service > 0)
  4104. {
  4105. //insidePayTotal += _EnterExitCosts.Service;
  4106. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4107. }
  4108. string row1_3 = "";
  4109. if (_EnterExitCosts.Safe > 0)
  4110. {
  4111. //insidePayTotal += _EnterExitCosts.Safe;
  4112. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4113. }
  4114. if (_EnterExitCosts.Ticket > 0)
  4115. {
  4116. //insidePayTotal += _EnterExitCosts.Ticket;
  4117. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4118. }
  4119. string row1 = "";
  4120. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4121. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4122. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4123. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4124. dic.Add("Row1Str", row1);
  4125. }
  4126. //经济舱
  4127. if (_EnterExitCosts.SumJJC == 1)
  4128. {
  4129. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  4130. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4131. }
  4132. //公务舱
  4133. if (_EnterExitCosts.SumGWC == 1)
  4134. {
  4135. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  4136. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  4137. }
  4138. if (_EnterExitCosts.SumGWC == 1 || _EnterExitCosts.SumJJC == 1)
  4139. {
  4140. if (_EnterExitCosts.CityTranffic != 0)
  4141. {
  4142. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4143. }
  4144. }
  4145. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4146. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4147. int table1Row = 0,
  4148. table2Row = 0,
  4149. table3Row = 0,
  4150. table4Row = 0;
  4151. //住宿费
  4152. if (_EnterExitCosts.ChoiceThree == 1)
  4153. {
  4154. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4155. table1Row = dac1.Count;
  4156. #region 填充word表格内容
  4157. for (int i = 0; i < dac1.Count; i++)
  4158. {
  4159. Grp_DayAndCost dac = dac1[i];
  4160. if (dac == null) continue;
  4161. builder.MoveToCell(0, i, 0, 0);
  4162. builder.Write("第" + dac.Days.ToString() + "晚:");
  4163. builder.MoveToCell(0, i, 1, 0);
  4164. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4165. //builder.Write(dac.Place == null ? "" : dac.Place);
  4166. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4167. builder.MoveToCell(0, i, 2, 0);
  4168. builder.Write("费用标准:");
  4169. string curr = "";
  4170. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4171. if (currData != null)
  4172. {
  4173. curr = currData.Name;
  4174. }
  4175. builder.MoveToCell(0, i, 3, 0);
  4176. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4177. builder.MoveToCell(0, i, 4, 0);
  4178. builder.Write("费用小计:");
  4179. builder.MoveToCell(0, i, 5, 0);
  4180. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4181. }
  4182. #endregion
  4183. }else dic.Add("SubZS","0.00");
  4184. //删除多余行
  4185. while (table1.Rows.Count > table1Row)
  4186. {
  4187. table1.Rows.RemoveAt(table1Row);
  4188. }
  4189. //伙食费
  4190. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4191. if (_EnterExitCosts.ChoiceFour == 1)
  4192. {
  4193. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4194. table2Row = dac2.Count;
  4195. #region 填充word表格内容
  4196. for (int i = 0; i < dac2.Count; i++)
  4197. {
  4198. Grp_DayAndCost dac = dac2[i];
  4199. if (dac == null) continue;
  4200. builder.MoveToCell(1, i, 0, 0);
  4201. builder.Write("第" + dac.Days.ToString() + "天:");
  4202. builder.MoveToCell(1, i, 1, 0);
  4203. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4204. builder.MoveToCell(1, i, 2, 0);
  4205. builder.Write("费用标准:");
  4206. string curr = "";
  4207. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4208. if (currData != null)
  4209. {
  4210. curr = currData.Name;
  4211. }
  4212. builder.MoveToCell(1, i, 3, 0);
  4213. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4214. builder.MoveToCell(1, i, 4, 0);
  4215. builder.Write("费用小计:");
  4216. builder.MoveToCell(1, i, 5, 0);
  4217. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4218. }
  4219. #endregion
  4220. }else dic.Add("SubHS","0.00");
  4221. //删除多余行
  4222. while (table2.Rows.Count > table2Row)
  4223. {
  4224. table2.Rows.RemoveAt(table2Row);
  4225. }
  4226. //公杂费
  4227. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4228. if (_EnterExitCosts.ChoiceFive == 1)
  4229. {
  4230. dic.Add("SubGZF", miscellaneousFeeTotal.ToString("#0.00"));
  4231. table3Row = dac3.Count;
  4232. #region 填充word表格内容
  4233. for (int i = 0; i < dac3.Count; i++)
  4234. {
  4235. Grp_DayAndCost dac = dac3[i];
  4236. if (dac == null) continue;
  4237. builder.MoveToCell(2, i, 0, 0);
  4238. builder.Write("第" + dac.Days.ToString() + "天:");
  4239. builder.MoveToCell(2, i, 1, 0);
  4240. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4241. builder.MoveToCell(2, i, 2, 0);
  4242. builder.Write("费用标准:");
  4243. string curr = "";
  4244. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4245. if (currData != null)
  4246. {
  4247. curr = currData.Name;
  4248. }
  4249. builder.MoveToCell(2, i, 3, 0);
  4250. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4251. builder.MoveToCell(2, i, 4, 0);
  4252. builder.Write("费用小计:");
  4253. builder.MoveToCell(2, i, 5, 0);
  4254. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4255. }
  4256. //删除多余行
  4257. while (table3.Rows.Count > table3Row)
  4258. {
  4259. table3.Rows.RemoveAt(table3Row);
  4260. }
  4261. #endregion
  4262. }else dic.Add("SubGZF", "0.00");
  4263. //删除多余行
  4264. while (table3.Rows.Count > table3Row)
  4265. {
  4266. table3.Rows.RemoveAt(table3Row);
  4267. }
  4268. //培训费
  4269. Aspose.Words.Tables.Table table4 = allTables[3] as Aspose.Words.Tables.Table;
  4270. if (_EnterExitCosts.ChoiceSix == 1)
  4271. {
  4272. dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  4273. table4Row = dac4.Count;
  4274. #region 填充word表格内容
  4275. for (int i = 0; i < dac4.Count; i++)
  4276. {
  4277. Grp_DayAndCost dac = dac4[i];
  4278. if (dac == null) continue;
  4279. builder.MoveToCell(3, i, 0, 0);
  4280. builder.Write("第" + dac.Days.ToString() + "天:");
  4281. builder.MoveToCell(3, i, 1, 0);
  4282. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4283. builder.MoveToCell(3, i, 2, 0);
  4284. builder.Write("费用标准:");
  4285. string curr = "";
  4286. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4287. if (currData != null)
  4288. {
  4289. curr = currData.Name;
  4290. }
  4291. builder.MoveToCell(3, i, 3, 0);
  4292. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4293. builder.MoveToCell(3, i, 4, 0);
  4294. builder.Write("费用小计:");
  4295. builder.MoveToCell(3, i, 5, 0);
  4296. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4297. }
  4298. #endregion
  4299. }
  4300. else dic.Add("SubPX","0.00");
  4301. //删除多余行
  4302. while (table4.Rows.Count > table4Row)
  4303. {
  4304. table4.Rows.RemoveAt(table4Row);
  4305. }
  4306. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  4307. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4308. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  4309. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4310. #region 填充word模板书签内容
  4311. foreach (var key in dic.Keys)
  4312. {
  4313. builder.MoveToBookmark(key);
  4314. builder.Write(dic[key]);
  4315. }
  4316. #endregion
  4317. //文件名
  4318. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4319. AsposeHelper.removewatermark_v2180();
  4320. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4321. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4322. return Ok(JsonView(true, "成功", new { Url = url }));
  4323. }
  4324. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4325. {
  4326. //获取模板
  4327. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4328. //载入模板
  4329. Document doc = new Document(tempPath);
  4330. DocumentBuilder builder = new DocumentBuilder(doc);
  4331. Dictionary<string, string> dic = new Dictionary<string, string>();
  4332. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4333. {
  4334. List<string> list = new List<string>();
  4335. try
  4336. {
  4337. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4338. foreach (var item in spilitArr)
  4339. {
  4340. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4341. var depCode = spDotandEmpty[2].Substring(0, 3);
  4342. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4343. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4344. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4345. list.Add(depName);
  4346. list.Add(arrName);
  4347. }
  4348. list = list.Distinct().ToList();
  4349. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4350. }
  4351. catch (Exception)
  4352. {
  4353. dic.Add("ReturnCode", "行程录入不正确!");
  4354. }
  4355. }
  4356. else
  4357. {
  4358. dic.Add("ReturnCode", "未录入行程!");
  4359. }
  4360. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4361. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4362. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4363. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4364. {
  4365. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4366. dic.Add("Day", sp.Days.ToString());
  4367. }
  4368. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4369. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4370. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4371. //dic.Add("Names", Names);
  4372. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4373. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4374. decimal dac1totalPrice = 0.00M;
  4375. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4376. foreach (var dac in dac1)
  4377. {
  4378. if (dac.SubTotal == 0.00M)
  4379. {
  4380. continue;
  4381. }
  4382. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4383. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4384. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4385. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4386. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4387. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4388. builder.Write(currency);//币种
  4389. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4390. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4391. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4392. builder.Write("");//人数
  4393. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4394. builder.Write("");//天数
  4395. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4396. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4397. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4398. decimal rate = 0.00M;
  4399. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4400. builder.Write(rate.ToString("#0.0000"));//汇率
  4401. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4402. decimal rbmPrice = dac.SubTotal;
  4403. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4404. accommodationStartIndex++;
  4405. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4406. }
  4407. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4408. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4409. {
  4410. table1.Rows.RemoveAt(i - 1);
  4411. foodandotherStartIndex--;
  4412. }
  4413. if (dac2.Count == dac3.Count)//国家 币种 金额
  4414. {
  4415. for (int i = 0; i < dac2.Count; i++)
  4416. {
  4417. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4418. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4419. }
  4420. }
  4421. decimal dac2totalPrice = 0.00M;
  4422. foreach (var dac in dac2)
  4423. {
  4424. if (dac.SubTotal == 0)
  4425. {
  4426. continue;
  4427. }
  4428. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4429. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4430. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4431. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4432. builder.Write(currency);//币种
  4433. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4434. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4435. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4436. builder.Write("");//人数
  4437. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4438. builder.Write("");//天数
  4439. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4440. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4441. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4442. decimal rate = 0.00M;
  4443. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4444. builder.Write(rate.ToString("#0.0000"));//汇率
  4445. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4446. decimal rbmPrice = dac.SubTotal;
  4447. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4448. foodandotherStartIndex++;
  4449. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4450. }
  4451. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4452. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4453. {
  4454. table1.Rows.RemoveAt(i - 1);
  4455. }
  4456. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4457. string otherFeeStr = "";
  4458. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4459. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4460. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4461. if (otherFeeStr.Length > 0)
  4462. {
  4463. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4464. otherFeeStr = $"({otherFeeStr})";
  4465. dic.Add("OtherFeeStr", otherFeeStr);
  4466. }
  4467. //总计
  4468. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4469. //国际旅费
  4470. string outsideJJ = "";
  4471. string allPriceJJ = "";
  4472. if (_EnterExitCosts.SumJJC == 1)
  4473. {
  4474. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4475. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4476. }
  4477. string outsideGW = "";
  4478. string allPriceGW = "";
  4479. if (_EnterExitCosts.SumGWC == 1)
  4480. {
  4481. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4482. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4483. }
  4484. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4485. {
  4486. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4487. dic.Add("InTravelPrice", InTravelPriceStr);
  4488. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4489. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4490. }
  4491. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4492. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4493. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4494. foreach (var key in dic.Keys)
  4495. {
  4496. builder.MoveToBookmark(key);
  4497. builder.Write(dic[key]);
  4498. }
  4499. //模板文件名
  4500. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4501. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4502. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4503. return Ok(JsonView(true, "成功", new { Url = url }));
  4504. }
  4505. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4506. {
  4507. //获取模板
  4508. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4509. //载入模板
  4510. WorkbookDesigner designer = new WorkbookDesigner();
  4511. designer.Workbook = new Workbook(tempPath);
  4512. Dictionary<string, string> dic = new Dictionary<string, string>();
  4513. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4514. {
  4515. List<string> list = new List<string>();
  4516. try
  4517. {
  4518. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4519. foreach (var item in spilitArr)
  4520. {
  4521. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4522. var depCode = spDotandEmpty[2].Substring(0, 3);
  4523. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4524. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4525. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4526. list.Add(depName);
  4527. list.Add(arrName);
  4528. }
  4529. list = list.Distinct().ToList();
  4530. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4531. }
  4532. catch (Exception)
  4533. {
  4534. dic.Add("ReturnCode", "行程录入不正确!");
  4535. }
  4536. }
  4537. else
  4538. {
  4539. dic.Add("ReturnCode", "未录入行程!");
  4540. }
  4541. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4542. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4543. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4544. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4545. {
  4546. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4547. dic.Add("Day", sp.Days.ToString());
  4548. }
  4549. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4550. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4551. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4552. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4553. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4554. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4555. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4556. designer.SetDataSource("Name", Names);
  4557. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4558. designer.SetDataSource("Day", dic["Day"] + "天");
  4559. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4560. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4561. int startIndex = 10;
  4562. const int startIndexcopy = 10;
  4563. if (dac2.Count == dac3.Count)//国家 币种 金额
  4564. {
  4565. for (int i = 0; i < dac2.Count; i++)
  4566. {
  4567. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4568. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4569. }
  4570. }
  4571. DataTable dtdac1 = new DataTable();
  4572. List<string> place = new List<string>();
  4573. dtdac1.Columns.AddRange(new DataColumn[] {
  4574. new DataColumn(){ ColumnName = "city"},
  4575. new DataColumn(){ ColumnName = "curr"},
  4576. new DataColumn(){ ColumnName = "criterion"},
  4577. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4578. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4579. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4580. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4581. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4582. });
  4583. DataTable dtdac2 = new DataTable();
  4584. dtdac2.Columns.AddRange(new DataColumn[] {
  4585. new DataColumn(){ ColumnName = "city"},
  4586. new DataColumn(){ ColumnName = "curr"},
  4587. new DataColumn(){ ColumnName = "criterion"},
  4588. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4589. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4590. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4591. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4592. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4593. });
  4594. dtdac1.TableName = "tb1";
  4595. dtdac2.TableName = "tb2";
  4596. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4597. foreach (var item in dac1)
  4598. {
  4599. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4600. if (place.Contains(item.Place))
  4601. {
  4602. continue;
  4603. }
  4604. DataRow row = dtdac1.NewRow();
  4605. row["city"] = item.Place;
  4606. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4607. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4608. row["curr"] = currency;
  4609. row["rate"] = rate.ToString("#0.0000");
  4610. row["criterion"] = item.Cost.ToString("#0.00");
  4611. row["number"] = 1;
  4612. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4613. //row["costRMB"] = rbmPrice;
  4614. dtdac1.Rows.Add(row);
  4615. place.Add(item.Place);
  4616. }
  4617. place = new List<string>();
  4618. foreach (var item in dac2)
  4619. {
  4620. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4621. if (place.Contains(item.Place))
  4622. {
  4623. continue;
  4624. }
  4625. DataRow row = dtdac2.NewRow();
  4626. row["city"] = item.Place;
  4627. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4628. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4629. row["curr"] = currency;
  4630. row["rate"] = rate.ToString("#0.0000");
  4631. row["criterion"] = item.Cost.ToString("#0.00");
  4632. row["number"] = 1;
  4633. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4634. //row["cost"] = item.SubTotal;
  4635. //row["costRMB"] = rbmPrice;
  4636. dtdac2.Rows.Add(row);
  4637. place.Add(item.Place);
  4638. //dac2totalPrice += rbmPrice;
  4639. }
  4640. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4641. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4642. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4643. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4644. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4645. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4646. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4647. string cellStr = $" 5.其他费用(";
  4648. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4649. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4650. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4651. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4652. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4653. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4654. if (cellStr.Length > 8)
  4655. {
  4656. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4657. }
  4658. cellStr += ")";
  4659. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4660. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4661. decimal pxFee = dac4.Sum(it => it.Cost);
  4662. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4663. string celllastStr1 = "";
  4664. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4665. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4666. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4667. celllastStr1 += $",国际旅费 元";
  4668. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4669. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4670. designer.SetDataSource("cell4Str", cell4Str);
  4671. designer.SetDataSource("cellStr", cellStr);
  4672. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4673. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4674. designer.SetDataSource("celllastStr", celllastStr);
  4675. Workbook wb = designer.Workbook;
  4676. var sheet = wb.Worksheets[0];
  4677. //绑定datatable数据集
  4678. designer.SetDataSource(dtdac1);
  4679. designer.SetDataSource(dtdac2);
  4680. designer.Process();
  4681. var rowStart = dtdac1.Rows.Count;
  4682. while (rowStart > 0)
  4683. {
  4684. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4685. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4686. startIndex++;
  4687. rowStart--;
  4688. }
  4689. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4690. startIndex += 1; //总计行
  4691. rowStart = dtdac2.Rows.Count;
  4692. while (rowStart > 0)
  4693. {
  4694. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4695. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4696. startIndex++;
  4697. rowStart--;
  4698. }
  4699. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4700. wb.CalculateFormula(true);
  4701. //模板文件名
  4702. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4703. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4704. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4705. return Ok(JsonView(true, "成功", new { Url = url }));
  4706. }
  4707. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4708. {
  4709. //获取模板
  4710. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4711. //载入模板
  4712. Document doc = new Document(tempPath);
  4713. DocumentBuilder builder = new DocumentBuilder(doc);
  4714. Dictionary<string, string> dic = new Dictionary<string, string>();
  4715. dic.Add("GroupName", _DelegationInfo.TeamName);
  4716. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4717. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4718. string missionLeaderJob = "";//负责人job
  4719. int groupNumber = 0; //团人数
  4720. if (DeleClientList.Count > 0)
  4721. {
  4722. missionLeader = DeleClientList[0]?.Name ?? "";
  4723. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4724. }
  4725. dic.Add("MissionLeader", missionLeader); //团负责人
  4726. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4727. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4728. #region MyRegion
  4729. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4730. //{
  4731. // List<string> list = new List<string>();
  4732. // try
  4733. // {
  4734. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4735. // foreach (var item in spilitArr)
  4736. // {
  4737. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4738. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4739. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4740. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4741. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4742. // list.Add(depName);
  4743. // list.Add(arrName);
  4744. // }
  4745. // list = list.Distinct().ToList();
  4746. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4747. // }
  4748. // catch (Exception)
  4749. // {
  4750. // dic.Add("ReturnCode", "行程录入不正确!");
  4751. // }
  4752. //}
  4753. //else
  4754. //{
  4755. // dic.Add("ReturnCode", "未录入行程!");
  4756. //}
  4757. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4758. dic.Add("ReturnCode", string.Join("、", countrys));
  4759. #endregion
  4760. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4761. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4762. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4763. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4764. //{
  4765. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4766. // dic.Add("Day", sp.Days.ToString());
  4767. //}
  4768. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4769. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4770. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4771. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4772. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4773. //培训人员名单
  4774. int cultivateRowIndex = 7;
  4775. foreach (var item in DeleClientList)
  4776. {
  4777. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4778. builder.Write(item.Name);
  4779. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4780. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4781. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4782. string birthDay = "";
  4783. if (item.Birthday != null)
  4784. {
  4785. DateTime dt = Convert.ToDateTime(item.Birthday);
  4786. birthDay = $"{dt.Year}.{dt.Month}";
  4787. }
  4788. builder.Write(birthDay);
  4789. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4790. builder.Write(item.Company);
  4791. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4792. builder.Write(item.Job);
  4793. cultivateRowIndex++;
  4794. }
  4795. //删除多余行
  4796. //cultivateRowIndex -= 2;
  4797. int delRows = 10 + 7 - cultivateRowIndex;
  4798. if (delRows > 0)
  4799. {
  4800. for (int i = 0; i < delRows; i++)
  4801. {
  4802. table1.Rows.RemoveAt(cultivateRowIndex);
  4803. //cultivateRowIndex++;
  4804. }
  4805. }
  4806. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4807. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4808. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4809. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4810. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4811. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4812. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4813. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4814. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4815. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4816. //其他费用
  4817. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4818. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4819. //其他费用合计
  4820. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4821. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4822. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4823. //公务舱合计
  4824. //国际旅费
  4825. string outsideJJ = "";
  4826. string allPriceJJ = "";
  4827. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4828. {
  4829. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4830. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4831. }
  4832. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4833. {
  4834. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4835. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4836. }
  4837. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4838. {
  4839. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4840. dic.Add("AirFeeTotal", airFeeTotalStr);
  4841. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4842. dic.Add("FeeTotal", feeTotalStr);
  4843. }
  4844. foreach (var key in dic.Keys)
  4845. {
  4846. builder.MoveToBookmark(key);
  4847. builder.Write(dic[key]);
  4848. }
  4849. //模板文件名
  4850. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4851. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4852. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4853. return Ok(JsonView(true, "成功", new { Url = url }));
  4854. }
  4855. }
  4856. else if (dto.ExportType == 2) //表格
  4857. {
  4858. //利用键值对存放数据
  4859. Dictionary<string, string> dic = new Dictionary<string, string>();
  4860. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4861. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4862. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4863. dic.Add("Day", sp.Days.ToString());
  4864. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4865. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4866. {
  4867. //获取模板
  4868. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4869. //载入模板
  4870. Document doc = new Document(tempPath);
  4871. DocumentBuilder builder = new DocumentBuilder(doc);
  4872. dic.Add("TeamName", _DelegationInfo.TeamName);
  4873. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4874. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4875. string missionLeaderName = "",
  4876. missionLeaderJob = "";
  4877. if (DeleClientList.Count > 0)
  4878. {
  4879. missionLeaderName = DeleClientList[0].Name;
  4880. missionLeaderJob = DeleClientList[0].Job;
  4881. }
  4882. dic.Add("MissionLeaderName", missionLeaderName);
  4883. dic.Add("MissionLeaderJob", missionLeaderJob);
  4884. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4885. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4886. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4887. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4888. int rowCount = 10;//总人数行
  4889. int startRowIndex = 7; //起始行
  4890. for (int i = 0; i < DeleClientList.Count; i++)
  4891. {
  4892. builder.MoveToCell(0, startRowIndex, 0, 0);
  4893. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4894. builder.MoveToCell(0, startRowIndex, 1, 0);
  4895. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4896. builder.Write(sex);//性别
  4897. builder.MoveToCell(0, startRowIndex, 2, 0);
  4898. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4899. builder.MoveToCell(0, startRowIndex, 3, 0);
  4900. builder.Write(DeleClientList[i].Company);//工作单位
  4901. builder.MoveToCell(0, startRowIndex, 4, 0);
  4902. builder.Write(DeleClientList[i].Job);//职务及级别
  4903. builder.MoveToCell(0, startRowIndex, 5, 0);
  4904. builder.Write("");//人员属性
  4905. builder.MoveToCell(0, startRowIndex, 6, 0);
  4906. builder.Write("");//上次出国时间
  4907. startRowIndex++;
  4908. }
  4909. int nullRow = rowCount - DeleClientList.Count;//空行
  4910. for (int i = 0; i < nullRow; i++)
  4911. {
  4912. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4913. }
  4914. foreach (var key in dic.Keys)
  4915. {
  4916. builder.MoveToBookmark(key);
  4917. builder.Write(dic[key]);
  4918. }
  4919. //模板文件名
  4920. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4921. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4922. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4923. return Ok(JsonView(true, "成功", new { Url = url }));
  4924. }
  4925. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4926. {
  4927. //获取模板
  4928. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4929. //载入模板
  4930. Document doc = new Document(tempPath);
  4931. DocumentBuilder builder = new DocumentBuilder(doc);
  4932. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4933. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4934. dic.Add("Names", Names);
  4935. int accommodationRows = 12, foodandotherRows = 12;
  4936. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4937. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4938. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4939. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4940. int accommodationStartIndex = 6;
  4941. decimal dac1totalPrice = 0.00M;
  4942. foreach (var dac in dac1)
  4943. {
  4944. if (dac.SubTotal == 0)
  4945. {
  4946. continue;
  4947. }
  4948. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4949. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4950. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4951. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4952. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4953. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4954. builder.Write(currency);//币种
  4955. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4956. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4957. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4958. builder.Write("");//人数
  4959. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4960. builder.Write("");//天数
  4961. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4962. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4963. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4964. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4965. builder.Write(rate.ToString("#0.0000"));//汇率
  4966. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4967. decimal rbmPrice = rate * dac.SubTotal;
  4968. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4969. accommodationStartIndex++;
  4970. dac1totalPrice += rbmPrice;
  4971. }
  4972. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4973. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4974. builder.Write("小计");
  4975. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4976. builder.Write(dac1totalPrice.ToString("#0.00"));
  4977. accommodationStartIndex++;
  4978. int nullRow = accommodationRows - dac1.Count;
  4979. //删除空行
  4980. //if (nullRow > 0)
  4981. //{
  4982. // int rowIndex = accommodationStartIndex;
  4983. // for (int i = 0; i < nullRow; i++)
  4984. // {
  4985. // Row row = table1.Rows[rowIndex];
  4986. // row.Remove();
  4987. // rowIndex++;
  4988. // }
  4989. //}
  4990. if (dac2.Count == dac3.Count)//国家 币种 金额
  4991. {
  4992. for (int i = 0; i < dac2.Count; i++)
  4993. {
  4994. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4995. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4996. }
  4997. }
  4998. int foodandotherStartIndex = 19;//
  4999. decimal dac2totalPrice = 0.00M;
  5000. foreach (var dac in dac2)
  5001. {
  5002. if (dac.SubTotal == 0)
  5003. {
  5004. continue;
  5005. }
  5006. //foodandotherStartIndex = 12;
  5007. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  5008. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  5009. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  5010. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  5011. builder.Write(currency);//币种
  5012. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  5013. builder.Write(dac.Cost.ToString("#0.00"));//标准
  5014. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  5015. builder.Write("");//人数
  5016. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  5017. builder.Write("");//天数
  5018. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  5019. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  5020. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  5021. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  5022. builder.Write(rate.ToString("#0.0000"));//汇率
  5023. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  5024. decimal rbmPrice = rate * dac.SubTotal;
  5025. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  5026. foodandotherStartIndex++;
  5027. dac2totalPrice += rbmPrice;
  5028. }
  5029. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  5030. //删除空行
  5031. if (dac2.Count < foodandotherRows)
  5032. {
  5033. //int nullRow = accommodationRows - dac2.Count;
  5034. //while (table2.Rows.Count > dac2.Count)
  5035. //{
  5036. // table2.Rows.RemoveAt(dac2.Count);
  5037. //}
  5038. }
  5039. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  5040. string otherFeeStr = "";
  5041. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  5042. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  5043. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  5044. if (otherFeeStr.Length > 0)
  5045. {
  5046. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  5047. otherFeeStr = $"({otherFeeStr})";
  5048. dic.Add("OtherFeeStr", otherFeeStr);
  5049. }
  5050. foreach (var key in dic.Keys)
  5051. {
  5052. builder.MoveToBookmark(key);
  5053. builder.Write(dic[key]);
  5054. }
  5055. //模板文件名
  5056. string strFileName = $"省级单位出(境)经费报销单.docx";
  5057. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5058. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5059. return Ok(JsonView(true, "成功", new { Url = url }));
  5060. }
  5061. }
  5062. else if (dto.ExportType == 3)
  5063. {
  5064. if (dto.SubTypeId == 1) //团组成员名单
  5065. {
  5066. if (DeleClientList.Count < 1)
  5067. {
  5068. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  5069. }
  5070. //获取模板
  5071. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  5072. //载入模板
  5073. Document doc = new Document(tempPath);
  5074. DocumentBuilder builder = new DocumentBuilder(doc);
  5075. //获取word里所有表格
  5076. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5077. //获取所填表格的序数
  5078. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5079. var rowStart = tableOne.Rows[0]; //获取第1行
  5080. //循环赋值
  5081. for (int i = 0; i < DeleClientList.Count; i++)
  5082. {
  5083. builder.MoveToCell(0, i + 1, 0, 0);
  5084. builder.Write(DeleClientList[i].Name);
  5085. builder.MoveToCell(0, i + 1, 1, 0);
  5086. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  5087. builder.Write(sex);
  5088. builder.MoveToCell(0, i + 1, 2, 0);
  5089. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  5090. builder.MoveToCell(0, i + 1, 3, 0);
  5091. builder.Write(DeleClientList[i].Company);
  5092. builder.MoveToCell(0, i + 1, 4, 0);
  5093. builder.Write(DeleClientList[i].Job);
  5094. }
  5095. //删除多余行
  5096. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  5097. {
  5098. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  5099. }
  5100. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  5101. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  5102. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  5103. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5104. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5105. return Ok(JsonView(true, "成功", new { Url = url }));
  5106. }
  5107. }
  5108. return Ok(JsonView(false, "操作失败!"));
  5109. }
  5110. catch (Exception ex)
  5111. {
  5112. return Ok(JsonView(false, ex.Message));
  5113. }
  5114. }
  5115. /// <summary>
  5116. /// 获取三公费用标准city
  5117. /// </summary>
  5118. /// <param name="placeData"></param>
  5119. /// <param name="nationalTravelFeeId"></param>
  5120. /// <returns></returns>
  5121. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  5122. {
  5123. string _city = string.Empty;
  5124. if (placeData.Count < 1) return _city;
  5125. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  5126. if (data == null) return _city;
  5127. string country = data.Country;
  5128. string city = data.City;
  5129. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  5130. else _city = city;
  5131. return _city;
  5132. }
  5133. /// <summary>
  5134. /// 团组模块 - 出入境费用 - 明细表导出
  5135. /// </summary>
  5136. /// <returns></returns>
  5137. [HttpPost]
  5138. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5139. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  5140. {
  5141. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  5142. if (data.Code != 0)
  5143. {
  5144. return Ok(JsonView(false, data.Msg));
  5145. }
  5146. return Ok(JsonView(true, data.Msg, data.Data));
  5147. }
  5148. /// <summary>
  5149. /// 团组模块 - 出入境费用 - 一键清空
  5150. /// </summary>
  5151. /// <returns></returns>
  5152. [HttpPost]
  5153. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5154. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  5155. {
  5156. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  5157. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  5158. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  5159. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  5160. if (_view.Code == 0)
  5161. {
  5162. return Ok(JsonView(true, "操作成功"));
  5163. }
  5164. return Ok(JsonView(false, "操作失败"));
  5165. }
  5166. /// <summary>
  5167. /// 团组模块 - 出入境费用 - 子项删除
  5168. /// </summary>
  5169. /// <returns></returns>
  5170. [HttpPost]
  5171. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5172. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  5173. {
  5174. try
  5175. {
  5176. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  5177. if (data.Code != 0)
  5178. {
  5179. return Ok(JsonView(false, data.Msg));
  5180. }
  5181. return Ok(JsonView(true, "操作成功!", data.Data));
  5182. }
  5183. catch (Exception ex)
  5184. {
  5185. return Ok(JsonView(false, ex.Message));
  5186. }
  5187. }
  5188. /// <summary>
  5189. /// 团组模块 - 出入境国家费用标准 List
  5190. /// </summary>
  5191. /// <returns></returns>
  5192. [HttpPost]
  5193. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5194. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5195. {
  5196. try
  5197. {
  5198. Stopwatch sw = new Stopwatch();
  5199. sw.Start();
  5200. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5201. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5202. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5203. Where gntf.Isdel = 0");
  5204. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5205. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5206. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5207. //foreach (var item in nationalTravel)
  5208. //{
  5209. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5210. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5211. // if (otherData != null)
  5212. // {
  5213. // cityData.Remove(otherData);
  5214. // cityData.Add(otherData);
  5215. // }
  5216. // nationalTravelFeeData1.Add(new
  5217. // {
  5218. // Country = item.Country,
  5219. // CityData = cityData
  5220. // });
  5221. //}
  5222. sw.Stop();
  5223. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5224. }
  5225. catch (Exception ex)
  5226. {
  5227. return Ok(JsonView(false, ex.Message));
  5228. throw;
  5229. }
  5230. }
  5231. /// <summary>
  5232. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5233. /// </summary>
  5234. /// <returns></returns>
  5235. [HttpPost]
  5236. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5237. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5238. {
  5239. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5240. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5241. List<string> countryData = new List<string>();
  5242. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5243. countryData = countryData.Distinct().ToList();
  5244. List<dynamic> dataSource = new List<dynamic>();
  5245. foreach (var item in countryData)
  5246. {
  5247. List<string> cityData1 = new List<string>();
  5248. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5249. var countryData2 = new
  5250. {
  5251. CountryName = item,
  5252. CityData = cityData1
  5253. };
  5254. dataSource.Add(countryData2);
  5255. }
  5256. return Ok(JsonView(true, "查询成功!", dataSource));
  5257. }
  5258. /// <summary>
  5259. /// 团组模块 - 出入境国家费用标准 Page List
  5260. /// </summary>
  5261. /// <returns></returns>
  5262. [HttpPost]
  5263. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5264. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5265. {
  5266. int portId = dto.PortType;
  5267. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5268. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5269. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5270. string whereSql = string.Empty;
  5271. if (!string.IsNullOrEmpty(dto.Country))
  5272. {
  5273. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5274. }
  5275. if (!string.IsNullOrEmpty(dto.City))
  5276. {
  5277. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5278. }
  5279. string pageSql = string.Format(@"Select * From (
  5280. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5281. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5282. From Grp_NationalTravelFee gntf
  5283. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5284. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5285. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5286. RefAsync<int> total = 0;
  5287. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5288. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5289. }
  5290. /// <summary>
  5291. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5292. /// </summary>
  5293. /// <returns></returns>
  5294. [HttpPost]
  5295. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5296. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5297. {
  5298. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5299. int portId = dto.PortType;
  5300. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5301. string whereSql = string.Empty;
  5302. if (!string.IsNullOrEmpty(dto.Country))
  5303. {
  5304. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5305. }
  5306. if (!string.IsNullOrEmpty(dto.City))
  5307. {
  5308. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5309. }
  5310. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5311. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5312. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5313. From Grp_NationalTravelFee gntf
  5314. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5315. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5316. Where gntf.Isdel = 0 {0} ", whereSql);
  5317. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5318. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5319. }
  5320. /// <summary>
  5321. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5322. /// </summary>
  5323. /// <returns></returns>
  5324. [HttpPost]
  5325. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5326. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5327. {
  5328. try
  5329. {
  5330. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5331. if (data.Code != 0)
  5332. {
  5333. return Ok(JsonView(false, data.Msg));
  5334. }
  5335. return Ok(JsonView(true, "操作成功!", data.Data));
  5336. }
  5337. catch (Exception ex)
  5338. {
  5339. return Ok(JsonView(false, ex.Message));
  5340. }
  5341. }
  5342. /// <summary>
  5343. /// 团组模块 - 出入境国家费用标准 - Del
  5344. /// </summary>
  5345. /// <returns></returns>
  5346. [HttpPost]
  5347. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5348. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5349. {
  5350. try
  5351. {
  5352. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5353. {
  5354. Id = dto.Id,
  5355. DeleteUserId = dto.DeleteUserId,
  5356. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5357. IsDel = 1
  5358. };
  5359. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5360. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5361. .WhereColumns(it => new { it.Id })
  5362. .ExecuteCommandAsync();
  5363. if (delStatus <= 0)
  5364. {
  5365. return Ok(JsonView(false, "删除失败!"));
  5366. }
  5367. return Ok(JsonView(true, "操作成功!"));
  5368. }
  5369. catch (Exception ex)
  5370. {
  5371. return Ok(JsonView(false, ex.Message));
  5372. }
  5373. }
  5374. #endregion
  5375. #region 签证费用录入
  5376. /// <summary>
  5377. /// 根据diid查询签证费用列表
  5378. /// </summary>
  5379. /// <param name="dto"></param>
  5380. /// <returns></returns>
  5381. [HttpPost]
  5382. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5383. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5384. {
  5385. try
  5386. {
  5387. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5388. if (groupData.Code != 0)
  5389. {
  5390. return Ok(JsonView(false, groupData.Msg));
  5391. }
  5392. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5393. }
  5394. catch (Exception ex)
  5395. {
  5396. return Ok(JsonView(false, ex.Message));
  5397. }
  5398. }
  5399. /// <summary>
  5400. /// 根据签证费用Id查询单条数据及c表数据
  5401. /// </summary>
  5402. /// <param name="dto"></param>
  5403. /// <returns></returns>
  5404. [HttpPost]
  5405. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5406. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5407. {
  5408. try
  5409. {
  5410. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5411. if (groupData.Code != 0)
  5412. {
  5413. return Ok(JsonView(false, groupData.Msg));
  5414. }
  5415. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5416. }
  5417. catch (Exception ex)
  5418. {
  5419. return Ok(JsonView(false, ex.Message));
  5420. }
  5421. }
  5422. /// <summary>
  5423. /// 签证费用删除
  5424. /// </summary>
  5425. /// <param name="dto"></param>
  5426. /// <returns></returns>
  5427. [HttpPost]
  5428. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5429. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5430. {
  5431. _sqlSugar.BeginTran();
  5432. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5433. if (!res)
  5434. {
  5435. _sqlSugar.RollbackTran();
  5436. return Ok(JsonView(false, "删除失败"));
  5437. }
  5438. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5439. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5440. .SetColumns(a => new Grp_CreditCardPayment()
  5441. {
  5442. IsDel = 1,
  5443. DeleteUserId = dto.DeleteUserId,
  5444. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5445. }).ExecuteCommand();
  5446. if (resSub < 1)
  5447. {
  5448. _sqlSugar.RollbackTran();
  5449. return Ok(JsonView(false, "删除失败"));
  5450. }
  5451. _sqlSugar.CommitTran();
  5452. return Ok(JsonView(true, "删除成功!"));
  5453. }
  5454. /// <summary>
  5455. /// 签证费用录入下拉框初始化
  5456. /// </summary>
  5457. /// <returns></returns>
  5458. [HttpPost]
  5459. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5460. public async Task<IActionResult> VisaPriceAddSelect()
  5461. {
  5462. try
  5463. {
  5464. //支付方式
  5465. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5466. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5467. //币种
  5468. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5469. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5470. //乘客类型
  5471. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5472. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5473. //卡类型
  5474. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5475. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5476. var data = new
  5477. {
  5478. Payment = _Payment,
  5479. CurrencyList = _CurrencyList,
  5480. PassengerType = _PassengerType,
  5481. BankCard = _BankCard
  5482. };
  5483. return Ok(JsonView(true, "查询成功!", data));
  5484. }
  5485. catch (Exception ex)
  5486. {
  5487. return Ok(JsonView(false, "程序错误!"));
  5488. throw;
  5489. }
  5490. }
  5491. /// <summary>
  5492. /// 签证费用录入操作(Status:1.新增,2.修改)
  5493. /// </summary>
  5494. /// <param name="dto"></param>
  5495. /// <returns></returns>
  5496. [HttpPost]
  5497. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5498. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5499. {
  5500. try
  5501. {
  5502. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5503. if (groupData.Code != 0)
  5504. {
  5505. return Ok(JsonView(false, groupData.Msg));
  5506. }
  5507. #region 应用推送
  5508. try
  5509. {
  5510. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5511. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5512. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5513. }
  5514. catch (Exception ex)
  5515. {
  5516. }
  5517. #endregion
  5518. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5519. }
  5520. catch (Exception ex)
  5521. {
  5522. return Ok(JsonView(false, ex.Message));
  5523. }
  5524. }
  5525. #endregion
  5526. #region op费用录入
  5527. /// <summary>
  5528. /// 根据diid查询op费用列表
  5529. /// </summary>
  5530. /// <param name="dto"></param>
  5531. /// <returns></returns>
  5532. [HttpPost]
  5533. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5534. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5535. {
  5536. try
  5537. {
  5538. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5539. if (groupData.Code != 0)
  5540. {
  5541. return Ok(JsonView(false, groupData.Msg));
  5542. }
  5543. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5544. }
  5545. catch (Exception ex)
  5546. {
  5547. return Ok(JsonView(false, ex.Message));
  5548. }
  5549. }
  5550. /// <summary>
  5551. /// 根据op费用Id查询单条数据及c表数据
  5552. /// </summary>
  5553. /// <param name="dto"></param>
  5554. /// <returns></returns>
  5555. [HttpPost]
  5556. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5557. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5558. {
  5559. try
  5560. {
  5561. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5562. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5563. var data = new
  5564. {
  5565. CarTouristGuideGround = _groupData,
  5566. CreditCardPayment = _creditCardPayment
  5567. };
  5568. return Ok(JsonView(true, "查询成功!", data));
  5569. }
  5570. catch (Exception ex)
  5571. {
  5572. return Ok(JsonView(false, "程序错误!"));
  5573. }
  5574. }
  5575. /// <summary>
  5576. /// op费用删除
  5577. /// </summary>
  5578. /// <param name="dto"></param>
  5579. /// <returns></returns>
  5580. [HttpPost]
  5581. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5582. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5583. {
  5584. try
  5585. {
  5586. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5587. if (!res)
  5588. {
  5589. return Ok(JsonView(false, "删除失败"));
  5590. }
  5591. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5592. {
  5593. IsDel = 1,
  5594. DeleteUserId = dto.DeleteUserId,
  5595. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5596. }).ExecuteCommandAsync();
  5597. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5598. {
  5599. IsDel = 1,
  5600. DeleteUserId = dto.DeleteUserId,
  5601. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5602. }).ExecuteCommandAsync();
  5603. return Ok(JsonView(true, "删除成功!"));
  5604. }
  5605. catch (Exception ex)
  5606. {
  5607. return Ok(JsonView(false, "程序错误!"));
  5608. throw;
  5609. }
  5610. }
  5611. /// <summary>
  5612. /// op费用录入操作(Status:1.新增,2.修改)
  5613. /// </summary>
  5614. /// <param name="dto"></param>
  5615. /// <returns></returns>
  5616. [HttpPost]
  5617. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5618. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5619. {
  5620. try
  5621. {
  5622. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5623. if (groupData.Code != 0)
  5624. {
  5625. return Ok(JsonView(false, groupData.Msg));
  5626. }
  5627. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5628. }
  5629. catch (Exception ex)
  5630. {
  5631. return Ok(JsonView(false, ex.Message));
  5632. }
  5633. }
  5634. /// <summary>
  5635. /// 填写费用详细页面初始化绑定
  5636. /// </summary>
  5637. /// <param name="dto"></param>
  5638. /// <returns></returns>
  5639. [HttpPost]
  5640. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5641. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5642. {
  5643. try
  5644. {
  5645. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5646. if (groupData.Code != 0)
  5647. {
  5648. return Ok(JsonView(false, groupData.Msg));
  5649. }
  5650. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5651. }
  5652. catch (Exception ex)
  5653. {
  5654. return Ok(JsonView(false, ex.Message));
  5655. }
  5656. }
  5657. /// <summary>
  5658. /// 根据op费用Id查询详细数据
  5659. /// </summary>
  5660. /// <param name="dto"></param>
  5661. /// <returns></returns>
  5662. [HttpPost]
  5663. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5664. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5665. {
  5666. try
  5667. {
  5668. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5669. if (groupData.Code != 0)
  5670. {
  5671. return Ok(JsonView(false, groupData.Msg));
  5672. }
  5673. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5674. }
  5675. catch (Exception ex)
  5676. {
  5677. return Ok(JsonView(false, ex.Message));
  5678. }
  5679. }
  5680. /// <summary>
  5681. /// OP费用录入填写详情
  5682. /// </summary>
  5683. /// <param name="dto"></param>
  5684. /// <returns></returns>
  5685. [HttpPost]
  5686. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5687. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5688. {
  5689. try
  5690. {
  5691. #region 参数校验
  5692. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5693. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5694. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5695. #endregion
  5696. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5697. if (groupData.Code != 0)
  5698. {
  5699. return Ok(JsonView(false, groupData.Msg));
  5700. }
  5701. //自动审核
  5702. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5703. #region 应用推送
  5704. try
  5705. {
  5706. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5707. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5708. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5709. }
  5710. catch (Exception ex)
  5711. {
  5712. }
  5713. #endregion
  5714. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5715. }
  5716. catch (Exception ex)
  5717. {
  5718. return Ok(JsonView(false, ex.Message));
  5719. }
  5720. }
  5721. /// <summary>
  5722. /// 获取三公详细所有城市
  5723. /// </summary>
  5724. /// <returns></returns>
  5725. [HttpGet]
  5726. public IActionResult OpCarCityResult()
  5727. {
  5728. var jw = JsonView(false);
  5729. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5730. {
  5731. x.Id,
  5732. x.Country,
  5733. x.City,
  5734. }).ToList();
  5735. if (data.Count > 0)
  5736. {
  5737. jw = JsonView(true, "获取成功!", data);
  5738. }
  5739. else
  5740. {
  5741. jw.Msg = "城市数据为空!";
  5742. jw.Data = new string[0];
  5743. }
  5744. return Ok(jw);
  5745. }
  5746. /// <summary>
  5747. /// 导出地接费用明细
  5748. /// </summary>
  5749. /// <param name="dto"></param>
  5750. /// <returns></returns>
  5751. [HttpPost]
  5752. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5753. {
  5754. var jw = JsonView(false);
  5755. if (dto.Diid < 1)
  5756. {
  5757. jw.Msg = "请输入正确的diid!";
  5758. return Ok(jw);
  5759. }
  5760. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5761. if (group == null)
  5762. {
  5763. jw.Msg = "未找到团组信息!";
  5764. return Ok(jw);
  5765. }
  5766. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5767. if (localGuideArr.Count == 0)
  5768. {
  5769. jw.Msg = "该团组暂无地接信息!";
  5770. return Ok(jw);
  5771. }
  5772. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5773. var overspendSoure = new Dictionary<int, int>
  5774. {
  5775. { 91, 982 }, //车
  5776. { 92 , 1059} ,//导游
  5777. { 994 , 1073}, //翻译
  5778. { 988 , 1074 }, //早餐
  5779. { 93 , 1075 }, //午餐
  5780. { 989 , 1076 }, //晚餐
  5781. };
  5782. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5783. foreach (var groupArr in localGroup)
  5784. {
  5785. var keyValue = groupArr.Key;
  5786. if (int.TryParse(keyValue, out int cityid))
  5787. {
  5788. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5789. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5790. }
  5791. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5792. foreach (var item in groupArr)
  5793. {
  5794. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5795. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5796. new Grp_CarTouristGuideGroundReservationsContentExtend
  5797. {
  5798. Count = a.Count,
  5799. CreateTime = a.CreateTime,
  5800. CreateUserId = a.CreateUserId,
  5801. CTGGRId = a.CTGGRId,
  5802. Currency = a.Currency,
  5803. DatePrice = a.DatePrice,
  5804. DeleteTime = a.DeleteTime,
  5805. DeleteUserId = a.DeleteUserId,
  5806. DiId = a.DiId,
  5807. Id = a.Id,
  5808. IsDel = a.IsDel,
  5809. Price = a.Price,
  5810. PriceContent = a.PriceContent,
  5811. Remark = a.Remark,
  5812. SId = a.SId,
  5813. SidName = b.Name,
  5814. Units = a.Units,
  5815. }
  5816. ).ToList();
  5817. if (content.Count > 0)
  5818. {
  5819. contentArr.Add(content);
  5820. }
  5821. }
  5822. //open excel
  5823. //set excel
  5824. //save excel
  5825. try
  5826. {
  5827. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5828. IWorkbook workbook;
  5829. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5830. {
  5831. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5832. }
  5833. else
  5834. {
  5835. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5836. }
  5837. ISheet sheet = workbook.GetSheetAt(0);
  5838. var rowStartIndex = 2;
  5839. var clounmCount = 10;
  5840. var initStyleRow = sheet.GetRow(2);
  5841. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5842. //var overspendArrDetail =
  5843. var existsId = new List<CarCompare>();
  5844. var lastElem = arr.Last();
  5845. var thisSid = -1;
  5846. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5847. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5848. {
  5849. Name = "未知币种!",
  5850. Remark = "未知币种!",
  5851. };
  5852. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5853. Action cloneRowFn = () =>
  5854. {
  5855. rowStartIndex++;
  5856. var cloneRow = sheet.CreateRow(rowStartIndex);
  5857. // 复制样式
  5858. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5859. {
  5860. ICell sourceCell = initStyleRow.GetCell(i);
  5861. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5862. // 确保单元格存在样式
  5863. if (sourceCell.CellStyle != null)
  5864. {
  5865. targetCell.CellStyle = sourceCell.CellStyle;
  5866. }
  5867. }
  5868. };
  5869. var mergeRow = () =>
  5870. {
  5871. for (int i = 2; i < sheet.LastRowNum; i++)
  5872. {
  5873. var row = sheet.GetRow(i);
  5874. var cellFirst = row.GetCell(0);
  5875. var thisIndex = i + 1;
  5876. while (thisIndex < sheet.LastRowNum)
  5877. {
  5878. var nextRow = sheet.GetRow(thisIndex);
  5879. var nextCellFirst = nextRow.GetCell(0);
  5880. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5881. {
  5882. thisIndex++;
  5883. }
  5884. else
  5885. {
  5886. break;
  5887. }
  5888. }
  5889. thisIndex--;
  5890. if (thisIndex != i)
  5891. {
  5892. //合并row
  5893. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5894. i, // 起始行索引(0-based)
  5895. thisIndex, // 结束行索引(0-based)
  5896. 0, // 起始列索引(0-based)
  5897. 0 // 结束列索引(0-based)
  5898. );
  5899. sheet.AddMergedRegion(cellRangeAddress);
  5900. i = thisIndex;
  5901. }
  5902. }
  5903. };
  5904. var chaoshiNumber = 0;
  5905. var totalNumber = 0.00M;
  5906. string lastStr = "";
  5907. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5908. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5909. {
  5910. b.IsAuditGM,
  5911. x.Id,
  5912. x.Area,
  5913. b.PayPercentage,
  5914. b.PayMoney,
  5915. }).ToList();
  5916. string yesPayment = "", noPayment = "";
  5917. foreach (var item in queryCarArrByCityAndDiid)
  5918. {
  5919. if (item.IsAuditGM == 1)
  5920. {
  5921. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5922. }
  5923. else
  5924. {
  5925. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5926. }
  5927. }
  5928. lastStr = yesPayment + noPayment;
  5929. foreach (var item in arr)
  5930. {
  5931. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5932. {
  5933. if (thisSid != item.SId)
  5934. {
  5935. if (thisSid == -1)
  5936. {
  5937. thisSid = item.SId;
  5938. }
  5939. else
  5940. {
  5941. //合并小计行
  5942. //创建合并区域的实例
  5943. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5944. rowStartIndex, // 起始行索引(0-based)
  5945. rowStartIndex, // 结束行索引(0-based)
  5946. 0, // 起始列索引(0-based)
  5947. 3 // 结束列索引(0-based)
  5948. );
  5949. sheet.AddMergedRegion(cellRangeAddress);
  5950. var CellStyle = workbook.CreateCellStyle();
  5951. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5952. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5953. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5954. for (int i = 0; i <= clounmCount; i++)
  5955. {
  5956. if (i > 6)
  5957. {
  5958. var CellStyle1 = workbook.CreateCellStyle();
  5959. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5960. IFont Font = workbook.CreateFont(); // 创建字体
  5961. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5962. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5963. CellStyle1.SetFont(Font);
  5964. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5965. }
  5966. else
  5967. {
  5968. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5969. }
  5970. }
  5971. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5972. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5973. //超时合计
  5974. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5975. //超时数
  5976. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5977. //超时合计费用
  5978. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5979. thisSid = item.SId;
  5980. cloneRowFn();
  5981. chaoshiNumber = 0;
  5982. totalNumber = 0;
  5983. }
  5984. }
  5985. IRow row = sheet.GetRow(rowStartIndex);
  5986. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5987. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5988. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5989. if (isOpenOverspendSoure)
  5990. {
  5991. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5992. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5993. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5994. }
  5995. for (int i = 0; i <= clounmCount; i++)
  5996. {
  5997. var cell = row.GetCell(i);
  5998. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5999. if (cell == null)
  6000. {
  6001. cell = row.CreateCell(i);
  6002. }
  6003. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  6004. fontRed.CloneStyleFrom(cell.CellStyle);
  6005. IFont Font = workbook.CreateFont(); // 创建字体
  6006. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  6007. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6008. fontRed.SetFont(Font);
  6009. byte[] rgb = new byte[3] { 255, 242, 204 };
  6010. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  6011. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  6012. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  6013. if (workbook is XSSFWorkbook)
  6014. {
  6015. BackgroundColor255_242_204.FillForegroundColor = 0;
  6016. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  6017. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  6018. }
  6019. else
  6020. {
  6021. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  6022. }
  6023. if (i == 1 || i > 6)
  6024. {
  6025. if (i > 6)
  6026. {
  6027. fontRed.FillForegroundColor = 0;
  6028. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  6029. fontRed.FillPattern = FillPattern.SolidForeground;
  6030. }
  6031. cell.CellStyle = fontRed;
  6032. }
  6033. if (i > 2 && i < 7)
  6034. {
  6035. cell.CellStyle = BackgroundColor255_242_204;
  6036. }
  6037. cell.SetCellValue(setCellValue); //写入单元格
  6038. }
  6039. if (overspendSoure.ContainsKey(thisSid))
  6040. {
  6041. var overspendId = overspendSoure[thisSid];
  6042. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6043. }
  6044. cloneRowFn();
  6045. existsId.Add(new CarCompare
  6046. {
  6047. DataPrice = item.DatePrice.ObjToDate(),
  6048. Sid = item.SId
  6049. });
  6050. }
  6051. if (item.Equals(lastElem))
  6052. {
  6053. //合并小计行
  6054. //创建合并区域的实例
  6055. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6056. rowStartIndex, // 起始行索引(0-based)
  6057. rowStartIndex, // 结束行索引(0-based)
  6058. 0, // 起始列索引(0-based)
  6059. 3 // 结束列索引(0-based)
  6060. );
  6061. sheet.AddMergedRegion(cellRangeAddress);
  6062. var CellStyle = workbook.CreateCellStyle();
  6063. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6064. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  6065. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  6066. for (int i = 0; i <= clounmCount; i++)
  6067. {
  6068. if (i > 6)
  6069. {
  6070. var CellStyle1 = workbook.CreateCellStyle();
  6071. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6072. IFont Font = workbook.CreateFont(); // 创建字体
  6073. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  6074. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6075. CellStyle1.SetFont(Font);
  6076. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  6077. }
  6078. else
  6079. {
  6080. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6081. }
  6082. }
  6083. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6084. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6085. //超时合计
  6086. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6087. //超时数
  6088. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6089. //超时合计费用
  6090. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6091. cloneRowFn();
  6092. // 创建合并区域的实例
  6093. cellRangeAddress = new CellRangeAddress(
  6094. rowStartIndex, // 起始行索引(0-based)
  6095. rowStartIndex, // 结束行索引(0-based)
  6096. 0, // 起始列索引(0-based)
  6097. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  6098. );
  6099. // 添加合并区域
  6100. sheet.AddMergedRegion(cellRangeAddress);
  6101. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  6102. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  6103. }
  6104. }
  6105. mergeRow();
  6106. // 保存修改后的Excel文件到新文件
  6107. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  6108. // new FileStream(newFilePath, FileMode.CreateNew)
  6109. using (var stream = new MemoryStream())
  6110. {
  6111. workbook.Write(stream, true);
  6112. stream.Flush();
  6113. stream.Seek(0, SeekOrigin.Begin);
  6114. MemoryStream memoryStream = new MemoryStream();
  6115. stream.CopyTo(memoryStream);
  6116. memoryStream.Seek(0, SeekOrigin.Begin);
  6117. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  6118. }
  6119. workbook.Close();
  6120. workbook.Dispose();
  6121. }
  6122. catch (Exception ex)
  6123. {
  6124. jw.Msg = "出现异常!" + ex.Message;
  6125. return Ok(jw);
  6126. }
  6127. }
  6128. if (Zips.Count > 0)
  6129. {
  6130. IOOperatorHelper io = new IOOperatorHelper();
  6131. var byts = io.ConvertZipStream(Zips);
  6132. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  6133. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  6134. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  6135. }
  6136. else
  6137. {
  6138. jw.Msg = "暂无生成文件!";
  6139. }
  6140. return Ok(jw);
  6141. }
  6142. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  6143. {
  6144. string outStr = string.Empty;
  6145. switch (i)
  6146. {
  6147. case 0:
  6148. outStr = arr[0].SidName;
  6149. break;
  6150. case 1:
  6151. outStr = arr[0].DataPriceStr;
  6152. break;
  6153. case 2:
  6154. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  6155. break;
  6156. case 4:
  6157. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  6158. break;
  6159. case 7:
  6160. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6161. {
  6162. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  6163. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  6164. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  6165. }
  6166. break;
  6167. case 8:
  6168. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6169. {
  6170. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  6171. }
  6172. break;
  6173. case 9:
  6174. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6175. {
  6176. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  6177. }
  6178. break;
  6179. case 10:
  6180. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6181. {
  6182. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6183. }
  6184. break;
  6185. }
  6186. return outStr;
  6187. }
  6188. #region OP行程单
  6189. /// <summary>
  6190. /// OP行程单初始化
  6191. /// </summary>
  6192. /// <param name="dto"></param>
  6193. /// <returns></returns>
  6194. [HttpPost]
  6195. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6196. {
  6197. var jw = JsonView(false);
  6198. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6199. var group = groupList.First();
  6200. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6201. if (group == null)
  6202. {
  6203. jw.Msg = "暂无团组!";
  6204. return Ok(jw);
  6205. }
  6206. group = groupList.Find(x => x.Id == diid);
  6207. if (group == null)
  6208. {
  6209. jw.Msg = "请输入正确的团组ID!";
  6210. return Ok(jw);
  6211. }
  6212. string city = string.Empty;
  6213. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6214. if (blackCode.Count > 0)
  6215. {
  6216. var black = blackCode.First();
  6217. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6218. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6219. if (blackSp.Length > 0)
  6220. {
  6221. try
  6222. {
  6223. var cityArrCode = new List<string>(20);
  6224. foreach (var item in blackSp)
  6225. {
  6226. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6227. var IndexSelect = itemSp[2];
  6228. var cityArrCodeLength = cityArrCode.Count - 1;
  6229. var startCity = IndexSelect.Substring(0, 3);
  6230. if (cityArrCodeLength > 0)
  6231. {
  6232. var arrEndCity = cityArrCode[cityArrCodeLength];
  6233. if (arrEndCity != startCity)
  6234. {
  6235. cityArrCode.Add(startCity.ToUpper());
  6236. }
  6237. }
  6238. else
  6239. {
  6240. cityArrCode.Add(startCity.ToUpper());
  6241. }
  6242. var endCity = IndexSelect.Substring(3, 3);
  6243. cityArrCode.Add(endCity.ToUpper());
  6244. }
  6245. var cityThree = string.Empty;
  6246. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6247. cityThree = cityThree.TrimEnd(',');
  6248. if (string.IsNullOrWhiteSpace(cityThree))
  6249. {
  6250. throw new
  6251. Exception("error");
  6252. }
  6253. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6254. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6255. foreach (var item in cityArrCode)
  6256. {
  6257. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6258. if (find != null)
  6259. {
  6260. city += find.City + "/";
  6261. }
  6262. else
  6263. {
  6264. city += item + "三字码未收入/";
  6265. }
  6266. }
  6267. city = city.TrimEnd('/');
  6268. }
  6269. catch (Exception e)
  6270. {
  6271. city = "黑屏代码格式不正确!";
  6272. }
  6273. }
  6274. }
  6275. else
  6276. {
  6277. city = "未录入黑屏代码";
  6278. }
  6279. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6280. {
  6281. Date = x.Date,
  6282. Days = x.Days,
  6283. Diffgroup = x.Diffgroup,
  6284. Diid = x.Diid,
  6285. Traffic_First = x.Traffic_First,
  6286. Traffic_Second = x.Traffic_Second,
  6287. Trip = x.Trip,
  6288. WeekDay = x.WeekDay,
  6289. Id = x.Id
  6290. }).ToList();
  6291. jw.Data = new
  6292. {
  6293. groupList = groupList.Select(x => new
  6294. {
  6295. x.Id,
  6296. x.TeamName,
  6297. x.TourCode
  6298. }).ToList(),
  6299. groupInfo = new
  6300. {
  6301. group.VisitDays,
  6302. group.TourCode,
  6303. group.VisitPNumber,
  6304. group.TeamName,
  6305. city
  6306. },
  6307. OpTravelList
  6308. };
  6309. jw.Code = 200;
  6310. jw.Msg = "操作成功!";
  6311. return Ok(jw);
  6312. }
  6313. /// <summary>
  6314. /// 删除团组行程单
  6315. /// </summary>
  6316. /// <returns></returns>
  6317. [HttpPost]
  6318. public IActionResult DelTravel(DelOpTravelDto dto)
  6319. {
  6320. var jw = JsonView(false);
  6321. if (dto.UserId <= 0 || dto.Diid <= 0)
  6322. {
  6323. jw.Msg = "请输入正确的参数!";
  6324. return Ok(jw);
  6325. }
  6326. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6327. .SetColumns(x => new Grp_TravelList
  6328. {
  6329. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6330. DeleteUserId = dto.UserId,
  6331. IsDel = 1,
  6332. }).ExecuteCommand();
  6333. jw = JsonView(true);
  6334. return Ok(jw);
  6335. }
  6336. /// <summary>
  6337. /// 行程单保存
  6338. /// </summary>
  6339. /// <returns></returns>
  6340. [HttpPost]
  6341. public IActionResult TravelSave(TravelSaveDto dto)
  6342. {
  6343. var jw = JsonView(false);
  6344. if (dto.Arr.Count > 0)
  6345. {
  6346. try
  6347. {
  6348. _sqlSugar.BeginTran();
  6349. foreach (var item in dto.Arr)
  6350. {
  6351. if (item.Id == 0)
  6352. {
  6353. throw new Exception("请传入正确的Id");
  6354. }
  6355. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6356. .SetColumns(x => new Grp_TravelList
  6357. {
  6358. Trip = item.Trip
  6359. }).ExecuteCommand();
  6360. }
  6361. _sqlSugar.CommitTran();
  6362. jw = JsonView(true);
  6363. }
  6364. catch (Exception ex)
  6365. {
  6366. _sqlSugar.RollbackTran();
  6367. jw.Msg = "程序异常!" + ex.Message;
  6368. }
  6369. }
  6370. else
  6371. {
  6372. jw.Msg = "请传入正确的参数!";
  6373. }
  6374. return Ok(jw);
  6375. }
  6376. /// <summary>
  6377. /// 导出行程单
  6378. /// </summary>
  6379. /// <param name="dto"></param>
  6380. /// <returns></returns>
  6381. [HttpPost]
  6382. public IActionResult ExportTravel(ExportTravelDto dto)
  6383. {
  6384. var jw = JsonView(false);
  6385. jw.Data = "";
  6386. int diid = 0;
  6387. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6388. if (Find == null)
  6389. {
  6390. jw.Msg = "请选择正确的团组!";
  6391. return Ok(jw);
  6392. }
  6393. else
  6394. {
  6395. diid = Find.Id;
  6396. }
  6397. //数据源
  6398. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6399. DataTable dtBlack = null;
  6400. try
  6401. {
  6402. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6403. }
  6404. catch (Exception)
  6405. {
  6406. jw.Msg = "机票黑屏代码有误!";
  6407. return Ok(jw);
  6408. }
  6409. string CityStr = string.Empty;
  6410. if (dtBlack.Rows.Count == 0)
  6411. {
  6412. jw.Msg = "机票黑屏代码有误!";
  6413. return Ok(jw);
  6414. }
  6415. else
  6416. {
  6417. foreach (DataRow row in dtBlack.Rows)
  6418. {
  6419. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6420. {
  6421. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6422. return Ok(jw);
  6423. }
  6424. }
  6425. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6426. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6427. }
  6428. //创建数据源Table
  6429. DataTable dtSource = new DataTable();
  6430. dtSource.Columns.Add("Days", typeof(string));
  6431. dtSource.Columns.Add("Date", typeof(string));
  6432. dtSource.Columns.Add("Week", typeof(string));
  6433. dtSource.Columns.Add("Traffic", typeof(string));
  6434. dtSource.Columns.Add("Trip", typeof(string));
  6435. //获取数据,放到datatable
  6436. foreach (var item in _travelList)
  6437. {
  6438. DataRow dr = dtSource.NewRow();
  6439. dr["Days"] = item.Days;
  6440. dr["Date"] = item.Date;
  6441. dr["Week"] = item.WeekDay;
  6442. dr["Traffic"] = item.Traffic_First
  6443. + "\r\n"
  6444. + item.Traffic_Second;
  6445. dr["Trip"] = item.Trip;
  6446. dtSource.Rows.Add(dr);
  6447. }
  6448. Dictionary<string, string> dic = new Dictionary<string, string>();
  6449. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6450. dic.Add("City", CityStr);
  6451. dic.Add("Days", Find.VisitDays.ToString());
  6452. dic.Add("DeleCode", Find.TourCode);
  6453. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6454. //模板路径
  6455. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6456. //载入模板
  6457. Document doc = null;
  6458. DocumentBuilder builder = null;
  6459. try
  6460. {
  6461. //载入模板
  6462. doc = new Document(tempPath);
  6463. builder = new DocumentBuilder(doc);
  6464. }
  6465. catch (Exception)
  6466. {
  6467. jw.Msg = "模板位置不存在!";
  6468. return Ok(jw);
  6469. }
  6470. foreach (var key in dic.Keys)
  6471. {
  6472. Bookmark bookmark = doc.Range.Bookmarks[key];
  6473. if (bookmark != null)
  6474. {
  6475. builder.MoveToBookmark(key);
  6476. builder.Write(dic[key]);
  6477. }
  6478. }
  6479. //获取word里所有表格
  6480. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6481. //获取所填表格的序数
  6482. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6483. try
  6484. {
  6485. //循环赋值
  6486. for (int i = 0; i < dtSource.Rows.Count; i++)
  6487. {
  6488. builder.MoveToCell(0, i + 1, 0, 0);
  6489. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6490. builder.MoveToCell(0, i + 1, 1, 0);
  6491. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6492. builder.MoveToCell(0, i + 1, 2, 0);
  6493. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6494. var trip = dtSource.Rows[i]["Trip"].ToString();
  6495. builder.MoveToCell(0, i + 1, 3, 0);
  6496. builder.Write(trip);
  6497. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6498. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6499. // 获取特定索引的段落
  6500. Paragraph paragraph = (Paragraph)paragraphs[0];
  6501. Run run = paragraph.Runs[0];
  6502. Aspose.Words.Font font = run.Font;
  6503. font.Name = "黑体";
  6504. //设置双休红色
  6505. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6506. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6507. paragraph = (Paragraph)paragraphs[1];
  6508. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6509. {
  6510. run = paragraph.Runs[0];
  6511. font = run.Font;
  6512. font.Color = Color.Red;
  6513. }
  6514. }
  6515. }
  6516. catch (Exception ex)
  6517. {
  6518. }
  6519. //删除多余行
  6520. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6521. {
  6522. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6523. }
  6524. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6525. if (!Directory.Exists(savePath))
  6526. {
  6527. try
  6528. {
  6529. Directory.CreateDirectory(savePath);
  6530. }
  6531. catch
  6532. {
  6533. }
  6534. }
  6535. string path = savePath + Find.TeamName + "出访日程";
  6536. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6537. try
  6538. {
  6539. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6540. string postfix = ".docx";
  6541. if (dto.IsPDF == 1)
  6542. {
  6543. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6544. postfix = ".pdf";
  6545. }
  6546. doc.Save(path + postfix, saveFormat);
  6547. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6548. }
  6549. catch (Exception)
  6550. {
  6551. jw = JsonView(false);
  6552. }
  6553. return Ok(jw);
  6554. }
  6555. /// <summary>
  6556. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6557. /// </summary>
  6558. /// <param name="num"></param>
  6559. /// <returns></returns>
  6560. string GetNum(string num)
  6561. {
  6562. string str = "";
  6563. switch (num)
  6564. {
  6565. case "1":
  6566. str = "一";
  6567. break;
  6568. case "2":
  6569. str = "二";
  6570. break;
  6571. case "3":
  6572. str = "三";
  6573. break;
  6574. case "4":
  6575. str = "四";
  6576. break;
  6577. case "5":
  6578. str = "五";
  6579. break;
  6580. case "6":
  6581. str = "六";
  6582. break;
  6583. case "7":
  6584. str = "七";
  6585. break;
  6586. case "8":
  6587. str = "八";
  6588. break;
  6589. case "9":
  6590. str = "九";
  6591. break;
  6592. case "10":
  6593. str = "十";
  6594. break;
  6595. case "11":
  6596. str = "十一";
  6597. break;
  6598. case "12":
  6599. str = "十二";
  6600. break;
  6601. case "一":
  6602. str = "1";
  6603. break;
  6604. case "二":
  6605. str = "2";
  6606. break;
  6607. case "三":
  6608. str = "3";
  6609. break;
  6610. case "四":
  6611. str = "4";
  6612. break;
  6613. case "五":
  6614. str = "5";
  6615. break;
  6616. case "六":
  6617. str = "6";
  6618. break;
  6619. case "七":
  6620. str = "7";
  6621. break;
  6622. case "八":
  6623. str = "8";
  6624. break;
  6625. case "九":
  6626. str = "9";
  6627. break;
  6628. case "十":
  6629. str = "10";
  6630. break;
  6631. case "十一":
  6632. str = "11";
  6633. break;
  6634. case "十二":
  6635. str = "12";
  6636. break;
  6637. }
  6638. return str;
  6639. }
  6640. #endregion
  6641. #endregion
  6642. #region 团组成本
  6643. /// <summary>
  6644. /// 团组成本数据初始化
  6645. /// </summary>
  6646. /// <param name="dto"></param>
  6647. /// <returns></returns>
  6648. [HttpPost]
  6649. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6650. {
  6651. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6652. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6653. WHEN COUNT(*) >= 0 THEN 'True'
  6654. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6655. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6656. ").ToList(); //团组列表
  6657. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6658. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6659. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6660. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6661. if (groupinfoValue != null)
  6662. {
  6663. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6664. var spArr = new string[1] { countryArr };
  6665. if (countryArr.Contains("|"))
  6666. {
  6667. spArr = countryArr.Split("|");
  6668. }
  6669. else if (countryArr.Contains("、"))
  6670. {
  6671. spArr = countryArr.Split("、");
  6672. }
  6673. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6674. {
  6675. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6676. if (dbQueryCountry != null)
  6677. {
  6678. visaCountryInfoArr.Add(dbQueryCountry);
  6679. }
  6680. }
  6681. }
  6682. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6683. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6684. var create = _GroupCostRepository.
  6685. CreateGroupCostByBlackCode(dto.Diid);
  6686. if (groupCost.Count == 0 && create.Code == 0)
  6687. {
  6688. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6689. }
  6690. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6691. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6692. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6693. groupCostMap = groupCostMap.Select(x =>
  6694. {
  6695. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6696. {
  6697. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6698. }
  6699. return x;
  6700. }).ToList();
  6701. //GroupCostParameter.Add(new
  6702. // Grp_GroupCostParameter());
  6703. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6704. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6705. return Ok(JsonView(new
  6706. {
  6707. groupList,
  6708. groupInfo,
  6709. groupChecks,
  6710. groupCost = groupCostMap,
  6711. hotelNumber,
  6712. GroupCostParameter = GroupCostParameterMap,
  6713. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6714. {
  6715. x.VisaCountry,
  6716. x.VisaPrice,
  6717. x.Id,
  6718. }).ToList(),
  6719. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6720. blackCodeIsTrue = create.Code == 0 ? true : false,
  6721. hotelIsTrue = hotelIsTrue,
  6722. }));
  6723. }
  6724. /// <summary>
  6725. /// 团组成本信息保存
  6726. /// </summary>
  6727. /// <param name="dto"></param>
  6728. /// <returns></returns>
  6729. [HttpPost]
  6730. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6731. {
  6732. if (dto.Diid <= 0 || dto.Userid <= 0)
  6733. {
  6734. return Ok(JsonView(false));
  6735. }
  6736. JsonView jw = null;
  6737. bool isTrue = false;
  6738. #region 复制团组成本
  6739. //if (dto.Diid == 2581)
  6740. //{
  6741. // dto.Diid = 2599;
  6742. // dto.CheckBoxs.ForEach(x =>
  6743. // {
  6744. // x.Diid = 2599;
  6745. // });
  6746. // dto.GroupCosts.ForEach(x =>
  6747. // {
  6748. // x.Diid = 2599;
  6749. // });
  6750. // dto.CostTypeHotelNumbers.ForEach(x =>
  6751. // {
  6752. // x.Diid = 2599;
  6753. // });
  6754. // dto.GroupCostParameters.ForEach(x =>
  6755. // {
  6756. // x.DiId = 2599;
  6757. // });
  6758. //}
  6759. #endregion
  6760. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6761. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6762. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6763. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6764. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6765. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6766. try
  6767. {
  6768. _sqlSugar.BeginTran();
  6769. isTrue = await _GroupCostRepository.
  6770. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6771. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6772. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6773. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6774. _sqlSugar.CommitTran();
  6775. jw = JsonView(true, "保存成功!", isTrue);
  6776. }
  6777. catch (Exception)
  6778. {
  6779. _sqlSugar.RollbackTran();
  6780. jw = JsonView(false);
  6781. }
  6782. return Ok(jw);
  6783. }
  6784. /// <summary>
  6785. /// 司兼导数据
  6786. /// </summary>
  6787. /// <param name="dto"></param>
  6788. /// <returns></returns>
  6789. [HttpPost]
  6790. public IActionResult GetCarGuides(CarGuidesDto dto)
  6791. {
  6792. JsonView jw = null;
  6793. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6794. jw = JsonView(true, "获取成功!", Data);
  6795. return Ok(jw);
  6796. }
  6797. /// <summary>
  6798. /// 导游数据
  6799. /// </summary>
  6800. /// <param name="dto"></param>
  6801. /// <returns></returns>
  6802. [HttpPost]
  6803. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6804. {
  6805. JsonView jw = null;
  6806. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6807. // 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
  6808. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6809. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6810. jw = JsonView(true, "获取成功!", Data);
  6811. return Ok(jw);
  6812. }
  6813. /// <summary>
  6814. /// 成本车数据
  6815. /// </summary>
  6816. /// <param name="dto"></param>
  6817. /// <returns></returns>
  6818. [HttpPost]
  6819. public IActionResult GetCarInfo(CarGuidesDto dto)
  6820. {
  6821. JsonView jw = null;
  6822. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6823. jw = JsonView(true, "获取成功!", Data);
  6824. return Ok(jw);
  6825. }
  6826. /// <summary>
  6827. /// 景点数据
  6828. /// </summary>
  6829. /// <param name="dto"></param>
  6830. /// <returns></returns>
  6831. [HttpPost]
  6832. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6833. {
  6834. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6835. return Ok(JsonView(true, "获取成功!", Data));
  6836. }
  6837. /// <summary>
  6838. /// 成本通知
  6839. /// </summary>
  6840. /// <param name="dto"></param>
  6841. /// <returns></returns>
  6842. [HttpPost]
  6843. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6844. {
  6845. if (dto.Diid < 0)
  6846. {
  6847. return Ok(JsonView(false));
  6848. }
  6849. JsonView jw = null;
  6850. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6851. if (GroupCostParameter != null)
  6852. {
  6853. int IsShare = 0;
  6854. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6855. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6856. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6857. string msg = string.Empty;
  6858. if (isTrue)
  6859. {
  6860. if (IsShare == 0)
  6861. {
  6862. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6863. }
  6864. else
  6865. {
  6866. #region 企微通知对应岗位用户
  6867. try
  6868. {
  6869. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6870. }
  6871. catch (Exception ex)
  6872. {
  6873. }
  6874. #endregion
  6875. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6876. }
  6877. jw = JsonView(isTrue, msg, new { IsShare });
  6878. }
  6879. else
  6880. {
  6881. msg = "修改失败!";
  6882. jw = JsonView(isTrue, msg);
  6883. }
  6884. }
  6885. else
  6886. {
  6887. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6888. }
  6889. return Ok(jw);
  6890. }
  6891. /// <summary>
  6892. /// 导出报价单
  6893. /// </summary>
  6894. /// <param name="dto"></param>
  6895. /// <returns></returns>
  6896. [HttpPost]
  6897. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6898. {
  6899. if (dto.Diid == 0)
  6900. {
  6901. return Ok(JsonView(false, "请传递团组id"));
  6902. }
  6903. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6904. if (deleInfo.Code != 0)
  6905. {
  6906. return Ok(JsonView(false, "团组信息查询失败!"));
  6907. }
  6908. var di = deleInfo.Data as DelegationInfoWebView;
  6909. if (di != null)
  6910. {
  6911. //文件名
  6912. string strFileName = di.TeamName + "-收款账单.doc";
  6913. //获取模板
  6914. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6915. //载入模板
  6916. Document doc = new Document(tmppath);
  6917. decimal TotalPrice = 0.00M;
  6918. string itemStr = string.Empty;
  6919. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6920. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6921. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6922. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6923. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6924. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6925. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6926. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6927. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6928. foreach (var cost in groupCostType)
  6929. {
  6930. var List = cost.ToList();
  6931. if (cost.Key == "A")
  6932. {
  6933. foreach (var ListItem in List)
  6934. {
  6935. if (ListItem.number > 0)
  6936. {
  6937. if (ListItem.code.Contains("TBR"))
  6938. {
  6939. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6940. }
  6941. else
  6942. {
  6943. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6944. }
  6945. TotalPrice += (ListItem.number * ListItem.price);
  6946. }
  6947. }
  6948. }
  6949. else
  6950. {
  6951. itemStr = itemStr.Insert(0, "A段\r\n");
  6952. itemStr += "B段\r\n";
  6953. foreach (var ListItem in List)
  6954. {
  6955. if (ListItem.number > 0)
  6956. {
  6957. if (ListItem.code.Contains("TBR"))
  6958. {
  6959. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6960. }
  6961. else
  6962. {
  6963. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6964. }
  6965. TotalPrice += (ListItem.number * ListItem.price);
  6966. }
  6967. }
  6968. }
  6969. }
  6970. #region 替换Word模板书签内容
  6971. Dictionary<string, string> marks = new Dictionary<string, string>();
  6972. marks.Add("To", di.ClientUnit);//付款方
  6973. marks.Add("ToTel", di.TellPhone);//付款方电话
  6974. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6975. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6976. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6977. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6978. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6979. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6980. marks.Add("PayItemContent", itemStr);//详细信息
  6981. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6982. #endregion
  6983. ////注
  6984. //if (doc.Range.Bookmarks["Attention"] != null)
  6985. //{
  6986. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6987. // mark.Text = frList[0].Attention;
  6988. //}
  6989. foreach (var item in marks.Keys)
  6990. {
  6991. if (doc.Range.Bookmarks[item] != null)
  6992. {
  6993. Bookmark mark = doc.Range.Bookmarks[item];
  6994. mark.Text = marks[item];
  6995. }
  6996. }
  6997. byte[] bytes = null;
  6998. using (MemoryStream stream = new MemoryStream())
  6999. {
  7000. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7001. bytes = stream.ToArray();
  7002. }
  7003. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  7004. return Ok(JsonView(true, "", new
  7005. {
  7006. Data = bytes,
  7007. strFileName,
  7008. }));
  7009. }
  7010. else
  7011. {
  7012. return Ok(JsonView(false, "团组信息不存在!"));
  7013. }
  7014. }
  7015. /// <summary>
  7016. /// 导出团组成本
  7017. /// </summary>
  7018. /// <param name="dto"></param>
  7019. /// <returns></returns>
  7020. [HttpPost]
  7021. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  7022. {
  7023. var jw = JsonView(false);
  7024. if (dto.Diid == 0)
  7025. {
  7026. return Ok(JsonView(false, "请传递团组id"));
  7027. }
  7028. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7029. if (deleInfo.Code != 0)
  7030. {
  7031. return Ok(JsonView(false, "团组信息查询失败!"));
  7032. }
  7033. var di = deleInfo.Data as DelegationInfoWebView;
  7034. if (di == null)
  7035. {
  7036. return Ok(JsonView(false, "团组信息查询失败!"));
  7037. }
  7038. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  7039. WorkbookDesigner designer = new WorkbookDesigner();
  7040. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  7041. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  7042. for (int i = 0; i < List_GC.Count; i++)
  7043. {
  7044. GroupCost_Excel gc = new GroupCost_Excel();
  7045. gc.Id = List_GC[i].Id;
  7046. gc.Diid = List_GC[i].Diid.ToString();
  7047. gc.DAY = List_GC[i].DAY;
  7048. string week = "";
  7049. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  7050. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  7051. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  7052. gc.ITIN = List_GC[i].ITIN;
  7053. gc.CarType = List_GC[i].CarType;
  7054. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  7055. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  7056. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  7057. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  7058. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  7059. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  7060. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  7061. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  7062. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  7063. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  7064. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  7065. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  7066. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7067. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7068. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  7069. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  7070. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  7071. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  7072. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  7073. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  7074. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  7075. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  7076. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  7077. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  7078. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  7079. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  7080. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  7081. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  7082. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  7083. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  7084. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  7085. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  7086. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  7087. List_GC1.Add(gc);
  7088. }
  7089. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  7090. dt.TableName = "TB";
  7091. //报表标题等不用dt的值
  7092. designer.SetDataSource("TeamName", dto.title.TeamName);
  7093. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  7094. designer.SetDataSource("Tax", dto.title.Tax);
  7095. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  7096. designer.SetDataSource("Currency", dto.title.Currency);
  7097. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  7098. designer.SetDataSource("Rate", dto.title.Rate);
  7099. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  7100. var Aparams = hotels.Find(x => x.Type == "Default");
  7101. if (Aparams == null)
  7102. {
  7103. return Ok(jw);
  7104. }
  7105. //酒店数量
  7106. var txtSGRNumber = Aparams.SGR.ToString();
  7107. var txtTBRNumber = Aparams.TBR.ToString();
  7108. var txtJSESNumber = Aparams.JSES.ToString();
  7109. var txtSUITENumbe = Aparams.SUITE.ToString();
  7110. if (dto.costType == "B")
  7111. {
  7112. Aparams = hotels.Find(x => x.Type == "A");
  7113. var Bparams = hotels.Find(x => x.Type == "B");
  7114. if (Aparams == null || Bparams == null)
  7115. {
  7116. return Ok(jw);
  7117. }
  7118. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  7119. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  7120. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  7121. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  7122. }
  7123. designer.SetDataSource("SGRNumber", txtSGRNumber);
  7124. designer.SetDataSource("TBRNumber", txtTBRNumber);
  7125. designer.SetDataSource("JSESNumber", txtJSESNumber);
  7126. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  7127. var ws = designer.Workbook.Worksheets[0];
  7128. int Row = List_GC.Count;
  7129. int startIndex = 11;
  7130. int HideRows = 0;
  7131. List<int> hideRowsList = new List<int>();
  7132. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  7133. #region A段left数据
  7134. var left = dto.leftInfo.Find(x => x.Type == "A");
  7135. if (left == null)
  7136. {
  7137. return Ok(jw);
  7138. }
  7139. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  7140. if (leftBindData != null)
  7141. {
  7142. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  7143. designer.SetDataSource("VisaRS", leftBindData.rs);
  7144. designer.SetDataSource("VisaXS", leftBindData.xs);
  7145. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7146. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7147. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7148. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7149. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7150. }
  7151. else
  7152. {
  7153. hideRowsList.Add(Row + startIndex + HideRows);
  7154. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7155. }
  7156. HideRows += 2;
  7157. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  7158. if (leftBindData != null)
  7159. {
  7160. designer.SetDataSource("BXDRCB", leftBindData.cb);
  7161. designer.SetDataSource("BXRS", leftBindData.rs);
  7162. designer.SetDataSource("BXXS", leftBindData.xs);
  7163. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7164. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7165. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7166. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7167. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7168. }
  7169. else
  7170. {
  7171. hideRowsList.Add(Row + startIndex + HideRows);
  7172. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7173. }
  7174. HideRows += 2;
  7175. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7176. if (leftBindData != null)
  7177. {
  7178. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7179. designer.SetDataSource("HSRS", leftBindData.rs);
  7180. designer.SetDataSource("HSXS", leftBindData.xs);
  7181. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7182. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7183. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7184. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7185. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7186. }
  7187. else
  7188. {
  7189. hideRowsList.Add(Row + startIndex + HideRows);
  7190. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7191. }
  7192. HideRows += 2;
  7193. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7194. if (leftBindData != null)
  7195. {
  7196. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7197. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7198. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7199. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7200. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7201. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7202. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7203. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7204. }
  7205. else
  7206. {
  7207. hideRowsList.Add(Row + startIndex + HideRows);
  7208. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7209. }
  7210. HideRows += 2;
  7211. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7212. if (leftBindData != null)
  7213. {
  7214. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7215. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7216. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7217. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7218. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7219. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7220. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7221. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7222. }
  7223. else
  7224. {
  7225. hideRowsList.Add(Row + startIndex + HideRows);
  7226. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7227. }
  7228. HideRows += 2;
  7229. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7230. if (leftBindData != null)
  7231. {
  7232. ////TBR
  7233. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7234. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7235. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7236. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7237. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7238. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7239. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7240. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7241. }
  7242. else
  7243. {
  7244. hideRowsList.Add(Row + startIndex + HideRows);
  7245. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7246. }
  7247. HideRows += 2;
  7248. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7249. if (leftBindData != null)
  7250. {
  7251. ////SGR
  7252. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7253. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7254. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7255. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7256. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7257. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7258. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7259. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7260. }
  7261. else
  7262. {
  7263. hideRowsList.Add(Row + startIndex + HideRows);
  7264. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7265. }
  7266. HideRows += 2;
  7267. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7268. if (leftBindData != null)
  7269. {
  7270. ////JS/ES
  7271. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7272. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7273. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7274. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7275. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7276. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7277. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7278. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7279. }
  7280. else
  7281. {
  7282. hideRowsList.Add(Row + startIndex + HideRows);
  7283. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7284. }
  7285. HideRows += 2;
  7286. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7287. if (leftBindData != null)
  7288. {
  7289. ////SUITE
  7290. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7291. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7292. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7293. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7294. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7295. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7296. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7297. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7298. }
  7299. else
  7300. {
  7301. hideRowsList.Add(Row + startIndex + HideRows);
  7302. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7303. }
  7304. HideRows += 2;
  7305. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7306. if (leftBindData != null)
  7307. {
  7308. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7309. designer.SetDataSource("DJRS", leftBindData.rs);
  7310. designer.SetDataSource("DJXS", leftBindData.xs);
  7311. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7312. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7313. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7314. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7315. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7316. }
  7317. else
  7318. {
  7319. hideRowsList.Add(Row + startIndex + HideRows);
  7320. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7321. }
  7322. HideRows += 2;
  7323. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7324. if (leftBindData != null)
  7325. {
  7326. designer.SetDataSource("HCPCB", leftBindData.cb);
  7327. designer.SetDataSource("HCPRS", leftBindData.rs);
  7328. designer.SetDataSource("HCPXS", leftBindData.xs);
  7329. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7330. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7331. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7332. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7333. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7334. }
  7335. else
  7336. {
  7337. hideRowsList.Add(Row + startIndex + HideRows);
  7338. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7339. }
  7340. HideRows += 2;
  7341. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7342. if (leftBindData != null)
  7343. {
  7344. designer.SetDataSource("CPCB", leftBindData.cb);
  7345. designer.SetDataSource("CPRS", leftBindData.rs);
  7346. designer.SetDataSource("CPXS", leftBindData.xs);
  7347. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7348. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7349. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7350. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7351. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7352. }
  7353. else
  7354. {
  7355. hideRowsList.Add(Row + startIndex + HideRows);
  7356. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7357. }
  7358. HideRows += 2;
  7359. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7360. if (leftBindData != null)
  7361. {
  7362. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7363. designer.SetDataSource("GWRS", leftBindData.rs);
  7364. designer.SetDataSource("GWXS", leftBindData.xs);
  7365. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7366. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7367. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7368. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7369. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7370. }
  7371. else
  7372. {
  7373. hideRowsList.Add(Row + startIndex + HideRows);
  7374. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7375. }
  7376. HideRows += 2;
  7377. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7378. if (leftBindData != null)
  7379. {
  7380. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7381. designer.SetDataSource("LYJRS", leftBindData.rs);
  7382. designer.SetDataSource("LYJXS", leftBindData.xs);
  7383. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7384. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7385. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7386. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7387. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7388. }
  7389. else
  7390. {
  7391. hideRowsList.Add(Row + startIndex + HideRows);
  7392. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7393. }
  7394. #endregion
  7395. #region A段Right信息
  7396. var right = dto.rightInfo.Find(x => x.Type == "A");
  7397. if (right == null)
  7398. {
  7399. return Ok(jw);
  7400. }
  7401. HideRows += 4;
  7402. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7403. if (rightBindData != null)
  7404. {
  7405. //经济舱 + 双人间 TBR
  7406. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7407. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7408. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7409. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7410. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7411. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7412. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7413. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7414. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7415. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7416. }
  7417. else
  7418. {
  7419. hideRowsList.Add(Row + startIndex + HideRows);
  7420. }
  7421. HideRows += 2;
  7422. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7423. if (rightBindData != null)
  7424. {
  7425. //经济舱 + 单人间 SGR
  7426. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7427. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7428. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7429. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7430. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7431. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7432. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7433. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7434. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7435. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7436. }
  7437. else
  7438. {
  7439. hideRowsList.Add(Row + startIndex + HideRows);
  7440. }
  7441. HideRows += 2;
  7442. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7443. if (rightBindData != null)
  7444. {
  7445. //公务舱 + 单人间 SGR
  7446. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7447. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7448. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7449. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7450. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7451. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7452. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7453. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7454. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7455. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7456. }
  7457. else
  7458. {
  7459. hideRowsList.Add(Row + startIndex + HideRows);
  7460. }
  7461. HideRows += 2;
  7462. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7463. if (rightBindData != null)
  7464. {
  7465. //公务舱 + 小套房 JSES
  7466. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7467. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7468. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7469. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7470. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7471. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7472. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7473. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7474. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7475. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7476. }
  7477. else
  7478. {
  7479. hideRowsList.Add(Row + startIndex + HideRows);
  7480. }
  7481. HideRows += 2;
  7482. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7483. if (rightBindData != null)
  7484. {
  7485. //公务舱 + 小套房 JSES
  7486. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7487. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7488. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7489. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7490. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7491. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7492. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7493. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7494. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7495. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7496. }
  7497. else
  7498. {
  7499. hideRowsList.Add(Row + startIndex + HideRows);
  7500. }
  7501. HideRows += 2;
  7502. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7503. if (rightBindData != null)
  7504. {
  7505. //经济舱 + 大套房
  7506. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7507. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7508. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7509. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7510. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7511. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7512. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7513. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7514. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7515. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7516. }
  7517. else
  7518. {
  7519. hideRowsList.Add(Row + startIndex + HideRows);
  7520. }
  7521. #endregion
  7522. #region B段标题清空
  7523. designer.SetDataSource("CostBDRCB", "");
  7524. designer.SetDataSource("CostBRS", "");
  7525. designer.SetDataSource("CostBXS", "");
  7526. designer.SetDataSource("CostBZCB", "");
  7527. designer.SetDataSource("CostBDRBJ", "");
  7528. designer.SetDataSource("CostBZBJ", "");
  7529. designer.SetDataSource("CostBDRLR", "");
  7530. designer.SetDataSource("CostBZLR", "");
  7531. designer.SetDataSource("CostBDRCBOM", "");
  7532. designer.SetDataSource("CostBRSOM", "");
  7533. designer.SetDataSource("CostBZCBOM", "");
  7534. designer.SetDataSource("CostBDRBJOM", "");
  7535. designer.SetDataSource("CostBZBJOM", "");
  7536. designer.SetDataSource("CostBDRLROM", "");
  7537. designer.SetDataSource("CostBZLROM", "");
  7538. #endregion
  7539. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7540. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7541. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7542. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7543. designer.SetDataSource("DJName", "地接(CNY)");
  7544. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7545. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7546. designer.SetDataSource("GWName", "公务(CNY)");
  7547. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7548. designer.SetDataSource("LYJName", "零用金(CNY)");
  7549. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7550. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7551. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7552. designer.SetDataSource("BXName", "保险(CNY)");
  7553. designer.SetDataSource("VisaName", "签证(CNY)");
  7554. #region B段基本数据
  7555. if (dto.costType == "B")
  7556. {
  7557. left = dto.leftInfo.Find(x => x.Type == "B");
  7558. if (left == null)
  7559. {
  7560. return Ok(jw);
  7561. }
  7562. #region B段left数据
  7563. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7564. if (leftBindData != null)
  7565. {
  7566. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7567. designer.SetDataSource("BHSRS", leftBindData.rs);
  7568. designer.SetDataSource("BHSXS", leftBindData.xs);
  7569. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7570. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7571. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7572. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7573. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7574. }
  7575. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7576. if (leftBindData != null)
  7577. {
  7578. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7579. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7580. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7581. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7582. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7583. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7584. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7585. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7586. }
  7587. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7588. if (leftBindData != null)
  7589. {
  7590. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7591. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7592. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7593. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7594. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7595. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7596. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7597. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7598. }
  7599. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7600. if (leftBindData != null)
  7601. {
  7602. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7603. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7604. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7605. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7606. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7607. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7608. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7609. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7610. }
  7611. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7612. if (leftBindData != null)
  7613. {
  7614. designer.SetDataSource("BCPCB", leftBindData.cb);
  7615. designer.SetDataSource("BCPRS", leftBindData.rs);
  7616. designer.SetDataSource("BCPXS", leftBindData.xs);
  7617. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7618. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7619. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7620. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7621. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7622. }
  7623. //TBR
  7624. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7625. if (leftBindData != null)
  7626. {
  7627. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7628. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7629. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7630. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7631. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7632. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7633. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7634. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7635. }
  7636. //SGR
  7637. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7638. if (leftBindData != null)
  7639. {
  7640. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7641. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7642. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7643. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7644. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7645. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7646. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7647. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7648. }
  7649. //JS/ES
  7650. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7651. if (leftBindData != null)
  7652. {
  7653. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7654. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7655. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7656. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7657. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7658. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7659. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7660. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7661. }
  7662. //SUITE
  7663. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7664. if (leftBindData != null)
  7665. {
  7666. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7667. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7668. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7669. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7670. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7671. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7672. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7673. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7674. }
  7675. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7676. if (leftBindData != null)
  7677. {
  7678. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7679. designer.SetDataSource("BDJRS", leftBindData.rs);
  7680. designer.SetDataSource("BDJXS", leftBindData.xs);
  7681. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7682. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7683. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7684. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7685. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7686. }
  7687. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7688. if (leftBindData != null)
  7689. {
  7690. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7691. designer.SetDataSource("BGWRS", leftBindData.rs);
  7692. designer.SetDataSource("BGWXS", leftBindData.xs);
  7693. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7694. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7695. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7696. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7697. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7698. }
  7699. #region 优化方案
  7700. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7701. //excelBind.Add("零用金", new {
  7702. //cb="",
  7703. //rs="",
  7704. //xs ="",
  7705. //zcb = "",
  7706. //});
  7707. #endregion
  7708. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7709. if (leftBindData != null)
  7710. {
  7711. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7712. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7713. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7714. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7715. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7716. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7717. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7718. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7719. }
  7720. #endregion
  7721. #region B段Right信息
  7722. right = dto.rightInfo.Find(x => x.Type == "B");
  7723. if (right == null)
  7724. {
  7725. return Ok(jw);
  7726. }
  7727. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7728. if (rightBindData != null)
  7729. {
  7730. //经济舱 + 双人间 TBR
  7731. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7732. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7733. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7734. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7735. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7736. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7737. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7738. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7739. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7740. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7741. }
  7742. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7743. if (rightBindData != null)
  7744. {
  7745. //经济舱 + 单人间 SGR
  7746. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7747. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7748. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7749. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7750. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7751. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7752. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7753. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7754. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7755. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7756. }
  7757. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7758. if (rightBindData != null)
  7759. {
  7760. //公务舱 + 单人间 SGR
  7761. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7762. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7763. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7764. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7765. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7766. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7767. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7768. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7769. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7770. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7771. }
  7772. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7773. if (rightBindData != null)
  7774. {
  7775. //公务舱 + 小套房 JSES
  7776. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7777. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7778. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7779. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7780. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7781. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7782. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7783. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7784. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7785. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7786. }
  7787. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7788. if (rightBindData != null)
  7789. {
  7790. //公务舱 + 小套房 JSES
  7791. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7792. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7793. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7794. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7795. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7796. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7797. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7798. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7799. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7800. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7801. }
  7802. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7803. if (rightBindData != null)
  7804. {
  7805. //经济舱 + 大套房
  7806. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7807. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7808. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7809. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7810. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7811. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7812. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7813. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7814. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7815. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7816. }
  7817. #endregion
  7818. #region 标题
  7819. designer.SetDataSource("CostBDRCB", "单人成本");
  7820. designer.SetDataSource("CostBRS", "人数");
  7821. designer.SetDataSource("CostBXS", "系数");
  7822. designer.SetDataSource("CostBZCB", "总成本");
  7823. designer.SetDataSource("CostBDRBJ", "单人报价");
  7824. designer.SetDataSource("CostBZBJ", "总报价");
  7825. designer.SetDataSource("CostBDRLR", "单人利润");
  7826. designer.SetDataSource("CostBZLR", "总利润");
  7827. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7828. designer.SetDataSource("CostBRSOM", "人数");
  7829. designer.SetDataSource("CostBZCBOM", "总成本");
  7830. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7831. designer.SetDataSource("CostBZBJOM", "总报价");
  7832. designer.SetDataSource("CostBDRLROM", "单人利润");
  7833. designer.SetDataSource("CostBZLROM", "总利润");
  7834. #endregion
  7835. }
  7836. #endregion
  7837. designer.SetDataSource("TzZCB2", TzZCB2);
  7838. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7839. designer.SetDataSource("TzZLR2", TzZLR2);
  7840. string[] dataSourceKeys = new string[]
  7841. {
  7842. "VF",
  7843. "TGS",
  7844. "TGOF",
  7845. "TGM",
  7846. "TGA",
  7847. "TGTF",
  7848. "TGEF",
  7849. "CFM",
  7850. "CFOF",
  7851. "B",
  7852. "L",
  7853. "D",
  7854. "TBR",
  7855. "SGR",
  7856. "JSES",
  7857. "Suite",
  7858. "TV",
  7859. "1L",
  7860. "IF",
  7861. "EF",
  7862. "BRF",
  7863. "TE",
  7864. "TGT",
  7865. "DRVT",
  7866. "PC",
  7867. "TLF",
  7868. "ECT"
  7869. };
  7870. foreach (var item in dataSourceKeys)
  7871. {
  7872. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7873. if (find != null)
  7874. {
  7875. designer.SetDataSource(item, find.text);
  7876. }
  7877. else
  7878. {
  7879. designer.SetDataSource(item, 0);
  7880. }
  7881. }
  7882. designer.SetDataSource(dt);
  7883. //根据数据源处理生成报表内容
  7884. designer.Process();
  7885. designer.Workbook.Worksheets[0].Name = "清单";
  7886. Worksheet sheet = designer.Workbook.Worksheets[0];
  7887. foreach (var Rowindex in hideRowsList)
  7888. {
  7889. ws.Cells.HideRows(Rowindex, 2);
  7890. }
  7891. byte[] bytes = null;
  7892. string strFileName = di.TeamName + "-团组-成本.xls";
  7893. using (MemoryStream stream = new MemoryStream())
  7894. {
  7895. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7896. bytes = stream.ToArray();
  7897. }
  7898. return Ok(JsonView(true, "", new
  7899. {
  7900. Data = bytes,
  7901. strFileName,
  7902. }));
  7903. }
  7904. /// <summary>
  7905. /// 导出客户报表
  7906. /// </summary>
  7907. /// <returns></returns>
  7908. [HttpPost]
  7909. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7910. {
  7911. var jw = JsonView(false);
  7912. if (dto.Diid == 0)
  7913. {
  7914. return Ok(JsonView(false, "请传递团组id"));
  7915. }
  7916. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7917. if (deleInfo.Code != 0)
  7918. {
  7919. return Ok(JsonView(false, "团组信息查询失败!"));
  7920. }
  7921. var di = deleInfo.Data as DelegationInfoWebView;
  7922. if (di == null)
  7923. {
  7924. return Ok(JsonView(false, "团组信息查询失败!"));
  7925. }
  7926. //文件名
  7927. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7928. //获取模板
  7929. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7930. //载入模板
  7931. Document doc = new Document(tmppath);
  7932. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7933. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7934. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7935. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7936. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7937. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7938. if (AParameter == null)
  7939. {
  7940. return Ok(JsonView(false, "系数不存在!"));
  7941. }
  7942. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7943. , TzAirDesc, TzZCost;
  7944. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7945. = TzAirDesc = TzZCost = string.Empty;
  7946. TzNumber = AParameter.CostTypenumber.ToString();
  7947. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7948. CarGuides1 = dto.CarGuides1;
  7949. Meal = dto.Meal;
  7950. SubsidizedMeals = dto.SubsidizedMeals;
  7951. NightRepair = dto.NightRepair;
  7952. AttractionsTickets = dto.AttractionsTickets;
  7953. MiscellaneousFees = dto.MiscellaneousFees;
  7954. ATip = dto.ATip;
  7955. TzHotelDesc = "";
  7956. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7957. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7958. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7959. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7960. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7961. TzAirDesc = "";
  7962. TzZCost = dto.TzZCost;
  7963. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7964. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7965. var index = 1;
  7966. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7967. foreach (var item in TzHotelDescArr)
  7968. {
  7969. if (AinfoArr != null)
  7970. {
  7971. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7972. if (Ainfo != null)
  7973. {
  7974. if (int.Parse(Ainfo.rs) <= 0)
  7975. {
  7976. continue;
  7977. }
  7978. var hotelText = string.Empty;
  7979. switch (item)
  7980. {
  7981. case "SGR":
  7982. hotelText = "单人间";
  7983. break;
  7984. case "JSES":
  7985. hotelText = "小套房";
  7986. break;
  7987. case "SUITE":
  7988. hotelText = "套房";
  7989. break;
  7990. case "TBR":
  7991. hotelText = "双人间";
  7992. break;
  7993. }
  7994. if (item != "TBR")
  7995. {
  7996. 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";
  7997. }
  7998. else
  7999. {
  8000. 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";
  8001. }
  8002. index++;
  8003. }
  8004. }
  8005. }
  8006. index = 1;
  8007. foreach (var item in TzAirDescArr)
  8008. {
  8009. if (AinfoArr != null)
  8010. {
  8011. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8012. if (Ainfo != null)
  8013. {
  8014. if (int.Parse(Ainfo.rs) <= 0)
  8015. {
  8016. continue;
  8017. }
  8018. 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";
  8019. index++;
  8020. }
  8021. }
  8022. }
  8023. if (dto.costType == "B")
  8024. {
  8025. if (BParameter == null)
  8026. {
  8027. return Ok(JsonView(false, "B段系数不存在!"));
  8028. }
  8029. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  8030. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  8031. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  8032. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  8033. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  8034. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  8035. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  8036. foreach (var item in TzHotelDescArr)
  8037. {
  8038. if (AinfoArr != null)
  8039. {
  8040. TzHotelDesc += "B段信息 \r\n";
  8041. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8042. if (Ainfo != null)
  8043. {
  8044. if (int.Parse(Ainfo.rs) <= 0)
  8045. {
  8046. continue;
  8047. }
  8048. var hotelText = string.Empty;
  8049. switch (item)
  8050. {
  8051. case "SGR":
  8052. hotelText = "单人间";
  8053. break;
  8054. case "JSES":
  8055. hotelText = "小套房";
  8056. break;
  8057. case "SUITE":
  8058. hotelText = "套房";
  8059. break;
  8060. case "TBR":
  8061. hotelText = "双人间";
  8062. break;
  8063. }
  8064. if (item != "TBR")
  8065. {
  8066. 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";
  8067. }
  8068. else
  8069. {
  8070. 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";
  8071. }
  8072. index++;
  8073. }
  8074. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  8075. }
  8076. }
  8077. index = 1;
  8078. foreach (var item in TzAirDescArr)
  8079. {
  8080. if (AinfoArr != null)
  8081. {
  8082. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8083. if (Ainfo != null)
  8084. {
  8085. if (int.Parse(Ainfo.rs) <= 0)
  8086. {
  8087. continue;
  8088. }
  8089. 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";
  8090. index++;
  8091. }
  8092. }
  8093. }
  8094. }
  8095. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  8096. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  8097. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  8098. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  8099. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  8100. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  8101. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  8102. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  8103. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  8104. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  8105. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  8106. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  8107. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  8108. DickeyValue.Add("Visa", Visa); // 签证单人报价
  8109. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  8110. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  8111. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  8112. DickeyValue.Add("TzZCost", TzZCost);
  8113. foreach (var key in DickeyValue.Keys)
  8114. {
  8115. if (doc.Range.Bookmarks[key] != null)
  8116. {
  8117. Bookmark mark = doc.Range.Bookmarks[key];
  8118. mark.Text = DickeyValue[key];
  8119. }
  8120. }
  8121. byte[] bytes = null;
  8122. string strFileName = di.TeamName + "-客户报价.doc";
  8123. using (MemoryStream stream = new MemoryStream())
  8124. {
  8125. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  8126. bytes = stream.ToArray();
  8127. }
  8128. return Ok(JsonView(true, "", new
  8129. {
  8130. Data = bytes,
  8131. strFileName,
  8132. }));
  8133. }
  8134. /// <summary>
  8135. /// 团组成本 各模块(酒店,地接,机票)成本提示
  8136. /// </summary>
  8137. /// <param name="dto"></param>
  8138. /// <returns></returns>
  8139. [HttpPost]
  8140. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8141. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  8142. {
  8143. try
  8144. {
  8145. #region 参数验证
  8146. if (dto.DiId < 0)
  8147. {
  8148. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  8149. }
  8150. List<int> cTableIds = new List<int>() {
  8151. 76 ,//酒店预订
  8152. 77 ,//行程
  8153. 79 ,//车/导游地接
  8154. 80 ,//签证
  8155. 81 ,//邀请/公务活
  8156. 82 ,//团组客户保险
  8157. 85 ,//机票预订
  8158. 98 ,//其他款项
  8159. 285 ,//收款退还
  8160. 751 ,//酒店早餐
  8161. 1015 // 超支费用
  8162. };
  8163. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  8164. {
  8165. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  8166. }
  8167. #endregion
  8168. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  8169. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  8170. if (_GroupCostParameters.Count <= 0)
  8171. {
  8172. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  8173. }
  8174. if (_GroupCostParameters[0].IsShare == 0)
  8175. {
  8176. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  8177. }
  8178. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8179. //处理date为空问题
  8180. if (_GroupCosts.Count > 0)
  8181. {
  8182. for (int i = 0; i < _GroupCosts.Count; i++)
  8183. {
  8184. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8185. {
  8186. if (i > 0)
  8187. {
  8188. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8189. }
  8190. }
  8191. }
  8192. }
  8193. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8194. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8195. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8196. string currCode = "";
  8197. #region currCode 验证
  8198. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8199. if (isInt)
  8200. {
  8201. var currData = currDatas.Find(it => it.Id == intCurrency);
  8202. if (currData != null)
  8203. {
  8204. currCode = currData.Name;
  8205. }
  8206. }
  8207. else
  8208. {
  8209. currCode = _GroupCostParameters[0].Currency.Trim();
  8210. }
  8211. #endregion
  8212. //op,酒店单段模式存储
  8213. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8214. {
  8215. CurrencyCode = currCode,
  8216. Rate = _GroupCostParameters[0].Rate,
  8217. CostType = _GroupCostParameters[0].CostType,
  8218. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8219. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8220. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8221. };
  8222. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8223. if (_GroupCostParameters.Count == 2)
  8224. {
  8225. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8226. }
  8227. foreach (var item in _GroupCostParameters)
  8228. {
  8229. decimal _rate = 1;
  8230. decimal _rate1 = item.Rate;
  8231. decimal _scale = 1;
  8232. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8233. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8234. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8235. //if (userInfo != null)
  8236. //{
  8237. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8238. // {
  8239. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8240. // {
  8241. // _scale = 1.00M;
  8242. // }
  8243. // }
  8244. //}
  8245. #endregion
  8246. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8247. {
  8248. CurrencyCode = currCode,
  8249. Rate = _rate1,
  8250. CostType = item.CostType,
  8251. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8252. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8253. CostTypeNumber = item.CostTypenumber
  8254. };
  8255. if (_GroupCostParameters.Count > 1)
  8256. {
  8257. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8258. }
  8259. else
  8260. {
  8261. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8262. }
  8263. if (dto.CTable == 79)//
  8264. {
  8265. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8266. modulePromptInfo.TotalCost = item.DJCB;
  8267. }
  8268. List<string> costTypes = new List<string>() { "A", "B" };
  8269. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8270. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8271. if (_GroupCostsDuplicates.Count() == 1)
  8272. {
  8273. _GroupCostsTypeData = _GroupCosts;
  8274. }
  8275. else
  8276. {
  8277. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8278. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8279. }
  8280. /*
  8281. * 76 酒店预订
  8282. * 77 行程
  8283. * 79 车/导游地接
  8284. * 80 签证
  8285. * 81 邀请/公务活动
  8286. * 82 团组客户保险
  8287. * 85 机票预订
  8288. * 98 其他款项
  8289. * 285 收款退还
  8290. * 751 酒店早餐
  8291. * 1015 超支费用
  8292. */
  8293. switch (dto.CTable)
  8294. {
  8295. case 76: // 酒店预订
  8296. _ModuleSubPromptInfo.AddRange(
  8297. _GroupCostsTypeData.Select(it => new
  8298. {
  8299. it.DAY,
  8300. it.Date,
  8301. it.ACCON,
  8302. it.ITIN,
  8303. it.SGR,
  8304. it.TBR,
  8305. it.JS_ES,
  8306. it.Suite
  8307. })
  8308. );
  8309. break;
  8310. case 79: // 车/导游地接
  8311. _ModuleSubPromptInfo.AddRange(
  8312. _GroupCostsTypeData.Select(it => new
  8313. {
  8314. Date = it.Date, //日期
  8315. CarFee = it.CarCost * _rate * _scale, //车费用
  8316. CarType = it.CarType, //车型
  8317. DriverFee = it.CFS * _rate * _scale, //司机工资
  8318. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8319. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8320. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8321. GuideFee = it.TGS * _rate * _scale, //导游费用
  8322. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8323. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8324. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8325. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8326. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8327. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8328. Breakfast = it.B * _rate * _scale, //早餐费
  8329. Lunch = it.L * _rate * _scale, //午餐费
  8330. Dinner = it.D * _rate * _scale, //晚餐费
  8331. TicketFee = it.EF * _rate * _scale, //门票费
  8332. SpentCash = it.PC * _rate * _scale, //零用金
  8333. LeadersFee = it.TLF * _rate * _scale, //领队费
  8334. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8335. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8336. })
  8337. );
  8338. break;
  8339. case 85: // 机票
  8340. List<dynamic> datas = new List<dynamic>();
  8341. datas.Add(
  8342. new
  8343. {
  8344. AirType = "经济舱",
  8345. AirNum = item.JJCRS,
  8346. AirDRCB = item.JJCCB,
  8347. AirZCB = (item.JJCRS * item.JJCCB)
  8348. }
  8349. );
  8350. datas.Add(
  8351. new
  8352. {
  8353. AirType = "公务舱",
  8354. AirNum = item.GWCRS,
  8355. AirDRCB = item.GWCCB,
  8356. AirZCB = (item.GWCRS * item.GWCCB)
  8357. }
  8358. );
  8359. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8360. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8361. modulePromptInfo.Data = new
  8362. {
  8363. airFeeData = datas,
  8364. airInitData = initDatas
  8365. };
  8366. _ModulePromptInfos.Add(modulePromptInfo);
  8367. break;
  8368. default:
  8369. break;
  8370. }
  8371. }
  8372. if (dto.CTable != 85)
  8373. {
  8374. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8375. _ModulePromptInfos.Add(_ModulePromptInfo);
  8376. }
  8377. _view.ModulePromptInfos = _ModulePromptInfos;
  8378. return Ok(JsonView(true, "操作成功!", _view));
  8379. }
  8380. catch (Exception ex)
  8381. {
  8382. return Ok(JsonView(false, ex.Message));
  8383. }
  8384. }
  8385. /// <summary>
  8386. /// 根据黑屏代码重新生成行程
  8387. /// </summary>
  8388. /// <param name="dto"></param>
  8389. /// <returns></returns>
  8390. [HttpPost]
  8391. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8392. {
  8393. var jw = JsonView(false);
  8394. var Create = _GroupCostRepository.
  8395. CreateGroupCostByBlackCode(dto.Diid);
  8396. jw.Msg = Create.Msg;
  8397. if (Create.Code == 0)
  8398. {
  8399. jw.Code = 200;
  8400. jw.Data = new
  8401. {
  8402. groupCost = Create.Data,
  8403. blackCodeIsTrue = true
  8404. };
  8405. }
  8406. else
  8407. {
  8408. jw.Code = 400;
  8409. jw.Data = new
  8410. {
  8411. groupCost = Create.Data,
  8412. blackCodeIsTrue = false,
  8413. };
  8414. }
  8415. return Ok(jw);
  8416. }
  8417. /// <summary>
  8418. /// 成本获取OP历史车费用
  8419. /// </summary>
  8420. /// <param name="dto"></param>
  8421. /// <returns></returns>
  8422. [HttpPost]
  8423. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8424. {
  8425. var jw = JsonView(false);
  8426. try
  8427. {
  8428. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8429. //获取现有所有车的数据
  8430. if (!dto.Param.IsNullOrWhiteSpace())
  8431. {
  8432. string sql = $@"
  8433. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8434. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8435. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8436. 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
  8437. AND gctggr.ServiceEndTime is not NULL
  8438. ORDER by gctggrc.id DESC
  8439. ";
  8440. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8441. var numeberResult = await Task.Run(() =>
  8442. {
  8443. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8444. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8445. return numberArr;
  8446. });
  8447. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8448. foreach (var item in numeberResult)
  8449. {
  8450. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8451. {
  8452. Country = "数据异常!",
  8453. City = string.Empty,
  8454. };
  8455. item.Area = find.Country + " " + find.City;
  8456. }
  8457. dbResult.AddRange(numeberResult);
  8458. if (dto.Param.Contains("、"))
  8459. {
  8460. var sp = dto.Param.Split("、");
  8461. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8462. .Where(x =>
  8463. {
  8464. return System.Array.Exists(sp, e =>
  8465. {
  8466. bool where = false;
  8467. if (x.Area != null)
  8468. {
  8469. where = x.Area.Contains(e);
  8470. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8471. {
  8472. return false;
  8473. }
  8474. }
  8475. if (x.PriceName != null && !where)
  8476. {
  8477. where = x.PriceName.Contains(e);
  8478. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8479. {
  8480. return false;
  8481. }
  8482. }
  8483. return where;
  8484. });
  8485. }).ToList();
  8486. }
  8487. else
  8488. {
  8489. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8490. .Where(x =>
  8491. {
  8492. bool where = false;
  8493. if (x.Area != null)
  8494. {
  8495. where = x.Area.Contains(dto.Param);
  8496. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8497. {
  8498. return false;
  8499. }
  8500. }
  8501. if (x.PriceName != null && !where)
  8502. {
  8503. where = x.PriceName.Contains(dto.Param);
  8504. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8505. {
  8506. return false;
  8507. }
  8508. }
  8509. return where;
  8510. }
  8511. )
  8512. .ToList();
  8513. }
  8514. }
  8515. var view = dbResult.Select(x =>
  8516. {
  8517. decimal dp = 0.00M;
  8518. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8519. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8520. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8521. {
  8522. if (startB && endB)
  8523. {
  8524. var timesp = endD.Subtract(startD);
  8525. if ((timesp.Days + 1) != 0)
  8526. {
  8527. dp = x.Price / (timesp.Days + 1);
  8528. }
  8529. }
  8530. }
  8531. else
  8532. {
  8533. dp = x.Price;
  8534. }
  8535. return new
  8536. {
  8537. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8538. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8539. x.Area,
  8540. x.id,
  8541. price = x.Price.ToString("F2"),
  8542. x.PriceName,
  8543. x.PriceContent,
  8544. x.TeamName,
  8545. x.DatePrice,
  8546. dayPrice = dp.ToString("F2"),
  8547. };
  8548. }).OrderByDescending(x => x.id).ToList();
  8549. jw = JsonView(true, "获取成功!", view);
  8550. }
  8551. catch (Exception e)
  8552. {
  8553. jw = JsonView(false, e.Message);
  8554. }
  8555. return Ok(jw);
  8556. }
  8557. #endregion
  8558. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8559. /// <summary>
  8560. /// 酒店预订
  8561. /// 酒店费用列表 根据团组Id查询
  8562. /// </summary>
  8563. /// <param name="_dto"></param>
  8564. /// <returns></returns>
  8565. [HttpPost]
  8566. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8567. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8568. {
  8569. #region 参数验证
  8570. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8571. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8572. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8573. #region 团组操作权限验证 76 酒店预定模块
  8574. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8575. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8576. #endregion
  8577. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8578. #region 页面操作权限验证
  8579. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8580. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8581. #endregion
  8582. #endregion
  8583. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8584. }
  8585. /// <summary>
  8586. /// 酒店预订
  8587. /// 基础数据
  8588. /// </summary>
  8589. /// <param name="_dto"></param>
  8590. /// <returns></returns>
  8591. [HttpPost]
  8592. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8593. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8594. {
  8595. #region 参数验证
  8596. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8597. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8598. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8599. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8600. #region 页面操作权限验证
  8601. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8602. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8603. #endregion
  8604. #region 团组操作权限验证 76 酒店预定模块
  8605. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8606. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8607. #endregion
  8608. #endregion
  8609. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8610. }
  8611. /// <summary>
  8612. /// 酒店预订
  8613. /// 创建 入住卷号码
  8614. /// </summary>
  8615. /// <param name="_dto"></param>
  8616. /// <returns></returns>
  8617. [HttpPost]
  8618. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8619. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8620. {
  8621. try
  8622. {
  8623. #region 参数验证
  8624. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8625. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8626. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8627. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8628. #region 页面操作权限验证
  8629. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8630. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8631. #endregion
  8632. #region 团组操作权限验证 76 酒店预定模块
  8633. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8634. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8635. #endregion
  8636. #endregion
  8637. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8638. if (data.Code != 0)
  8639. {
  8640. return Ok(JsonView(false, data.Msg));
  8641. }
  8642. return Ok(JsonView(true, data.Msg, data.Data));
  8643. }
  8644. catch (Exception ex)
  8645. {
  8646. return Ok(JsonView(false, ex.Message));
  8647. }
  8648. }
  8649. /// <summary>
  8650. /// 酒店预订
  8651. /// 详情
  8652. /// </summary>
  8653. /// <param name="_dto"></param>
  8654. /// <returns></returns>
  8655. [HttpPost]
  8656. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8657. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8658. {
  8659. #region 参数验证
  8660. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8661. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8662. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8663. #region 团组操作权限验证 76 酒店预定模块
  8664. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8665. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8666. #endregion
  8667. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8668. #region 页面操作权限验证
  8669. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8670. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8671. #endregion
  8672. #endregion
  8673. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8674. }
  8675. /// <summary>
  8676. /// 酒店预订
  8677. /// Add Or Edit
  8678. /// </summary>
  8679. /// <param name="_dto"></param>
  8680. /// <returns></returns>
  8681. [HttpPost]
  8682. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8683. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8684. {
  8685. #region 参数验证
  8686. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8687. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8688. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8689. #region 团组操作权限验证 76 酒店预定模块
  8690. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8691. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8692. #endregion
  8693. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8694. #region 页面操作权限验证
  8695. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8696. if (_dto.Id == 0) // Add
  8697. {
  8698. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8699. }
  8700. else if (_dto.Id > 1) // Edit
  8701. {
  8702. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8703. }
  8704. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8705. #endregion
  8706. #endregion
  8707. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8708. if (_view.Code != 200)
  8709. {
  8710. return Ok(_view);
  8711. }
  8712. #region 应用推送
  8713. try
  8714. {
  8715. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8716. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8717. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8718. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8719. //自动审核
  8720. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8721. }
  8722. catch (Exception ex)
  8723. {
  8724. }
  8725. #endregion
  8726. return Ok(_view);
  8727. }
  8728. /// <summary>
  8729. /// 酒店预订
  8730. /// Del
  8731. /// </summary>
  8732. /// <param name="_dto"></param>
  8733. /// <returns></returns>
  8734. [HttpPost]
  8735. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8736. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8737. {
  8738. #region 参数验证
  8739. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8740. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8741. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8742. #region 团组操作权限验证 76 酒店预定模块
  8743. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8744. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8745. #endregion
  8746. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8747. #region 页面操作权限验证
  8748. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8749. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8750. #endregion
  8751. #endregion
  8752. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8753. }
  8754. /// <summary>
  8755. /// 酒店预订
  8756. /// 生成VOUCHER
  8757. /// 2024.05.06 之前版本
  8758. /// </summary>
  8759. /// <param name="_dto"></param>
  8760. /// <returns></returns>
  8761. [HttpPost]
  8762. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8763. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8764. {
  8765. try
  8766. {
  8767. #region 参数验证
  8768. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8769. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8770. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8771. #region 团组操作权限验证 76 酒店预定模块
  8772. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8773. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8774. #endregion
  8775. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8776. #region 页面操作权限验证
  8777. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8778. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8779. #endregion
  8780. #endregion
  8781. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8782. //判断数据是否完整
  8783. if (hr != null)
  8784. {
  8785. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8786. {
  8787. string strFileName = "HotelStatement/";
  8788. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8789. if (dele != null)
  8790. strFileName += dele.TourCode;
  8791. //载入模板
  8792. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8793. Document doc = new Document(sss);
  8794. DocumentBuilder builder = new DocumentBuilder(doc);
  8795. #region 替换Word模板书签内容
  8796. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8797. //入住卷预定号码
  8798. if (doc.Range.Bookmarks["VNO"] != null)
  8799. {
  8800. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8801. mark.Text = hr.CheckNumber;
  8802. }
  8803. //酒店时间
  8804. if (doc.Range.Bookmarks["Date"] != null)
  8805. {
  8806. Bookmark mark = doc.Range.Bookmarks["Date"];
  8807. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8808. }
  8809. //团号
  8810. if (doc.Range.Bookmarks["TNo"] != null)
  8811. {
  8812. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8813. mark.Text = dele.TourCode;
  8814. }
  8815. //预定号码
  8816. if (doc.Range.Bookmarks["BookingId"] != null)
  8817. {
  8818. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8819. mark.Text = hr.ReservationsNo;
  8820. }
  8821. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8822. {
  8823. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8824. mark.Text = hr.DetermineNo;
  8825. }
  8826. //酒店城市
  8827. if (doc.Range.Bookmarks["City"] != null)
  8828. {
  8829. Bookmark mark = doc.Range.Bookmarks["City"];
  8830. mark.Text = hr.City;
  8831. }
  8832. //酒店名称
  8833. if (doc.Range.Bookmarks["HName"] != null)
  8834. {
  8835. Bookmark mark = doc.Range.Bookmarks["HName"];
  8836. mark.Text = hr.HotelName;
  8837. }
  8838. //酒店地址
  8839. if (doc.Range.Bookmarks["Address"] != null)
  8840. {
  8841. Bookmark mark = doc.Range.Bookmarks["Address"];
  8842. mark.Text = hr.HotelAddress;
  8843. }
  8844. //酒店电话
  8845. if (doc.Range.Bookmarks["Tel"] != null)
  8846. {
  8847. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8848. mark.Text = hr.HotelTel;
  8849. }
  8850. //酒店传真
  8851. if (doc.Range.Bookmarks["Fax"] != null)
  8852. {
  8853. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8854. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8855. {
  8856. mark.Text = hr.HotelFax;
  8857. }
  8858. }
  8859. //入住时间
  8860. if (doc.Range.Bookmarks["CIn"] != null)
  8861. {
  8862. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8863. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8864. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8865. }
  8866. //退房时间
  8867. if (doc.Range.Bookmarks["COut"] != null)
  8868. {
  8869. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8870. Bookmark mark = doc.Range.Bookmarks["COut"];
  8871. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8872. }
  8873. //客户名称
  8874. if (doc.Range.Bookmarks["GName"] != null)
  8875. {
  8876. string guestName = "";
  8877. string[] clients = new string[] { };
  8878. if (hr.GuestName.Contains(","))
  8879. {
  8880. clients = hr.GuestName.Split(",");
  8881. }
  8882. else
  8883. {
  8884. clients = new string[] { hr.GuestName };
  8885. }
  8886. List<int> clientIds_int = new List<int>();
  8887. if (clients.Length > 0)
  8888. {
  8889. foreach (var item in clients)
  8890. {
  8891. if (item.IsNumeric())
  8892. {
  8893. clientIds_int.Add(int.Parse(item));
  8894. }
  8895. }
  8896. }
  8897. if (clientIds_int.Count > 0)
  8898. {
  8899. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8900. foreach (var client in _clientDatas)
  8901. {
  8902. //男
  8903. if (client.Sex == 0) guestName += $"Mr.";
  8904. //女
  8905. else if (client.Sex == 1) guestName += $"Ms.";
  8906. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8907. {
  8908. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8909. }
  8910. //guestName += $"{client.Pinyin},";
  8911. }
  8912. if (guestName.Length > 0)
  8913. {
  8914. guestName = guestName.Substring(0, guestName.Length - 1);
  8915. }
  8916. }
  8917. else
  8918. {
  8919. guestName = hr.GuestName;
  8920. }
  8921. Bookmark mark = doc.Range.Bookmarks["GName"];
  8922. mark.Text = guestName;
  8923. }
  8924. //房间介绍
  8925. if (doc.Range.Bookmarks["ROOM"] != null)
  8926. {
  8927. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8928. mark.Text = hr.RoomExplanation;
  8929. }
  8930. //报价描述
  8931. if (doc.Range.Bookmarks["NOTE"] != null)
  8932. {
  8933. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8934. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8935. if (ss != null)
  8936. mark.Text = ss.Name;
  8937. }
  8938. //入住时间
  8939. if (doc.Range.Bookmarks["CheckIn"] != null)
  8940. {
  8941. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8942. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8943. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8944. }
  8945. //退房时间
  8946. if (doc.Range.Bookmarks["CheckOut"] != null)
  8947. {
  8948. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8949. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8950. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8951. }
  8952. //日期
  8953. if (doc.Range.Bookmarks["DT"] != null)
  8954. {
  8955. Bookmark mark = doc.Range.Bookmarks["DT"];
  8956. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8957. }
  8958. //名称
  8959. if (doc.Range.Bookmarks["VName"] != null)
  8960. {
  8961. Bookmark mark = doc.Range.Bookmarks["VName"];
  8962. mark.Text = hr.HotelName;
  8963. }
  8964. //号码
  8965. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8966. {
  8967. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8968. mark.Text = hr.CheckNumber;
  8969. }
  8970. #endregion
  8971. strFileName += "VOUCHER.doc";
  8972. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8973. doc.Save(fileDir);
  8974. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8975. return Ok(JsonView(true, "操作成功!", Url));
  8976. }
  8977. else
  8978. {
  8979. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8980. }
  8981. }
  8982. else
  8983. {
  8984. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8985. }
  8986. }
  8987. catch (Exception ex)
  8988. {
  8989. return Ok(JsonView(false, ex.Message));
  8990. }
  8991. }
  8992. /// <summary>
  8993. /// 酒店预订
  8994. /// 生成VOUCHER
  8995. /// 2024.05.06 之后版本
  8996. /// </summary>
  8997. /// <param name="_dto"></param>
  8998. /// <returns></returns>
  8999. [HttpPost]
  9000. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9001. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  9002. {
  9003. #region 参数验证
  9004. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9005. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9006. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9007. #region 团组操作权限验证 76 酒店预定模块
  9008. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9009. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9010. #endregion
  9011. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9012. #region 页面操作权限验证
  9013. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9014. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9015. #endregion
  9016. #endregion
  9017. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9018. //判断数据是否完整
  9019. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  9020. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9021. string strFileName = "HotelStatement/";
  9022. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9023. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  9024. #region 数据处理
  9025. List<int> guestIds = new List<int>();
  9026. int index = 0;
  9027. foreach (var item in hrDtas)
  9028. {
  9029. if (item.GuestName.Contains(","))
  9030. {
  9031. string[] guestIdArr = item.GuestName.Split(',');
  9032. foreach (var guestIdStr in guestIdArr)
  9033. {
  9034. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  9035. if (guestBool)
  9036. {
  9037. guestIds.Add(guestId);
  9038. }
  9039. }
  9040. }
  9041. else guestNames += item.GuestName;
  9042. var voucherInfo = new HotelVoucherInfoView()
  9043. {
  9044. HotelName = item.HotelName,
  9045. CheckInDate = item.CheckInDate,
  9046. CheckOutDate = item.CheckOutDate,
  9047. ConfirmationNumber = item.DetermineNo.Trim(),
  9048. RoomType = item.RoomExplanation
  9049. };
  9050. vouchers.Add(voucherInfo);
  9051. }
  9052. if (guestIds.Count > 0)
  9053. {
  9054. guestIds = guestIds.Distinct().ToList();
  9055. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  9056. if (guestDatas.Count > 0)
  9057. {
  9058. guestNames = "";
  9059. foreach (var guest in guestDatas)
  9060. {
  9061. string guestName = "";
  9062. if (guest.Sex == 0) guestName += @"MR.";
  9063. else if (guest.Sex == 1) guestName += @"MS.";
  9064. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9065. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9066. guestNames += @$"{guestName.Trim()}、";
  9067. }
  9068. if (guestNames.Length > 0)
  9069. {
  9070. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9071. }
  9072. }
  9073. }
  9074. #endregion
  9075. //载入模板
  9076. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  9077. Document doc = new Document(sss);
  9078. DocumentBuilder builder = new DocumentBuilder(doc);
  9079. if (doc.Range.Bookmarks["GuestName"] != null)
  9080. {
  9081. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9082. mark.Text = guestNames;
  9083. }
  9084. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9085. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9086. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9087. for (int i = 1; i <= vouchers.Count; i++)
  9088. {
  9089. HotelVoucherInfoView hviv = vouchers[i - 1];
  9090. builder.MoveToCell(0, i, 0, 0);
  9091. builder.Write(hviv.HotelName);
  9092. builder.MoveToCell(0, i, 1, 0);
  9093. builder.Write(hviv.CheckInDate);
  9094. builder.MoveToCell(0, i, 2, 0);
  9095. builder.Write(hviv.CheckOutDate);
  9096. builder.MoveToCell(0, i, 3, 0);
  9097. builder.Write(hviv.RoomType);
  9098. builder.MoveToCell(0, i, 4, 0);
  9099. builder.Write(hviv.ConfirmationNumber);
  9100. }
  9101. //删除多余行
  9102. int currRowIndex = vouchers.Count + 1;
  9103. int delRows = 21 - currRowIndex;
  9104. if (delRows > 0)
  9105. {
  9106. for (int i = 0; i < delRows; i++)
  9107. {
  9108. table.Rows.RemoveAt(currRowIndex);
  9109. //cultivateRowIndex++;
  9110. }
  9111. }
  9112. strFileName += "VOUCHER.docx";
  9113. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9114. doc.Save(fileDir);
  9115. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9116. return Ok(JsonView(true, "操作成功!", Url));
  9117. }
  9118. /// <summary>
  9119. /// 酒店预订
  9120. /// 生成 预定成本 Excel
  9121. /// </summary>
  9122. /// <param name="_dto"></param>
  9123. /// <returns></returns>
  9124. [HttpPost]
  9125. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9126. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9127. {
  9128. #region 参数验证
  9129. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9130. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9131. if (!vadalitorRes.IsValid)
  9132. {
  9133. var errors = new StringBuilder();
  9134. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9135. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  9136. }
  9137. #region 团组操作权限验证 76 酒店预定模块
  9138. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9139. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9140. #endregion
  9141. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9142. #region 页面操作权限验证
  9143. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9144. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9145. #endregion
  9146. #endregion
  9147. decimal _rate = 1.00M;
  9148. string _currency = "";
  9149. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9150. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9151. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  9152. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9153. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  9154. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9155. {
  9156. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  9157. }
  9158. _currency = _GroupCostParameter.Currency;
  9159. bool isIntType = int.TryParse(_currency, out int currId);
  9160. if (isIntType)
  9161. {
  9162. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9163. }
  9164. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9165. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9166. if (currInfo == null)
  9167. {
  9168. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  9169. }
  9170. if (!_currency.ToUpper().Equals("CNY"))
  9171. {
  9172. _rate = _GroupCostParameter.Rate;
  9173. }
  9174. _rate = currInfo.Rate;
  9175. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9176. string strFileName = "HotelStatement/";
  9177. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9178. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9179. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  9180. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  9181. #region 数据处理
  9182. foreach (var item in hrDtas)
  9183. {
  9184. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9185. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  9186. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  9187. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  9188. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  9189. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  9190. string singleRoomFeeStr = string.Empty,
  9191. doubleRoomFeeStr = string.Empty,
  9192. suiteRoomFeeStr = string.Empty,
  9193. otherRoomFeeStr = string.Empty,
  9194. payMoneyStr = string.Empty,
  9195. cardPriceStr = string.Empty;
  9196. if (roomCurr.Equals(_currency))
  9197. {
  9198. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9199. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9200. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9201. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9202. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9203. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9204. }
  9205. else
  9206. {
  9207. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9208. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9209. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9210. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9211. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9212. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9213. }
  9214. string breakfastPriceStr = string.Empty,
  9215. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9216. governmentRentStr = string.Empty,
  9217. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9218. cityTaxStrStr = string.Empty,
  9219. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9220. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  9221. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  9222. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  9223. pcfds.Add(new HotelReservations_PCFD_View()
  9224. {
  9225. City = item.City,
  9226. HotelName = item.HotelName,
  9227. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9228. // SingleRoomCount = item.SingleRoomCount,
  9229. SingleRoomPrice = singleRoomFeeStr,
  9230. // DoubleRoomCount = item.DoubleRoomCount,
  9231. DoubleRoomPrice = doubleRoomFeeStr,
  9232. //SuiteRoomCount = item.SuiteRoomCount,
  9233. SuiteRoomPrice = suiteRoomFeeStr,
  9234. OtherRoomPrice = otherRoomFeeStr,
  9235. //OtherRoomCount = item.OtherRoomCount,
  9236. BreakfastPrice = breakfastPriceStr,
  9237. GovernmentRent = governmentRentStr,
  9238. CityTax = cityTaxStrStr,
  9239. RoomExplanation = item.RoomExplanation,
  9240. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  9241. PayTime = roomInfo.ConsumptionDate,
  9242. BankNo = roomInfo.BankNo,
  9243. PayMoney = payMoneyStr,
  9244. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9245. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  9246. CardPrice = cardPriceStr,
  9247. Remark = ccpInfo.Remark
  9248. });
  9249. }
  9250. #endregion
  9251. //载入模板
  9252. WorkbookDesigner designer = new WorkbookDesigner();
  9253. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9254. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9255. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9256. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9257. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9258. designer.SetDataSource("Opertor", userInfo.CnName);
  9259. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9260. dt.TableName = "ViewMyHotelReservations";
  9261. designer.SetDataSource(dt);
  9262. designer.Process();
  9263. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  9264. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9265. designer.Workbook.Save(serverPath);
  9266. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9267. #region 删除指定行
  9268. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  9269. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9270. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9271. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9272. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9273. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9274. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9275. cssIndex = dt.Columns["CityTax"].Ordinal,
  9276. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9277. remarkIndex = dt.Columns["Remark"].Ordinal;
  9278. //删除指定列
  9279. foreach (DataRow item in dt.Rows)
  9280. {
  9281. string singleStr = item["SingleRoomPrice"].ToString();
  9282. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9283. if (containsDigitButNotZero1) singleDel = false;
  9284. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9285. string doubleStr = item["DoubleRoomPrice"].ToString();
  9286. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9287. if (containsDigitButNotZero2) doubleDel = false;
  9288. string suiteStr = item["SuiteRoomPrice"].ToString();
  9289. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9290. if (containsDigitButNotZero3) suiteDel = false;
  9291. string otherStr = item["OtherRoomPrice"].ToString();
  9292. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9293. if (containsDigitButNotZero4) otherDel = false;
  9294. string zcStr = item["BreakfastPrice"].ToString();
  9295. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9296. if (containsDigitButNotZero5) zcDel = false;
  9297. string dsStr = item["GovernmentRent"].ToString();
  9298. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9299. if (containsDigitButNotZero6) dsDel = false;
  9300. string cssStr = item["CityTax"].ToString();
  9301. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9302. if (containsDigitButNotZero7) cssDel = false;
  9303. string cpStr = item["ConsumptionPatterns"].ToString();
  9304. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9305. string remarkStr = item["Remark"].ToString();
  9306. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9307. }
  9308. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9309. DeleteColumn(serverPath, cpIndex, cpDel);
  9310. DeleteColumn(serverPath, dsIndex, dsDel);
  9311. DeleteColumn(serverPath, cssIndex, cssDel);
  9312. DeleteColumn(serverPath, zcIndex, zcDel);
  9313. DeleteColumn(serverPath, otherIndex, otherDel);
  9314. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9315. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9316. DeleteColumn(serverPath, singleIndex, singleDel);
  9317. #endregion
  9318. //只保留第一个表格
  9319. DeleteSheet(serverPath);
  9320. return Ok(JsonView(true, "操作成功", url = rst));
  9321. }
  9322. /// <summary>
  9323. /// 删除指定列
  9324. /// </summary>
  9325. /// <param name="file"></param>
  9326. /// <param name="columnIndex"></param>
  9327. /// <param name="isDel"></param>
  9328. private void DeleteColumn(string file, int columnIndex, bool isDel)
  9329. {
  9330. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9331. //wb.Save(file);
  9332. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9333. if (sheet1 != null)
  9334. {
  9335. if (isDel)
  9336. {
  9337. Cells cells = sheet1.Cells;
  9338. cells.DeleteColumn(columnIndex);
  9339. }
  9340. }
  9341. wb.Save(file);
  9342. }
  9343. /// <summary>
  9344. /// 删除sheet
  9345. /// </summary>
  9346. /// <param name="file"></param>
  9347. /// <param name="sheetName"></param>
  9348. private void DeleteSheet(string file, string sheetName = "")
  9349. {
  9350. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9351. //wb.Save(file);
  9352. List<string> sheets = new List<string>();
  9353. foreach (var item in wb.Worksheets)
  9354. {
  9355. sheets.Add(item.Name);
  9356. }
  9357. if (sheets.Count > 0)
  9358. {
  9359. sheets.RemoveAt(0);//不删除第一个sheet
  9360. foreach (var item in sheets)
  9361. {
  9362. wb.Worksheets.RemoveAt(item);
  9363. }
  9364. }
  9365. wb.Save(file);
  9366. }
  9367. /// <summary>
  9368. /// 酒店预订
  9369. /// 确认单
  9370. /// </summary>
  9371. /// <param name="_dto"></param>
  9372. /// <returns></returns>
  9373. [HttpPost]
  9374. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9375. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9376. {
  9377. try
  9378. {
  9379. #region 参数验证
  9380. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9381. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9382. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9383. #region 团组操作权限验证 76 酒店预定模块
  9384. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9385. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9386. #endregion
  9387. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9388. #region 页面操作权限验证
  9389. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9390. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9391. #endregion
  9392. #endregion
  9393. //团组信息
  9394. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9395. //酒店数据
  9396. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9397. if (listhoteldata.Count < 0)
  9398. {
  9399. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9400. }
  9401. //利datatable存储
  9402. DataTable dt = new DataTable();
  9403. dt.Columns.Add("CheckInDate", typeof(string));
  9404. dt.Columns.Add("City", typeof(string));
  9405. dt.Columns.Add("Hotel", typeof(string));
  9406. dt.Columns.Add("Room", typeof(string));
  9407. for (int i = 0; i < listhoteldata.Count; i++)
  9408. {
  9409. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9410. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9411. while (dayStart < dayEnd)
  9412. {
  9413. string temp = "";
  9414. DataRow row = dt.NewRow();
  9415. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9416. row["City"] = listhoteldata[i].City;
  9417. row["Hotel"] = listhoteldata[i].HotelName;
  9418. if (listhoteldata[i].SingleRoomCount > 0)
  9419. {
  9420. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9421. }
  9422. if (listhoteldata[i].DoubleRoomCount > 0)
  9423. {
  9424. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9425. }
  9426. if (listhoteldata[i].SuiteRoomCount > 0)
  9427. {
  9428. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9429. }
  9430. if (listhoteldata[i].OtherRoomCount > 0)
  9431. {
  9432. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9433. }
  9434. row["Room"] = temp;
  9435. dt.Rows.Add(row);
  9436. dayStart = dayStart.AddDays(1);
  9437. }
  9438. }
  9439. Dictionary<string, string> dic = new Dictionary<string, string>();
  9440. dic.Add("Dele", di.TeamName);
  9441. dic.Add("City", di.VisitCountry);
  9442. //模板路径
  9443. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9444. //载入模板
  9445. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9446. DocumentBuilder builder = new DocumentBuilder(doc);
  9447. foreach (var key in dic.Keys)
  9448. {
  9449. builder.MoveToBookmark(key);
  9450. builder.Write(dic[key]);
  9451. }
  9452. //获取word里所有表格
  9453. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9454. //获取所填表格的序数
  9455. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9456. var rowStart = tableOne.Rows[0]; //获取第1行
  9457. //循环赋值
  9458. for (int i = 0; i < dt.Rows.Count; i++)
  9459. {
  9460. builder.MoveToCell(0, i + 1, 0, 0);
  9461. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9462. builder.MoveToCell(0, i + 1, 1, 0);
  9463. builder.Write(dt.Rows[i]["City"].ToString());
  9464. builder.MoveToCell(0, i + 1, 2, 0);
  9465. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9466. builder.MoveToCell(0, i + 1, 3, 0);
  9467. builder.Write(dt.Rows[i]["Room"].ToString());
  9468. }
  9469. //删除多余行
  9470. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9471. {
  9472. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9473. }
  9474. string strFileName = di.TeamName + "酒店确认单.doc";
  9475. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9476. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9477. return Ok(JsonView(true, "成功", url));
  9478. }
  9479. catch (Exception ex)
  9480. {
  9481. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9482. }
  9483. }
  9484. #endregion
  9485. #region 团组状态
  9486. /// <summary>
  9487. /// 团组状态列表 Page
  9488. /// </summary>
  9489. /// <param name="dto">团组列表请求dto</param>
  9490. /// <returns></returns>
  9491. [HttpPost]
  9492. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9493. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9494. {
  9495. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9496. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9497. {
  9498. string sqlWhere = string.Empty;
  9499. if (dto.IsSure == 0) //未完成
  9500. {
  9501. sqlWhere += string.Format(@" And IsSure = 0");
  9502. }
  9503. else if (dto.IsSure == 1) //已完成
  9504. {
  9505. sqlWhere += string.Format(@" And IsSure = 1");
  9506. }
  9507. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9508. {
  9509. string tj = dto.SearchCriteria;
  9510. 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}%')",
  9511. tj, tj, tj, tj, tj);
  9512. }
  9513. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9514. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9515. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9516. From (
  9517. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9518. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9519. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9520. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9521. From Grp_DelegationInfo gdi
  9522. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9523. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9524. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9525. Where gdi.IsDel = 0 {0}
  9526. ) temp ", sqlWhere);
  9527. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9528. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9529. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9530. }
  9531. else
  9532. {
  9533. return Ok(JsonView(false, "查询失败"));
  9534. }
  9535. }
  9536. /// <summary>
  9537. /// 团组状态
  9538. /// 设置操作完成
  9539. /// </summary>
  9540. /// <param name="dto">团组列表请求dto</param>
  9541. /// <returns></returns>
  9542. [HttpPost]
  9543. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9544. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9545. {
  9546. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9547. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9548. {
  9549. Id = dto.Id,
  9550. IsSure = 1
  9551. };
  9552. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9553. .UpdateColumns(it => new { it.IsSure })
  9554. .WhereColumns(it => new { it.Id })
  9555. .ExecuteCommandAsync();
  9556. if (result > 0)
  9557. {
  9558. return Ok(JsonView(true, "操作完成!"));
  9559. }
  9560. return Ok(JsonView(false, "操作失败!"));
  9561. }
  9562. #endregion
  9563. #region 保险费用录入
  9564. /// <summary>
  9565. /// 根据团组Id查询保险费用列表
  9566. /// </summary>
  9567. /// <param name="dto"></param>
  9568. /// <returns></returns>
  9569. [HttpPost]
  9570. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9571. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9572. {
  9573. try
  9574. {
  9575. Result groupData = await _customersRep.CustomersByDiId(dto);
  9576. if (groupData.Code != 0)
  9577. {
  9578. return Ok(JsonView(false, groupData.Msg));
  9579. }
  9580. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9581. }
  9582. catch (Exception ex)
  9583. {
  9584. return Ok(JsonView(false, ex.Message));
  9585. }
  9586. }
  9587. /// <summary>
  9588. /// 根据保险费用Id查询保险费用详细
  9589. /// </summary>
  9590. /// <param name="dto"></param>
  9591. /// <returns></returns>
  9592. [HttpPost]
  9593. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9594. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9595. {
  9596. try
  9597. {
  9598. Result groupData = await _customersRep.CustomersById(dto);
  9599. if (groupData.Code != 0)
  9600. {
  9601. return Ok(JsonView(false, groupData.Msg));
  9602. }
  9603. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9604. }
  9605. catch (Exception ex)
  9606. {
  9607. return Ok(JsonView(false, ex.Message));
  9608. }
  9609. }
  9610. /// <summary>
  9611. /// 保险费用录入页面初始化绑定
  9612. /// </summary>
  9613. /// <param name="dto"></param>
  9614. /// <returns></returns>
  9615. [HttpPost]
  9616. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9617. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9618. {
  9619. try
  9620. {
  9621. Result groupData = await _customersRep.CustomersInitialize(dto);
  9622. if (groupData.Code != 0)
  9623. {
  9624. return Ok(JsonView(false, groupData.Msg));
  9625. }
  9626. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9627. }
  9628. catch (Exception ex)
  9629. {
  9630. return Ok(JsonView(false, ex.Message));
  9631. }
  9632. }
  9633. /// <summary>
  9634. /// 保险费用操作(Status:1.新增,2.修改)
  9635. /// </summary>
  9636. /// <param name="dto"></param>
  9637. /// <returns></returns>
  9638. [HttpPost]
  9639. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9640. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9641. {
  9642. try
  9643. {
  9644. Result groupData = await _customersRep.OpCustomers(dto);
  9645. if (groupData.Code != 0)
  9646. {
  9647. return Ok(JsonView(false, groupData.Msg));
  9648. }
  9649. #region 应用推送
  9650. try
  9651. {
  9652. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9653. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9654. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9655. }
  9656. catch (Exception ex)
  9657. {
  9658. }
  9659. #endregion
  9660. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9661. }
  9662. catch (Exception ex)
  9663. {
  9664. return Ok(JsonView(false, ex.Message));
  9665. }
  9666. }
  9667. /// <summary>
  9668. /// 保险文件上传
  9669. /// </summary>
  9670. /// <param name="file"></param>
  9671. /// <returns></returns>
  9672. [HttpPost]
  9673. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9674. public async Task<IActionResult> UploadCus(IFormFile file)
  9675. {
  9676. try
  9677. {
  9678. if (file != null)
  9679. {
  9680. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9681. //文件名称
  9682. string projectFileName = file.FileName;
  9683. //上传的文件的路径
  9684. string filePath = "";
  9685. if (!Directory.Exists(fileDir))
  9686. {
  9687. Directory.CreateDirectory(fileDir);
  9688. }
  9689. //上传的文件的路径
  9690. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9691. using (FileStream fs = System.IO.File.Create(filePath))
  9692. {
  9693. file.CopyTo(fs);
  9694. fs.Flush();
  9695. }
  9696. return Ok(JsonView(true, "上传成功!", projectFileName));
  9697. }
  9698. else
  9699. {
  9700. return Ok(JsonView(false, "上传失败!"));
  9701. }
  9702. }
  9703. catch (Exception ex)
  9704. {
  9705. return Ok(JsonView(false, "程序错误!"));
  9706. throw;
  9707. }
  9708. }
  9709. /// <summary>
  9710. /// 保险删除指定文件
  9711. /// </summary>
  9712. /// <param name="dto"></param>
  9713. /// <returns></returns>
  9714. [HttpPost]
  9715. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9716. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9717. {
  9718. try
  9719. {
  9720. string filePath = "";
  9721. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9722. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9723. //int id = 0;
  9724. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9725. // 删除该文件
  9726. try
  9727. {
  9728. System.IO.File.Delete(filePath);
  9729. 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()
  9730. {
  9731. Attachment = "",
  9732. }).ExecuteCommandAsync();
  9733. if (result != 0)
  9734. {
  9735. return Ok(JsonView(true, "成功!"));
  9736. }
  9737. else
  9738. {
  9739. return Ok(JsonView(false, "失败!"));
  9740. }
  9741. }
  9742. catch (Exception)
  9743. {
  9744. 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()
  9745. {
  9746. Attachment = "",
  9747. }).ExecuteCommandAsync();
  9748. if (result != 0)
  9749. {
  9750. return Ok(JsonView(true, "成功!"));
  9751. }
  9752. else
  9753. {
  9754. return Ok(JsonView(false, "失败!"));
  9755. }
  9756. }
  9757. }
  9758. catch (Exception ex)
  9759. {
  9760. return Ok(JsonView(false, "程序错误!"));
  9761. throw;
  9762. }
  9763. }
  9764. /// <summary>
  9765. /// 保险费用操作(删除)
  9766. /// </summary>
  9767. /// <param name="dto"></param>
  9768. /// <returns></returns>
  9769. [HttpPost]
  9770. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9771. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9772. {
  9773. try
  9774. {
  9775. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9776. if (!res)
  9777. {
  9778. return Ok(JsonView(false, "删除失败"));
  9779. }
  9780. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9781. {
  9782. IsDel = 1,
  9783. DeleteUserId = dto.DeleteUserId,
  9784. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9785. }).ExecuteCommandAsync();
  9786. return Ok(JsonView(true, "删除成功!"));
  9787. }
  9788. catch (Exception ex)
  9789. {
  9790. return Ok(JsonView(false, "程序错误!"));
  9791. throw;
  9792. }
  9793. }
  9794. #endregion
  9795. #region 接团客户名单 PageId 104
  9796. /// <summary>
  9797. /// 接团客户名单
  9798. /// 迁移数据(慎用!)
  9799. /// </summary>
  9800. /// <param name="dto"></param>
  9801. /// <returns></returns>
  9802. [HttpPost]
  9803. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9804. public async Task<IActionResult> PostTourClientListChange()
  9805. {
  9806. try
  9807. {
  9808. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9809. //var groupClinetData1
  9810. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9811. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9812. int updateCount = 0;
  9813. if (oldOAClientList.Count > 0)
  9814. {
  9815. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9816. _sqlSugar.BeginTran();
  9817. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9818. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9819. foreach (var item in oldOAClientList)
  9820. {
  9821. int comId = 0;
  9822. string format = "yyyy-MM-dd HH:mm:ss";
  9823. string data11 = "1990-01-01 00:00";
  9824. var data1 = IsValidDate(item.OPdate, format);
  9825. if (data1) data11 = item.OPdate;
  9826. //客户公司验证
  9827. if (!string.IsNullOrEmpty(item.Company))
  9828. {
  9829. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9830. if (clientComInfo == null) // add
  9831. {
  9832. var addInfo = new Crm_CustomerCompany()
  9833. {
  9834. CompanyAbbreviation = "",
  9835. CompanyFullName = item.Company,
  9836. Address = "",
  9837. PostCodes = "",
  9838. LastedOpUserId = item.OPer,
  9839. LastedOpDt = Convert.ToDateTime(data11),
  9840. CreateUserId = item.OPer,
  9841. CreateTime = Convert.ToDateTime(data11),
  9842. IsDel = 0
  9843. };
  9844. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9845. if (comId1 > 0) comId = comId1;
  9846. }
  9847. else comId = clientComInfo.Id;
  9848. }
  9849. //客户人员验证
  9850. int clientId = 0;
  9851. string name = item.LastName + item.Name;
  9852. if (!string.IsNullOrEmpty(name))
  9853. {
  9854. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9855. if (clientInfo == null)
  9856. {
  9857. DateTime? dateTime = null;
  9858. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9859. if (isDt) dateTime = birthDayDt;
  9860. var addInfo1 = new Crm_DeleClient()
  9861. {
  9862. CrmCompanyId = comId,
  9863. DiId = -1,
  9864. LastName = item.LastName,
  9865. FirstName = item.Name,
  9866. OldName = "",
  9867. Pinyin = item.Pinyin,
  9868. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9869. Marriage = 0,
  9870. Phone = item.Phone,
  9871. Job = item.Job,
  9872. BirthDay = dateTime
  9873. };
  9874. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9875. if (clientId1 > 0) clientId = clientId1;
  9876. }
  9877. else clientId = clientInfo.Id;
  9878. }
  9879. if (clientId < 1)
  9880. {
  9881. continue;
  9882. }
  9883. int airType = 0;
  9884. if (item.AirType == "超经舱") airType = 459;
  9885. else if (item.AirType == "公务舱") airType = 458;
  9886. else if (item.AirType == "经济舱") airType = 460;
  9887. else if (item.AirType == "其他") airType = 565;
  9888. else if (item.AirType == "头等舱") airType = 457;
  9889. var _TourClientListEntity = new Grp_TourClientList()
  9890. {
  9891. DiId = item.Diid,
  9892. ClientId = clientId,
  9893. CreateUserId = item.OPer,
  9894. CreateTime = Convert.ToDateTime(data11),
  9895. Remark = item.Remark,
  9896. IsDel = item.Isdel,
  9897. ShippingSpaceTypeId = airType,
  9898. ShippingSpaceSpecialNeeds = item.AirRemark,
  9899. HotelSpecialNeeds = item.RoomType
  9900. };
  9901. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9902. if (_TourClientList > 0)
  9903. {
  9904. updateCount++;
  9905. }
  9906. }
  9907. _sqlSugar.CommitTran();
  9908. }
  9909. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9910. }
  9911. catch (Exception ex)
  9912. {
  9913. _sqlSugar.RollbackTran();
  9914. return Ok(JsonView(false, ex.Message));
  9915. }
  9916. return Ok(JsonView(true));
  9917. }
  9918. private bool IsValidDate(string dateString, string format)
  9919. {
  9920. DateTime dateValue;
  9921. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9922. return valid;
  9923. }
  9924. /// <summary>
  9925. /// 接团客户名单
  9926. /// 根据团组Id查询List
  9927. /// </summary>
  9928. /// <param name="dto"></param>
  9929. /// <returns></returns>
  9930. [HttpPost]
  9931. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9932. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9933. {
  9934. #region 参数验证
  9935. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9936. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9937. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9938. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9939. #region 页面操作权限验证
  9940. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9941. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9942. #endregion
  9943. #endregion
  9944. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9945. if (viewData.Code != 0)
  9946. {
  9947. return Ok(JsonView(false, viewData.Msg));
  9948. }
  9949. return Ok(JsonView(viewData.Data));
  9950. }
  9951. /// <summary>
  9952. /// 接团客户名单
  9953. /// 基础数据 Init
  9954. /// </summary>
  9955. /// <param name="_dto"></param>
  9956. /// <returns></returns>
  9957. [HttpPost]
  9958. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9959. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9960. {
  9961. #region 参数验证
  9962. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9963. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9964. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9965. #region 页面操作权限验证
  9966. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9967. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9968. #endregion
  9969. #endregion
  9970. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9971. if (viewData.Code != 0)
  9972. {
  9973. return Ok(JsonView(false, viewData.Msg));
  9974. }
  9975. return Ok(JsonView(viewData.Data));
  9976. }
  9977. /// <summary>
  9978. /// 接团客户名单
  9979. /// 根据 Id查询 Details
  9980. /// </summary>
  9981. /// <param name="_dto"></param>
  9982. /// <returns></returns>
  9983. [HttpPost]
  9984. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9985. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9986. {
  9987. #region 参数验证
  9988. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9989. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9990. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9991. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9992. #region 页面操作权限验证
  9993. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9994. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9995. #endregion
  9996. #endregion
  9997. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9998. if (viewData.Code != 0)
  9999. {
  10000. return Ok(JsonView(false, viewData.Msg));
  10001. }
  10002. return Ok(JsonView(viewData.Data));
  10003. }
  10004. /// <summary>
  10005. /// 接团客户名单
  10006. /// Add Or Edit
  10007. /// </summary>
  10008. /// <param name="_dto"></param>
  10009. /// <returns></returns>
  10010. [HttpPost]
  10011. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10012. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  10013. {
  10014. #region 参数验证
  10015. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10016. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10017. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10018. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10019. #region 页面操作权限验证
  10020. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10021. if (_dto.Id == 0) //添加
  10022. {
  10023. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10024. }
  10025. else if (_dto.Id >= 0) //修改
  10026. {
  10027. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  10028. }
  10029. #endregion
  10030. #endregion
  10031. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  10032. if (viewData.Code != 0)
  10033. {
  10034. return Ok(JsonView(false, viewData.Msg));
  10035. }
  10036. return Ok(JsonView(true));
  10037. }
  10038. /// <summary>
  10039. /// 接团客户名单
  10040. /// AddMultiple(添加多个)
  10041. /// </summary>
  10042. /// <param name="_dto"></param>
  10043. /// <returns></returns>
  10044. [HttpPost]
  10045. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10046. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  10047. {
  10048. #region 参数验证
  10049. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10050. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10051. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10052. #region 页面操作权限验证
  10053. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10054. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10055. #endregion
  10056. #endregion
  10057. var viewData = await _tourClientListRep._AddMultiple(_dto);
  10058. if (viewData.Code != 0)
  10059. {
  10060. return Ok(JsonView(false, viewData.Msg));
  10061. }
  10062. return Ok(JsonView(true));
  10063. }
  10064. /// <summary>
  10065. /// 接团客户名单
  10066. /// Del
  10067. /// </summary>
  10068. /// <param name="_dto"></param>
  10069. /// <returns></returns>
  10070. [HttpPost]
  10071. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10072. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  10073. {
  10074. #region 参数验证
  10075. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10076. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10077. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10078. #region 页面操作权限验证
  10079. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10080. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  10081. #endregion
  10082. #endregion
  10083. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  10084. if (viewData.Code != 0)
  10085. {
  10086. return Ok(JsonView(false, viewData.Msg));
  10087. }
  10088. return Ok(JsonView(true));
  10089. }
  10090. /// <summary>
  10091. /// 接团客户名单
  10092. /// 文件下载 客户名单
  10093. /// </summary>
  10094. /// <param name="_dto"></param>
  10095. /// <returns></returns>
  10096. [HttpPost]
  10097. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10098. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  10099. {
  10100. #region 参数验证
  10101. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10102. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10103. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10104. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10105. #region 页面操作权限验证
  10106. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10107. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10108. #endregion
  10109. #endregion
  10110. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10111. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10112. From Grp_TourClientList tcl
  10113. Left Join
  10114. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10115. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10116. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10117. From Crm_DeleClient dc
  10118. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10119. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10120. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10121. Where dc.IsDel = 0) temp
  10122. On temp.DcId =tcl.ClientId
  10123. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10124. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10125. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10126. //载入模板
  10127. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10128. if (_dto.Language == 1)
  10129. {
  10130. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10131. }
  10132. //载入模板
  10133. var doc = new Document(tempPath);
  10134. DocumentBuilder builder = new DocumentBuilder(doc);
  10135. //获取word里所有表格
  10136. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10137. //获取所填表格的序数
  10138. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10139. var rowStart = tableOne.Rows[0]; //获取第1行
  10140. if (_dto.Language == 0)
  10141. {
  10142. //循环赋值
  10143. for (int i = 0; i < DcList.Count; i++)
  10144. {
  10145. builder.MoveToCell(0, i + 1, 0, 0);
  10146. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10147. builder.MoveToCell(0, i + 1, 1, 0);
  10148. int sex = DcList[i].Sex;
  10149. string sexStr = string.Empty;
  10150. if (sex == 0) sexStr = "男";
  10151. else if (sex == 1) sexStr = "女";
  10152. else sexStr = "未设置";
  10153. builder.Write(sexStr);
  10154. builder.MoveToCell(0, i + 1, 2, 0);
  10155. string birthDay = DcList[i].BirthDay;
  10156. string birthDayStr = string.Empty;
  10157. if (!string.IsNullOrEmpty(birthDay))
  10158. {
  10159. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10160. }
  10161. builder.Write(birthDayStr);
  10162. builder.MoveToCell(0, i + 1, 3, 0);
  10163. string company = "";
  10164. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10165. {
  10166. company = DcList[i].CompanyFullName.ToString();
  10167. }
  10168. builder.Write(company);
  10169. builder.MoveToCell(0, i + 1, 4, 0);
  10170. builder.Write(DcList[i].Job);
  10171. }
  10172. }
  10173. else if (_dto.Language == 1)
  10174. {
  10175. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10176. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10177. List<string> transArrayStr = new List<string>();
  10178. string transStrRes1 = "";
  10179. for (int i = 0; i < DcList.Count; i++)
  10180. {
  10181. var dc = DcList[i];
  10182. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  10183. if (dc.Job.Equals("暂无")) dc.Job = "-";
  10184. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  10185. if (DcList.Count - 1 == i) transStrRes1 += str1;
  10186. else transStrRes1 += $"{str1}|";
  10187. }
  10188. //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";
  10189. string transStrRes = "";
  10190. if (transStrRes1.Length > 0 )
  10191. {
  10192. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  10193. }
  10194. //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
  10195. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  10196. //List<string> transArray = new List<string> { };
  10197. List<TranslateInfo> transArray = new List<TranslateInfo>();
  10198. if (transStrRes.Contains("|"))
  10199. {
  10200. string[] transArray1 = transStrRes.Split('|');
  10201. if (transArray1.Length > 0)
  10202. {
  10203. foreach (var item in transArray1)
  10204. {
  10205. if (item.Contains("&"))
  10206. {
  10207. string[] transArray2 = item.Split('&');
  10208. int index = 0;
  10209. string companyName = "", job = "";
  10210. if (transArray2.Length > 0)
  10211. {
  10212. bool success = int.TryParse(transArray2[0].Trim(), out index);
  10213. if (1 < transArray2.Length) companyName = transArray2[1];
  10214. if (2 < transArray2.Length) job = transArray2[2];
  10215. }
  10216. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  10217. }
  10218. }
  10219. }
  10220. }
  10221. //循环赋值
  10222. for (int i = 0; i < DcList.Count; i++)
  10223. {
  10224. string PYName = "";
  10225. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10226. {
  10227. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10228. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10229. PYName = PY_First + " " + PY_Last;
  10230. }
  10231. else
  10232. {
  10233. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10234. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10235. PYName = PY_First + " " + PY_Last;
  10236. }
  10237. builder.MoveToCell(0, i + 1, 0, 0);
  10238. builder.Write(PYName);
  10239. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10240. builder.MoveToCell(0, i + 1, 1, 0);
  10241. builder.Write(sex);
  10242. DateTime birthDt;
  10243. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10244. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  10245. builder.MoveToCell(0, i + 1, 2, 0);
  10246. builder.Write(birthday);
  10247. string company = string.Empty,job = string.Empty;
  10248. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  10249. if (dcTransInfo != null)
  10250. {
  10251. company = dcTransInfo.CompanyName;
  10252. job = dcTransInfo.Job;
  10253. }
  10254. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10255. {
  10256. //查询对照表
  10257. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10258. if (tempCec != null)
  10259. {
  10260. company = tempCec.enName;
  10261. }
  10262. //翻译
  10263. else
  10264. {
  10265. }
  10266. }
  10267. builder.MoveToCell(0, i + 1, 3, 0);
  10268. builder.Write(company);
  10269. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10270. {
  10271. //查询对照表
  10272. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10273. if (tempPec != null)
  10274. {
  10275. job = tempPec.enName;
  10276. }
  10277. //翻译
  10278. else
  10279. {
  10280. }
  10281. }
  10282. builder.MoveToCell(0, i + 1, 4, 0);
  10283. builder.Write(job);
  10284. }
  10285. }
  10286. //删除多余行
  10287. while (tableOne.Rows.Count > DcList.Count + 1)
  10288. {
  10289. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10290. }
  10291. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10292. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10293. doc.Save(fileDir);
  10294. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10295. return Ok(JsonView(true, "操作成功!", Url));
  10296. }
  10297. private class TranslateInfo
  10298. {
  10299. public int Index { get; set; }
  10300. public string CompanyName { get; set; }
  10301. public string Job { get; set; }
  10302. }
  10303. #endregion
  10304. #region 团组倒推表
  10305. /// <summary>
  10306. /// 倒推表基础数据
  10307. /// Init
  10308. /// </summary>
  10309. /// <param name="dto"></param>
  10310. /// <returns></returns>
  10311. [HttpPost]
  10312. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10313. public async Task<IActionResult> PostInvertedListInit()
  10314. {
  10315. var viewData = await _invertedListRep._Init();
  10316. if (viewData.Code != 0)
  10317. {
  10318. return Ok(JsonView(false, viewData.Msg));
  10319. }
  10320. return Ok(JsonView(viewData.Data));
  10321. }
  10322. /// <summary>
  10323. /// 倒推表
  10324. /// Info
  10325. /// </summary>
  10326. /// <param name="dto"></param>
  10327. /// <returns></returns>
  10328. [HttpPost]
  10329. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10330. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10331. {
  10332. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10333. if (viewData.Code != 0)
  10334. {
  10335. return Ok(JsonView(false, viewData.Msg));
  10336. }
  10337. return Ok(JsonView(viewData.Data));
  10338. }
  10339. /// <summary>
  10340. /// 倒推表
  10341. /// Create
  10342. /// </summary>
  10343. /// <param name="dto"></param>
  10344. /// <returns></returns>
  10345. [HttpPost]
  10346. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10347. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10348. {
  10349. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10350. if (viewData.Code != 0)
  10351. {
  10352. return Ok(JsonView(false, viewData.Msg));
  10353. }
  10354. return Ok(JsonView(viewData.Data));
  10355. }
  10356. /// <summary>
  10357. /// 倒推表
  10358. /// Update
  10359. /// </summary>
  10360. /// <param name="dto"></param>
  10361. /// <returns></returns>
  10362. [HttpPost]
  10363. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10364. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10365. {
  10366. var viewData = await _invertedListRep._Update(dto);
  10367. if (viewData.Code != 0)
  10368. {
  10369. return Ok(JsonView(false, viewData.Msg));
  10370. }
  10371. return Ok(JsonView(viewData.Data));
  10372. }
  10373. /// <summary>
  10374. /// 倒推表
  10375. /// File Download
  10376. /// </summary>
  10377. /// <param name="dto"></param>
  10378. /// <returns></returns>
  10379. [HttpPost]
  10380. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10381. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10382. {
  10383. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10384. if (info2.Code != 0)
  10385. {
  10386. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10387. }
  10388. var info1 = info2.Data as InvertedListInfoView;
  10389. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10390. string teamName = "";
  10391. if (info != null) teamName = info.TeamName;
  10392. //载入模板
  10393. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10394. DocumentBuilder builder = new DocumentBuilder(doc);
  10395. //利用键值对存放数据
  10396. Dictionary<string, string> dic = new Dictionary<string, string>();
  10397. dic.Add("TeamName", teamName);
  10398. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10399. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10400. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10401. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10402. dic.Add("SQRemark", info1.ApprovalRemark);
  10403. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10404. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10405. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10406. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10407. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10408. dic.Add("QZRemark", info1.VisaInformationRemark);
  10409. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10410. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10411. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10412. dic.Add("CQRemark", info1.IssueVisaRemark);
  10413. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10414. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10415. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10416. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10417. #region 填充word模板书签内容
  10418. foreach (var key in dic.Keys)
  10419. {
  10420. builder.MoveToBookmark(key);
  10421. builder.Write(dic[key]);
  10422. }
  10423. #endregion
  10424. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10425. string fileName = $"{teamName}团出行准备流程表.doc";
  10426. string filePath = fileDir + $@"InvertedList/{fileName}";
  10427. doc.Save(filePath);
  10428. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10429. return Ok(JsonView(true, "操作成功!", Url));
  10430. }
  10431. #endregion
  10432. #region 三公签证费用(签证费、代办费)
  10433. /// <summary>
  10434. /// 三公签证费用(签证费、代办费)
  10435. /// List
  10436. /// </summary>
  10437. /// <returns></returns>
  10438. [HttpPost]
  10439. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10440. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10441. {
  10442. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10443. if (_view.Code != 0)
  10444. {
  10445. return Ok(JsonView(false, _view.Msg));
  10446. }
  10447. return Ok(JsonView(true, "操作成功!", _view.Data));
  10448. }
  10449. /// <summary>
  10450. /// 三公签证费用(签证费、代办费)
  10451. /// Add Or Update
  10452. /// </summary>
  10453. /// <returns></returns>
  10454. [HttpPost]
  10455. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10456. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10457. {
  10458. var _view = await _visaFeeInfoRep._Update(_dto);
  10459. if (_view.Code != 0)
  10460. {
  10461. return Ok(JsonView(false, _view.Msg));
  10462. }
  10463. return Ok(JsonView(true, _view.Msg));
  10464. }
  10465. #endregion
  10466. #region 酒店询价
  10467. /// <summary>
  10468. /// 酒店询价
  10469. /// Init
  10470. /// </summary>
  10471. /// <param name="dto"></param>
  10472. /// <returns></returns>
  10473. [HttpPost]
  10474. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10475. public async Task<IActionResult> PostHotelInquiryInit()
  10476. {
  10477. var res = await _hotelInquiryRep._Init();
  10478. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10479. return Ok(JsonView(true, res.Msg, res.Data));
  10480. }
  10481. /// <summary>
  10482. /// 酒店询价
  10483. /// page Item
  10484. /// </summary>
  10485. /// <param name="_dto"></param>
  10486. /// <returns></returns>
  10487. [HttpPost]
  10488. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10489. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10490. {
  10491. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10492. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10493. var view = res.Data as PageDataViewBase;
  10494. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10495. }
  10496. /// <summary>
  10497. /// 酒店询价
  10498. /// info
  10499. /// </summary>
  10500. /// <param name="_dto"></param>
  10501. /// <returns></returns>
  10502. [HttpPost]
  10503. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10504. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10505. {
  10506. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10507. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10508. return Ok(JsonView(true, res.Msg, res.Data));
  10509. }
  10510. /// <summary>
  10511. /// 酒店询价
  10512. /// Add Or Edit
  10513. /// </summary>
  10514. /// <param name="_dto"></param>
  10515. /// <returns></returns>
  10516. [HttpPost]
  10517. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10518. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10519. {
  10520. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10521. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10522. return Ok(JsonView(true, res.Msg, res.Data));
  10523. }
  10524. /// <summary>
  10525. /// 酒店询价
  10526. /// Del
  10527. /// </summary>
  10528. /// <param name="_dto"></param>
  10529. /// <returns></returns>
  10530. [HttpPost]
  10531. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10532. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10533. {
  10534. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10535. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10536. return Ok(JsonView(true, res.Msg, res.Data));
  10537. }
  10538. #endregion
  10539. #region 下载匹配op行程单
  10540. /// <summary>
  10541. /// 匹配op行程单
  10542. /// Init
  10543. /// </summary>
  10544. /// <param name="dto">团组列表请求dto</param>
  10545. /// <returns></returns>
  10546. [HttpPost]
  10547. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10548. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10549. {
  10550. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10551. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10552. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10553. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10554. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10555. .Where(it => it.IsDel == 0)
  10556. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10557. .OrderByDescending(it => it.CreateUserId)
  10558. .ToList();
  10559. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10560. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10561. var diids = groupInfos.Select(it => it.Id).ToList();
  10562. List<string> countrys = new List<string>();
  10563. foreach (var item in country)
  10564. {
  10565. var data = _groupRepository.FormartTeamName(item);
  10566. var dataArray = _groupRepository.GroupSplitCountry(data);
  10567. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10568. }
  10569. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10570. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10571. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10572. foreach (var item in areaItem)
  10573. {
  10574. string areaStr = item.Value;
  10575. if (!string.IsNullOrEmpty(areaStr))
  10576. {
  10577. string[] str1 = areaStr.Split("-");
  10578. if (str1.Length > 0)
  10579. {
  10580. areaArray.AddRange(str1);
  10581. }
  10582. }
  10583. }
  10584. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10585. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10586. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10587. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10588. .ToList();
  10589. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10590. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10591. .Where(it => countriesIds.Contains(it.Id))
  10592. .Select(it => new { it.Id, Name = it.Name_CN })
  10593. .ToList();
  10594. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10595. .Select(it => it.TeamName).ToList();
  10596. stopwatch.Stop();
  10597. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10598. }
  10599. ///// <summary>
  10600. ///// 匹配op行程单
  10601. ///// Init 查询区域数据
  10602. ///// </summary>
  10603. ///// <param name="dto">团组列表请求dto</param>
  10604. ///// <returns></returns>
  10605. //[HttpPost]
  10606. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10607. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10608. //{
  10609. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10610. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10611. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10612. // if (string.IsNullOrEmpty(countriesDataStr))
  10613. // {
  10614. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10615. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10616. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10617. // }
  10618. // else
  10619. // {
  10620. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10621. // }
  10622. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10623. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10624. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10625. // List<dynamic> childList = new List<dynamic>();
  10626. // int parentId = dto.CountriesId;
  10627. // if (provinceData.Count > 1)
  10628. // {
  10629. // foreach (var item1 in provinceData)
  10630. // {
  10631. // List<dynamic> childList1 = new List<dynamic>();
  10632. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10633. // foreach (var item2 in citiesData1)
  10634. // {
  10635. // List<dynamic> childList2 = new List<dynamic>();
  10636. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10637. // foreach (var item3 in countiesData1)
  10638. // {
  10639. // childList2.Add(new
  10640. // {
  10641. // id = item3.Id,
  10642. // parentId = item2.Id,
  10643. // level = "district",
  10644. // name = item3.Name_CN,
  10645. // });
  10646. // }
  10647. // childList1.Add(new
  10648. // {
  10649. // id = item2.Id,
  10650. // parentId = item1.Id,
  10651. // level = "city",
  10652. // name = item2.Name_CN,
  10653. // childList = childList2
  10654. // });
  10655. // }
  10656. // childList.Add(new
  10657. // {
  10658. // id = item1.Id,
  10659. // parentId = parentId,
  10660. // level = "province",
  10661. // name = item1.Name_CN,
  10662. // childList = childList1
  10663. // });
  10664. // }
  10665. // //城市
  10666. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10667. // foreach (var item2 in citiesData2)
  10668. // {
  10669. // List<dynamic> childList22 = new List<dynamic>();
  10670. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10671. // foreach (var item3 in countiesData1)
  10672. // {
  10673. // childList22.Add(new
  10674. // {
  10675. // id = item3.Id,
  10676. // parentId = item2.Id,
  10677. // level = "district",
  10678. // name = item3.Name_CN,
  10679. // });
  10680. // }
  10681. // childList.Add(new
  10682. // {
  10683. // id = item2.Id,
  10684. // parentId = parentId,
  10685. // level = "city",
  10686. // name = item2.Name_CN,
  10687. // childList = childList22
  10688. // });
  10689. // }
  10690. // }
  10691. // else
  10692. // {
  10693. // foreach (var item2 in citiesData)
  10694. // {
  10695. // string cname = item2.Name_CN;
  10696. // List<dynamic> childList1 = new List<dynamic>();
  10697. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10698. // foreach (var item3 in countiesData1)
  10699. // {
  10700. // childList1.Add(new
  10701. // {
  10702. // Id = item3.Id,
  10703. // parentId = item2.Id,
  10704. // level = "district",
  10705. // name = item3.Name_CN
  10706. // });
  10707. // }
  10708. // childList.Add(new
  10709. // {
  10710. // id = item2.Id,
  10711. // parentId = parentId,
  10712. // level = "city",
  10713. // name = item2.Name_CN,
  10714. // childList = childList1
  10715. // });
  10716. // }
  10717. // }
  10718. // stopwatch.Stop();
  10719. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10720. //}
  10721. /// <summary>
  10722. /// 匹配op行程单
  10723. /// 接团信息列表 Page
  10724. /// </summary>
  10725. /// <param name="dto">团组列表请求dto</param>
  10726. /// <returns></returns>
  10727. [HttpPost]
  10728. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10729. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10730. {
  10731. var swatch = new Stopwatch();
  10732. swatch.Start();
  10733. #region 参数验证
  10734. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10735. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10736. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10737. #region 页面操作权限验证
  10738. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10739. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10740. #endregion
  10741. #endregion
  10742. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10743. {
  10744. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10745. string sqlWhere = "";
  10746. if (!string.IsNullOrEmpty(dto.Country))
  10747. {
  10748. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10749. }
  10750. if (!string.IsNullOrEmpty(dto.Area))
  10751. {
  10752. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10753. }
  10754. if (!string.IsNullOrEmpty(dto.TeamName))
  10755. {
  10756. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10757. }
  10758. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10759. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10760. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10761. swatch.Stop();
  10762. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10763. }
  10764. else
  10765. {
  10766. return Ok(JsonView(false, "查询失败"));
  10767. }
  10768. }
  10769. /// <summary>
  10770. /// 匹配op行程单
  10771. /// 行程单下载
  10772. /// </summary>
  10773. /// <param name="dto">团组列表请求dto</param>
  10774. /// <returns></returns>
  10775. [HttpPost]
  10776. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10777. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10778. {
  10779. #region 参数验证
  10780. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10781. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10782. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10783. #region 页面操作权限验证
  10784. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10785. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10786. #endregion
  10787. #endregion
  10788. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10789. {
  10790. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10791. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10792. }
  10793. else
  10794. {
  10795. return Ok(JsonView(false, "下载失败!"));
  10796. }
  10797. }
  10798. #endregion
  10799. #region 国家信息 数据 注释
  10800. //[HttpPost]
  10801. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10802. //{
  10803. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10804. // foreach (var item in dto)
  10805. // {
  10806. // infos.Add(new Grp_GroupsTaskAssignment()
  10807. // {
  10808. // DIId = item,
  10809. // CTId = 82,
  10810. // UId = 248,
  10811. // IsEnable = 1,
  10812. // CreateUserId = 233,
  10813. // CreateTime = DateTime.Now,
  10814. // IsDel = 0
  10815. // });
  10816. // infos.Add(new Grp_GroupsTaskAssignment()
  10817. // {
  10818. // DIId = item,
  10819. // CTId = 82,
  10820. // UId = 286,
  10821. // IsEnable = 1,
  10822. // CreateUserId = 233,
  10823. // CreateTime = DateTime.Now,
  10824. // IsDel = 0
  10825. // });
  10826. // }
  10827. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10828. // return Ok("操作成功");
  10829. //}
  10830. //public class paramJsonDto
  10831. //{
  10832. // public List<CountriesInfo> str { get; set; }
  10833. //}
  10834. //[HttpPost]
  10835. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10836. //{
  10837. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10838. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10839. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10840. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10841. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10842. // _sqlSugar.BeginTran();
  10843. // int countitiesIndex = 0;
  10844. // foreach (var item in dto.str)
  10845. // {
  10846. // dynamic data = item.c;
  10847. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10848. // if (data != null)
  10849. // {
  10850. // countitiesIndex++;
  10851. // foreach (var item1 in data)
  10852. // {
  10853. // string cnname = item1.cn;
  10854. // string enname = item1.en;
  10855. // Sys_Cities provinceInfo = new Sys_Cities()
  10856. // {
  10857. // CountriesId = countriesId,
  10858. // Name_CN = cnname,
  10859. // Name_EN = enname,
  10860. // ParentId = 0,
  10861. // IsCapital = 1,
  10862. // CreateUserId = 208,
  10863. // CreateTime = DateTime.Now,
  10864. // IsDel = 0
  10865. // };
  10866. // if (item1.lv == "province") //省份
  10867. // {
  10868. // provinceInfo.Level = 1;
  10869. // int provinceId = 0;
  10870. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10871. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10872. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10873. // var data1 = item1.c;
  10874. // foreach (var item2 in data1)
  10875. // {
  10876. // if (item2.lv == "city")
  10877. // {
  10878. // string citycnname = item2.cn;
  10879. // string cityenname = item2.en;
  10880. // Sys_Cities cityInfo = new Sys_Cities()
  10881. // {
  10882. // CountriesId = countriesId,
  10883. // ParentId = provinceId,
  10884. // Level = 2,
  10885. // Name_CN = citycnname,
  10886. // Name_EN = cityenname,
  10887. // IsCapital = 1,
  10888. // CreateUserId = 208,
  10889. // CreateTime = DateTime.Now,
  10890. // IsDel = 0
  10891. // };
  10892. // if (item2.c != null)
  10893. // {
  10894. // int cityId = 0;
  10895. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10896. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10897. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10898. // foreach (var item3 in item2.c)
  10899. // {
  10900. // if (item3.lv == "district")
  10901. // {
  10902. // var districtInfo = new Sys_Cities()
  10903. // {
  10904. // CountriesId = countriesId,
  10905. // Name_CN = item3.cn,
  10906. // Name_EN = item3.en,
  10907. // Level = 3,
  10908. // ParentId = cityId,
  10909. // IsCapital = 1,
  10910. // CreateUserId = 208,
  10911. // CreateTime = DateTime.Now,
  10912. // IsDel = 0
  10913. // };
  10914. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10915. // //{
  10916. // districts.Add(districtInfo);
  10917. // //}
  10918. // }
  10919. // }
  10920. // }
  10921. // else
  10922. // {
  10923. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10924. // //{
  10925. // cities.Add(cityInfo);
  10926. // //}
  10927. // }
  10928. // }
  10929. // }
  10930. // }
  10931. // else if (item1.lv == "city")//城市
  10932. // {
  10933. // provinceInfo.Level = 2;
  10934. // if (item1.c != null)
  10935. // {
  10936. // int cityId = 0;
  10937. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10938. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10939. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10940. // foreach (var item3 in item1.c)
  10941. // {
  10942. // if (item3.lv == "district")
  10943. // {
  10944. // var districtInfo = new Sys_Cities()
  10945. // {
  10946. // CountriesId = countriesId,
  10947. // Name_CN = item3.cn,
  10948. // Name_EN = item3.en,
  10949. // Level = 3,
  10950. // ParentId = cityId,
  10951. // IsCapital = 1,
  10952. // CreateUserId = 208,
  10953. // CreateTime = DateTime.Now,
  10954. // IsDel = 0
  10955. // };
  10956. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10957. // //{
  10958. // districts.Add(districtInfo);
  10959. // //}
  10960. // }
  10961. // }
  10962. // }
  10963. // else
  10964. // {
  10965. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10966. // //{
  10967. // cities.Add(provinceInfo);
  10968. // //}
  10969. // }
  10970. // }
  10971. // }
  10972. // }
  10973. // }
  10974. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10975. // cities = cities.Distinct().ToList();
  10976. // districts = districts.Distinct().ToList();
  10977. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10978. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10979. // cities.AddRange(districts);
  10980. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10981. // //_sqlSugar.RollbackTran();
  10982. // _sqlSugar.CommitTran();
  10983. // return Ok(JsonView(false, "操作成功!"));
  10984. //}
  10985. //[HttpPost]
  10986. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10987. //{
  10988. // List<CountitiesInfo> infos = dto.MyProperty;
  10989. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10990. // _sqlSugar.BeginTran();
  10991. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10992. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10993. // foreach (var item in infos)
  10994. // {
  10995. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10996. // if (countryInfo != null)
  10997. // {
  10998. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10999. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  11000. // if (cityInfo1 != null)
  11001. // {
  11002. // cityInfo1.IsCapital = 0;
  11003. // cityInfos.Add(cityInfo1);
  11004. // }
  11005. // }
  11006. // }
  11007. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  11008. // .UpdateColumns(it => it.IsCapital)
  11009. // .WhereColumns(it => it.Id)
  11010. // .ExecuteCommand();
  11011. // //_sqlSugar.RollbackTran();
  11012. // _sqlSugar.CommitTran();
  11013. // return Ok(JsonView(false, "操作成功!"));
  11014. //}
  11015. //public class CounrtiesDto
  11016. //{
  11017. // public List<CountitiesInfo> MyProperty { get; set; }
  11018. //}
  11019. //public class CountitiesInfo
  11020. //{
  11021. // /// <summary>
  11022. // /// 圣约翰
  11023. // /// </summary>
  11024. // public string capital_name_chinese { get; set; }
  11025. // /// <summary>
  11026. // ///
  11027. // /// </summary>
  11028. // public string capital_name { get; set; }
  11029. // /// <summary>
  11030. // ///
  11031. // /// </summary>
  11032. // public string country_type { get; set; }
  11033. // /// <summary>
  11034. // /// 安提瓜和巴布达
  11035. // /// </summary>
  11036. // public string country_name_chinese { get; set; }
  11037. // /// <summary>
  11038. // /// 安提瓜和巴布达
  11039. // /// </summary>
  11040. // public string country_name_chinese_short { get; set; }
  11041. // /// <summary>
  11042. // /// 安提瓜和巴布达
  11043. // /// </summary>
  11044. // public string country_name_chinese_UN { get; set; }
  11045. // /// <summary>
  11046. // ///
  11047. // /// </summary>
  11048. // public string country_name_english_abbreviation { get; set; }
  11049. // /// <summary>
  11050. // ///
  11051. // /// </summary>
  11052. // public string country_name_english_formal { get; set; }
  11053. // /// <summary>
  11054. // ///
  11055. // /// </summary>
  11056. // public string country_name_english_UN { get; set; }
  11057. // /// <summary>
  11058. // ///
  11059. // /// </summary>
  11060. // public string continent_name { get; set; }
  11061. // /// <summary>
  11062. // ///
  11063. // /// </summary>
  11064. // public string subregion_name { get; set; }
  11065. // /// <summary>
  11066. // ///
  11067. // /// </summary>
  11068. // public string country_code2 { get; set; }
  11069. // /// <summary>
  11070. // ///
  11071. // /// </summary>
  11072. // public string country_code3 { get; set; }
  11073. // /// <summary>
  11074. // ///
  11075. // /// </summary>
  11076. // public string phone_code { get; set; }
  11077. //}
  11078. //public class CountriesInfo : BasicInfo
  11079. //{
  11080. // public List<CitiesInfo> c { get; set; }
  11081. //}
  11082. //public class CitiesInfo : BasicInfo
  11083. //{
  11084. // public List<AreaInfo> c { get; set; }
  11085. //}
  11086. //public class AreaInfo : BasicInfo
  11087. //{
  11088. // public List<AreaInfo> c { get; set; }
  11089. //}
  11090. //public class BasicInfo
  11091. //{
  11092. // public string code { get; set; }
  11093. // public string cn { get; set; }
  11094. // public string lv { get; set; }
  11095. // public string en { get; set; }
  11096. //}
  11097. #endregion
  11098. #region 查看邀请方
  11099. /// <summary>
  11100. /// 查看邀请方
  11101. /// 邀请方信息 Init
  11102. /// </summary>
  11103. /// <param name="dto"></param>
  11104. /// <returns></returns>
  11105. [HttpPost]
  11106. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11107. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  11108. {
  11109. string sqlWhere = string.Empty;
  11110. if (!string.IsNullOrEmpty(dto.Search))
  11111. {
  11112. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  11113. }
  11114. string sql = string.Format($@"Select
  11115. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  11116. Id,
  11117. UnitName
  11118. From Res_InvitationOfficialActivityData
  11119. Where IsDel = 0
  11120. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  11121. RefAsync<int> total = 0;
  11122. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11123. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  11124. }
  11125. /// <summary>
  11126. /// 查看邀请方
  11127. /// 国家信息 Init
  11128. /// </summary>
  11129. /// <param name="dto"></param>
  11130. /// <returns></returns>
  11131. [HttpPost]
  11132. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11133. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  11134. {
  11135. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  11136. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11137. var diids = groupInfos.Select(it => it.Id).ToList();
  11138. List<string> countrys = new List<string>();
  11139. foreach (var item in country)
  11140. {
  11141. var data = _groupRepository.FormartTeamName(item);
  11142. var dataArray = _groupRepository.GroupSplitCountry(data);
  11143. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11144. }
  11145. countrys = countrys.Distinct().ToList();
  11146. for (int i = 0; i < countrys.Count; i++)
  11147. {
  11148. string item = countrys[i];
  11149. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  11150. {
  11151. countrys.Remove(item);
  11152. i--;
  11153. }
  11154. }
  11155. RefAsync<int> total = 0;
  11156. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  11157. .Where(it => countrys.Contains(it.Name_CN))
  11158. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11159. .Select(it => new { id = it.Id, name = it.Name_CN })
  11160. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11161. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11162. }
  11163. /// <summary>
  11164. /// 查看邀请方
  11165. /// 城市信息 Init
  11166. /// </summary>
  11167. /// <param name="dto"></param>
  11168. /// <returns></returns>
  11169. [HttpPost]
  11170. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11171. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  11172. {
  11173. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  11174. RefAsync<int> total = 0;
  11175. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  11176. .Where(it => it.CountriesId == dto.CountiesId)
  11177. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11178. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  11179. .Select(it => new { id = it.Id, name = it.Name_CN })
  11180. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11181. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11182. }
  11183. /// <summary>
  11184. /// 查看邀请方
  11185. /// 团组名称 Init
  11186. /// </summary>
  11187. /// <param name="dto"></param>
  11188. /// <returns></returns>
  11189. [HttpPost]
  11190. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11191. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  11192. {
  11193. var watch = new Stopwatch();
  11194. watch.Start();
  11195. RefAsync<int> total = 0;
  11196. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  11197. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  11198. .Where((oa, di) => oa.IsDel == 0)
  11199. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  11200. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  11201. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  11202. .Distinct()
  11203. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11204. watch.Stop();
  11205. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  11206. }
  11207. /// <summary>
  11208. /// 查看邀请方
  11209. /// 团组 & 邀请方信息
  11210. /// </summary>
  11211. /// <param name="dto"></param>
  11212. /// <returns></returns>
  11213. [HttpPost]
  11214. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11215. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  11216. {
  11217. var watch = new Stopwatch();
  11218. watch.Start();
  11219. RefAsync<int> total = 0;
  11220. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  11221. .AS("Grp_DelegationInfo")
  11222. .Includes(x => x.InvitingInfos)
  11223. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  11224. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  11225. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  11226. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  11227. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  11228. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  11229. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11230. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  11231. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  11232. infos.ForEach(x =>
  11233. {
  11234. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  11235. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  11236. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  11237. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  11238. });
  11239. watch.Stop();
  11240. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  11241. }
  11242. #endregion
  11243. #region 报批行程
  11244. /// <summary>
  11245. /// 报批行程初始化
  11246. /// </summary>
  11247. /// <param name="dto"></param>
  11248. /// <returns></returns>
  11249. [HttpPost]
  11250. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  11251. {
  11252. const int chiNumber = 5;
  11253. var jw = JsonView(false);
  11254. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  11255. var group = groupList.First();
  11256. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  11257. group = groupList.First(x => x.Id == diid);
  11258. if (group == null)
  11259. {
  11260. jw.Msg = "暂无团组!";
  11261. return Ok(jw);
  11262. }
  11263. var data = new
  11264. {
  11265. groupList = groupList.Select(x => new
  11266. {
  11267. x.TeamName,
  11268. x.Id
  11269. }),
  11270. content = new ArrayList(),
  11271. groupInfo = new
  11272. {
  11273. group.VisitDays,
  11274. group.TourCode,
  11275. group.VisitPNumber,
  11276. group.TeamName,
  11277. group.Id,
  11278. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  11279. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  11280. },
  11281. };
  11282. var resultArr = new ArrayList();
  11283. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  11284. if (content.Count == 0)
  11285. {
  11286. var stay = "-";
  11287. var cityPath = "-";
  11288. //添加城市路径以及住宿地
  11289. //黑屏代码数据
  11290. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11291. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11292. {
  11293. jw = JsonView(true, "黑屏代码有误!", data);
  11294. return Ok(jw);
  11295. }
  11296. foreach (DataRow row in dtBlack.Rows)
  11297. {
  11298. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11299. {
  11300. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  11301. return Ok(jw);
  11302. }
  11303. }
  11304. //黑屏代码获取时间区间
  11305. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11306. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11307. _sqlSugar.BeginTran();
  11308. for (int i = 0; i < timeArr.Count; i++)
  11309. {
  11310. stay = "-";
  11311. cityPath = "-";
  11312. DateTime NewData = DateTime.Parse(timeArr[i]);
  11313. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11314. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11315. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11316. if (tbSelect.Length > 0)
  11317. {
  11318. List<string> threeCodeStr = new List<string>();
  11319. foreach (var item in tbSelect)
  11320. {
  11321. var threeCode = item["Three"].ToString() ?? "";
  11322. if (threeCode.Length == 6)
  11323. {
  11324. var start = threeCode.Substring(0, 3);
  11325. var end = threeCode.Substring(3, 3);
  11326. if (threeCodeStr.Count == 0)
  11327. {
  11328. threeCodeStr.Add(start);
  11329. threeCodeStr.Add(end);
  11330. }
  11331. else
  11332. {
  11333. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11334. {
  11335. threeCodeStr.Add(end);
  11336. }
  11337. else
  11338. {
  11339. threeCodeStr.Add(start);
  11340. threeCodeStr.Add(end);
  11341. }
  11342. }
  11343. }
  11344. }
  11345. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11346. var last = threeCodeStr.Last();
  11347. foreach (var item in threeCodeStr)
  11348. {
  11349. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11350. if (item.Equals(last))
  11351. {
  11352. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11353. }
  11354. }
  11355. cityPath = cityPath.Trim('-');
  11356. }
  11357. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11358. appro.Diid = diid ?? -1;
  11359. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11360. appro.Id = thisId;
  11361. appro.CreateUserId = dto.UserId;
  11362. appro.CreateTime = DateTime.Now;
  11363. content.Add(appro);
  11364. }
  11365. _sqlSugar.CommitTran();
  11366. }
  11367. foreach (var x in content)
  11368. {
  11369. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  11370. if (chiList.Count < chiNumber)
  11371. {
  11372. for (int i = chiList.Count; i < chiNumber; i++)
  11373. {
  11374. chiList.Add(new Grp_ApprovalTravelDetails());
  11375. }
  11376. }
  11377. resultArr.Add(new
  11378. {
  11379. x.Id,
  11380. x.Date,
  11381. x.Diid,
  11382. chiList = chiList.Select(x1 => new
  11383. {
  11384. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11385. x1.Details,
  11386. x1.ParentId,
  11387. x1.Id
  11388. })
  11389. });
  11390. }
  11391. data = data with
  11392. {
  11393. content = resultArr,
  11394. };
  11395. jw = JsonView(true, "获取成功!", data);
  11396. return Ok(jw);
  11397. }
  11398. /// <summary>
  11399. /// 报批行程删除
  11400. /// </summary>
  11401. /// <param name="dto"></param>
  11402. /// <returns></returns>
  11403. [HttpPost]
  11404. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11405. {
  11406. var jw = JsonView(false);
  11407. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11408. if (group == null)
  11409. {
  11410. jw.Msg = "团组参数有误!";
  11411. return Ok(jw);
  11412. }
  11413. try
  11414. {
  11415. _sqlSugar.BeginTran();
  11416. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11417. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11418. {
  11419. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11420. DeleteUserId = dto.uesrId,
  11421. IsDel = 1
  11422. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11423. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11424. {
  11425. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11426. DeleteUserId = dto.uesrId,
  11427. IsDel = 1
  11428. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11429. _sqlSugar.CommitTran();
  11430. jw = JsonView(true, "删除成功");
  11431. }
  11432. catch (Exception ex)
  11433. {
  11434. jw = JsonView(false, ex.Message);
  11435. }
  11436. return Ok(jw);
  11437. }
  11438. /// <summary>
  11439. /// 报批行程保存
  11440. /// </summary>
  11441. /// <param name="dto"></param>
  11442. /// <returns></returns>
  11443. [HttpPost]
  11444. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11445. {
  11446. var jw = JsonView(false);
  11447. var Find = dto.Arr.Find(x => x.id == 0);
  11448. if (Find != null)
  11449. {
  11450. jw.Msg = "生成的ID为0!";
  11451. return Ok(jw);
  11452. }
  11453. foreach (var item in dto.Arr)
  11454. {
  11455. foreach (var chi in item.chiList)
  11456. {
  11457. if (chi.parentId == 0)
  11458. {
  11459. chi.parentId = item.id;
  11460. }
  11461. }
  11462. }
  11463. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11464. _sqlSugar.BeginTran();
  11465. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11466. {
  11467. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11468. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11469. {
  11470. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11471. DeleteUserId = dto.UserId,
  11472. IsDel = 1
  11473. }).ExecuteCommand();
  11474. }
  11475. try
  11476. {
  11477. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11478. {
  11479. CreateTime = DateTime.Now,
  11480. CreateUserId = dto.UserId,
  11481. Details = x.details,
  11482. ParentId = x.parentId,
  11483. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11484. Remark = "",
  11485. IsDel = 0
  11486. }).ToList()).ExecuteCommand();
  11487. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11488. {
  11489. Id = x.id,
  11490. Details = x.details,
  11491. ParentId = x.parentId,
  11492. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11493. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11494. {
  11495. Details = x.Details,
  11496. ParentId = x.ParentId,
  11497. Time = x.Time
  11498. }).ExecuteCommand();
  11499. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11500. {
  11501. Id = x.id,
  11502. Date = x.date,
  11503. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11504. {
  11505. Date = x.Date
  11506. }).ExecuteCommand();
  11507. _sqlSugar.CommitTran();
  11508. jw = JsonView(true, "保存成功!");
  11509. }
  11510. catch (Exception ex)
  11511. {
  11512. _sqlSugar.RollbackTran();
  11513. jw = JsonView(false, "保存失败!" + ex.Message);
  11514. }
  11515. return Ok(jw);
  11516. }
  11517. /// <summary>
  11518. /// 报批行程生成
  11519. /// </summary>
  11520. /// <param name="dto"></param>
  11521. /// <returns></returns>
  11522. [HttpPost]
  11523. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11524. {
  11525. var jw = JsonView(false);
  11526. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11527. if (group == null)
  11528. {
  11529. jw.Msg = "暂无该团组!";
  11530. return Ok(jw);
  11531. }
  11532. //黑屏代码数据
  11533. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11534. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11535. {
  11536. jw.Msg = "黑屏代码有误!";
  11537. return Ok(jw);
  11538. }
  11539. foreach (DataRow row in dtBlack.Rows)
  11540. {
  11541. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11542. {
  11543. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11544. return Ok(jw);
  11545. }
  11546. }
  11547. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11548. var resultArr = new ArrayList();
  11549. if (officialActivitiesArr.Count == 0)
  11550. {
  11551. jw.Msg = "暂无公务出访信息!";
  11552. return Ok(jw);
  11553. }
  11554. try
  11555. {
  11556. _sqlSugar.BeginTran();
  11557. DeleteApprovalJourney(new
  11558. Domain.Dtos.Groups.DeleteApprovalJourney
  11559. {
  11560. Diid = dto.Diid,
  11561. uesrId = dto.Userid
  11562. });
  11563. var stay = "-";
  11564. var cityPath = "-";
  11565. //添加城市路径以及住宿地
  11566. //黑屏代码获取时间区间
  11567. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11568. var empty = "【未收入该三字码!请机票同事录入】";
  11569. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11570. for (int i = 0; i < timeArr.Count; i++)
  11571. {
  11572. stay = "-";
  11573. cityPath = "-";
  11574. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11575. DateTime NewData = DateTime.Parse(timeArr[i]);
  11576. 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();
  11577. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11578. if (tbSelect.Length > 0)
  11579. {
  11580. List<string> threeCodeStr = new List<string>();
  11581. bool isTrade = false;
  11582. string trip = string.Empty;
  11583. var rowLast = tbSelect.Last();
  11584. var rowFirst = tbSelect.First();
  11585. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11586. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11587. var takeOffTime = DateTime.Parse(timeArr[i]);
  11588. var fallToTime = DateTime.Parse(timeArr[i]);
  11589. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11590. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11591. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11592. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11593. foreach (var item in tbSelect)
  11594. {
  11595. var start = string.Empty;
  11596. var end = string.Empty;
  11597. var threeCode = item["Three"].ToString() ?? "";
  11598. if (threeCode.Length == 6)
  11599. {
  11600. start = threeCode.Substring(0, 3);
  11601. end = threeCode.Substring(3, 3);
  11602. if (threeCodeStr.Count == 0)
  11603. {
  11604. threeCodeStr.Add(start);
  11605. threeCodeStr.Add(end);
  11606. }
  11607. else
  11608. {
  11609. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11610. {
  11611. threeCodeStr.Add(end);
  11612. }
  11613. else
  11614. {
  11615. threeCodeStr.Add(start);
  11616. threeCodeStr.Add(end);
  11617. }
  11618. }
  11619. }
  11620. //处理机票信息
  11621. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11622. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11623. if (start_Object == null)
  11624. {
  11625. start_Object = new Res_ThreeCode()
  11626. {
  11627. AirPort = empty,
  11628. AirPort_En = empty,
  11629. City = empty,
  11630. Country = empty,
  11631. Four = empty,
  11632. Three = empty,
  11633. };
  11634. }
  11635. if (end_Object == null)
  11636. {
  11637. end_Object = new Res_ThreeCode()
  11638. {
  11639. AirPort = empty,
  11640. AirPort_En = empty,
  11641. City = empty,
  11642. Country = empty,
  11643. Four = empty,
  11644. Three = empty,
  11645. };
  11646. }
  11647. //机型判断
  11648. string airModel = item["AirModel"].ToString();
  11649. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11650. string flightTime = item["FlightTime"].ToString();
  11651. if (flightTime!.Contains(":"))
  11652. {
  11653. flightTime = flightTime.Replace(":", "小时");
  11654. flightTime += "分钟";
  11655. }
  11656. if (flightTime.Contains("H"))
  11657. {
  11658. flightTime = flightTime.Replace("H", "小时");
  11659. }
  11660. if (flightTime.Contains("M"))
  11661. {
  11662. flightTime = flightTime.Replace("M", "分钟");
  11663. }
  11664. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11665. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11666. {
  11667. flightTime = flightDataTime.Hour > 0
  11668. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11669. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11670. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11671. }
  11672. //航班号
  11673. string flightcode = item["Fliagtcode"].ToString();
  11674. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11675. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11676. if (aircompany == null)
  11677. {
  11678. aircompany = new Res_AirCompany
  11679. {
  11680. CnName = hsEmpty,
  11681. EnName = hsEmpty,
  11682. ShortCode = hsEmpty,
  11683. };
  11684. }
  11685. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11686. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11687. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11688. if (isTrade)
  11689. {
  11690. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11691. }
  11692. else
  11693. {
  11694. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11695. }
  11696. }
  11697. chiarr.Add(new Grp_ApprovalTravelDetails
  11698. {
  11699. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11700. CreateTime = DateTime.Now,
  11701. CreateUserId = dto.Userid,
  11702. ParentId = 0,
  11703. Details = trip
  11704. });
  11705. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11706. var last = threeCodeStr.Last();
  11707. foreach (var item in threeCodeStr)
  11708. {
  11709. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11710. if (item.Equals(last))
  11711. {
  11712. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11713. }
  11714. }
  11715. cityPath = cityPath.Trim('-');
  11716. }
  11717. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11718. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11719. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11720. appro.Diid = dto.Diid;
  11721. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11722. appro.Id = thisId;
  11723. appro.CreateUserId = dto.Userid;
  11724. appro.CreateTime = DateTime.Now;
  11725. foreach (var item in gwinfo)
  11726. {
  11727. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11728. chi.Details = "拜访" + item.Client;
  11729. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11730. {
  11731. chi.Details += "," + item.ReqSample;
  11732. }
  11733. chi.ParentId = thisId;
  11734. chi.Time = item.Time;
  11735. chiarr.Add(chi);
  11736. }
  11737. if (chiarr.Count < 5)
  11738. {
  11739. for (int j = chiarr.Count; j < 5; j++)
  11740. {
  11741. chiarr.Add(new
  11742. Grp_ApprovalTravelDetails());
  11743. }
  11744. }
  11745. resultArr.Add(new
  11746. {
  11747. appro.Id,
  11748. appro.Date,
  11749. appro.Diid,
  11750. chiList = chiarr.Select(x1 => new
  11751. {
  11752. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11753. x1.Details,
  11754. x1.ParentId,
  11755. x1.Id
  11756. })
  11757. });
  11758. }
  11759. _sqlSugar.CommitTran();
  11760. jw = JsonView(true, "生成成功!", resultArr);
  11761. }
  11762. catch (Exception ex)
  11763. {
  11764. jw.Code = 400;
  11765. jw.Msg = "生成失败!" + ex.Message;
  11766. }
  11767. return Ok(jw);
  11768. }
  11769. /// <summary>
  11770. /// 报批行程word导出
  11771. /// </summary>
  11772. /// <param name="dto"></param>
  11773. /// <returns></returns>
  11774. [HttpPost]
  11775. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11776. {
  11777. var jw = JsonView(false);
  11778. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11779. if (group == null)
  11780. {
  11781. jw.Msg = "暂无该团组!";
  11782. return Ok(jw);
  11783. }
  11784. //模板路径
  11785. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11786. //载入模板
  11787. Document doc = new Document(tempPath);
  11788. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11789. //获取所填表格的序数
  11790. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11791. Aspose.Words.Tables.Row titleRowClone = null;
  11792. Aspose.Words.Tables.Row CenterRowClone = null;
  11793. int index = 0;
  11794. int indexChi = 0;
  11795. int SetIndex = 0;
  11796. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11797. //获取数据,放到datatable
  11798. foreach (var item in ApprovalTravelArr)
  11799. {
  11800. if (index > 0)
  11801. {
  11802. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11803. tableOne.AppendChild(titleRowClone);
  11804. }
  11805. var textTime = item.Date;
  11806. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11807. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11808. SetIndex++;
  11809. if (ChiRep.Count > 0)
  11810. {
  11811. foreach (var itemChi in ChiRep)
  11812. {
  11813. var txtTime = itemChi.Time;
  11814. var txtDetail = itemChi.Details;
  11815. if (indexChi > 0)
  11816. {
  11817. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11818. tableOne.AppendChild(CenterRowClone);
  11819. }
  11820. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11821. {
  11822. SetCells(tableOne, doc, SetIndex, 0, "");
  11823. SetCells(tableOne, doc, SetIndex, 1, "");
  11824. indexChi++;
  11825. SetIndex++;
  11826. break;
  11827. }
  11828. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11829. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11830. indexChi++;
  11831. SetIndex++;
  11832. }
  11833. }
  11834. else
  11835. {
  11836. if (indexChi > 0)
  11837. {
  11838. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11839. tableOne.AppendChild(CenterRowClone);
  11840. }
  11841. SetCells(tableOne, doc, SetIndex, 0, "");
  11842. SetCells(tableOne, doc, SetIndex, 1, "");
  11843. indexChi++;
  11844. SetIndex++;
  11845. }
  11846. index++;
  11847. }
  11848. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11849. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11850. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11851. jw.Code = 200;
  11852. jw.Msg = "";
  11853. return Ok(jw);
  11854. }
  11855. private string intToString(int numberVal)
  11856. {
  11857. string numberval = numberVal.ToString();
  11858. Dictionary<char, string> Number = new Dictionary<char, string>();
  11859. Number.Add('1', "一");
  11860. Number.Add('2', "二");
  11861. Number.Add('3', "三");
  11862. Number.Add('4', "四");
  11863. Number.Add('5', "五");
  11864. Number.Add('6', "六");
  11865. Number.Add('7', "七");
  11866. Number.Add('8', "八");
  11867. Number.Add('9', "九");
  11868. string stringNumberVal = string.Empty;
  11869. for (int i = 0; i < numberval.Length; i++)
  11870. {
  11871. if (i == 0)
  11872. {
  11873. stringNumberVal += Number[numberval[i]];
  11874. }
  11875. else if (i >= 1)
  11876. {
  11877. if (numberval[i] == '0')
  11878. {
  11879. stringNumberVal = "十";
  11880. }
  11881. else
  11882. {
  11883. stringNumberVal += "十" + Number[numberval[i]];
  11884. }
  11885. }
  11886. }
  11887. return stringNumberVal;
  11888. }
  11889. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11890. {
  11891. //获取table中的某个单元格,从0开始
  11892. Cell lshCell = table.Rows[rows].Cells[cells];
  11893. //将单元格中段落移除
  11894. foreach (Node item in lshCell.Paragraphs)
  11895. {
  11896. lshCell.Paragraphs.Remove(item);
  11897. }
  11898. if (val.Contains("\r\n"))
  11899. {
  11900. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11901. foreach (var item in spArr)
  11902. {
  11903. //新建一个段落
  11904. Paragraph p = new Paragraph(doc);
  11905. var r = new Run(doc, item);
  11906. //把设置的值赋给之前新建的段落
  11907. p.AppendChild(r);
  11908. //将此段落加到单元格内
  11909. lshCell.AppendChild(p);
  11910. }
  11911. }
  11912. else
  11913. {
  11914. //新建一个段落
  11915. Paragraph p = new Paragraph(doc);
  11916. var r = new Run(doc, val);
  11917. //把设置的值赋给之前新建的段落
  11918. p.AppendChild(r);
  11919. //将此段落加到单元格内
  11920. lshCell.AppendChild(p);
  11921. }
  11922. }
  11923. [HttpPost]
  11924. public async Task<IActionResult> ServerHttp(string paramStr)
  11925. {
  11926. paramStr = paramStr.TrimEnd('\'');
  11927. paramStr = paramStr.TrimStart('\'');
  11928. JsonView jw = JsonView(false);
  11929. JObject param = JObject.Parse(paramStr);
  11930. if (!param.ContainsKey("url"))
  11931. {
  11932. jw.Msg = "url null";
  11933. return Ok(jw);
  11934. }
  11935. string url = param["url"]!.ToString();
  11936. var methon = "get";
  11937. Dictionary<string, string> bodyValues = null;
  11938. Dictionary<string, string> headValues = null;
  11939. if (param.ContainsKey("methon"))
  11940. {
  11941. methon = param["methon"]!.ToString();
  11942. }
  11943. if (param.ContainsKey("header"))
  11944. {
  11945. var header = param["header"]!.ToString();
  11946. JObject headerJobject = JObject.Parse(header);
  11947. headValues = new Dictionary<string, string>();
  11948. foreach (JProperty item in headerJobject.Properties())
  11949. {
  11950. var value = item.Value.ToString();
  11951. var head = item.Path;
  11952. headValues.Add(head, value);
  11953. }
  11954. }
  11955. if (param.ContainsKey("body"))
  11956. {
  11957. var body = param["body"]!.ToString();
  11958. bodyValues = new Dictionary<string, string>();
  11959. JObject bodyJobject = JObject.Parse(body);
  11960. foreach (JProperty item in bodyJobject.Properties())
  11961. {
  11962. var value = item.Value.ToString();
  11963. var head = item.Path;
  11964. bodyValues.Add(head, value);
  11965. }
  11966. }
  11967. HttpClient client = new HttpClient();
  11968. string responseString = string.Empty;
  11969. if (param.ContainsKey("isJson"))
  11970. {
  11971. }
  11972. if (headValues != null)
  11973. {
  11974. foreach (var item in headValues.Keys)
  11975. {
  11976. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11977. }
  11978. }
  11979. try
  11980. {
  11981. if (methon == "get")
  11982. {
  11983. responseString = await client.GetStringAsync(url);
  11984. }
  11985. else if (methon == "post")
  11986. {
  11987. if (bodyValues == null)
  11988. {
  11989. jw.Msg = "methon post body null";
  11990. return Ok(jw);
  11991. }
  11992. // 数据转化为 key=val 格式
  11993. var content = new FormUrlEncodedContent(bodyValues);
  11994. var response = await client.PostAsync(url, content);
  11995. // 获取数据
  11996. responseString = await response.Content.ReadAsStringAsync();
  11997. }
  11998. else
  11999. {
  12000. jw.Msg = "methon error";
  12001. }
  12002. jw = JsonView(true, "success", responseString);
  12003. }
  12004. catch (Exception ex)
  12005. {
  12006. jw.Msg = "error " + ex.Message;
  12007. jw.Data = ex.StackTrace;
  12008. }
  12009. finally
  12010. {
  12011. client.Dispose();
  12012. }
  12013. return Ok(jw);
  12014. }
  12015. #endregion
  12016. // /// <summary>
  12017. // ///
  12018. // /// </summary>
  12019. // /// <param name="_dto"></param>
  12020. // /// <returns></returns>
  12021. // [HttpPost]
  12022. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12023. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12024. // {
  12025. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12026. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  12027. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  12028. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12029. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  12030. // dic_psg.Add("客人", 974);
  12031. // dic_psg.Add("司机", 975);
  12032. // dic_psg.Add("导游", 976);
  12033. // dic_psg.Add("公司内部人员", 977);
  12034. // dic_psg.Add("司机/导游/公司内部人员", 978);
  12035. // foreach (var item in list_visa)
  12036. // {
  12037. // Grp_VisaInfo temp = new Grp_VisaInfo();
  12038. // temp.Id = item.Id;
  12039. // temp.DIId = item.DIId;
  12040. // temp.VisaClient = item.VisaClient;
  12041. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  12042. // temp.VisaCurrency = item.VisaCurrency;
  12043. // temp.IsThird = item.IsThird;
  12044. // if (dic_psg.ContainsKey(item.PassengerType))
  12045. // {
  12046. // temp.PassengerType = dic_psg[item.PassengerType];
  12047. // }
  12048. // else {
  12049. // temp.PassengerType = -1;
  12050. // }
  12051. // temp.VisaNumber = item.VisaNumber;
  12052. // temp.VisaFreeNumber = item.VisaFreeNumber;
  12053. // temp.CreateUserId = item.Operators;
  12054. // DateTime dt_ct;
  12055. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  12056. // if (b_ct)
  12057. // {
  12058. // temp.CreateTime = dt_ct;
  12059. // }
  12060. // else
  12061. // {
  12062. // temp.CreateTime = DateTime.Now;
  12063. // }
  12064. // temp.DeleteTime = "";
  12065. // temp.DeleteUserId = 0;
  12066. // temp.Remark = item.Remark;
  12067. // if (string.IsNullOrEmpty(temp.Remark)) {
  12068. // temp.Remark = "";
  12069. // }
  12070. // temp.IsDel = item.IsDel;
  12071. // temp.VisaDescription = item.VisaAttachment;
  12072. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  12073. //([Id]
  12074. // ,[DIId]
  12075. // ,[VisaClient]
  12076. // ,[VisaPrice]
  12077. // ,[VisaCurrency]
  12078. // ,[IsThird]
  12079. // ,[PassengerType]
  12080. // ,[VisaNumber]
  12081. // ,[VisaFreeNumber]
  12082. // ,[CreateUserId]
  12083. // ,[CreateTime]
  12084. // ,[DeleteTime]
  12085. // ,[DeleteUserId]
  12086. // ,[Remark]
  12087. // ,[IsDel]
  12088. // ,[visaDescription])
  12089. // VALUES
  12090. // ({0},{1},'{2}',{3},{4}
  12091. //,{5},{6},{7},{8},{9}
  12092. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  12093. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  12094. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  12095. //);
  12096. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  12097. // }
  12098. // return Ok(JsonView(true, "操作成功!"));
  12099. // }
  12100. /// <summary>
  12101. /// 123132123
  12102. /// </summary>
  12103. /// <param name="_dto"></param>
  12104. /// <returns></returns>
  12105. [HttpPost]
  12106. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12107. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12108. {
  12109. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12110. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  12111. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  12112. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12113. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  12114. dicDetail.Add(789, 1034);
  12115. dicDetail.Add(790, 1035);
  12116. dicDetail.Add(791, 1036);
  12117. dicDetail.Add(792, 1037);
  12118. dicDetail.Add(793, 1038);
  12119. dicDetail.Add(794, 1039);
  12120. dicDetail.Add(795, 1040);
  12121. dicDetail.Add(796, 1041);
  12122. dicDetail.Add(797, 1042);
  12123. dicDetail.Add(798, 1043);
  12124. dicDetail.Add(801, 1044);
  12125. dicDetail.Add(802, 1045);
  12126. dicDetail.Add(803, 1046);
  12127. Dictionary<int, int> dic = new Dictionary<int, int>();
  12128. dic.Add(806, 1027);
  12129. dic.Add(807, 1028);
  12130. dic.Add(808, 1029);
  12131. dic.Add(809, 1030);
  12132. dic.Add(810, 1031);
  12133. dic.Add(811, 1032);
  12134. dic.Add(812, 1033);
  12135. foreach (var item in list_visa)
  12136. {
  12137. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  12138. temp.Coefficient = item.coefficient;
  12139. DateTime dtCrt;
  12140. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  12141. if (b1)
  12142. {
  12143. temp.CreateTime = dtCrt;
  12144. }
  12145. else
  12146. {
  12147. temp.CreateTime = DateTime.Now;
  12148. }
  12149. temp.CreateUserId = item.Operators;
  12150. temp.DeleteTime = "";
  12151. temp.DeleteUserId = 0;
  12152. temp.DiId = int.Parse(item.DIID);
  12153. temp.FilePath = item.FilePath;
  12154. temp.IsDel = item.IsDel;
  12155. temp.Price = item.Price;
  12156. temp.PriceCount = 1;
  12157. temp.PriceCurrency = item.Currency;
  12158. int detailId = 0;
  12159. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  12160. {
  12161. detailId = dicDetail[item.PriceTypeDetail];
  12162. }
  12163. temp.PriceDetailType = detailId;
  12164. temp.PriceDt = DateTime.Now;
  12165. temp.PriceName = item.PriceName;
  12166. temp.PriceSum = item.Price;
  12167. int tid = 0;
  12168. if (dic.ContainsKey(item.PriceType))
  12169. {
  12170. tid = dic[item.PriceType];
  12171. }
  12172. temp.PriceType = tid;
  12173. temp.Remark = item.Remark;
  12174. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  12175. }
  12176. return Ok(JsonView(true, "操作成功!"));
  12177. }
  12178. }
  12179. }