GroupsController.cs 643 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043
  1. using Aspose.Cells;
  2. using Aspose.Words;
  3. using Aspose.Words.Tables;
  4. using Microsoft.AspNetCore.SignalR;
  5. using NPOI.HSSF.UserModel;
  6. using NPOI.SS.UserModel;
  7. using NPOI.SS.Util;
  8. using NPOI.XSSF.UserModel;
  9. using OASystem.API.OAMethodLib;
  10. using OASystem.API.OAMethodLib.File;
  11. using OASystem.API.OAMethodLib.Hub.HubClients;
  12. using OASystem.API.OAMethodLib.Hub.Hubs;
  13. using OASystem.API.OAMethodLib.JuHeAPI;
  14. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  15. using OASystem.Domain.Dtos.CRM;
  16. using OASystem.Domain.Dtos.FileDto;
  17. using OASystem.Domain.Dtos.Groups;
  18. using OASystem.Domain.Entities.Customer;
  19. using OASystem.Domain.Entities.Financial;
  20. using OASystem.Domain.Entities.Groups;
  21. using OASystem.Domain.ViewModels.Groups;
  22. using OASystem.Infrastructure.Repositories.Groups;
  23. using Quartz.Util;
  24. using SqlSugar.Extensions;
  25. using System.Collections;
  26. using System.Data;
  27. using System.Diagnostics;
  28. using System.Globalization;
  29. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  30. using Bookmark = Aspose.Words.Bookmark;
  31. using Cell = Aspose.Words.Tables.Cell;
  32. using Table = Aspose.Words.Tables.Table;
  33. namespace OASystem.API.Controllers
  34. {
  35. /// <summary>
  36. /// 团组相关
  37. /// </summary>
  38. //[Authorize]
  39. [Route("api/[controller]/[action]")]
  40. public class GroupsController : ControllerBase
  41. {
  42. private readonly GrpScheduleRepository _grpScheduleRep;
  43. private readonly IMapper _mapper;
  44. private readonly DelegationInfoRepository _groupRepository;
  45. private readonly TaskAssignmentRepository _taskAssignmentRep;
  46. private readonly AirTicketResRepository _airTicketResRep;
  47. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  48. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  49. private readonly DelegationEnDataRepository _delegationEnDataRep;
  50. private readonly DelegationVisaRepository _delegationVisaRep;
  51. private readonly VisaPriceRepository _visaPriceRep;
  52. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  53. private readonly HotelPriceRepository _hotelPriceRep;
  54. private readonly CustomersRepository _customersRep;
  55. private readonly MessageRepository _message;
  56. private readonly SqlSugarClient _sqlSugar;
  57. private readonly TourClientListRepository _tourClientListRep;
  58. private readonly TeamRateRepository _teamRateRep;
  59. #region 成本相关
  60. private readonly CheckBoxsRepository _checkBoxs;
  61. private readonly GroupCostRepository _GroupCostRepository;
  62. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  63. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  64. #endregion
  65. private readonly SetDataRepository _setDataRep;
  66. private string url;
  67. private string path;
  68. private readonly EnterExitCostRepository _enterExitCostRep;
  69. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  70. private readonly UsersRepository _usersRep;
  71. private readonly IJuHeApiService _juHeApi;
  72. private readonly InvertedListRepository _invertedListRep;
  73. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  74. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  75. private readonly ThreeCodeRepository _threeCodeRepository;
  76. private readonly HotelInquiryRepository _hotelInquiryRep;
  77. private readonly FeeAuditRepository _feeAuditRep;
  78. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  79. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  80. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  81. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  82. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  83. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  84. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  85. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  86. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  87. {
  88. _mapper = mapper;
  89. _grpScheduleRep = grpScheduleRep;
  90. _groupRepository = groupRepository;
  91. _taskAssignmentRep = taskAssignmentRep;
  92. _airTicketResRep = airTicketResRep;
  93. _sqlSugar = sqlSugar;
  94. url = AppSettingsHelper.Get("ExcelBaseUrl");
  95. path = AppSettingsHelper.Get("ExcelBasePath");
  96. if (!System.IO.Directory.Exists(path))
  97. {
  98. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  99. }
  100. _decreasePaymentsRep = decreasePaymentsRep;
  101. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  102. _delegationEnDataRep = delegationEnDataRep;
  103. _enterExitCostRep = enterExitCostRep;
  104. _delegationVisaRep = delegationVisaRep;
  105. _message = message;
  106. _visaPriceRep = visaPriceRep;
  107. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  108. _checkBoxs = checkBoxs;
  109. _GroupCostRepository = GroupCostRepository;
  110. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  111. _GroupCostParameterRepository = GroupCostParameterRepository;
  112. _hotelPriceRep = hotelPriceRep;
  113. _customersRep = customersRep;
  114. _setDataRep = setDataRep;
  115. _tourClientListRep = tourClientListRep;
  116. _teamRateRep = teamRateRep;
  117. _hubContext = hubContext;
  118. _usersRep = usersRep;
  119. _juHeApi = juHeApi;
  120. _invertedListRep = invertedListRep;
  121. _visaFeeInfoRep = visaFeeInfoRep;
  122. _ticketBlackCodeRep = ticketBlackCodeRep;
  123. _hotelInquiryRep = hotelInquiryRep;
  124. _threeCodeRepository = threeCodeRepository;
  125. _feeAuditRep = feeAuditRep;
  126. }
  127. #region 流程管控
  128. /// <summary>
  129. /// 获取团组流程管控信息
  130. /// </summary>
  131. /// <param name="paras">参数Json字符串</param>
  132. /// <returns></returns>
  133. [HttpPost]
  134. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  135. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  136. {
  137. if (string.IsNullOrEmpty(_jsonDto.Paras))
  138. {
  139. return Ok(JsonView(false, "参数为空"));
  140. }
  141. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  142. if (_ScheduleDto != null)
  143. {
  144. if (_ScheduleDto.SearchType == 2)//获取列表
  145. {
  146. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  147. return Ok(JsonView(_grpScheduleViewList));
  148. }
  149. else//获取对象
  150. {
  151. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  152. if (_grpScheduleView != null)
  153. {
  154. return Ok(JsonView(_grpScheduleView));
  155. }
  156. }
  157. }
  158. else
  159. {
  160. return Ok(JsonView(false, "参数反序列化失败"));
  161. }
  162. return Ok(JsonView(false, "暂无数据!"));
  163. }
  164. /// <summary>
  165. /// 修改团组流程管控详细表数据
  166. /// </summary>
  167. /// <param name="paras"></param>
  168. /// <returns></returns>
  169. [HttpPost]
  170. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  171. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  172. {
  173. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  174. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  175. .SetColumns(it => it.Duty == _detail.Duty)
  176. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  177. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  178. .SetColumns(it => it.JobContent == _detail.JobContent)
  179. .SetColumns(it => it.Remark == _detail.Remark)
  180. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  181. .Where(s => s.Id == dto.Id)
  182. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  183. .ExecuteCommandAsync();
  184. if (result > 0)
  185. {
  186. return Ok(JsonView(true, "保存成功!"));
  187. }
  188. return Ok(JsonView(false, "保存失败!"));
  189. }
  190. /// <summary>
  191. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  192. /// </summary>
  193. /// <param name="dto"></param>
  194. /// <returns></returns>
  195. [HttpPost]
  196. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  197. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  198. {
  199. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  200. _detail.IsDel = 1;
  201. _detail.DeleteUserId = dto.Duty;
  202. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  203. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  204. .SetColumns(it => it.IsDel == _detail.IsDel)
  205. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  206. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  207. .Where(it => it.Id == dto.Id)
  208. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  209. //.WhereColumns(s => s.Id == dto.Id)
  210. .ExecuteCommandAsync();
  211. if (result > 0)
  212. {
  213. return Ok(JsonView(true, "删除成功!"));
  214. }
  215. return Ok(JsonView(false, "删除失败!"));
  216. }
  217. /// <summary>
  218. /// 增加团组流程管控详细表数据
  219. /// </summary>
  220. /// <param name="dto"></param>
  221. /// <returns></returns>
  222. [HttpPost]
  223. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  224. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  225. {
  226. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  227. if (DateTime.Now < _detail.ExpectBeginDt)
  228. {
  229. _detail.StepStatus = 0;
  230. }
  231. else
  232. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  233. _detail.StepStatus = 1;
  234. }
  235. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  236. if (result > 0)
  237. {
  238. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  239. return Ok(JsonView(true, "添加成功!", _result));
  240. }
  241. return Ok(JsonView(false, "添加失败!"));
  242. }
  243. #endregion
  244. #region 团组基本信息
  245. /// <summary>
  246. /// 接团信息列表
  247. /// </summary>
  248. /// <param name="dto">团组列表请求dto</param>
  249. /// <returns></returns>
  250. [HttpPost]
  251. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  252. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  253. {
  254. var groupData = await _groupRepository.GetGroupList(dto);
  255. if (groupData.Code != 0)
  256. {
  257. return Ok(JsonView(false, groupData.Msg));
  258. }
  259. return Ok(JsonView(groupData.Data));
  260. }
  261. /// <summary>
  262. /// 分页查询团组列表
  263. /// </summary>
  264. /// <param name="dto"></param>
  265. /// <returns></returns>
  266. [HttpPost]
  267. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  268. public async Task<IActionResult> QueryGroupListOffset(QueryGroupListOffsetDto dto)
  269. {
  270. var watch = new Stopwatch();
  271. watch.Start();
  272. RefAsync<int> total = 0;
  273. var countyDatas = await _sqlSugar.Queryable<Grp_DelegationInfo>()
  274. .Where((di) => di.IsDel == 0 && !string.IsNullOrWhiteSpace(di.TeamName))
  275. .WhereIF(!string.IsNullOrEmpty(dto.Search), (di) => di.TeamName.Contains(dto.Search))
  276. .OrderBy((di) => new { id = SqlFunc.Desc(di.Id) })
  277. .Select((di) => new { id = di.Id, name = di.TeamName })
  278. .Distinct()
  279. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  280. watch.Stop();
  281. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  282. }
  283. /// <summary>
  284. /// 接团信息列表 Page
  285. /// </summary>
  286. /// <param name="dto">团组列表请求dto</param>
  287. /// <returns></returns>
  288. [HttpPost]
  289. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  290. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  291. {
  292. #region 参数验证
  293. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  294. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  295. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  296. #region 页面操作权限验证
  297. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  298. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  299. #endregion
  300. #endregion
  301. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  302. {
  303. string sqlWhere = string.Empty;
  304. if (dto.IsSure == 0) //未完成
  305. {
  306. sqlWhere += string.Format(@" And IsSure = 0");
  307. }
  308. else if (dto.IsSure == 1) //已完成
  309. {
  310. sqlWhere += string.Format(@" And IsSure = 1");
  311. }
  312. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  313. {
  314. string tj = dto.SearchCriteria;
  315. 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}%')",
  316. tj, tj, tj, tj, tj);
  317. }
  318. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  319. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  320. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  321. JietuanOperator,IsSure,CreateTime,IsBid
  322. From (
  323. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  324. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  325. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  326. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  327. su.CnName JietuanOperator,IsSure,gdi.CreateTime,gdi.IsBid
  328. From Grp_DelegationInfo gdi
  329. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  330. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  331. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  332. Where gdi.IsDel = 0 {0}
  333. ) temp", sqlWhere);
  334. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  335. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  336. #region 处理所属部门
  337. /*
  338. * 1.sq 和 gyy 等显示 市场部
  339. * 2.王鸽和主管及张总还有管理员号统一国交部
  340. * 2-1. 4 管理员 ,21 张海麟
  341. */
  342. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  343. List<int> userIds1 = new List<int>() { 4, 21 };
  344. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  345. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  346. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  347. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  348. .ToList();
  349. foreach (var item in _DelegationList)
  350. {
  351. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  352. }
  353. #endregion
  354. var _view = new
  355. {
  356. PageFuncAuth = pageFunAuthView,
  357. Data = _DelegationList
  358. };
  359. return Ok(JsonView(true, "查询成功!", _view, total));
  360. }
  361. else
  362. {
  363. return Ok(JsonView(false, "查询失败"));
  364. }
  365. }
  366. /// <summary>
  367. /// 团组列表
  368. /// </summary>
  369. /// <returns></returns>
  370. [HttpPost]
  371. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  372. {
  373. #region 参数验证
  374. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  375. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  376. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  377. #region 页面操作权限验证
  378. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  379. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  380. #endregion
  381. #endregion
  382. if (dto.PortType != 1 && dto.PortType != 2)
  383. {
  384. return Ok(JsonView(false, "查询失败!"));
  385. }
  386. string orderbyStr = "order by gdi.CreateTime Desc";
  387. string sqlWhere = string.Empty;
  388. if (dto.IsSure == 0) //未完成
  389. {
  390. sqlWhere += string.Format(@" And IsSure = 0");
  391. }
  392. else if (dto.IsSure == 1) //已完成
  393. {
  394. sqlWhere += string.Format(@" And IsSure = 1");
  395. }
  396. //团组类型
  397. if (dto.TeamDid > 0)
  398. {
  399. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  400. }
  401. //团组名称
  402. if (!string.IsNullOrEmpty(dto.TeamName))
  403. {
  404. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  405. }
  406. //客户名称
  407. if (!string.IsNullOrEmpty(dto.ClientName))
  408. {
  409. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  410. }
  411. //客户单位
  412. if (!string.IsNullOrEmpty(dto.ClientUnit))
  413. {
  414. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  415. }
  416. //出访时间
  417. if (!string.IsNullOrEmpty(dto.visitDataTime))
  418. {
  419. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  420. orderbyStr = "order by gdi.VisitDate";
  421. }
  422. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  423. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  424. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  425. JietuanOperator,IsSure,CreateTime
  426. From (
  427. Select row_number() over({0}) as Row_Number,
  428. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  429. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  430. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  431. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  432. From Grp_DelegationInfo gdi
  433. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  434. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  435. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  436. Where gdi.IsDel = 0 {1}
  437. ) temp ", orderbyStr, sqlWhere);
  438. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  439. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  440. #region 处理所属部门
  441. /*
  442. * 1.sq 和 gyy 等显示 市场部
  443. * 2.王鸽和主管及张总还有管理员号统一国交部
  444. * 2-1. 4 管理员 ,21 张海麟
  445. */
  446. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  447. List<int> userIds1 = new List<int>() { 4, 21 };
  448. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  449. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  450. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  451. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  452. .ToList();
  453. foreach (var item in _DelegationList)
  454. {
  455. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  456. }
  457. #endregion
  458. var _view = new
  459. {
  460. PageFuncAuth = pageFunAuthView,
  461. Data = _DelegationList
  462. };
  463. return Ok(JsonView(true, "查询成功!", _view, total));
  464. }
  465. /// <summary>
  466. /// 接团信息详情
  467. /// </summary>
  468. /// <param name="dto">团组info请求dto</param>
  469. /// <returns></returns>
  470. [HttpPost]
  471. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  472. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  473. {
  474. var groupData = await _groupRepository.GetGroupInfo(dto);
  475. if (groupData.Code != 0)
  476. {
  477. return Ok(JsonView(false, groupData.Msg));
  478. }
  479. return Ok(JsonView(groupData.Data));
  480. }
  481. /// <summary>
  482. /// 接团信息 编辑添加
  483. /// 基础信息数据源
  484. /// </summary>
  485. /// <param name="dto"></param>
  486. /// <returns></returns>
  487. [HttpPost]
  488. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  489. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  490. {
  491. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  492. if (groupData.Code != 0)
  493. {
  494. return Ok(JsonView(false, groupData.Msg));
  495. }
  496. return Ok(JsonView(groupData.Data));
  497. }
  498. /// <summary>
  499. /// 接团信息 操作(增改)
  500. /// </summary>
  501. /// <param name="dto"></param>
  502. /// <returns></returns>
  503. [HttpPost]
  504. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  505. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  506. {
  507. try
  508. {
  509. var groupData = await _groupRepository.GroupOperation(dto);
  510. if (groupData.Code != 0)
  511. {
  512. return Ok(JsonView(false, groupData.Msg));
  513. }
  514. int diId = 0;
  515. //添加时 默认加入团组汇率
  516. if (dto.Status == 1) //添加
  517. {
  518. diId = groupData.Data;
  519. //添加默认币种
  520. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  521. //默认分配权限
  522. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  523. //消息提示 王鸽 主管号
  524. List<int> _managerIds = new List<int>() { 22, 32 };
  525. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  526. if (userIds.Count > 0)
  527. {
  528. userIds.Add(208);
  529. //创建团组管控
  530. GroupStepForDelegation.CreateWorkStep(diId);
  531. //发送消息
  532. string groupName = dto.TeamName;
  533. string createGroupUser = string.Empty;
  534. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  535. if (userInfo != null) createGroupUser = userInfo.CnName;
  536. string title = $"系统通知";
  537. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  538. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  539. }
  540. //默认创建倒推表
  541. await _invertedListRep._Create(dto.UserId, diId);
  542. }
  543. else if (dto.Status == 2)
  544. {
  545. diId = dto.Id;
  546. }
  547. return Ok(JsonView(true, "操作成功!", diId));
  548. }
  549. catch (Exception ex)
  550. {
  551. Logs("[response]" + JsonConvert.SerializeObject(dto));
  552. Logs(ex.Message);
  553. return Ok(JsonView(false, ex.Message));
  554. }
  555. }
  556. /// <summary>
  557. /// 接团流程操作(增改)
  558. /// 安卓端使用 建团时添加客户名单
  559. /// </summary>
  560. /// <param name="dto"></param>
  561. /// <returns></returns>
  562. [HttpPost]
  563. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  564. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  565. {
  566. try
  567. {
  568. #region 参数验证
  569. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  570. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  571. #region 页面操作权限验证
  572. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  573. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  574. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  575. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  576. #endregion
  577. #endregion
  578. _sqlSugar.BeginTran();
  579. var _dto = new GroupOperationDto();
  580. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  581. var groupData = await _groupRepository.GroupOperation(_dto);
  582. if (groupData.Code != 0)
  583. {
  584. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  585. }
  586. int diId = 0;
  587. //添加时 默认加入团组汇率
  588. if (dto.Status == 1) //添加
  589. {
  590. diId = groupData.Data;
  591. //添加默认币种
  592. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  593. //默认分配权限
  594. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  595. //消息提示 王鸽 主管号
  596. List<int> _managerIds = new List<int>() { 22, 32 };
  597. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  598. if (userIds.Count > 0)
  599. {
  600. userIds.Add(208);
  601. //创建团组管控
  602. GroupStepForDelegation.CreateWorkStep(diId);
  603. //发送消息
  604. string groupName = dto.TeamName;
  605. string createGroupUser = string.Empty;
  606. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  607. if (userInfo != null) createGroupUser = userInfo.CnName;
  608. string title = $"系统通知";
  609. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  610. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  611. }
  612. }
  613. if (dto.Status == 2)
  614. {
  615. diId = dto.Id;
  616. if (diId == 0)
  617. {
  618. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  619. }
  620. }
  621. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  622. if (viewData.Code != 0)
  623. {
  624. _sqlSugar.RollbackTran();
  625. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  626. }
  627. _sqlSugar.CommitTran();
  628. return Ok(JsonView(true, "添加成功"));
  629. }
  630. catch (Exception ex)
  631. {
  632. _sqlSugar.RollbackTran();
  633. return Ok(JsonView(false, ex.Message));
  634. }
  635. }
  636. /// <summary>
  637. /// 接团信息 操作(删除)
  638. /// </summary>
  639. /// <param name="dto"></param>
  640. /// <returns></returns>
  641. [HttpPost]
  642. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  643. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  644. {
  645. try
  646. {
  647. var groupData = await _groupRepository.GroupDel(dto);
  648. if (groupData.Code != 0)
  649. {
  650. return Ok(JsonView(false, groupData.Msg));
  651. }
  652. return Ok(JsonView(true));
  653. }
  654. catch (Exception ex)
  655. {
  656. Logs("[response]" + JsonConvert.SerializeObject(dto));
  657. Logs(ex.Message);
  658. return Ok(JsonView(false, ex.Message));
  659. }
  660. }
  661. /// <summary>
  662. /// 获取团组销售报价号
  663. /// 团组添加时 使用
  664. /// </summary>
  665. /// <returns></returns>
  666. [HttpPost]
  667. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  668. public async Task<IActionResult> GetGroupSalesQuoteNo()
  669. {
  670. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  671. if (groupData.Code != 0)
  672. {
  673. return Ok(JsonView(false, groupData.Msg));
  674. }
  675. object salesQuoteNo = new
  676. {
  677. SalesQuoteNo = groupData.Data
  678. };
  679. return Ok(JsonView(salesQuoteNo));
  680. }
  681. /// <summary>
  682. /// 设置确认出团
  683. /// </summary>
  684. /// <param name="dto"></param>
  685. /// <returns></returns>
  686. [HttpPost]
  687. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  688. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  689. {
  690. var groupData = await _groupRepository.ConfirmationGroup(dto);
  691. if (groupData.Code != 0)
  692. {
  693. return Ok(JsonView(false, groupData.Msg));
  694. }
  695. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  696. #region OA消息推送
  697. try
  698. {
  699. string groupName = groupInfo.TeamName;
  700. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  701. List<int> userIds = new List<int>();
  702. listUser.ForEach(s => userIds.Add(s.Id));
  703. string title = $"系统通知";
  704. string content = $"团组[{groupName}]已确认出团!";
  705. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  706. }
  707. catch (Exception ex)
  708. {
  709. }
  710. #endregion
  711. #region 应用推送
  712. try
  713. {
  714. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  715. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  716. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  717. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  718. {
  719. List<string> userList = new List<string>() { users.QiyeChatUserId };
  720. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  721. }
  722. }
  723. catch (Exception ex)
  724. {
  725. }
  726. #endregion
  727. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  728. return Ok(JsonView(true, "操作成功!", groupData.Data));
  729. }
  730. /// <summary>
  731. /// 获取团组名称data And 签证国别Data
  732. /// </summary>
  733. /// <param name="dto"></param>
  734. /// <returns></returns>
  735. [HttpPost]
  736. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  737. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  738. {
  739. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  740. if (groupData.Code != 0)
  741. {
  742. return Ok(JsonView(false, groupData.Msg));
  743. }
  744. return Ok(JsonView(groupData.Data));
  745. }
  746. /// <summary>
  747. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  748. /// </summary>
  749. /// <returns></returns>
  750. [HttpPost]
  751. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  752. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  753. {
  754. try
  755. {
  756. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  757. if (groupData.Code != 0)
  758. {
  759. return Ok(JsonView(false, groupData.Msg));
  760. }
  761. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  762. }
  763. catch (Exception ex)
  764. {
  765. return Ok(JsonView(false, "程序错误!"));
  766. throw;
  767. }
  768. }
  769. #endregion
  770. #region 团组&签证
  771. /// <summary>
  772. /// 根据团组Id获取签证客户信息List
  773. /// </summary>
  774. /// <param name="dto">请求dto</param>
  775. /// <returns></returns>
  776. [HttpPost]
  777. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  778. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  779. {
  780. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  781. if (groupData.Code != 0)
  782. {
  783. return Ok(JsonView(false, groupData.Msg));
  784. }
  785. return Ok(JsonView(groupData.Data));
  786. }
  787. /// <summary>
  788. /// IOS获取团组签证拍照上传进度01(团组列表)
  789. /// </summary>
  790. /// <param name="dto">请求dto</param>
  791. /// <returns></returns>
  792. [HttpPost]
  793. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  794. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  795. {
  796. if (dto == null)
  797. {
  798. return Ok(JsonView(false, "参数为空"));
  799. }
  800. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  801. return Ok(JsonView(visaList));
  802. }
  803. /// <summary>
  804. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  805. /// </summary>
  806. /// <returns></returns>
  807. [HttpPost]
  808. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  809. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  810. {
  811. if (dto == null)
  812. {
  813. return Ok(JsonView(false, "请求错误:"));
  814. }
  815. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  816. return Ok(JsonView(list));
  817. }
  818. /// <summary>
  819. /// IOS获取团组签证拍照上传进度03(相册)
  820. /// </summary>
  821. /// <returns></returns>
  822. [HttpPost]
  823. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  824. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  825. {
  826. if (dto == null)
  827. {
  828. return Ok(JsonView(false, "请求错误:"));
  829. }
  830. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  831. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  832. list.ForEach(s => s.url = url);
  833. return Ok(JsonView(list));
  834. }
  835. /// <summary>
  836. /// IOS获取团组签证拍照上传进度04(图片上传)
  837. /// </summary>
  838. /// <param name="dto"></param>
  839. /// <returns></returns>
  840. [HttpPost]
  841. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  842. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  843. {
  844. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  845. //if (!string.IsNullOrEmpty(result))
  846. //{
  847. //}
  848. //else {
  849. // return Ok(JsonView(false, "上传失败"));
  850. //}
  851. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  852. int sucNum = 0;
  853. try
  854. {
  855. foreach (var item in dto.base64DataList)
  856. {
  857. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  858. string result = decodeBase64ToImage(item, imageName);
  859. if (!string.IsNullOrEmpty(result))
  860. {
  861. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  862. pic.CreateUserId = dto.CreateUserId;
  863. pic.PicName = imageName;
  864. pic.PicPath = result;
  865. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  866. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  867. if (insertResult > 0)
  868. {
  869. sucNum++;
  870. }
  871. }
  872. }
  873. }
  874. catch (Exception ex)
  875. {
  876. return Ok(JsonView(false, ex.Message));
  877. }
  878. string msg = string.Format(@"成功上传{0}张", sucNum);
  879. return Ok(JsonView(true, msg));
  880. }
  881. private string decodeBase64ToImage(string base64DataURL, string imgName)
  882. {
  883. string filename = "";//声明一个string类型的相对路径
  884. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  885. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  886. try//会有异常抛出,try,catch一下
  887. {
  888. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  889. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  890. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  891. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  892. //文件名称
  893. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  894. //上传的文件的路径
  895. string filePath = "";
  896. if (!Directory.Exists(fileDir))
  897. {
  898. Directory.CreateDirectory(fileDir);
  899. }
  900. //上传的文件的路径
  901. filePath = fileDir + filename;
  902. //string url = HttpRuntime.AppDomainAppPath.ToString();
  903. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  904. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  905. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  906. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  907. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  908. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  909. ms.Close();//关闭当前流,并释放所有与之关联的资源
  910. bitmap.Dispose();
  911. }
  912. catch (Exception e)
  913. {
  914. string massage = e.Message;
  915. Logs("IOS图片上传Error:" + massage);
  916. //filename = e.Message;
  917. }
  918. return filename;//返回相对路径
  919. }
  920. /// <summary>
  921. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  922. /// </summary>
  923. /// <param name="dto"></param>
  924. /// <returns></returns>
  925. [HttpPost]
  926. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  927. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  928. {
  929. if (dto == null)
  930. {
  931. return Ok(JsonView(false, "请求错误:"));
  932. }
  933. string msg = "参数错误";
  934. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  935. {
  936. try
  937. {
  938. //_delegationVisaRep.BeginTran();
  939. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  940. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  941. .Where(s => s.Id == dto.visaProgressCustomerId)
  942. .ExecuteCommandAsync();
  943. if (updCount > 0 && dto.publishCode == 1)
  944. {
  945. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  946. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  947. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  948. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  949. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  950. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  951. if (groupData == null)
  952. {
  953. _delegationVisaRep.RollbackTran();
  954. }
  955. string title = string.Format(@"[签证进度更新]");
  956. string content = string.Format(@"测试文本");
  957. bool rst = await _message.AddMsg(new MessageDto()
  958. {
  959. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  960. IssuerId = dto.publisher,
  961. Title = title,
  962. Content = content,
  963. ReleaseTime = DateTime.Now,
  964. UIdList = new List<int> {
  965. 234
  966. }
  967. });
  968. if (rst)
  969. {
  970. return Ok(JsonView(true, "发送通知成功"));
  971. }
  972. }
  973. //_delegationVisaRep.CommitTran();
  974. }
  975. catch (Exception)
  976. {
  977. //_delegationVisaRep.RollbackTran();
  978. }
  979. }
  980. return Ok(JsonView(true, msg));
  981. }
  982. #endregion
  983. #region 团组任务分配
  984. /// <summary>
  985. /// 团组任务分配初始化
  986. /// </summary>
  987. /// <param name="dto"></param>
  988. /// <returns></returns>
  989. [HttpPost]
  990. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  991. public async Task<IActionResult> GetTaskAssignmen()
  992. {
  993. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  994. if (groupData.Code != 0)
  995. {
  996. return Ok(JsonView(false, groupData.Msg));
  997. }
  998. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  999. }
  1000. /// <summary>
  1001. /// 团组任务分配查询
  1002. /// </summary>
  1003. /// <param name="dto"></param>
  1004. /// <returns></returns>
  1005. [HttpPost]
  1006. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1007. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1008. {
  1009. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1010. if (groupData.Code != 0)
  1011. {
  1012. return Ok(JsonView(false, groupData.Msg));
  1013. }
  1014. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1015. }
  1016. /// <summary>
  1017. /// 团组任务分配操作
  1018. /// </summary>
  1019. /// <param name="dto"></param>
  1020. /// <returns></returns>
  1021. [HttpPost]
  1022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1023. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1024. {
  1025. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1026. if (groupData.Code != 0)
  1027. {
  1028. return Ok(JsonView(false, groupData.Msg));
  1029. }
  1030. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1031. }
  1032. #endregion
  1033. #region 团组费用审核
  1034. /// <summary>
  1035. /// 费用审核
  1036. /// 团组列表 Page
  1037. /// </summary>
  1038. /// <param name="_dto">团组列表请求dto</param>
  1039. /// <returns></returns>
  1040. [HttpPost]
  1041. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1042. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1043. {
  1044. #region 参数验证
  1045. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1046. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1047. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1048. #region 页面操作权限验证
  1049. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1050. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1051. #endregion
  1052. #endregion
  1053. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1054. {
  1055. string sqlWhere = string.Empty;
  1056. if (_dto.IsSure == 0) //未完成
  1057. {
  1058. sqlWhere += string.Format(@" And IsSure = 0");
  1059. }
  1060. else if (_dto.IsSure == 1) //已完成
  1061. {
  1062. sqlWhere += string.Format(@" And IsSure = 1");
  1063. }
  1064. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1065. {
  1066. string tj = _dto.SearchCriteria;
  1067. 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}%')",
  1068. tj, tj, tj, tj, tj);
  1069. }
  1070. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1071. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1072. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1073. From (
  1074. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1075. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1076. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1077. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1078. From Grp_DelegationInfo gdi
  1079. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1080. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1081. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1082. Where gdi.IsDel = 0 {0}
  1083. ) temp ", sqlWhere);
  1084. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1085. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1086. var _view = new
  1087. {
  1088. PageFuncAuth = pageFunAuthView,
  1089. Data = _DelegationList
  1090. };
  1091. return Ok(JsonView(true, "查询成功!", _view, total));
  1092. }
  1093. else
  1094. {
  1095. return Ok(JsonView(false, "查询失败"));
  1096. }
  1097. }
  1098. /// <summary>
  1099. /// 获取团组费用审核
  1100. /// </summary>
  1101. /// <param name="paras">参数Json字符串</param>
  1102. /// <returns></returns>
  1103. [HttpPost]
  1104. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1105. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1106. {
  1107. try
  1108. {
  1109. #region 参数验证
  1110. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1111. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1112. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1113. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1114. #region 页面操作权限验证
  1115. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1116. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1117. #endregion
  1118. #endregion
  1119. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1120. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1121. #region 费用清单
  1122. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1123. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1124. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1125. List<Grp_CreditCardPayment> entityList = _groupRepository
  1126. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1127. .Where(exp.ToExpression())
  1128. .ToList();
  1129. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1130. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1131. /*
  1132. * 76://酒店预订
  1133. */
  1134. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1135. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1136. .ToListAsync();
  1137. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1138. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1139. .ToListAsync();
  1140. /*
  1141. * 79://车/导游地接
  1142. */
  1143. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1144. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1145. .ToListAsync();
  1146. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1147. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1148. .ToListAsync();
  1149. /*
  1150. * 80: //签证
  1151. */
  1152. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1153. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1154. .ToListAsync();
  1155. /*
  1156. *81: //邀请/公务活动
  1157. */
  1158. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1159. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1160. .ToListAsync();
  1161. /*
  1162. * 82: //团组客户保险
  1163. */
  1164. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1165. /*
  1166. * Lable = 85 机票预订
  1167. */
  1168. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1169. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1170. .ToListAsync();
  1171. /*
  1172. * 85 机票预定
  1173. */
  1174. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1175. /*
  1176. * 98 其他款项
  1177. */
  1178. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1179. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1180. .ToListAsync();
  1181. /*
  1182. * 285:收款退还
  1183. */
  1184. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1185. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1186. .ToListAsync();
  1187. /*
  1188. * 1015: //超支费用
  1189. */
  1190. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1191. /*
  1192. * 币种信息
  1193. */
  1194. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1195. /*
  1196. * 车/导游地接 费用类型
  1197. */
  1198. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1199. /*
  1200. * 车/导游地接 费用类型
  1201. */
  1202. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1203. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1204. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1205. /*
  1206. * 用户信息
  1207. */
  1208. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1209. /*
  1210. * 费用模块
  1211. */
  1212. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1213. string priceModule = string.Empty;
  1214. if (sdPriceName != null)
  1215. {
  1216. priceModule = sdPriceName.Name;
  1217. }
  1218. /*
  1219. * 成本信息
  1220. */
  1221. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1222. decimal _groupRate = 0.0000M;
  1223. string _groupCurrencyCode = "-";
  1224. if (groupCost != null)
  1225. {
  1226. _groupRate = groupCost.Rate;
  1227. if (int.TryParse(groupCost.Currency, out int _currency))
  1228. {
  1229. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1230. }
  1231. else _groupCurrencyCode = groupCost.Currency;
  1232. }
  1233. string costContentSql = $"Select * From Grp_GroupCost";
  1234. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1235. //处理日期为空的天数
  1236. for (int i = 0; i < groupCostDetails.Count; i++)
  1237. if (i != 0)
  1238. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1239. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1240. /*
  1241. * 处理详情数据
  1242. */
  1243. foreach (var entity in entityList)
  1244. {
  1245. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1246. _detail.Id = entity.Id;
  1247. _detail.PriceName = priceModule;
  1248. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1249. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1250. /*
  1251. * 应付款金额
  1252. */
  1253. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1254. string PaymentCurrency_WaitPay = "Unknown";
  1255. string hotelCurrncyCode = "Unknown";
  1256. string hotelCurrncyName = "Unknown";
  1257. if (sdPaymentCurrency_WaitPay != null)
  1258. {
  1259. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1260. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1261. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1262. if (hotelCurrncyCode.Equals("CNY"))
  1263. {
  1264. entity.DayRate = 1.0000M;
  1265. }
  1266. }
  1267. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1268. /*
  1269. * 此次付款金额
  1270. */
  1271. decimal CurrPayStr = 0;
  1272. if (entity.PayPercentage == 0)
  1273. {
  1274. if (entity.PayThenMoney != 0)
  1275. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1276. }
  1277. else
  1278. {
  1279. if (entity.PayMoney != 0)
  1280. {
  1281. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1282. }
  1283. }
  1284. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1285. /*
  1286. * 剩余尾款
  1287. */
  1288. decimal BalanceStr = 0;
  1289. if (CurrPayStr != 0)
  1290. {
  1291. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1292. BalanceStr = 0;
  1293. else
  1294. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1295. }
  1296. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1297. /*
  1298. * Bus名称
  1299. */
  1300. _detail.BusName = "待增加";
  1301. /*
  1302. *费用所属
  1303. */
  1304. switch (entity.CTable)
  1305. {
  1306. case 76://酒店预订
  1307. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1308. if (hotelReservations != null)
  1309. {
  1310. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1311. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1312. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1313. string roomFeeStr = "", roomFeestr1 = "";
  1314. //是否比较房型价格
  1315. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1316. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1317. if (hotelReservations.SingleRoomPrice > 0)
  1318. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1319. if (hotelReservations.DoubleRoomPrice > 0)
  1320. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1321. if (hotelReservations.SuiteRoomPrice > 0)
  1322. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1323. if (hotelReservations.OtherRoomPrice > 0)
  1324. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1325. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1326. else roomFeeStr += " 0.00 * 0";
  1327. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1328. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1329. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1330. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1331. /*
  1332. * 费用类型
  1333. * 1:房费
  1334. * 2:早餐
  1335. * 3:地税
  1336. * 4:城市税
  1337. * </summary>
  1338. */
  1339. //地税
  1340. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1341. if (governmentRentData != null)
  1342. {
  1343. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1344. governmentRentFee = governmentRentData.Price;
  1345. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1346. if (governmentRentCurrData != null)
  1347. {
  1348. governmentRentCode = governmentRentCurrData.Name;
  1349. governmentRentName = $"({governmentRentCurrData.Remark})";
  1350. }
  1351. }
  1352. //城市税
  1353. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1354. if (cityTaxData != null)
  1355. {
  1356. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1357. cityTaxFee = cityTaxData.Price;
  1358. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1359. if (cityTaxCurrData != null)
  1360. {
  1361. cityTaxCode = cityTaxCurrData.Name;
  1362. cityTaxName = $"({cityTaxCurrData.Remark})";
  1363. }
  1364. }
  1365. //酒店早餐
  1366. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1367. if (breakfastData != null)
  1368. {
  1369. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1370. breakfastFee = breakfastData.Price;
  1371. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1372. if (breakfastCurrData != null)
  1373. {
  1374. breakfastCode = breakfastCurrData.Name;
  1375. breakfastName = $"({breakfastCurrData.Remark})";
  1376. }
  1377. }
  1378. //房间费用
  1379. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1380. if (roomData != null)
  1381. {
  1382. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1383. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1384. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1385. roomFee = roomData.Price;
  1386. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1387. if (roomCurrData != null)
  1388. {
  1389. roomCode = roomCurrData.Name;
  1390. roomName = $"({roomCurrData.Remark})";
  1391. }
  1392. }
  1393. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1394. string hotelCostStr = "";
  1395. decimal hotelCsotTotal = 0.00M;
  1396. if (groupCost != null)
  1397. {
  1398. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1399. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1400. }
  1401. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1402. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1403. string hotelCost_day = "";
  1404. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1405. foreach (var item in hotelCostDetails1)
  1406. {
  1407. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1408. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1409. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1410. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1411. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1412. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1413. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1414. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1415. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1416. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1417. hotelCost_day += @$"</br>";
  1418. }
  1419. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1420. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1421. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1422. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1423. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1424. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1425. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1426. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1427. $"房间说明: {hotelReservations.Remark} <br/>" +
  1428. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1429. $"{hotelBreakfastStr}" +
  1430. $"{hotelGovernmentRentStr}" +
  1431. $"{hotelCityTaxStr}";
  1432. _detail.PriceNameContent = hotelReservations.HotelName;
  1433. }
  1434. break;
  1435. case 79://车/导游地接
  1436. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1437. if (touristGuideGroundReservations != null)
  1438. {
  1439. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1440. {
  1441. _detail.BusName = touristGuideGroundReservations.BusName;
  1442. }
  1443. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1444. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1445. //if (isInt)
  1446. //{
  1447. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1448. // if (cityInfo != null)
  1449. // {
  1450. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1451. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1452. // if (carFeeItem != null)
  1453. // {
  1454. // nameContent += $@"({carFeeItem.Name})";
  1455. // }
  1456. // _detail.PriceNameContent = nameContent;
  1457. // }
  1458. //}
  1459. //else
  1460. //{
  1461. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1462. //}
  1463. var touristGuideGroundReservationsContents =
  1464. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1465. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1466. foreach (var item in touristGuideGroundReservationsContents)
  1467. {
  1468. string typeName = "Unknown";
  1469. string carCurrencyCode = "Unknown";
  1470. string carCurrencyName = "Unknown";
  1471. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1472. if (carTypeData != null) typeName = carTypeData.Name;
  1473. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1474. if (currencyData != null)
  1475. {
  1476. carCurrencyCode = currencyData.Name;
  1477. carCurrencyName = currencyData.Remark;
  1478. }
  1479. string opCostStr = string.Empty;
  1480. decimal opCostTypePrice = 0.00M;
  1481. #region 处理成本各项费用
  1482. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1483. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1484. if (opCost.Count > 0)
  1485. {
  1486. switch (item.SId)
  1487. {
  1488. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1489. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1490. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1491. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1492. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1493. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1494. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1495. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1496. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1497. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1498. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1499. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1500. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1501. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1502. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1503. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1504. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1505. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1506. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1507. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1508. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1509. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1510. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1511. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1512. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1513. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1514. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1515. }
  1516. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1517. }
  1518. #endregion
  1519. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1520. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1521. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1522. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1523. }
  1524. _detail.PriceMsgContent = priceMsg;
  1525. }
  1526. break;
  1527. case 80: //签证
  1528. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1529. if (visaInfo != null)
  1530. {
  1531. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1532. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1533. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1534. }
  1535. break;
  1536. case 81: //邀请/公务活动
  1537. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1538. if (_ioa != null)
  1539. {
  1540. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1541. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1542. sendCurrName = "Unknown", //快递费用币种 Name
  1543. sendCurrCode = "Unknown", //快递费用币种 Code
  1544. eventsCurrName = "Unknown", //公务活动费币种 Name
  1545. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1546. translateCurrName = "Unknown", //公务翻译费 Name
  1547. translateCurrCode = "Unknown"; //公务翻译费 Code
  1548. #region 处理费用币种
  1549. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1550. if (inviteCurrData != null)
  1551. {
  1552. inviteCurrName = inviteCurrData.Remark;
  1553. inviteCurrCode = inviteCurrData.Name;
  1554. }
  1555. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1556. if (sendCurrData != null)
  1557. {
  1558. sendCurrName = sendCurrData.Remark;
  1559. sendCurrCode = sendCurrData.Name;
  1560. }
  1561. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1562. if (eventsCurrData != null)
  1563. {
  1564. eventsCurrName = eventsCurrData.Remark;
  1565. eventsCurrCode = eventsCurrData.Name;
  1566. }
  1567. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1568. if (translateCurrData != null)
  1569. {
  1570. translateCurrName = translateCurrData.Remark;
  1571. translateCurrCode = translateCurrData.Name;
  1572. }
  1573. #endregion
  1574. _detail.PriceNameContent = _ioa.InviterArea;
  1575. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1576. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1577. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1578. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1579. $@"备注:" + _ioa.Remark + "<br/>";
  1580. }
  1581. break;
  1582. case 82: //团组客户保险
  1583. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1584. if (customers != null)
  1585. {
  1586. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1587. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1588. }
  1589. break;
  1590. case 85: //机票预订
  1591. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1592. if (jpRes != null)
  1593. {
  1594. string FlightsDescription = jpRes.FlightsDescription;
  1595. string PriceDescription = jpRes.PriceDescription;
  1596. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1597. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1598. }
  1599. break;
  1600. case 98://其他款项
  1601. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1602. if (gdpRes != null)
  1603. {
  1604. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1605. _detail.PriceNameContent = gdpRes.PriceName;
  1606. }
  1607. break;
  1608. case 285://收款退还
  1609. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1610. if (refundAndOtherMoney != null)
  1611. {
  1612. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1613. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1614. }
  1615. break;
  1616. case 751://酒店早餐
  1617. break;
  1618. case 1015://超支费用
  1619. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1620. if (groupExtraCost != null)
  1621. {
  1622. _detail.PriceNameContent = groupExtraCost.PriceName;
  1623. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1624. }
  1625. break;
  1626. default:
  1627. break;
  1628. }
  1629. /*
  1630. * 申请人
  1631. */
  1632. string operatorName = " - ";
  1633. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1634. if (_opUser != null)
  1635. {
  1636. operatorName = _opUser.CnName;
  1637. }
  1638. _detail.OperatorName = operatorName;
  1639. /*
  1640. * 审核人
  1641. */
  1642. string auditOperatorName = "Unknown";
  1643. if (entity.AuditGMOperate == 0)
  1644. auditOperatorName = " - ";
  1645. else if (entity.AuditGMOperate == 4)
  1646. auditOperatorName = "自动审核";
  1647. else
  1648. {
  1649. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1650. if (_adUser != null)
  1651. {
  1652. auditOperatorName = _adUser.CnName;
  1653. }
  1654. }
  1655. _detail.AuditOperatorName = auditOperatorName;
  1656. /*
  1657. * 超预算比例
  1658. */
  1659. string overBudgetStr = "";
  1660. if (entity.ExceedBudget == -1)
  1661. overBudgetStr = sdPriceName.Name + "尚无预算";
  1662. else if (entity.ExceedBudget == 0)
  1663. {
  1664. if (entity.CTable == 76 || entity.CTable == 79)
  1665. {
  1666. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1667. else overBudgetStr = "超预算";
  1668. }
  1669. else
  1670. {
  1671. overBudgetStr = "未超预算";
  1672. }
  1673. }
  1674. else
  1675. overBudgetStr = entity.ExceedBudget.ToString("P");
  1676. _detail.OverBudget = overBudgetStr;
  1677. /*
  1678. * 费用总计
  1679. */
  1680. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1681. {
  1682. CurrencyId = entity.PaymentCurrency,
  1683. CurrencyName = PaymentCurrency_WaitPay,
  1684. AmountPayable = entity.PayMoney,
  1685. ThisPayment = CurrPayStr,
  1686. BalancePayment = BalanceStr,
  1687. AuditedFunds = CurrPayStr
  1688. });
  1689. _detail.IsAuditGM = entity.IsAuditGM;
  1690. detailList.Add(_detail);
  1691. }
  1692. #endregion
  1693. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1694. /*
  1695. * 下方描述处理
  1696. */
  1697. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1698. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1699. if (ccpCurrencyPrice != null)
  1700. {
  1701. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1702. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1703. }
  1704. else
  1705. {
  1706. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1707. }
  1708. string amountPayableStr = string.Format(@"应付款总金额: ");
  1709. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1710. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1711. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1712. foreach (var item in nonDuplicat)
  1713. {
  1714. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1715. if (strs.Count > 0)
  1716. {
  1717. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1718. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1719. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1720. //单独处理此次付款金额
  1721. if (item.CurrencyId == 836) //人民币
  1722. {
  1723. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1724. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1725. }
  1726. else
  1727. {
  1728. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1729. }
  1730. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1731. //单独处理已审核费用
  1732. if (item.CurrencyId == 836) //人民币
  1733. {
  1734. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1735. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1736. }
  1737. else
  1738. {
  1739. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1740. }
  1741. }
  1742. }
  1743. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1744. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1745. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1746. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1747. var _view1 = new
  1748. {
  1749. PageFuncAuth = pageFunAuthView,
  1750. Data = _view
  1751. };
  1752. return Ok(JsonView(_view1));
  1753. }
  1754. catch (Exception ex)
  1755. {
  1756. return Ok(JsonView(false, ex.Message));
  1757. }
  1758. }
  1759. /// <summary>
  1760. /// 费用审核
  1761. /// 修改团组费用审核状态
  1762. /// </summary>
  1763. /// <param name="_dto">参数Json字符串</param>
  1764. /// <returns></returns>
  1765. [HttpPost]
  1766. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1767. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1768. {
  1769. #region 参数验证
  1770. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1771. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1772. #endregion
  1773. #region 页面操作权限验证
  1774. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1775. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1776. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1777. #endregion
  1778. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1779. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1780. DateTime dtNow = DateTime.Now;
  1781. _groupRepository.BeginTran();
  1782. int rst = 0;
  1783. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1784. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1785. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1786. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1787. List<dynamic> msgDatas = new List<dynamic>();
  1788. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1789. foreach (var item in idList)
  1790. {
  1791. int CreditId = int.Parse(item);
  1792. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1793. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1794. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1795. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1796. .Where(s => s.Id == CreditId)
  1797. .ExecuteCommandAsync();
  1798. if (result < 1)
  1799. {
  1800. rst = -1;
  1801. _groupRepository.RollbackTran();
  1802. return Ok(JsonView(false, "操作失败并回滚!"));
  1803. }
  1804. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1805. if (creditData != null)
  1806. {
  1807. #region 应用通知配置
  1808. try
  1809. {
  1810. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1811. }
  1812. catch (Exception ex)
  1813. {
  1814. }
  1815. #endregion
  1816. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1817. string groupNameStr = string.Empty;
  1818. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1819. if (groupData != null) groupNameStr = groupData.TeamName;
  1820. string creditTypeStr = string.Empty;
  1821. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1822. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1823. string creditCurrency = string.Empty;
  1824. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1825. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1826. if (creditCurrency.Equals("CNY"))
  1827. {
  1828. creditData.DayRate = 1.0000M;
  1829. }
  1830. if (creditData.PayPercentage == 0.00M)
  1831. {
  1832. creditData.PayPercentage = 100M;
  1833. }
  1834. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1835. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1836. string msgContent = "";
  1837. if (creditCurrency.Equals("CNY"))
  1838. {
  1839. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1840. }
  1841. else
  1842. {
  1843. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1844. }
  1845. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1846. }
  1847. }
  1848. if (rst == 0)
  1849. {
  1850. _groupRepository.CommitTran();
  1851. foreach (var item in msgDatas)
  1852. {
  1853. //发送消息
  1854. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1855. }
  1856. #region 应用推送
  1857. try
  1858. {
  1859. foreach (var ccpId in dic_ccp_user.Keys)
  1860. {
  1861. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1862. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1863. }
  1864. }
  1865. catch (Exception)
  1866. {
  1867. }
  1868. #endregion
  1869. return Ok(JsonView(true, "操作成功!"));
  1870. }
  1871. return Ok(JsonView(false, "操作失败!"));
  1872. }
  1873. #endregion
  1874. #region 机票费用录入
  1875. /// <summary>
  1876. /// 机票录入当前登录人可操作团组
  1877. /// </summary>
  1878. /// <param name="dto"></param>
  1879. /// <returns></returns>
  1880. [HttpPost]
  1881. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1882. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1883. {
  1884. try
  1885. {
  1886. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1887. if (groupData.Code != 0)
  1888. {
  1889. return Ok(JsonView(false, groupData.Msg));
  1890. }
  1891. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1892. }
  1893. catch (Exception ex)
  1894. {
  1895. return Ok(JsonView(false, "程序错误!"));
  1896. throw;
  1897. }
  1898. }
  1899. /// <summary>
  1900. /// 机票费用录入列表
  1901. /// </summary>
  1902. /// <param name="dto"></param>
  1903. /// <returns></returns>
  1904. [HttpPost]
  1905. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1906. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1907. {
  1908. try
  1909. {
  1910. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1911. if (groupData.Code != 0)
  1912. {
  1913. return Ok(JsonView(false, groupData.Msg));
  1914. }
  1915. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1916. }
  1917. catch (Exception ex)
  1918. {
  1919. return Ok(JsonView(false, ex.Message));
  1920. throw;
  1921. }
  1922. }
  1923. /// <summary>
  1924. /// 根据id查询费用录入信息
  1925. /// </summary>
  1926. /// <param name="dto"></param>
  1927. /// <returns></returns>
  1928. [HttpPost]
  1929. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1930. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1931. {
  1932. try
  1933. {
  1934. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1935. if (groupData.Code != 0)
  1936. {
  1937. return Ok(JsonView(false, groupData.Msg));
  1938. }
  1939. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1940. }
  1941. catch (Exception ex)
  1942. {
  1943. return Ok(JsonView(false, "程序错误!"));
  1944. throw;
  1945. }
  1946. }
  1947. /// <summary>
  1948. /// 机票费用录入操作(Status:1.新增,2.修改)
  1949. /// </summary>
  1950. /// <param name="dto"></param>
  1951. /// <returns></returns>
  1952. [HttpPost]
  1953. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1954. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1955. {
  1956. try
  1957. {
  1958. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1959. if (groupData.Code != 0)
  1960. {
  1961. return Ok(JsonView(false, groupData.Msg));
  1962. }
  1963. #region 应用推送
  1964. try
  1965. {
  1966. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  1967. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  1968. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  1969. }
  1970. catch (Exception ex)
  1971. {
  1972. }
  1973. #endregion
  1974. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1975. }
  1976. catch (Exception ex)
  1977. {
  1978. return Ok(JsonView(false, "程序错误!"));
  1979. throw;
  1980. }
  1981. }
  1982. /// <summary>
  1983. /// 根据舱位类型查询接团客户名单信息
  1984. /// </summary>
  1985. /// <param name="dto"></param>
  1986. /// <returns></returns>
  1987. [HttpPost]
  1988. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1989. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  1990. {
  1991. try
  1992. {
  1993. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  1994. if (crm_Groups.Count != 0)
  1995. {
  1996. List<dynamic> Customer = new List<dynamic>();
  1997. foreach (var item in crm_Groups)
  1998. {
  1999. var data = new
  2000. {
  2001. Id = item.Id,
  2002. Pinyin = item.Pinyin,
  2003. Name = item.LastName + item.FirstName
  2004. };
  2005. Customer.Add(data);
  2006. }
  2007. return Ok(JsonView(true, "查询成功!", Customer));
  2008. }
  2009. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2010. }
  2011. catch (Exception ex)
  2012. {
  2013. return Ok(JsonView(false, "程序错误!"));
  2014. throw;
  2015. }
  2016. }
  2017. /// <summary>
  2018. /// 根据团号获取客户信息
  2019. /// </summary>
  2020. /// <param name="dto"></param>
  2021. /// <returns></returns>
  2022. [HttpPost]
  2023. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2024. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2025. {
  2026. var jw = JsonView(false);
  2027. if (dto.DIID < 1)
  2028. {
  2029. jw.Msg += "请输入正确的diid";
  2030. return Ok(jw);
  2031. }
  2032. var arr = getSimplClientList(dto.DIID);
  2033. jw = JsonView(true, "获取成功!", arr);
  2034. return Ok(jw);
  2035. }
  2036. private List<SimplClientInfo> getSimplClientList(int diId)
  2037. {
  2038. 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);
  2039. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2040. return arr;
  2041. }
  2042. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2043. {
  2044. string result = origin;
  2045. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2046. {
  2047. string[] temparr = origin.Split(',');
  2048. string fistrStr = temparr[0];
  2049. int count = temparr.Count();
  2050. int tempId;
  2051. bool success = int.TryParse(fistrStr, out tempId);
  2052. if (success)
  2053. {
  2054. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2055. if (tempInfo != null)
  2056. {
  2057. if (count > 1)
  2058. {
  2059. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2060. }
  2061. else
  2062. {
  2063. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2064. }
  2065. }
  2066. }
  2067. }
  2068. return result;
  2069. }
  2070. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2071. {
  2072. string result = origin;
  2073. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2074. {
  2075. string[] temparr = origin.Split(',');
  2076. result = "";
  2077. foreach (var item in temparr)
  2078. {
  2079. int tempId;
  2080. bool success = int.TryParse(item, out tempId);
  2081. if (success)
  2082. {
  2083. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2084. if (tempInfo != null)
  2085. {
  2086. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2087. }
  2088. }
  2089. }
  2090. }
  2091. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2092. return result;
  2093. }
  2094. /// <summary>
  2095. /// 机票费用录入,删除
  2096. /// </summary>
  2097. /// <param name="dto"></param>
  2098. /// <returns></returns>
  2099. [HttpPost]
  2100. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2101. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2102. {
  2103. try
  2104. {
  2105. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2106. if (res)
  2107. {
  2108. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2109. {
  2110. IsDel = 1,
  2111. DeleteUserId = dto.DeleteUserId,
  2112. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2113. }).ExecuteCommandAsync();
  2114. return Ok(JsonView(true, "删除成功!"));
  2115. }
  2116. return Ok(JsonView(false, "删除失败!"));
  2117. }
  2118. catch (Exception ex)
  2119. {
  2120. return Ok(JsonView(false, "程序错误!"));
  2121. throw;
  2122. }
  2123. }
  2124. /// <summary>
  2125. /// 导出机票录入报表
  2126. /// </summary>
  2127. /// <param name="dto"></param>
  2128. /// <returns></returns>
  2129. [HttpPost]
  2130. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2131. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2132. {
  2133. try
  2134. {
  2135. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2136. if (groupData.Code != 0)
  2137. {
  2138. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2139. }
  2140. else
  2141. {
  2142. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2143. if (AirTicketReservations.Count != 0)
  2144. {
  2145. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2146. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2147. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2148. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2149. WorkbookDesigner designer = new WorkbookDesigner();
  2150. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2151. decimal countCost = 0;
  2152. foreach (var item in AirTicketReservations)
  2153. {
  2154. #region 处理客人姓名
  2155. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2156. item.ClientName = clientNames;
  2157. #endregion
  2158. if (item.BankType == "其他")
  2159. {
  2160. item.BankNo = "--";
  2161. }
  2162. else
  2163. {
  2164. if (!string.IsNullOrEmpty(item.BankType))
  2165. {
  2166. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2167. }
  2168. }
  2169. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2170. item.Price = System.Decimal.Round(item.Price, 2);
  2171. countCost += Convert.ToDecimal(item.Price);
  2172. }
  2173. designer.SetDataSource("Export", AirTicketReservations);
  2174. designer.SetDataSource("ExportDiCode", diCode);
  2175. designer.SetDataSource("ExportDiName", diName);
  2176. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2177. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2178. designer.Process();
  2179. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2180. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2181. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2182. return Ok(JsonView(true, "成功", url = rst));
  2183. }
  2184. else
  2185. {
  2186. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2187. }
  2188. }
  2189. }
  2190. catch (Exception ex)
  2191. {
  2192. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2193. throw;
  2194. }
  2195. }
  2196. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2197. /// <summary>
  2198. /// 行程单导出
  2199. /// </summary>
  2200. /// <param name="dto"></param>
  2201. /// <returns></returns>
  2202. [HttpPost]
  2203. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2204. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2205. {
  2206. try
  2207. {
  2208. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2209. if (groupData.Code != 0)
  2210. {
  2211. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2212. }
  2213. else
  2214. {
  2215. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2216. if (dto.Language == "CN")
  2217. {
  2218. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2219. DocumentBuilder builder = new DocumentBuilder(doc);
  2220. int tableIndex = 0;//表格索引
  2221. //得到文档中的第一个表格
  2222. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2223. foreach (var item in _AirTicketReservations)
  2224. {
  2225. #region 处理固定数据
  2226. string[] FlightsCode = item.FlightsCode.Split('/');
  2227. if (FlightsCode.Length != 0)
  2228. {
  2229. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2230. if (_AirCompany != null)
  2231. {
  2232. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2233. }
  2234. else
  2235. {
  2236. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2237. }
  2238. }
  2239. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2240. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2241. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2242. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2243. string name = "";
  2244. foreach (string clientName in nameArray)
  2245. {
  2246. if (!name.Contains(clientName))
  2247. {
  2248. name += clientName + ",";
  2249. }
  2250. }
  2251. if (!string.IsNullOrWhiteSpace(name))
  2252. {
  2253. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2254. }
  2255. else
  2256. {
  2257. table.Range.Bookmarks["ClientName"].Text = "--";
  2258. }
  2259. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2260. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2261. table.Range.Bookmarks["JointTicket"].Text = "--";
  2262. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2263. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2264. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2265. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2266. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2267. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2268. #endregion
  2269. #region 循环数据处理
  2270. List<AirInfo> airs = new List<AirInfo>();
  2271. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2272. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2273. for (int i = 0; i < FlightsCode.Length; i++)
  2274. {
  2275. AirInfo air = new AirInfo();
  2276. string[] tempstr = DayArray[i]
  2277. .Replace("\r\n", string.Empty)
  2278. .Replace("\\r\\n", string.Empty)
  2279. .TrimStart().TrimEnd()
  2280. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2281. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2282. string starCity = "";
  2283. if (star_Three != null)
  2284. {
  2285. starCity = star_Three.AirPort;
  2286. }
  2287. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2288. string EndCity = "";
  2289. if (End_Three != null)
  2290. {
  2291. EndCity = End_Three.AirPort;
  2292. }
  2293. air.Destination = starCity + "/" + EndCity;
  2294. air.Flight = FlightsCode[i];
  2295. air.SeatingClass = item.CTypeName;
  2296. string dateTime = tempstr[2];
  2297. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2298. air.FlightDate = DateTemp;
  2299. air.DepartureTime = tempstr[5];
  2300. air.LandingTime = tempstr[6];
  2301. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2302. air.TicketStatus = "--";
  2303. air.Luggage = "--";
  2304. air.DepartureTerminal = "--";
  2305. air.LandingTerminal = "--";
  2306. airs.Add(air);
  2307. }
  2308. int row = 13;
  2309. for (int i = 0; i < airs.Count; i++)
  2310. {
  2311. if (airs.Count > 2)
  2312. {
  2313. for (int j = 0; j < airs.Count - 2; j++)
  2314. {
  2315. var CopyRow = table.Rows[12].Clone(true);
  2316. table.Rows.Add(CopyRow);
  2317. }
  2318. }
  2319. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2320. int index = 0;
  2321. foreach (PropertyInfo property in properties)
  2322. {
  2323. string value = property.GetValue(airs[i]).ToString();
  2324. Cell ishcel0 = table.Rows[row].Cells[index];
  2325. Paragraph p = new Paragraph(doc);
  2326. string s = value;
  2327. p.AppendChild(new Run(doc, s));
  2328. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2329. ishcel0.AppendChild(p);
  2330. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2331. index++;
  2332. }
  2333. row++;
  2334. }
  2335. #endregion
  2336. Paragraph lastParagraph = new Paragraph(doc);
  2337. //第一个表格末尾加段落
  2338. table.ParentNode.InsertAfter(lastParagraph, table);
  2339. //复制第一个表格
  2340. Table cloneTable = (Table)table.Clone(true);
  2341. //在文档末尾段落后面加入复制的表格
  2342. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2343. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2344. {
  2345. int rownewsIndex = 13;
  2346. for (int i = 0; i < 2; i++)
  2347. {
  2348. var CopyRow = table.Rows[12].Clone(true);
  2349. table.Rows.RemoveAt(13);
  2350. table.Rows.Add(CopyRow);
  2351. rownewsIndex++;
  2352. }
  2353. }
  2354. else
  2355. {
  2356. table.Rows.RemoveAt(12);
  2357. }
  2358. cloneTable.Rows.RemoveAt(12);
  2359. }
  2360. if (_AirTicketReservations.Count != 0)
  2361. {
  2362. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2363. if (FlightsCode.Length != 0)
  2364. {
  2365. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2366. if (_AirCompany != null)
  2367. {
  2368. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2369. }
  2370. else
  2371. {
  2372. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2373. }
  2374. }
  2375. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2376. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2377. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2378. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2379. string name = "";
  2380. foreach (string clientName in nameArray)
  2381. {
  2382. if (!name.Contains(clientName))
  2383. {
  2384. name += clientName + ",";
  2385. }
  2386. }
  2387. if (!string.IsNullOrWhiteSpace(name))
  2388. {
  2389. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2390. }
  2391. else
  2392. {
  2393. table.Range.Bookmarks["ClientName"].Text = "--";
  2394. }
  2395. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2396. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2397. table.Range.Bookmarks["JointTicket"].Text = "--";
  2398. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2399. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2400. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2401. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2402. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2403. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2404. }
  2405. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2406. //保存合并后的文档
  2407. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2408. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2409. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2410. return Ok(JsonView(true, "成功!", rst));
  2411. }
  2412. else
  2413. {
  2414. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2415. DocumentBuilder builder = new DocumentBuilder(doc);
  2416. int tableIndex = 0;//表格索引
  2417. //得到文档中的第一个表格
  2418. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2419. List<string> texts = new List<string>();
  2420. foreach (var item in _AirTicketReservations)
  2421. {
  2422. string[] FlightsCode = item.FlightsCode.Split('/');
  2423. if (FlightsCode.Length != 0)
  2424. {
  2425. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2426. if (_AirCompany != null)
  2427. {
  2428. if (!transDic.ContainsKey(_AirCompany.CnName))
  2429. {
  2430. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2431. }
  2432. }
  2433. else
  2434. {
  2435. if (!transDic.ContainsKey("--"))
  2436. {
  2437. transDic.Add("--", "--");
  2438. }
  2439. }
  2440. }
  2441. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2442. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2443. string name = "";
  2444. foreach (string clientName in nameArray)
  2445. {
  2446. name += clientName + ",";
  2447. }
  2448. if (!texts.Contains(name))
  2449. {
  2450. texts.Add(name);
  2451. }
  2452. List<AirInfo> airs = new List<AirInfo>();
  2453. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2454. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2455. for (int i = 0; i < FlightsCode.Length; i++)
  2456. {
  2457. AirInfo air = new AirInfo();
  2458. string[] tempstr = DayArray[i]
  2459. .Replace("\r\n", string.Empty)
  2460. .Replace("\\r\\n", string.Empty)
  2461. .TrimStart().TrimEnd()
  2462. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2463. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2464. if (star_Three != null)
  2465. {
  2466. if (!transDic.ContainsKey(star_Three.AirPort))
  2467. {
  2468. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2469. }
  2470. }
  2471. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2472. if (End_Three != null)
  2473. {
  2474. if (!transDic.ContainsKey(End_Three.AirPort))
  2475. {
  2476. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2477. }
  2478. }
  2479. if (!texts.Contains(item.CTypeName))
  2480. {
  2481. texts.Add(item.CTypeName);
  2482. }
  2483. }
  2484. }
  2485. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2486. if (transData.Count > 0)
  2487. {
  2488. foreach (TranslateResult item in transData)
  2489. {
  2490. if (!transDic.ContainsKey(item.Query))
  2491. {
  2492. transDic.Add(item.Query, item.Translation);
  2493. }
  2494. }
  2495. }
  2496. foreach (var item in _AirTicketReservations)
  2497. {
  2498. #region 处理固定数据
  2499. string[] FlightsCode = item.FlightsCode.Split('/');
  2500. if (FlightsCode.Length != 0)
  2501. {
  2502. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2503. if (_AirCompany != null)
  2504. {
  2505. string str = "--";
  2506. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2507. if (!string.IsNullOrEmpty(translateResult))
  2508. {
  2509. str = translateResult;
  2510. str = _airTicketResRep.Processing(str);
  2511. }
  2512. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2513. }
  2514. else
  2515. {
  2516. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2517. }
  2518. }
  2519. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2520. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2521. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2522. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2523. string names = "";
  2524. foreach (string clientName in nameArray)
  2525. {
  2526. names += clientName + ",";
  2527. }
  2528. if (!string.IsNullOrWhiteSpace(names))
  2529. {
  2530. string str = "--";
  2531. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2532. if (!string.IsNullOrEmpty(translateResult))
  2533. {
  2534. str = translateResult;
  2535. str = _airTicketResRep.Processing(str);
  2536. }
  2537. table.Range.Bookmarks["ClientName"].Text = str;
  2538. }
  2539. else
  2540. {
  2541. table.Range.Bookmarks["ClientName"].Text = "--";
  2542. }
  2543. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2544. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2545. table.Range.Bookmarks["JointTicket"].Text = "--";
  2546. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2547. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2548. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2549. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2550. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2551. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2552. #endregion
  2553. #region 循环数据处理
  2554. List<AirInfo> airs = new List<AirInfo>();
  2555. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2556. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2557. for (int i = 0; i < FlightsCode.Length; i++)
  2558. {
  2559. AirInfo air = new AirInfo();
  2560. string[] tempstr = DayArray[i]
  2561. .Replace("\r\n", string.Empty)
  2562. .Replace("\\r\\n", string.Empty)
  2563. .TrimStart().TrimEnd()
  2564. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2565. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2566. string starCity = "";
  2567. if (star_Three != null)
  2568. {
  2569. string str2 = "--";
  2570. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2571. if (!string.IsNullOrEmpty(translateResult2))
  2572. {
  2573. str2 = translateResult2;
  2574. str2 = _airTicketResRep.Processing(str2);
  2575. }
  2576. starCity = str2;
  2577. }
  2578. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2579. string EndCity = "";
  2580. if (End_Three != null)
  2581. {
  2582. string str1 = "--";
  2583. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2584. if (!string.IsNullOrEmpty(translateResult1))
  2585. {
  2586. str1 = translateResult1;
  2587. str1 = _airTicketResRep.Processing(str1);
  2588. }
  2589. EndCity = str1;
  2590. }
  2591. air.Destination = starCity + "/" + EndCity;
  2592. air.Flight = FlightsCode[i];
  2593. string str = "--";
  2594. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2595. if (!string.IsNullOrEmpty(translateResult))
  2596. {
  2597. str = translateResult;
  2598. str = _airTicketResRep.Processing(str);
  2599. }
  2600. air.SeatingClass = str;
  2601. string dateTime = tempstr[2];
  2602. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2603. air.FlightDate = DateTemp;
  2604. air.DepartureTime = tempstr[5];
  2605. air.LandingTime = tempstr[6];
  2606. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2607. air.TicketStatus = "--";
  2608. air.Luggage = "--";
  2609. air.DepartureTerminal = "--";
  2610. air.LandingTerminal = "--";
  2611. airs.Add(air);
  2612. }
  2613. int row = 13;
  2614. for (int i = 0; i < airs.Count; i++)
  2615. {
  2616. if (airs.Count > 2)
  2617. {
  2618. for (int j = 0; j < airs.Count - 2; j++)
  2619. {
  2620. var CopyRow = table.Rows[12].Clone(true);
  2621. table.Rows.Add(CopyRow);
  2622. }
  2623. }
  2624. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2625. int index = 0;
  2626. foreach (PropertyInfo property in properties)
  2627. {
  2628. string value = property.GetValue(airs[i]).ToString();
  2629. Cell ishcel0 = table.Rows[row].Cells[index];
  2630. Paragraph p = new Paragraph(doc);
  2631. string s = value;
  2632. p.AppendChild(new Run(doc, s));
  2633. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2634. ishcel0.AppendChild(p);
  2635. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2636. //ishcel0.CellFormat.VerticalAlignment=
  2637. index++;
  2638. }
  2639. row++;
  2640. }
  2641. #endregion
  2642. Paragraph lastParagraph = new Paragraph(doc);
  2643. //第一个表格末尾加段落
  2644. table.ParentNode.InsertAfter(lastParagraph, table);
  2645. //复制第一个表格
  2646. Table cloneTable = (Table)table.Clone(true);
  2647. //在文档末尾段落后面加入复制的表格
  2648. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2649. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2650. {
  2651. int rownewsIndex = 13;
  2652. for (int i = 0; i < 2; i++)
  2653. {
  2654. var CopyRow = table.Rows[12].Clone(true);
  2655. table.Rows.RemoveAt(13);
  2656. table.Rows.Add(CopyRow);
  2657. rownewsIndex++;
  2658. }
  2659. }
  2660. else
  2661. {
  2662. table.Rows.RemoveAt(12);
  2663. }
  2664. cloneTable.Rows.RemoveAt(12);
  2665. }
  2666. if (_AirTicketReservations.Count != 0)
  2667. {
  2668. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2669. if (FlightsCode.Length != 0)
  2670. {
  2671. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2672. if (_AirCompany != null)
  2673. {
  2674. string str = "--";
  2675. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2676. if (!string.IsNullOrEmpty(translateResult))
  2677. {
  2678. str = translateResult;
  2679. str = _airTicketResRep.Processing(str);
  2680. }
  2681. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2682. }
  2683. else
  2684. {
  2685. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2686. }
  2687. }
  2688. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2689. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2690. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2691. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2692. string names = "";
  2693. foreach (string clientName in nameArray)
  2694. {
  2695. names += clientName + ",";
  2696. }
  2697. if (!string.IsNullOrWhiteSpace(names))
  2698. {
  2699. string str = "--";
  2700. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2701. if (!string.IsNullOrEmpty(translateResult))
  2702. {
  2703. str = translateResult;
  2704. str = _airTicketResRep.Processing(str);
  2705. }
  2706. table.Range.Bookmarks["ClientName"].Text = str;
  2707. }
  2708. else
  2709. {
  2710. table.Range.Bookmarks["ClientName"].Text = "--";
  2711. }
  2712. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2713. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2714. table.Range.Bookmarks["JointTicket"].Text = "--";
  2715. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2716. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2717. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2718. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2719. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2720. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2721. }
  2722. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2723. //保存合并后的文档
  2724. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2725. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2726. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2727. return Ok(JsonView(true, "成功!", rst));
  2728. }
  2729. }
  2730. }
  2731. catch (Exception ex)
  2732. {
  2733. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2734. throw;
  2735. }
  2736. }
  2737. #endregion
  2738. #region 团组增减款项 --> 其他款项
  2739. /// <summary>
  2740. /// 团组增减款项下拉框绑定
  2741. /// </summary>
  2742. /// <param name="dto"></param>
  2743. /// <returns></returns>
  2744. [HttpPost]
  2745. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2746. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2747. {
  2748. #region 参数验证
  2749. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2750. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2751. #endregion
  2752. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2753. }
  2754. /// <summary>
  2755. /// 根据团组Id查询团组增减款项
  2756. /// </summary>
  2757. /// <param name="dto"></param>
  2758. /// <returns></returns>
  2759. [HttpPost]
  2760. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2761. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2762. {
  2763. #region 参数验证
  2764. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2765. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2766. #endregion
  2767. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2768. }
  2769. /// <summary>
  2770. /// 团组增减款项操作(Status:1.新增,2.修改)
  2771. /// </summary>
  2772. /// <param name="dto"></param>
  2773. /// <returns></returns>
  2774. [HttpPost]
  2775. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2776. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2777. {
  2778. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2779. if (groupData.Code != 200)
  2780. {
  2781. return Ok(JsonView(false, groupData.Msg));
  2782. }
  2783. #region 应用推送
  2784. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2785. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2786. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2787. #endregion
  2788. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2789. }
  2790. /// <summary>
  2791. /// 团组增减款项操作 删除
  2792. /// </summary>
  2793. /// <param name="dto"></param>
  2794. /// <returns></returns>
  2795. [HttpPost]
  2796. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2797. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2798. {
  2799. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2800. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2801. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2802. if (res.Code == 0)
  2803. {
  2804. return Ok(JsonView(true, "删除成功!"));
  2805. }
  2806. return Ok(JsonView(false, "删除失败!"));
  2807. }
  2808. /// <summary>
  2809. /// 根据团组增减款项Id查询
  2810. /// </summary>
  2811. /// <param name="dto"></param>
  2812. /// <returns></returns>
  2813. [HttpPost]
  2814. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2815. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2816. {
  2817. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2818. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2819. }
  2820. /// <summary>
  2821. /// 查询供应商名称
  2822. /// </summary>
  2823. /// <param name="dto"></param>
  2824. /// <returns></returns>
  2825. [HttpPost]
  2826. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2827. {
  2828. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2829. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2830. ?? new List<Grp_DecreasePayments>();
  2831. dbResult = dbResult.Distinct(new
  2832. ProductComparer()).ToList();
  2833. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2834. {
  2835. x.Id,
  2836. x.SupplierAddress,
  2837. x.SupplierArea,
  2838. x.SupplierContact,
  2839. x.SupplierContactNumber,
  2840. x.SupplierEmail,
  2841. x.SupplierName,
  2842. x.SupplierSocialAccount,
  2843. x.SupplierTypeId,
  2844. }).ToList());
  2845. return Ok(jw);
  2846. }
  2847. #endregion
  2848. #region 文件上传、删除
  2849. /// <summary>
  2850. /// region 文件上传 可以带参数
  2851. /// </summary>
  2852. /// <param name="file"></param>
  2853. /// <returns></returns>
  2854. [HttpPost]
  2855. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2856. public async Task<IActionResult> UploadProject(IFormFile file)
  2857. {
  2858. try
  2859. {
  2860. var TypeName = Request.Headers["TypeName"].ToString();
  2861. if (file != null)
  2862. {
  2863. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2864. //文件名称
  2865. string projectFileName = file.FileName;
  2866. //上传的文件的路径
  2867. string filePath = "";
  2868. if (TypeName == "A")//A代表团组增减款项
  2869. {
  2870. if (!Directory.Exists(fileDir))
  2871. {
  2872. Directory.CreateDirectory(fileDir);
  2873. }
  2874. //上传的文件的路径
  2875. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2876. }
  2877. else if (TypeName == "B")//B代表商邀相关文件
  2878. {
  2879. if (!Directory.Exists(fileDir))
  2880. {
  2881. Directory.CreateDirectory(fileDir);
  2882. }
  2883. //上传的文件的路径
  2884. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2885. }
  2886. using (FileStream fs = System.IO.File.Create(filePath))
  2887. {
  2888. file.CopyTo(fs);
  2889. fs.Flush();
  2890. }
  2891. return Ok(JsonView(true, "上传成功!", projectFileName));
  2892. }
  2893. else
  2894. {
  2895. return Ok(JsonView(false, "上传失败!"));
  2896. }
  2897. }
  2898. catch (Exception ex)
  2899. {
  2900. return Ok(JsonView(false, "程序错误!"));
  2901. throw;
  2902. }
  2903. }
  2904. /// <summary>
  2905. /// 删除指定文件
  2906. /// </summary>
  2907. /// <param name="dto"></param>
  2908. /// <returns></returns>
  2909. [HttpPost]
  2910. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2911. public async Task<IActionResult> DelFile(DelFileDto dto)
  2912. {
  2913. try
  2914. {
  2915. var TypeName = Request.Headers["TypeName"].ToString();
  2916. string filePath = "";
  2917. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2918. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2919. int id = 0;
  2920. if (TypeName == "A")
  2921. {
  2922. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2923. // 删除该文件
  2924. System.IO.File.Delete(filePath);
  2925. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2926. }
  2927. else if (TypeName == "B")
  2928. {
  2929. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2930. // 删除该文件
  2931. System.IO.File.Delete(filePath);
  2932. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2933. }
  2934. if (id != 0)
  2935. {
  2936. return Ok(JsonView(true, "成功!"));
  2937. }
  2938. else
  2939. {
  2940. return Ok(JsonView(false, "失败!"));
  2941. }
  2942. }
  2943. catch (Exception ex)
  2944. {
  2945. return Ok(JsonView(false, "程序错误!"));
  2946. throw;
  2947. }
  2948. }
  2949. #endregion
  2950. #region 商邀费用录入
  2951. /// <summary>
  2952. /// 根据团组Id查询商邀费用列表
  2953. /// </summary>
  2954. /// <param name="dto"></param>
  2955. /// <returns></returns>
  2956. [HttpPost]
  2957. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2958. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2959. {
  2960. try
  2961. {
  2962. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  2963. if (groupData.Code != 0)
  2964. {
  2965. return Ok(JsonView(false, groupData.Msg));
  2966. }
  2967. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2968. }
  2969. catch (Exception ex)
  2970. {
  2971. return Ok(JsonView(false, "程序错误!"));
  2972. throw;
  2973. }
  2974. }
  2975. //
  2976. /// <summary>
  2977. /// 商邀费用 Info Page 基础数据源
  2978. /// </summary>
  2979. /// <param name="dto"></param>
  2980. /// <returns></returns>
  2981. [HttpPost]
  2982. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2983. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  2984. {
  2985. try
  2986. {
  2987. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  2988. if (groupData.Code != 0)
  2989. {
  2990. return Ok(JsonView(false, groupData.Msg));
  2991. }
  2992. return Ok(JsonView(true, "操作成功", groupData.Data));
  2993. }
  2994. catch (Exception ex)
  2995. {
  2996. return Ok(JsonView(false, ex.Message));
  2997. throw;
  2998. }
  2999. }
  3000. /// <summary>
  3001. /// 根据商邀费用ID查询C表和商邀费用数据
  3002. /// </summary>
  3003. /// <param name="dto"></param>
  3004. /// <returns></returns>
  3005. [HttpPost]
  3006. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3007. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3008. {
  3009. try
  3010. {
  3011. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3012. if (groupData.Code != 0)
  3013. {
  3014. return Ok(JsonView(false, groupData.Msg));
  3015. }
  3016. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3017. }
  3018. catch (Exception ex)
  3019. {
  3020. return Ok(JsonView(false, ex.Message));
  3021. throw;
  3022. }
  3023. }
  3024. /// <summary>
  3025. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3026. /// </summary>
  3027. /// <param name="dto"></param>
  3028. /// <returns></returns>
  3029. [HttpPost]
  3030. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3031. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3032. {
  3033. try
  3034. {
  3035. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3036. if (groupData.Code != 0)
  3037. {
  3038. return Ok(JsonView(false, groupData.Msg));
  3039. }
  3040. #region 应用推送
  3041. try
  3042. {
  3043. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3044. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3045. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3046. }
  3047. catch (Exception ex)
  3048. {
  3049. }
  3050. #endregion
  3051. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3052. }
  3053. catch (Exception ex)
  3054. {
  3055. return Ok(JsonView(false, "程序错误!"));
  3056. throw;
  3057. }
  3058. }
  3059. /// <summary>
  3060. /// 商邀删除
  3061. /// </summary>
  3062. /// <param name="dto"></param>
  3063. /// <returns></returns>
  3064. [HttpPost]
  3065. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3066. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3067. {
  3068. try
  3069. {
  3070. _sqlSugar.BeginTran();
  3071. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3072. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3073. {
  3074. IsDel = 1,
  3075. DeleteUserId = dto.DeleteUserId,
  3076. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3077. })
  3078. .Where(it => it.Id == dto.Id)
  3079. .ExecuteCommand();
  3080. if (res1 > 0)
  3081. {
  3082. int _diId = 0;
  3083. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3084. if (_ioaInfo != null)
  3085. {
  3086. _diId = _ioaInfo.DiId;
  3087. }
  3088. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3089. .SetColumns(a => new Grp_CreditCardPayment()
  3090. {
  3091. IsDel = 1,
  3092. DeleteUserId = dto.DeleteUserId,
  3093. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3094. })
  3095. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3096. .ExecuteCommand();
  3097. if (res2 > 0)
  3098. {
  3099. _sqlSugar.CommitTran();
  3100. return Ok(JsonView(true, "删除成功!"));
  3101. }
  3102. }
  3103. _sqlSugar.RollbackTran();
  3104. return Ok(JsonView(false, "删除失败"));
  3105. }
  3106. catch (Exception ex)
  3107. {
  3108. _sqlSugar.RollbackTran();
  3109. return Ok(JsonView(false, ex.Message));
  3110. }
  3111. }
  3112. /// <summary>
  3113. /// 团组模块文件上传
  3114. /// </summary>
  3115. /// <param name="dto"></param>
  3116. /// <returns></returns>
  3117. [HttpPost]
  3118. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3119. {
  3120. var jw = JsonView(false);
  3121. long M = 1024 * 1024;
  3122. if (dto.Files == null || dto.Files.Count == 0)
  3123. {
  3124. jw.Msg = "无文件信息!";
  3125. return Ok(jw);
  3126. }
  3127. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3128. {
  3129. jw.Msg = "文件大小超过20M!";
  3130. return Ok(jw);
  3131. }
  3132. //var nameSp = dto.File.FileName.Split(".");
  3133. //if (nameSp.Length < 2)
  3134. //{
  3135. // jw.Msg = "拓展名称有误!";
  3136. // return Ok(jw);
  3137. //}
  3138. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3139. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3140. //{
  3141. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3142. // return Ok(jw);
  3143. //}
  3144. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3145. if (Ctable == null)
  3146. {
  3147. jw.Msg = "Ctable指向有误!";
  3148. return Ok(jw);
  3149. }
  3150. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3151. if (groupInfo == null)
  3152. {
  3153. jw.Msg = "团组信息不存在!";
  3154. return Ok(jw);
  3155. }
  3156. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3157. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3158. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3159. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3160. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3161. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3162. try
  3163. {
  3164. if (!Directory.Exists(fileBase))
  3165. {
  3166. Directory.CreateDirectory(fileBase);
  3167. }
  3168. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3169. foreach (var fileStream in dto.Files)
  3170. {
  3171. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3172. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3173. {
  3174. Cid = dto.Cid,
  3175. CreateTime = DateTime.Now,
  3176. CreateUserId = dto.Userid,
  3177. Ctable = dto.Ctable,
  3178. Diid = dto.Diid,
  3179. IsDel = 0,
  3180. FilePath = saveFilePath,
  3181. FileName = fileStream.FileName
  3182. };
  3183. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3184. {
  3185. fileStream.CopyTo(fs);
  3186. fs.Flush();
  3187. }
  3188. saveArr.Add(file);
  3189. }
  3190. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3191. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3192. jw = JsonView(true, "保存成功!", new
  3193. {
  3194. count = addResult,
  3195. filesName = saveArr.Select(x => x.FileName)
  3196. }) ;
  3197. }
  3198. catch (Exception ex)
  3199. {
  3200. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3201. {
  3202. count = 0,
  3203. filesName = new string[0],
  3204. }) ;
  3205. }
  3206. return Ok(jw);
  3207. }
  3208. /// <summary>
  3209. /// 查询各模块已保存文件
  3210. /// </summary>
  3211. /// <param name="dto"></param>
  3212. /// <returns></returns>
  3213. [HttpPost]
  3214. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3215. {
  3216. var expression = Expressionable.Create<Grp_GroupModelFile>()
  3217. .AndIF(dto.UserId != -1 , x => x.CreateUserId == dto.UserId);
  3218. var visaIds = _sqlSugar.Queryable<Sys_Users>().Where(x => x.JobPostId == 26).Select(x=>x.Id).ToList();
  3219. if (visaIds.Contains(dto.UserId) && dto.Ctable == 80)
  3220. {
  3221. expression = Expressionable.Create<Grp_GroupModelFile>()
  3222. .And(x=>visaIds.Contains(x.CreateUserId));
  3223. }
  3224. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3225. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3226. .Where(expression.ToExpression())
  3227. .ToList();
  3228. //.ToPageList(pagenumber, pageSize, ref totalCount, ref totalPage)
  3229. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3230. {
  3231. x.FileName,
  3232. x.Id,
  3233. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"), AppSettingsHelper.Get("GrpFileFtpPath")),
  3234. CreateTime = x.CreateTime.ToString("yyyy-MM-dd HH-mm"),
  3235. })));
  3236. }
  3237. /// <summary>
  3238. /// 下载该团组下的所有文件
  3239. /// </summary>
  3240. /// <param name="dto"></param>
  3241. /// <returns></returns>
  3242. [HttpPost]
  3243. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3244. {
  3245. var jw = JsonView(false);
  3246. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3247. if (groupInfo == null)
  3248. {
  3249. jw.Msg = "团组信息不存在!";
  3250. return Ok(jw);
  3251. }
  3252. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3253. var isModule = Convert.ToBoolean(dto.isModule);
  3254. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3255. IOOperatorHelper io = new IOOperatorHelper();
  3256. if (isModule)
  3257. {
  3258. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3259. foreach (var moduleArr in moduleGroup)
  3260. {
  3261. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3262. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3263. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3264. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3265. foreach (var item in moduleArr)
  3266. {
  3267. if (System.IO.File.Exists(item.FilePath))
  3268. {
  3269. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3270. {
  3271. byte[] bytes = new byte[fileStream.Length];
  3272. fileStream.Read(bytes, 0, bytes.Length);
  3273. fileStream.Close();
  3274. Stream stream = new MemoryStream(bytes);
  3275. chiZips.Add(item.FileName, stream);
  3276. }
  3277. }
  3278. }
  3279. if (chiZips.Count > 0)
  3280. {
  3281. var byts = io.ConvertZipStream(chiZips);
  3282. Stream stream = new MemoryStream(byts);
  3283. Zips.Add(key.Name+"_.zip", stream);
  3284. }
  3285. }
  3286. }
  3287. else
  3288. {
  3289. foreach (var item in dbQuery)
  3290. {
  3291. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3292. {
  3293. byte[] bytes = new byte[fileStream.Length];
  3294. fileStream.Read(bytes, 0, bytes.Length);
  3295. fileStream.Close();
  3296. Stream stream = new MemoryStream(bytes);
  3297. while (Zips.Keys.Contains(item.FileName))
  3298. {
  3299. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3300. }
  3301. Zips.Add(item.FileName, stream);
  3302. }
  3303. }
  3304. }
  3305. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3306. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3307. if (Zips.Count > 0)
  3308. {
  3309. var byts = io.ConvertZipStream(Zips);
  3310. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3311. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3312. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3313. }
  3314. else
  3315. {
  3316. jw.Msg = "暂无生成文件!";
  3317. }
  3318. return Ok(jw);
  3319. }
  3320. /// <summary>
  3321. /// 下载该团组下此模块的所有文件
  3322. /// </summary>
  3323. /// <param name="dto"></param>
  3324. /// <returns></returns>
  3325. [HttpPost]
  3326. public IActionResult ExportGroupByModule(ExportGroupByModuleDto dto)
  3327. {
  3328. var jw = JsonView(false);
  3329. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3330. if (groupInfo == null)
  3331. {
  3332. jw.Msg = "团组信息不存在!";
  3333. return Ok(jw);
  3334. }
  3335. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid && x.Ctable == dto.Ctable).ToList();
  3336. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == dto.Ctable
  3337. && x.IsDel == 0);
  3338. if (key == null)
  3339. {
  3340. jw.Msg = "Ctable指向错误!";
  3341. return Ok(jw);
  3342. }
  3343. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3344. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3345. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3346. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3347. IOOperatorHelper io = new IOOperatorHelper();
  3348. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3349. foreach (var item in dbQuery)
  3350. {
  3351. if (System.IO.File.Exists(item.FilePath))
  3352. {
  3353. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3354. {
  3355. byte[] bytes = new byte[fileStream.Length];
  3356. fileStream.Read(bytes, 0, bytes.Length);
  3357. fileStream.Close();
  3358. Stream stream = new MemoryStream(bytes);
  3359. while (Zips.Keys.Contains(item.FileName))
  3360. {
  3361. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3362. }
  3363. Zips.Add(item.FileName, stream);
  3364. }
  3365. }
  3366. }
  3367. if (Zips.Count > 0)
  3368. {
  3369. var byts = io.ConvertZipStream(Zips);
  3370. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3371. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_{key.Name}_.Zip");
  3372. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_{key.Name}_.Zip" });
  3373. }
  3374. else
  3375. {
  3376. jw.Msg = "暂无生成文件!";
  3377. }
  3378. return Ok(jw);
  3379. }
  3380. /// <summary>
  3381. /// 删除该团组下的指定文件
  3382. /// </summary>
  3383. /// <param name="dto"></param>
  3384. /// <returns></returns>
  3385. [HttpPost]
  3386. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3387. {
  3388. var jw = JsonView(false);
  3389. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3390. if (sing == null)
  3391. {
  3392. jw.Msg = "暂无";
  3393. return Ok(jw);
  3394. }
  3395. if (System.IO.File.Exists(sing.FilePath))
  3396. {
  3397. try
  3398. {
  3399. System.IO.File.Delete(sing.FilePath);
  3400. }
  3401. catch (Exception ex)
  3402. {
  3403. jw.Msg = "删除失败!" + ex.Message;
  3404. return Ok(jw);
  3405. }
  3406. }
  3407. sing.IsDel = 1;
  3408. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3409. sing.DeleteUserId = dto.UserId;
  3410. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3411. jw = JsonView(true, "删除成功!");
  3412. return Ok(jw);
  3413. }
  3414. #endregion
  3415. #region 团组英文资料
  3416. /// <summary>
  3417. /// 查询团组英文所有资料
  3418. /// </summary>
  3419. /// <param name="dto"></param>
  3420. /// <returns></returns>
  3421. [HttpPost]
  3422. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3423. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3424. {
  3425. try
  3426. {
  3427. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3428. if (groupData.Code != 0)
  3429. {
  3430. return Ok(JsonView(false, groupData.Msg));
  3431. }
  3432. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3433. }
  3434. catch (Exception ex)
  3435. {
  3436. return Ok(JsonView(false, "程序错误!"));
  3437. throw;
  3438. }
  3439. }
  3440. /// <summary>
  3441. /// 团组英文资料操作(Status:1.新增,2.修改)
  3442. /// </summary>
  3443. /// <param name="dto"></param>
  3444. /// <returns></returns>
  3445. [HttpPost]
  3446. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3447. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3448. {
  3449. try
  3450. {
  3451. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3452. if (groupData.Code != 0)
  3453. {
  3454. return Ok(JsonView(false, groupData.Msg));
  3455. }
  3456. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3457. }
  3458. catch (Exception ex)
  3459. {
  3460. return Ok(JsonView(false, "程序错误!"));
  3461. throw;
  3462. }
  3463. }
  3464. /// <summary>
  3465. /// 团组英文资料Id查询数据
  3466. /// </summary>
  3467. /// <param name="dto"></param>
  3468. /// <returns></returns>
  3469. [HttpPost]
  3470. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3471. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3472. {
  3473. try
  3474. {
  3475. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3476. if (_DelegationEnData != null)
  3477. {
  3478. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3479. }
  3480. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3481. }
  3482. catch (Exception ex)
  3483. {
  3484. return Ok(JsonView(false, "程序错误!"));
  3485. throw;
  3486. }
  3487. }
  3488. /// <summary>
  3489. /// 团组英文资料删除
  3490. /// </summary>
  3491. /// <param name="dto"></param>
  3492. /// <returns></returns>
  3493. [HttpPost]
  3494. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3495. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3496. {
  3497. try
  3498. {
  3499. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3500. if (!res)
  3501. {
  3502. return Ok(JsonView(false, "删除失败"));
  3503. }
  3504. return Ok(JsonView(true, "删除成功!"));
  3505. }
  3506. catch (Exception ex)
  3507. {
  3508. return Ok(JsonView(false, "程序错误!"));
  3509. throw;
  3510. }
  3511. }
  3512. #endregion
  3513. #region 导出邀请函
  3514. /// <summary>
  3515. /// 导出邀请函页面初始化
  3516. /// </summary>
  3517. /// <param name="dto"></param>
  3518. /// <returns></returns>
  3519. [HttpPost]
  3520. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3521. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3522. {
  3523. try
  3524. {
  3525. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3526. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3527. if (dto.DiId == 0)
  3528. {
  3529. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3530. }
  3531. else
  3532. {
  3533. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3534. }
  3535. return Ok(JsonView(true, "查询成功!", new
  3536. {
  3537. deleClient = crm_Deles,
  3538. delegations = grp_Delegations
  3539. }));
  3540. }
  3541. catch (Exception ex)
  3542. {
  3543. return Ok(JsonView(false, "程序错误!"));
  3544. throw;
  3545. }
  3546. }
  3547. /// <summary>
  3548. /// 导出邀请函
  3549. /// </summary>
  3550. /// <param name="dto"></param>
  3551. /// <returns></returns>
  3552. [HttpPost]
  3553. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3554. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3555. {
  3556. #region 参数验证
  3557. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3558. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3559. #endregion
  3560. try
  3561. {
  3562. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3563. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3564. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3565. From Grp_TourClientList tcl
  3566. Left Join
  3567. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3568. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3569. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3570. From Crm_DeleClient dc
  3571. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3572. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3573. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3574. Where dc.IsDel = 0) temp
  3575. On temp.DcId =tcl.ClientId
  3576. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3577. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3578. List<string> texts = new List<string>();
  3579. if (datas.Count != 0)
  3580. {
  3581. foreach (TourClientListDetailsView item in datas)
  3582. {
  3583. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3584. {
  3585. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3586. }
  3587. else
  3588. {
  3589. string name = item.LastName + item.FirstName;
  3590. texts.Add(name);
  3591. }
  3592. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3593. {
  3594. if (!transDic.ContainsKey(item.Job))
  3595. {
  3596. texts.Add(item.Job);
  3597. }
  3598. }
  3599. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3600. {
  3601. texts.Add(item.CompanyFullName);
  3602. }
  3603. }
  3604. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3605. if (transData.Count > 0)
  3606. {
  3607. foreach (TranslateResult item in transData)
  3608. {
  3609. if (!transDic.ContainsKey(item.Query))
  3610. {
  3611. transDic.Add(item.Query, item.Translation);
  3612. }
  3613. }
  3614. }
  3615. List<GuestList> list = new List<GuestList>();
  3616. foreach (TourClientListDetailsView dele in datas)
  3617. {
  3618. GuestList guestList = new GuestList();
  3619. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3620. {
  3621. guestList.Name = dele.Pinyin;
  3622. }
  3623. else
  3624. {
  3625. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3626. guestList.Name = Name;
  3627. }
  3628. if (dele.Sex == 0)
  3629. {
  3630. guestList.Sex = "Male";
  3631. }
  3632. else if (dele.Sex == 1)
  3633. {
  3634. guestList.Sex = "Female";
  3635. }
  3636. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3637. if (!string.IsNullOrEmpty(dele.Job))
  3638. {
  3639. guestList.Job = dele.Job;
  3640. }
  3641. list.Add(guestList);
  3642. }
  3643. //载入模板
  3644. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3645. DocumentBuilder builder = new DocumentBuilder(doc);
  3646. //获取word里所有表格
  3647. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3648. //获取所填表格的序数
  3649. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3650. var rowStart = tableOne.Rows[0]; //获取第1行
  3651. //循环赋值
  3652. for (int i = 0; i < list.Count; i++)
  3653. {
  3654. builder.MoveToCell(0, i + 1, 0, 0);
  3655. builder.Write(list[i].Name.ToString());
  3656. builder.MoveToCell(0, i + 1, 1, 0);
  3657. builder.Write(list[i].Sex.ToString());
  3658. builder.MoveToCell(0, i + 1, 2, 0);
  3659. builder.Write(list[i].DOB.ToString());
  3660. builder.MoveToCell(0, i + 1, 3, 0);
  3661. builder.Write(list[i].Job.ToString());
  3662. }
  3663. //删除多余行
  3664. while (tableOne.Rows.Count > list.Count + 1)
  3665. {
  3666. tableOne.Rows.RemoveAt(list.Count + 1);
  3667. }
  3668. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3669. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3670. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3671. doc.Save(filePath);
  3672. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3673. return Ok(JsonView(true, "操作成功!", Url));
  3674. }
  3675. else
  3676. {
  3677. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3678. }
  3679. }
  3680. catch (Exception ex)
  3681. {
  3682. return Ok(JsonView(false, ex.Message));
  3683. throw;
  3684. }
  3685. }
  3686. #endregion
  3687. #region 团组经理模块 出入境费用
  3688. ///// <summary>
  3689. ///// 团组模块 - 出入境费用
  3690. ///// </summary>
  3691. ///// <returns></returns>
  3692. //[HttpPost]
  3693. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3694. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3695. //{
  3696. // try
  3697. // {
  3698. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3699. // if (data.Code != 0)
  3700. // {
  3701. // return Ok(JsonView(false, data.Msg));
  3702. // }
  3703. // return Ok(JsonView(true, "查询成功!"));
  3704. // }
  3705. // catch (Exception ex)
  3706. // {
  3707. // return Ok(JsonView(false, ex.Message));
  3708. // throw;
  3709. // }
  3710. //}
  3711. /// <summary>
  3712. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3713. /// </summary>
  3714. /// <returns></returns>
  3715. [HttpPost]
  3716. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3717. public async Task<IActionResult> SetDayAndCostAreaChange()
  3718. {
  3719. try
  3720. {
  3721. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3722. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3723. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3724. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3725. foreach (var item in unite) //处理交集数据
  3726. {
  3727. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3728. }
  3729. foreach (var item in merge) //处理差集数据
  3730. {
  3731. int nationalTravelFeeId = 0;
  3732. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3733. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3734. else
  3735. {
  3736. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3737. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3738. }
  3739. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3740. }
  3741. //只更新dayAndCost 的 nationalTravelFeeId;
  3742. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3743. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3744. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3745. }
  3746. catch (Exception ex)
  3747. {
  3748. return Ok(JsonView(false, ex.Message));
  3749. throw;
  3750. }
  3751. }
  3752. /// <summary>
  3753. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3754. /// </summary>
  3755. /// <returns></returns>
  3756. [HttpPost]
  3757. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3758. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3759. {
  3760. try
  3761. {
  3762. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3763. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3764. //SetDataInfoView
  3765. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3766. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3767. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3768. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3769. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3770. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3771. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3772. //默认币种显示
  3773. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3774. {
  3775. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3776. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3777. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3778. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3779. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3780. };
  3781. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3782. if (_currencyRate.Count > 0)
  3783. {
  3784. foreach (var item in _currencyInfos)
  3785. {
  3786. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3787. if (rateInfo != null)
  3788. {
  3789. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3790. rate1 *= 1.035M;
  3791. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3792. }
  3793. }
  3794. }
  3795. return Ok(JsonView(true, "查询成功!", new
  3796. {
  3797. GroupNameData = groupNameData.Data,
  3798. CurrencyData = _CurrencyData,
  3799. WordTypeData = _WordTypeData,
  3800. ExcelTypeData = _ExcelTypeData,
  3801. CurrencyInit = _currencyInfos
  3802. }));
  3803. }
  3804. catch (Exception ex)
  3805. {
  3806. return Ok(JsonView(false, ex.Message));
  3807. throw;
  3808. }
  3809. }
  3810. /// <summary>
  3811. /// 团组模块 - 出入境费用
  3812. /// 实时汇率 tips
  3813. /// 签证费用 tips
  3814. /// </summary>
  3815. /// <returns></returns>
  3816. [HttpPost]
  3817. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3818. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3819. {
  3820. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3821. //默认币种显示
  3822. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3823. {
  3824. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3825. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3826. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3827. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3828. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3829. };
  3830. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3831. List<dynamic> reteInfos = new List<dynamic>();
  3832. if (_currencyRate.Count > 0)
  3833. {
  3834. foreach (var item in _currencyInfos)
  3835. {
  3836. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3837. if (rateInfo != null)
  3838. {
  3839. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3840. decimal rate1 = item.Rate;
  3841. rate1 *= 1.03M;
  3842. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3843. reteInfos.Add(new
  3844. {
  3845. currCode = item.CurrencyCode,
  3846. currName = item.CurrencyName,
  3847. rate = rate2,
  3848. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3849. });
  3850. }
  3851. }
  3852. }
  3853. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3854. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3855. return Ok(JsonView(true, "查询成功!", new
  3856. {
  3857. //GroupNameData = groupNameData.Data,
  3858. visaData = visaData.Data,
  3859. airData = airData.Data,
  3860. reteInfos = reteInfos
  3861. }));
  3862. }
  3863. /// <summary>
  3864. /// 团组模块 - 出入境费用 - Info
  3865. /// </summary>
  3866. /// <returns></returns>
  3867. [HttpPost]
  3868. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3869. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3870. {
  3871. try
  3872. {
  3873. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3874. if (data.Code != 0)
  3875. {
  3876. return Ok(JsonView(false, data.Msg));
  3877. }
  3878. return Ok(JsonView(true, "查询成功!", data.Data));
  3879. }
  3880. catch (Exception ex)
  3881. {
  3882. return Ok(JsonView(false, ex.Message));
  3883. }
  3884. }
  3885. /// <summary>
  3886. /// 团组模块 - 出入境费用 - Add And Update
  3887. /// </summary>
  3888. /// <returns></returns>
  3889. [HttpPost]
  3890. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3891. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3892. {
  3893. try
  3894. {
  3895. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3896. if (data.Code != 0)
  3897. {
  3898. return Ok(JsonView(false, data.Msg));
  3899. }
  3900. //生成默认文件pdf并且通知人员
  3901. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3902. {
  3903. DiId = dto.DiId,
  3904. ExportType = 1,
  3905. SubTypeId = 1005
  3906. }, "pdf");
  3907. //发送通知
  3908. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3909. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3910. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3911. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3912. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3913. return Ok(JsonView(true, data.Msg, data.Data));
  3914. }
  3915. catch (Exception ex)
  3916. {
  3917. return Ok(JsonView(false, ex.Message));
  3918. }
  3919. }
  3920. /// <summary>
  3921. /// 团组模块 - 出入境费用 - Confirm 费用
  3922. /// </summary>
  3923. /// <returns></returns>
  3924. [HttpPost]
  3925. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3926. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3927. {
  3928. //TODO:测试完毕需把对应的用户ID更改
  3929. //1、数据表添加字段
  3930. //2、更改字段接口()
  3931. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3932. //3、确认成功 给财务发送消息
  3933. if (_view.Code == 200)
  3934. {
  3935. if (dto.Type == 1)
  3936. {
  3937. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  3938. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  3939. }
  3940. }
  3941. return Ok(_view);
  3942. }
  3943. /// <summary>
  3944. /// 团组模块 - 出入境费用 - File downlaod
  3945. /// </summary>
  3946. /// <param name="dto"></param>
  3947. /// <returns></returns>
  3948. [HttpPost]
  3949. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3950. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3951. {
  3952. try
  3953. {
  3954. if (dto.DiId < 1)
  3955. {
  3956. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3957. }
  3958. if (dto.ExportType < 1)
  3959. {
  3960. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3961. }
  3962. if (dto.SubTypeId < 1)
  3963. {
  3964. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3965. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3966. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3967. 3 团组成员名单 1 团组成员名单"));
  3968. }
  3969. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3970. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3971. if (_EnterExitCosts == null)
  3972. {
  3973. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3974. }
  3975. //数据源
  3976. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3977. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3978. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3979. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3980. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3981. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3982. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3983. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3984. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3985. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3986. .Select((tcl, dc, cc) => new
  3987. {
  3988. Name = dc.LastName + dc.FirstName,
  3989. Sex = dc.Sex,
  3990. Birthday = dc.BirthDay,
  3991. Company = cc.CompanyFullName,
  3992. Job = dc.Job
  3993. })
  3994. .ToList();
  3995. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3996. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3997. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3998. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3999. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  4000. if (dto.ExportType == 1) //明细表
  4001. {
  4002. if (dto.SubTypeId == 1005) //1005(默认明细表)
  4003. {
  4004. //获取模板
  4005. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  4006. //载入模板
  4007. Document doc = new Document(tempPath);
  4008. DocumentBuilder builder = new DocumentBuilder(doc);
  4009. //利用键值对存放数据
  4010. Dictionary<string, string> dic = new Dictionary<string, string>();
  4011. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  4012. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  4013. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  4014. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  4015. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  4016. //境内费用(其他费用)
  4017. if (_EnterExitCosts.ChoiceOne == 1)
  4018. {
  4019. string row1_1 = "";
  4020. if (_EnterExitCosts.Visa > 0)
  4021. {
  4022. //insidePayTotal += _EnterExitCosts.Visa;
  4023. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  4024. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  4025. {
  4026. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  4027. }
  4028. }
  4029. string row1_2 = "";
  4030. if (_EnterExitCosts.YiMiao > 0)
  4031. {
  4032. //insidePayTotal += _EnterExitCosts.YiMiao;
  4033. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  4034. }
  4035. if (_EnterExitCosts.HeSuan > 0)
  4036. {
  4037. //insidePayTotal += _EnterExitCosts.HeSuan;
  4038. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4039. }
  4040. if (_EnterExitCosts.Service > 0)
  4041. {
  4042. //insidePayTotal += _EnterExitCosts.Service;
  4043. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4044. }
  4045. string row1_3 = "";
  4046. if (_EnterExitCosts.Safe > 0)
  4047. {
  4048. //insidePayTotal += _EnterExitCosts.Safe;
  4049. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4050. }
  4051. if (_EnterExitCosts.Ticket > 0)
  4052. {
  4053. //insidePayTotal += _EnterExitCosts.Ticket;
  4054. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4055. }
  4056. string row1 = "";
  4057. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4058. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4059. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4060. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4061. dic.Add("Row1Str", row1);
  4062. }
  4063. //经济舱
  4064. if (_EnterExitCosts.SumJJC == 1)
  4065. {
  4066. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  4067. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4068. }
  4069. //公务舱
  4070. if (_EnterExitCosts.SumGWC == 1)
  4071. {
  4072. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  4073. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  4074. }
  4075. if (_EnterExitCosts.SumGWC == 1 || _EnterExitCosts.SumJJC == 1)
  4076. {
  4077. if (_EnterExitCosts.CityTranffic != 0)
  4078. {
  4079. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4080. }
  4081. }
  4082. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4083. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4084. int table1Row = 0,
  4085. table2Row = 0,
  4086. table3Row = 0,
  4087. table4Row = 0;
  4088. //住宿费
  4089. if (_EnterExitCosts.ChoiceThree == 1)
  4090. {
  4091. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4092. table1Row = dac1.Count;
  4093. #region 填充word表格内容
  4094. for (int i = 0; i < dac1.Count; i++)
  4095. {
  4096. Grp_DayAndCost dac = dac1[i];
  4097. if (dac == null) continue;
  4098. builder.MoveToCell(0, i, 0, 0);
  4099. builder.Write("第" + dac.Days.ToString() + "晚:");
  4100. builder.MoveToCell(0, i, 1, 0);
  4101. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4102. //builder.Write(dac.Place == null ? "" : dac.Place);
  4103. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4104. builder.MoveToCell(0, i, 2, 0);
  4105. builder.Write("费用标准:");
  4106. string curr = "";
  4107. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4108. if (currData != null)
  4109. {
  4110. curr = currData.Name;
  4111. }
  4112. builder.MoveToCell(0, i, 3, 0);
  4113. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4114. builder.MoveToCell(0, i, 4, 0);
  4115. builder.Write("费用小计:");
  4116. builder.MoveToCell(0, i, 5, 0);
  4117. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4118. }
  4119. #endregion
  4120. }else dic.Add("SubZS","0.00");
  4121. //删除多余行
  4122. while (table1.Rows.Count > table1Row)
  4123. {
  4124. table1.Rows.RemoveAt(table1Row);
  4125. }
  4126. //伙食费
  4127. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4128. if (_EnterExitCosts.ChoiceFour == 1)
  4129. {
  4130. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4131. table2Row = dac2.Count;
  4132. #region 填充word表格内容
  4133. for (int i = 0; i < dac2.Count; i++)
  4134. {
  4135. Grp_DayAndCost dac = dac2[i];
  4136. if (dac == null) continue;
  4137. builder.MoveToCell(1, i, 0, 0);
  4138. builder.Write("第" + dac.Days.ToString() + "天:");
  4139. builder.MoveToCell(1, i, 1, 0);
  4140. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4141. builder.MoveToCell(1, i, 2, 0);
  4142. builder.Write("费用标准:");
  4143. string curr = "";
  4144. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4145. if (currData != null)
  4146. {
  4147. curr = currData.Name;
  4148. }
  4149. builder.MoveToCell(1, i, 3, 0);
  4150. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4151. builder.MoveToCell(1, i, 4, 0);
  4152. builder.Write("费用小计:");
  4153. builder.MoveToCell(1, i, 5, 0);
  4154. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4155. }
  4156. #endregion
  4157. }else dic.Add("SubHS","0.00");
  4158. //删除多余行
  4159. while (table2.Rows.Count > table2Row)
  4160. {
  4161. table2.Rows.RemoveAt(table2Row);
  4162. }
  4163. //公杂费
  4164. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4165. if (_EnterExitCosts.ChoiceFive == 1)
  4166. {
  4167. dic.Add("SubGZF", miscellaneousFeeTotal.ToString("#0.00"));
  4168. table3Row = dac3.Count;
  4169. #region 填充word表格内容
  4170. for (int i = 0; i < dac3.Count; i++)
  4171. {
  4172. Grp_DayAndCost dac = dac3[i];
  4173. if (dac == null) continue;
  4174. builder.MoveToCell(2, i, 0, 0);
  4175. builder.Write("第" + dac.Days.ToString() + "天:");
  4176. builder.MoveToCell(2, i, 1, 0);
  4177. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4178. builder.MoveToCell(2, i, 2, 0);
  4179. builder.Write("费用标准:");
  4180. string curr = "";
  4181. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4182. if (currData != null)
  4183. {
  4184. curr = currData.Name;
  4185. }
  4186. builder.MoveToCell(2, i, 3, 0);
  4187. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4188. builder.MoveToCell(2, i, 4, 0);
  4189. builder.Write("费用小计:");
  4190. builder.MoveToCell(2, i, 5, 0);
  4191. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4192. }
  4193. //删除多余行
  4194. while (table3.Rows.Count > table3Row)
  4195. {
  4196. table3.Rows.RemoveAt(table3Row);
  4197. }
  4198. #endregion
  4199. }else dic.Add("SubGZF", "0.00");
  4200. //删除多余行
  4201. while (table3.Rows.Count > table3Row)
  4202. {
  4203. table3.Rows.RemoveAt(table3Row);
  4204. }
  4205. //培训费
  4206. Aspose.Words.Tables.Table table4 = allTables[3] as Aspose.Words.Tables.Table;
  4207. if (_EnterExitCosts.ChoiceSix == 1)
  4208. {
  4209. string pxStr = $"六、培训费合计: {tainFeeTotal.ToString("#0.00")} 元/人";
  4210. dic.Add("SubPX", pxStr);
  4211. table4Row = dac4.Count;
  4212. #region 填充word表格内容
  4213. for (int i = 0; i < dac4.Count; i++)
  4214. {
  4215. Grp_DayAndCost dac = dac4[i];
  4216. if (dac == null) continue;
  4217. builder.MoveToCell(3, i, 0, 0);
  4218. builder.Write("第" + dac.Days.ToString() + "天:");
  4219. builder.MoveToCell(3, i, 1, 0);
  4220. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4221. builder.MoveToCell(3, i, 2, 0);
  4222. builder.Write("费用标准:");
  4223. string curr = "";
  4224. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4225. if (currData != null)
  4226. {
  4227. curr = currData.Name;
  4228. }
  4229. builder.MoveToCell(3, i, 3, 0);
  4230. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4231. builder.MoveToCell(3, i, 4, 0);
  4232. builder.Write("费用小计:");
  4233. builder.MoveToCell(3, i, 5, 0);
  4234. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4235. }
  4236. #endregion
  4237. }
  4238. //else dic.Add("SubPX","0.00");
  4239. //删除多余行
  4240. while (table4.Rows.Count > table4Row)
  4241. {
  4242. table4.Rows.RemoveAt(table4Row);
  4243. }
  4244. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  4245. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4246. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  4247. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4248. #region 填充word模板书签内容
  4249. foreach (var key in dic.Keys)
  4250. {
  4251. builder.MoveToBookmark(key);
  4252. builder.Write(dic[key]);
  4253. }
  4254. #endregion
  4255. //文件名
  4256. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4257. AsposeHelper.removewatermark_v2180();
  4258. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4259. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4260. return Ok(JsonView(true, "成功", new { Url = url }));
  4261. }
  4262. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4263. {
  4264. //获取模板
  4265. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4266. //载入模板
  4267. Document doc = new Document(tempPath);
  4268. DocumentBuilder builder = new DocumentBuilder(doc);
  4269. Dictionary<string, string> dic = new Dictionary<string, string>();
  4270. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4271. {
  4272. List<string> list = new List<string>();
  4273. try
  4274. {
  4275. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4276. foreach (var item in spilitArr)
  4277. {
  4278. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4279. var depCode = spDotandEmpty[2].Substring(0, 3);
  4280. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4281. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4282. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4283. list.Add(depName);
  4284. list.Add(arrName);
  4285. }
  4286. list = list.Distinct().ToList();
  4287. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4288. }
  4289. catch (Exception)
  4290. {
  4291. dic.Add("ReturnCode", "行程录入不正确!");
  4292. }
  4293. }
  4294. else
  4295. {
  4296. dic.Add("ReturnCode", "未录入行程!");
  4297. }
  4298. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4299. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4300. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4301. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4302. {
  4303. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4304. dic.Add("Day", sp.Days.ToString());
  4305. }
  4306. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4307. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4308. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4309. //dic.Add("Names", Names);
  4310. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4311. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4312. decimal dac1totalPrice = 0.00M;
  4313. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4314. foreach (var dac in dac1)
  4315. {
  4316. if (dac.SubTotal == 0.00M)
  4317. {
  4318. continue;
  4319. }
  4320. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4321. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4322. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4323. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4324. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4325. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4326. builder.Write(currency);//币种
  4327. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4328. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4329. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4330. builder.Write("");//人数
  4331. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4332. builder.Write("");//天数
  4333. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4334. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4335. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4336. decimal rate = 0.00M;
  4337. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4338. builder.Write(rate.ToString("#0.0000"));//汇率
  4339. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4340. decimal rbmPrice = dac.SubTotal;
  4341. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4342. accommodationStartIndex++;
  4343. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4344. }
  4345. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4346. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4347. {
  4348. table1.Rows.RemoveAt(i - 1);
  4349. foodandotherStartIndex--;
  4350. }
  4351. if (dac2.Count == dac3.Count)//国家 币种 金额
  4352. {
  4353. for (int i = 0; i < dac2.Count; i++)
  4354. {
  4355. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4356. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4357. }
  4358. }
  4359. decimal dac2totalPrice = 0.00M;
  4360. foreach (var dac in dac2)
  4361. {
  4362. if (dac.SubTotal == 0)
  4363. {
  4364. continue;
  4365. }
  4366. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4367. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4368. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4369. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4370. builder.Write(currency);//币种
  4371. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4372. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4373. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4374. builder.Write("");//人数
  4375. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4376. builder.Write("");//天数
  4377. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4378. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4379. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4380. decimal rate = 0.00M;
  4381. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4382. builder.Write(rate.ToString("#0.0000"));//汇率
  4383. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4384. decimal rbmPrice = dac.SubTotal;
  4385. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4386. foodandotherStartIndex++;
  4387. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4388. }
  4389. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4390. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4391. {
  4392. table1.Rows.RemoveAt(i - 1);
  4393. }
  4394. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4395. string otherFeeStr = "";
  4396. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4397. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4398. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4399. if (otherFeeStr.Length > 0)
  4400. {
  4401. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4402. otherFeeStr = $"({otherFeeStr})";
  4403. dic.Add("OtherFeeStr", otherFeeStr);
  4404. }
  4405. //总计
  4406. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4407. //国际旅费
  4408. string outsideJJ = "";
  4409. string allPriceJJ = "";
  4410. if (_EnterExitCosts.SumJJC == 1)
  4411. {
  4412. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4413. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4414. }
  4415. string outsideGW = "";
  4416. string allPriceGW = "";
  4417. if (_EnterExitCosts.SumGWC == 1)
  4418. {
  4419. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4420. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4421. }
  4422. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4423. {
  4424. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4425. dic.Add("InTravelPrice", InTravelPriceStr);
  4426. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4427. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4428. }
  4429. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4430. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4431. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4432. foreach (var key in dic.Keys)
  4433. {
  4434. builder.MoveToBookmark(key);
  4435. builder.Write(dic[key]);
  4436. }
  4437. //模板文件名
  4438. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4439. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4440. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4441. return Ok(JsonView(true, "成功", new { Url = url }));
  4442. }
  4443. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4444. {
  4445. //获取模板
  4446. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4447. //载入模板
  4448. WorkbookDesigner designer = new WorkbookDesigner();
  4449. designer.Workbook = new Workbook(tempPath);
  4450. Dictionary<string, string> dic = new Dictionary<string, string>();
  4451. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4452. {
  4453. List<string> list = new List<string>();
  4454. try
  4455. {
  4456. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4457. foreach (var item in spilitArr)
  4458. {
  4459. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4460. var depCode = spDotandEmpty[2].Substring(0, 3);
  4461. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4462. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4463. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4464. list.Add(depName);
  4465. list.Add(arrName);
  4466. }
  4467. list = list.Distinct().ToList();
  4468. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4469. }
  4470. catch (Exception)
  4471. {
  4472. dic.Add("ReturnCode", "行程录入不正确!");
  4473. }
  4474. }
  4475. else
  4476. {
  4477. dic.Add("ReturnCode", "未录入行程!");
  4478. }
  4479. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4480. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4481. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4482. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4483. {
  4484. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4485. dic.Add("Day", sp.Days.ToString());
  4486. }
  4487. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4488. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4489. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4490. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4491. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4492. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4493. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4494. designer.SetDataSource("Name", Names);
  4495. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4496. designer.SetDataSource("Day", dic["Day"] + "天");
  4497. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4498. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4499. int startIndex = 10;
  4500. const int startIndexcopy = 10;
  4501. if (dac2.Count == dac3.Count)//国家 币种 金额
  4502. {
  4503. for (int i = 0; i < dac2.Count; i++)
  4504. {
  4505. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4506. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4507. }
  4508. }
  4509. DataTable dtdac1 = new DataTable();
  4510. List<string> place = new List<string>();
  4511. dtdac1.Columns.AddRange(new DataColumn[] {
  4512. new DataColumn(){ ColumnName = "city"},
  4513. new DataColumn(){ ColumnName = "curr"},
  4514. new DataColumn(){ ColumnName = "criterion"},
  4515. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4516. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4517. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4518. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4519. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4520. });
  4521. DataTable dtdac2 = new DataTable();
  4522. dtdac2.Columns.AddRange(new DataColumn[] {
  4523. new DataColumn(){ ColumnName = "city"},
  4524. new DataColumn(){ ColumnName = "curr"},
  4525. new DataColumn(){ ColumnName = "criterion"},
  4526. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4527. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4528. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4529. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4530. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4531. });
  4532. dtdac1.TableName = "tb1";
  4533. dtdac2.TableName = "tb2";
  4534. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4535. foreach (var item in dac1)
  4536. {
  4537. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4538. if (place.Contains(item.Place))
  4539. {
  4540. continue;
  4541. }
  4542. DataRow row = dtdac1.NewRow();
  4543. row["city"] = item.Place;
  4544. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4545. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4546. row["curr"] = currency;
  4547. row["rate"] = rate.ToString("#0.0000");
  4548. row["criterion"] = item.Cost.ToString("#0.00");
  4549. row["number"] = 1;
  4550. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4551. //row["costRMB"] = rbmPrice;
  4552. dtdac1.Rows.Add(row);
  4553. place.Add(item.Place);
  4554. }
  4555. place = new List<string>();
  4556. foreach (var item in dac2)
  4557. {
  4558. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4559. if (place.Contains(item.Place))
  4560. {
  4561. continue;
  4562. }
  4563. DataRow row = dtdac2.NewRow();
  4564. row["city"] = item.Place;
  4565. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4566. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4567. row["curr"] = currency;
  4568. row["rate"] = rate.ToString("#0.0000");
  4569. row["criterion"] = item.Cost.ToString("#0.00");
  4570. row["number"] = 1;
  4571. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4572. //row["cost"] = item.SubTotal;
  4573. //row["costRMB"] = rbmPrice;
  4574. dtdac2.Rows.Add(row);
  4575. place.Add(item.Place);
  4576. //dac2totalPrice += rbmPrice;
  4577. }
  4578. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4579. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4580. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4581. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4582. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4583. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4584. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4585. string cellStr = $" 5.其他费用(";
  4586. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4587. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4588. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4589. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4590. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4591. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4592. if (cellStr.Length > 8)
  4593. {
  4594. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4595. }
  4596. cellStr += ")";
  4597. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4598. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4599. decimal pxFee = dac4.Sum(it => it.Cost);
  4600. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4601. string celllastStr1 = "";
  4602. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4603. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4604. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4605. celllastStr1 += $",国际旅费 元";
  4606. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4607. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4608. designer.SetDataSource("cell4Str", cell4Str);
  4609. designer.SetDataSource("cellStr", cellStr);
  4610. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4611. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4612. designer.SetDataSource("celllastStr", celllastStr);
  4613. Workbook wb = designer.Workbook;
  4614. var sheet = wb.Worksheets[0];
  4615. //绑定datatable数据集
  4616. designer.SetDataSource(dtdac1);
  4617. designer.SetDataSource(dtdac2);
  4618. designer.Process();
  4619. var rowStart = dtdac1.Rows.Count;
  4620. while (rowStart > 0)
  4621. {
  4622. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4623. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4624. startIndex++;
  4625. rowStart--;
  4626. }
  4627. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4628. startIndex += 1; //总计行
  4629. rowStart = dtdac2.Rows.Count;
  4630. while (rowStart > 0)
  4631. {
  4632. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4633. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4634. startIndex++;
  4635. rowStart--;
  4636. }
  4637. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4638. wb.CalculateFormula(true);
  4639. //模板文件名
  4640. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4641. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4642. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4643. return Ok(JsonView(true, "成功", new { Url = url }));
  4644. }
  4645. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4646. {
  4647. //获取模板
  4648. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4649. //载入模板
  4650. Document doc = new Document(tempPath);
  4651. DocumentBuilder builder = new DocumentBuilder(doc);
  4652. Dictionary<string, string> dic = new Dictionary<string, string>();
  4653. dic.Add("GroupName", _DelegationInfo.TeamName);
  4654. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4655. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4656. string missionLeaderJob = "";//负责人job
  4657. int groupNumber = 0; //团人数
  4658. if (DeleClientList.Count > 0)
  4659. {
  4660. missionLeader = DeleClientList[0]?.Name ?? "";
  4661. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4662. }
  4663. dic.Add("MissionLeader", missionLeader); //团负责人
  4664. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4665. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4666. #region MyRegion
  4667. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4668. //{
  4669. // List<string> list = new List<string>();
  4670. // try
  4671. // {
  4672. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4673. // foreach (var item in spilitArr)
  4674. // {
  4675. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4676. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4677. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4678. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4679. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4680. // list.Add(depName);
  4681. // list.Add(arrName);
  4682. // }
  4683. // list = list.Distinct().ToList();
  4684. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4685. // }
  4686. // catch (Exception)
  4687. // {
  4688. // dic.Add("ReturnCode", "行程录入不正确!");
  4689. // }
  4690. //}
  4691. //else
  4692. //{
  4693. // dic.Add("ReturnCode", "未录入行程!");
  4694. //}
  4695. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4696. dic.Add("ReturnCode", string.Join("、", countrys));
  4697. #endregion
  4698. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4699. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4700. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4701. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4702. //{
  4703. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4704. // dic.Add("Day", sp.Days.ToString());
  4705. //}
  4706. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4707. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4708. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4709. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4710. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4711. //培训人员名单
  4712. int cultivateRowIndex = 7;
  4713. foreach (var item in DeleClientList)
  4714. {
  4715. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4716. builder.Write(item.Name);
  4717. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4718. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4719. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4720. string birthDay = "";
  4721. if (item.Birthday != null)
  4722. {
  4723. DateTime dt = Convert.ToDateTime(item.Birthday);
  4724. birthDay = $"{dt.Year}.{dt.Month}";
  4725. }
  4726. builder.Write(birthDay);
  4727. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4728. builder.Write(item.Company);
  4729. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4730. builder.Write(item.Job);
  4731. cultivateRowIndex++;
  4732. }
  4733. //删除多余行
  4734. //cultivateRowIndex -= 2;
  4735. int delRows = 10 + 7 - cultivateRowIndex;
  4736. if (delRows > 0)
  4737. {
  4738. for (int i = 0; i < delRows; i++)
  4739. {
  4740. table1.Rows.RemoveAt(cultivateRowIndex);
  4741. //cultivateRowIndex++;
  4742. }
  4743. }
  4744. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4745. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4746. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4747. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4748. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4749. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4750. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4751. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4752. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4753. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4754. //其他费用
  4755. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4756. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4757. //其他费用合计
  4758. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4759. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4760. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4761. //公务舱合计
  4762. //国际旅费
  4763. string outsideJJ = "";
  4764. string allPriceJJ = "";
  4765. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4766. {
  4767. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4768. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4769. }
  4770. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4771. {
  4772. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4773. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4774. }
  4775. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4776. {
  4777. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4778. dic.Add("AirFeeTotal", airFeeTotalStr);
  4779. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4780. dic.Add("FeeTotal", feeTotalStr);
  4781. }
  4782. foreach (var key in dic.Keys)
  4783. {
  4784. builder.MoveToBookmark(key);
  4785. builder.Write(dic[key]);
  4786. }
  4787. //模板文件名
  4788. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4789. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4790. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4791. return Ok(JsonView(true, "成功", new { Url = url }));
  4792. }
  4793. }
  4794. else if (dto.ExportType == 2) //表格
  4795. {
  4796. //利用键值对存放数据
  4797. Dictionary<string, string> dic = new Dictionary<string, string>();
  4798. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4799. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4800. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4801. dic.Add("Day", sp.Days.ToString());
  4802. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4803. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4804. {
  4805. //获取模板
  4806. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4807. //载入模板
  4808. Document doc = new Document(tempPath);
  4809. DocumentBuilder builder = new DocumentBuilder(doc);
  4810. dic.Add("TeamName", _DelegationInfo.TeamName);
  4811. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4812. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4813. string missionLeaderName = "",
  4814. missionLeaderJob = "";
  4815. if (DeleClientList.Count > 0)
  4816. {
  4817. missionLeaderName = DeleClientList[0].Name;
  4818. missionLeaderJob = DeleClientList[0].Job;
  4819. }
  4820. dic.Add("MissionLeaderName", missionLeaderName);
  4821. dic.Add("MissionLeaderJob", missionLeaderJob);
  4822. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4823. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4824. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4825. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4826. int rowCount = 10;//总人数行
  4827. int startRowIndex = 7; //起始行
  4828. for (int i = 0; i < DeleClientList.Count; i++)
  4829. {
  4830. builder.MoveToCell(0, startRowIndex, 0, 0);
  4831. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4832. builder.MoveToCell(0, startRowIndex, 1, 0);
  4833. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4834. builder.Write(sex);//性别
  4835. builder.MoveToCell(0, startRowIndex, 2, 0);
  4836. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4837. builder.MoveToCell(0, startRowIndex, 3, 0);
  4838. builder.Write(DeleClientList[i].Company);//工作单位
  4839. builder.MoveToCell(0, startRowIndex, 4, 0);
  4840. builder.Write(DeleClientList[i].Job);//职务及级别
  4841. builder.MoveToCell(0, startRowIndex, 5, 0);
  4842. builder.Write("");//人员属性
  4843. builder.MoveToCell(0, startRowIndex, 6, 0);
  4844. builder.Write("");//上次出国时间
  4845. startRowIndex++;
  4846. }
  4847. int nullRow = rowCount - DeleClientList.Count;//空行
  4848. for (int i = 0; i < nullRow; i++)
  4849. {
  4850. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4851. }
  4852. foreach (var key in dic.Keys)
  4853. {
  4854. builder.MoveToBookmark(key);
  4855. builder.Write(dic[key]);
  4856. }
  4857. //模板文件名
  4858. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4859. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4860. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4861. return Ok(JsonView(true, "成功", new { Url = url }));
  4862. }
  4863. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4864. {
  4865. //获取模板
  4866. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4867. //载入模板
  4868. Document doc = new Document(tempPath);
  4869. DocumentBuilder builder = new DocumentBuilder(doc);
  4870. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4871. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4872. dic.Add("Names", Names);
  4873. int accommodationRows = 12, foodandotherRows = 12;
  4874. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4875. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4876. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4877. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4878. int accommodationStartIndex = 6;
  4879. decimal dac1totalPrice = 0.00M;
  4880. foreach (var dac in dac1)
  4881. {
  4882. if (dac.SubTotal == 0)
  4883. {
  4884. continue;
  4885. }
  4886. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4887. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4888. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4889. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4890. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4891. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4892. builder.Write(currency);//币种
  4893. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4894. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4895. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4896. builder.Write("");//人数
  4897. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4898. builder.Write("");//天数
  4899. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4900. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4901. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4902. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4903. builder.Write(rate.ToString("#0.0000"));//汇率
  4904. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4905. decimal rbmPrice = rate * dac.SubTotal;
  4906. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4907. accommodationStartIndex++;
  4908. dac1totalPrice += rbmPrice;
  4909. }
  4910. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4911. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4912. builder.Write("小计");
  4913. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4914. builder.Write(dac1totalPrice.ToString("#0.00"));
  4915. accommodationStartIndex++;
  4916. int nullRow = accommodationRows - dac1.Count;
  4917. //删除空行
  4918. //if (nullRow > 0)
  4919. //{
  4920. // int rowIndex = accommodationStartIndex;
  4921. // for (int i = 0; i < nullRow; i++)
  4922. // {
  4923. // Row row = table1.Rows[rowIndex];
  4924. // row.Remove();
  4925. // rowIndex++;
  4926. // }
  4927. //}
  4928. if (dac2.Count == dac3.Count)//国家 币种 金额
  4929. {
  4930. for (int i = 0; i < dac2.Count; i++)
  4931. {
  4932. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4933. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4934. }
  4935. }
  4936. int foodandotherStartIndex = 19;//
  4937. decimal dac2totalPrice = 0.00M;
  4938. foreach (var dac in dac2)
  4939. {
  4940. if (dac.SubTotal == 0)
  4941. {
  4942. continue;
  4943. }
  4944. //foodandotherStartIndex = 12;
  4945. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4946. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4947. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4948. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4949. builder.Write(currency);//币种
  4950. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4951. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4952. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4953. builder.Write("");//人数
  4954. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4955. builder.Write("");//天数
  4956. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4957. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4958. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4959. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4960. builder.Write(rate.ToString("#0.0000"));//汇率
  4961. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4962. decimal rbmPrice = rate * dac.SubTotal;
  4963. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4964. foodandotherStartIndex++;
  4965. dac2totalPrice += rbmPrice;
  4966. }
  4967. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4968. //删除空行
  4969. if (dac2.Count < foodandotherRows)
  4970. {
  4971. //int nullRow = accommodationRows - dac2.Count;
  4972. //while (table2.Rows.Count > dac2.Count)
  4973. //{
  4974. // table2.Rows.RemoveAt(dac2.Count);
  4975. //}
  4976. }
  4977. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4978. string otherFeeStr = "";
  4979. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4980. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4981. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4982. if (otherFeeStr.Length > 0)
  4983. {
  4984. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4985. otherFeeStr = $"({otherFeeStr})";
  4986. dic.Add("OtherFeeStr", otherFeeStr);
  4987. }
  4988. foreach (var key in dic.Keys)
  4989. {
  4990. builder.MoveToBookmark(key);
  4991. builder.Write(dic[key]);
  4992. }
  4993. //模板文件名
  4994. string strFileName = $"省级单位出(境)经费报销单.docx";
  4995. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4996. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4997. return Ok(JsonView(true, "成功", new { Url = url }));
  4998. }
  4999. }
  5000. else if (dto.ExportType == 3)
  5001. {
  5002. if (dto.SubTypeId == 1) //团组成员名单
  5003. {
  5004. if (DeleClientList.Count < 1)
  5005. {
  5006. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  5007. }
  5008. //获取模板
  5009. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  5010. //载入模板
  5011. Document doc = new Document(tempPath);
  5012. DocumentBuilder builder = new DocumentBuilder(doc);
  5013. //获取word里所有表格
  5014. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5015. //获取所填表格的序数
  5016. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5017. var rowStart = tableOne.Rows[0]; //获取第1行
  5018. //循环赋值
  5019. for (int i = 0; i < DeleClientList.Count; i++)
  5020. {
  5021. builder.MoveToCell(0, i + 1, 0, 0);
  5022. builder.Write(DeleClientList[i].Name);
  5023. builder.MoveToCell(0, i + 1, 1, 0);
  5024. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  5025. builder.Write(sex);
  5026. builder.MoveToCell(0, i + 1, 2, 0);
  5027. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  5028. builder.MoveToCell(0, i + 1, 3, 0);
  5029. builder.Write(DeleClientList[i].Company);
  5030. builder.MoveToCell(0, i + 1, 4, 0);
  5031. builder.Write(DeleClientList[i].Job);
  5032. }
  5033. //删除多余行
  5034. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  5035. {
  5036. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  5037. }
  5038. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  5039. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  5040. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  5041. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5042. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5043. return Ok(JsonView(true, "成功", new { Url = url }));
  5044. }
  5045. }
  5046. return Ok(JsonView(false, "操作失败!"));
  5047. }
  5048. catch (Exception ex)
  5049. {
  5050. return Ok(JsonView(false, ex.Message));
  5051. }
  5052. }
  5053. /// <summary>
  5054. /// 获取三公费用标准city
  5055. /// </summary>
  5056. /// <param name="placeData"></param>
  5057. /// <param name="nationalTravelFeeId"></param>
  5058. /// <returns></returns>
  5059. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  5060. {
  5061. string _city = string.Empty;
  5062. if (placeData.Count < 1) return _city;
  5063. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  5064. if (data == null) return _city;
  5065. string country = data.Country;
  5066. string city = data.City;
  5067. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  5068. else _city = city;
  5069. return _city;
  5070. }
  5071. /// <summary>
  5072. /// 团组模块 - 出入境费用 - 明细表导出
  5073. /// </summary>
  5074. /// <returns></returns>
  5075. [HttpPost]
  5076. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5077. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  5078. {
  5079. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  5080. if (data.Code != 0)
  5081. {
  5082. return Ok(JsonView(false, data.Msg));
  5083. }
  5084. return Ok(JsonView(true, data.Msg, data.Data));
  5085. }
  5086. /// <summary>
  5087. /// 团组模块 - 出入境费用 - 一键清空
  5088. /// </summary>
  5089. /// <returns></returns>
  5090. [HttpPost]
  5091. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5092. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  5093. {
  5094. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  5095. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  5096. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  5097. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  5098. if (_view.Code == 0)
  5099. {
  5100. return Ok(JsonView(true, "操作成功"));
  5101. }
  5102. return Ok(JsonView(false, "操作失败"));
  5103. }
  5104. /// <summary>
  5105. /// 团组模块 - 出入境费用 - 子项删除
  5106. /// </summary>
  5107. /// <returns></returns>
  5108. [HttpPost]
  5109. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5110. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  5111. {
  5112. try
  5113. {
  5114. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  5115. if (data.Code != 0)
  5116. {
  5117. return Ok(JsonView(false, data.Msg));
  5118. }
  5119. return Ok(JsonView(true, "操作成功!", data.Data));
  5120. }
  5121. catch (Exception ex)
  5122. {
  5123. return Ok(JsonView(false, ex.Message));
  5124. }
  5125. }
  5126. /// <summary>
  5127. /// 团组模块 - 出入境国家费用标准 List
  5128. /// </summary>
  5129. /// <returns></returns>
  5130. [HttpPost]
  5131. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5132. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5133. {
  5134. try
  5135. {
  5136. Stopwatch sw = new Stopwatch();
  5137. sw.Start();
  5138. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5139. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5140. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5141. Where gntf.Isdel = 0");
  5142. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5143. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5144. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5145. //foreach (var item in nationalTravel)
  5146. //{
  5147. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5148. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5149. // if (otherData != null)
  5150. // {
  5151. // cityData.Remove(otherData);
  5152. // cityData.Add(otherData);
  5153. // }
  5154. // nationalTravelFeeData1.Add(new
  5155. // {
  5156. // Country = item.Country,
  5157. // CityData = cityData
  5158. // });
  5159. //}
  5160. sw.Stop();
  5161. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5162. }
  5163. catch (Exception ex)
  5164. {
  5165. return Ok(JsonView(false, ex.Message));
  5166. throw;
  5167. }
  5168. }
  5169. /// <summary>
  5170. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5171. /// </summary>
  5172. /// <returns></returns>
  5173. [HttpPost]
  5174. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5175. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5176. {
  5177. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5178. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5179. List<string> countryData = new List<string>();
  5180. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5181. countryData = countryData.Distinct().ToList();
  5182. List<dynamic> dataSource = new List<dynamic>();
  5183. foreach (var item in countryData)
  5184. {
  5185. List<string> cityData1 = new List<string>();
  5186. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5187. var countryData2 = new
  5188. {
  5189. CountryName = item,
  5190. CityData = cityData1
  5191. };
  5192. dataSource.Add(countryData2);
  5193. }
  5194. return Ok(JsonView(true, "查询成功!", dataSource));
  5195. }
  5196. /// <summary>
  5197. /// 团组模块 - 出入境国家费用标准 Page List
  5198. /// </summary>
  5199. /// <returns></returns>
  5200. [HttpPost]
  5201. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5202. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5203. {
  5204. int portId = dto.PortType;
  5205. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5206. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5207. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5208. string whereSql = string.Empty;
  5209. if (!string.IsNullOrEmpty(dto.Country))
  5210. {
  5211. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5212. }
  5213. if (!string.IsNullOrEmpty(dto.City))
  5214. {
  5215. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5216. }
  5217. string pageSql = string.Format(@"Select * From (
  5218. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5219. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5220. From Grp_NationalTravelFee gntf
  5221. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5222. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5223. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5224. RefAsync<int> total = 0;
  5225. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5226. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5227. }
  5228. /// <summary>
  5229. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5230. /// </summary>
  5231. /// <returns></returns>
  5232. [HttpPost]
  5233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5234. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5235. {
  5236. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5237. int portId = dto.PortType;
  5238. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5239. string whereSql = string.Empty;
  5240. if (!string.IsNullOrEmpty(dto.Country))
  5241. {
  5242. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5243. }
  5244. if (!string.IsNullOrEmpty(dto.City))
  5245. {
  5246. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5247. }
  5248. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5249. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5250. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5251. From Grp_NationalTravelFee gntf
  5252. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5253. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5254. Where gntf.Isdel = 0 {0} ", whereSql);
  5255. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5256. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5257. }
  5258. /// <summary>
  5259. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5260. /// </summary>
  5261. /// <returns></returns>
  5262. [HttpPost]
  5263. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5264. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5265. {
  5266. try
  5267. {
  5268. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5269. if (data.Code != 0)
  5270. {
  5271. return Ok(JsonView(false, data.Msg));
  5272. }
  5273. return Ok(JsonView(true, "操作成功!", data.Data));
  5274. }
  5275. catch (Exception ex)
  5276. {
  5277. return Ok(JsonView(false, ex.Message));
  5278. }
  5279. }
  5280. /// <summary>
  5281. /// 团组模块 - 出入境国家费用标准 - Del
  5282. /// </summary>
  5283. /// <returns></returns>
  5284. [HttpPost]
  5285. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5286. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5287. {
  5288. try
  5289. {
  5290. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5291. {
  5292. Id = dto.Id,
  5293. DeleteUserId = dto.DeleteUserId,
  5294. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5295. IsDel = 1
  5296. };
  5297. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5298. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5299. .WhereColumns(it => new { it.Id })
  5300. .ExecuteCommandAsync();
  5301. if (delStatus <= 0)
  5302. {
  5303. return Ok(JsonView(false, "删除失败!"));
  5304. }
  5305. return Ok(JsonView(true, "操作成功!"));
  5306. }
  5307. catch (Exception ex)
  5308. {
  5309. return Ok(JsonView(false, ex.Message));
  5310. }
  5311. }
  5312. #endregion
  5313. #region 签证费用录入
  5314. /// <summary>
  5315. /// 根据diid查询签证费用列表
  5316. /// </summary>
  5317. /// <param name="dto"></param>
  5318. /// <returns></returns>
  5319. [HttpPost]
  5320. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5321. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5322. {
  5323. try
  5324. {
  5325. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5326. if (groupData.Code != 0)
  5327. {
  5328. return Ok(JsonView(false, groupData.Msg));
  5329. }
  5330. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5331. }
  5332. catch (Exception ex)
  5333. {
  5334. return Ok(JsonView(false, ex.Message));
  5335. }
  5336. }
  5337. /// <summary>
  5338. /// 根据签证费用Id查询单条数据及c表数据
  5339. /// </summary>
  5340. /// <param name="dto"></param>
  5341. /// <returns></returns>
  5342. [HttpPost]
  5343. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5344. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5345. {
  5346. try
  5347. {
  5348. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5349. if (groupData.Code != 0)
  5350. {
  5351. return Ok(JsonView(false, groupData.Msg));
  5352. }
  5353. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5354. }
  5355. catch (Exception ex)
  5356. {
  5357. return Ok(JsonView(false, ex.Message));
  5358. }
  5359. }
  5360. /// <summary>
  5361. /// 签证费用删除
  5362. /// </summary>
  5363. /// <param name="dto"></param>
  5364. /// <returns></returns>
  5365. [HttpPost]
  5366. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5367. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5368. {
  5369. _sqlSugar.BeginTran();
  5370. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5371. if (!res)
  5372. {
  5373. _sqlSugar.RollbackTran();
  5374. return Ok(JsonView(false, "删除失败"));
  5375. }
  5376. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5377. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5378. .SetColumns(a => new Grp_CreditCardPayment()
  5379. {
  5380. IsDel = 1,
  5381. DeleteUserId = dto.DeleteUserId,
  5382. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5383. }).ExecuteCommand();
  5384. if (resSub < 1)
  5385. {
  5386. _sqlSugar.RollbackTran();
  5387. return Ok(JsonView(false, "删除失败"));
  5388. }
  5389. _sqlSugar.CommitTran();
  5390. return Ok(JsonView(true, "删除成功!"));
  5391. }
  5392. /// <summary>
  5393. /// 签证费用录入下拉框初始化
  5394. /// </summary>
  5395. /// <returns></returns>
  5396. [HttpPost]
  5397. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5398. public async Task<IActionResult> VisaPriceAddSelect()
  5399. {
  5400. try
  5401. {
  5402. //支付方式
  5403. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5404. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5405. //币种
  5406. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5407. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5408. //乘客类型
  5409. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5410. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5411. //卡类型
  5412. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5413. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5414. var data = new
  5415. {
  5416. Payment = _Payment,
  5417. CurrencyList = _CurrencyList,
  5418. PassengerType = _PassengerType,
  5419. BankCard = _BankCard
  5420. };
  5421. return Ok(JsonView(true, "查询成功!", data));
  5422. }
  5423. catch (Exception ex)
  5424. {
  5425. return Ok(JsonView(false, "程序错误!"));
  5426. throw;
  5427. }
  5428. }
  5429. /// <summary>
  5430. /// 签证费用录入操作(Status:1.新增,2.修改)
  5431. /// </summary>
  5432. /// <param name="dto"></param>
  5433. /// <returns></returns>
  5434. [HttpPost]
  5435. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5436. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5437. {
  5438. try
  5439. {
  5440. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5441. if (groupData.Code != 0)
  5442. {
  5443. return Ok(JsonView(false, groupData.Msg));
  5444. }
  5445. #region 应用推送
  5446. try
  5447. {
  5448. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5449. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5450. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5451. }
  5452. catch (Exception ex)
  5453. {
  5454. }
  5455. #endregion
  5456. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5457. }
  5458. catch (Exception ex)
  5459. {
  5460. return Ok(JsonView(false, ex.Message));
  5461. }
  5462. }
  5463. #endregion
  5464. #region op费用录入
  5465. /// <summary>
  5466. /// 根据diid查询op费用列表
  5467. /// </summary>
  5468. /// <param name="dto"></param>
  5469. /// <returns></returns>
  5470. [HttpPost]
  5471. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5472. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5473. {
  5474. try
  5475. {
  5476. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5477. if (groupData.Code != 0)
  5478. {
  5479. return Ok(JsonView(false, groupData.Msg));
  5480. }
  5481. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5482. }
  5483. catch (Exception ex)
  5484. {
  5485. return Ok(JsonView(false, ex.Message));
  5486. }
  5487. }
  5488. /// <summary>
  5489. /// 根据op费用Id查询单条数据及c表数据
  5490. /// </summary>
  5491. /// <param name="dto"></param>
  5492. /// <returns></returns>
  5493. [HttpPost]
  5494. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5495. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5496. {
  5497. try
  5498. {
  5499. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5500. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5501. var data = new
  5502. {
  5503. CarTouristGuideGround = _groupData,
  5504. CreditCardPayment = _creditCardPayment
  5505. };
  5506. return Ok(JsonView(true, "查询成功!", data));
  5507. }
  5508. catch (Exception ex)
  5509. {
  5510. return Ok(JsonView(false, "程序错误!"));
  5511. }
  5512. }
  5513. /// <summary>
  5514. /// op费用删除
  5515. /// </summary>
  5516. /// <param name="dto"></param>
  5517. /// <returns></returns>
  5518. [HttpPost]
  5519. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5520. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5521. {
  5522. try
  5523. {
  5524. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5525. if (!res)
  5526. {
  5527. return Ok(JsonView(false, "删除失败"));
  5528. }
  5529. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5530. {
  5531. IsDel = 1,
  5532. DeleteUserId = dto.DeleteUserId,
  5533. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5534. }).ExecuteCommandAsync();
  5535. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5536. {
  5537. IsDel = 1,
  5538. DeleteUserId = dto.DeleteUserId,
  5539. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5540. }).ExecuteCommandAsync();
  5541. return Ok(JsonView(true, "删除成功!"));
  5542. }
  5543. catch (Exception ex)
  5544. {
  5545. return Ok(JsonView(false, "程序错误!"));
  5546. throw;
  5547. }
  5548. }
  5549. /// <summary>
  5550. /// op费用录入操作(Status:1.新增,2.修改)
  5551. /// </summary>
  5552. /// <param name="dto"></param>
  5553. /// <returns></returns>
  5554. [HttpPost]
  5555. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5556. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5557. {
  5558. try
  5559. {
  5560. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5561. if (groupData.Code != 0)
  5562. {
  5563. return Ok(JsonView(false, groupData.Msg));
  5564. }
  5565. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5566. }
  5567. catch (Exception ex)
  5568. {
  5569. return Ok(JsonView(false, ex.Message));
  5570. }
  5571. }
  5572. /// <summary>
  5573. /// 填写费用详细页面初始化绑定
  5574. /// </summary>
  5575. /// <param name="dto"></param>
  5576. /// <returns></returns>
  5577. [HttpPost]
  5578. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5579. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5580. {
  5581. try
  5582. {
  5583. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5584. if (groupData.Code != 0)
  5585. {
  5586. return Ok(JsonView(false, groupData.Msg));
  5587. }
  5588. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5589. }
  5590. catch (Exception ex)
  5591. {
  5592. return Ok(JsonView(false, ex.Message));
  5593. }
  5594. }
  5595. /// <summary>
  5596. /// 根据op费用Id查询详细数据
  5597. /// </summary>
  5598. /// <param name="dto"></param>
  5599. /// <returns></returns>
  5600. [HttpPost]
  5601. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5602. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5603. {
  5604. try
  5605. {
  5606. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5607. if (groupData.Code != 0)
  5608. {
  5609. return Ok(JsonView(false, groupData.Msg));
  5610. }
  5611. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5612. }
  5613. catch (Exception ex)
  5614. {
  5615. return Ok(JsonView(false, ex.Message));
  5616. }
  5617. }
  5618. /// <summary>
  5619. /// OP费用录入填写详情
  5620. /// </summary>
  5621. /// <param name="dto"></param>
  5622. /// <returns></returns>
  5623. [HttpPost]
  5624. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5625. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5626. {
  5627. try
  5628. {
  5629. #region 参数校验
  5630. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5631. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5632. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5633. #endregion
  5634. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5635. if (groupData.Code != 0)
  5636. {
  5637. return Ok(JsonView(false, groupData.Msg));
  5638. }
  5639. //自动审核
  5640. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5641. #region 应用推送
  5642. try
  5643. {
  5644. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5645. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5646. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5647. }
  5648. catch (Exception ex)
  5649. {
  5650. }
  5651. #endregion
  5652. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5653. }
  5654. catch (Exception ex)
  5655. {
  5656. return Ok(JsonView(false, ex.Message));
  5657. }
  5658. }
  5659. /// <summary>
  5660. /// 获取三公详细所有城市
  5661. /// </summary>
  5662. /// <returns></returns>
  5663. [HttpGet]
  5664. public IActionResult OpCarCityResult()
  5665. {
  5666. var jw = JsonView(false);
  5667. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5668. {
  5669. x.Id,
  5670. x.Country,
  5671. x.City,
  5672. }).ToList();
  5673. if (data.Count > 0)
  5674. {
  5675. jw = JsonView(true, "获取成功!", data);
  5676. }
  5677. else
  5678. {
  5679. jw.Msg = "城市数据为空!";
  5680. jw.Data = new string[0];
  5681. }
  5682. return Ok(jw);
  5683. }
  5684. /// <summary>
  5685. /// 导出地接费用明细
  5686. /// </summary>
  5687. /// <param name="dto"></param>
  5688. /// <returns></returns>
  5689. [HttpPost]
  5690. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5691. {
  5692. var jw = JsonView(false);
  5693. if (dto.Diid < 1)
  5694. {
  5695. jw.Msg = "请输入正确的diid!";
  5696. return Ok(jw);
  5697. }
  5698. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5699. if (group == null)
  5700. {
  5701. jw.Msg = "未找到团组信息!";
  5702. return Ok(jw);
  5703. }
  5704. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5705. if (localGuideArr.Count == 0)
  5706. {
  5707. jw.Msg = "该团组暂无地接信息!";
  5708. return Ok(jw);
  5709. }
  5710. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5711. var overspendSoure = new Dictionary<int, int>
  5712. {
  5713. { 91, 982 }, //车
  5714. { 92 , 1059} ,//导游
  5715. { 994 , 1073}, //翻译
  5716. { 988 , 1074 }, //早餐
  5717. { 93 , 1075 }, //午餐
  5718. { 989 , 1076 }, //晚餐
  5719. };
  5720. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5721. foreach (var groupArr in localGroup)
  5722. {
  5723. var keyValue = groupArr.Key;
  5724. if (int.TryParse(keyValue, out int cityid))
  5725. {
  5726. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5727. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5728. }
  5729. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5730. foreach (var item in groupArr)
  5731. {
  5732. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5733. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5734. new Grp_CarTouristGuideGroundReservationsContentExtend
  5735. {
  5736. Count = a.Count,
  5737. CreateTime = a.CreateTime,
  5738. CreateUserId = a.CreateUserId,
  5739. CTGGRId = a.CTGGRId,
  5740. Currency = a.Currency,
  5741. DatePrice = a.DatePrice,
  5742. DeleteTime = a.DeleteTime,
  5743. DeleteUserId = a.DeleteUserId,
  5744. DiId = a.DiId,
  5745. Id = a.Id,
  5746. IsDel = a.IsDel,
  5747. Price = a.Price,
  5748. PriceContent = a.PriceContent,
  5749. Remark = a.Remark,
  5750. SId = a.SId,
  5751. SidName = b.Name,
  5752. Units = a.Units,
  5753. }
  5754. ).ToList();
  5755. if (content.Count > 0)
  5756. {
  5757. contentArr.Add(content);
  5758. }
  5759. }
  5760. //open excel
  5761. //set excel
  5762. //save excel
  5763. try
  5764. {
  5765. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5766. IWorkbook workbook;
  5767. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5768. {
  5769. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5770. }
  5771. else
  5772. {
  5773. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5774. }
  5775. ISheet sheet = workbook.GetSheetAt(0);
  5776. var rowStartIndex = 2;
  5777. var clounmCount = 10;
  5778. var initStyleRow = sheet.GetRow(2);
  5779. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5780. //var overspendArrDetail =
  5781. var existsId = new List<CarCompare>();
  5782. var lastElem = arr.Last();
  5783. var thisSid = -1;
  5784. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5785. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5786. {
  5787. Name = "未知币种!",
  5788. Remark = "未知币种!",
  5789. };
  5790. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5791. Action cloneRowFn = () =>
  5792. {
  5793. rowStartIndex++;
  5794. var cloneRow = sheet.CreateRow(rowStartIndex);
  5795. // 复制样式
  5796. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5797. {
  5798. ICell sourceCell = initStyleRow.GetCell(i);
  5799. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5800. // 确保单元格存在样式
  5801. if (sourceCell.CellStyle != null)
  5802. {
  5803. targetCell.CellStyle = sourceCell.CellStyle;
  5804. }
  5805. }
  5806. };
  5807. var mergeRow = () =>
  5808. {
  5809. for (int i = 2; i < sheet.LastRowNum; i++)
  5810. {
  5811. var row = sheet.GetRow(i);
  5812. var cellFirst = row.GetCell(0);
  5813. var thisIndex = i + 1;
  5814. while (thisIndex < sheet.LastRowNum)
  5815. {
  5816. var nextRow = sheet.GetRow(thisIndex);
  5817. var nextCellFirst = nextRow.GetCell(0);
  5818. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5819. {
  5820. thisIndex++;
  5821. }
  5822. else
  5823. {
  5824. break;
  5825. }
  5826. }
  5827. thisIndex--;
  5828. if (thisIndex != i)
  5829. {
  5830. //合并row
  5831. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5832. i, // 起始行索引(0-based)
  5833. thisIndex, // 结束行索引(0-based)
  5834. 0, // 起始列索引(0-based)
  5835. 0 // 结束列索引(0-based)
  5836. );
  5837. sheet.AddMergedRegion(cellRangeAddress);
  5838. i = thisIndex;
  5839. }
  5840. }
  5841. };
  5842. var chaoshiNumber = 0;
  5843. var totalNumber = 0.00M;
  5844. string lastStr = "";
  5845. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5846. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5847. {
  5848. b.IsAuditGM,
  5849. x.Id,
  5850. x.Area,
  5851. b.PayPercentage,
  5852. b.PayMoney,
  5853. }).ToList();
  5854. string yesPayment = "", noPayment = "";
  5855. foreach (var item in queryCarArrByCityAndDiid)
  5856. {
  5857. if (item.IsAuditGM == 1)
  5858. {
  5859. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5860. }
  5861. else
  5862. {
  5863. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5864. }
  5865. }
  5866. lastStr = yesPayment + noPayment;
  5867. foreach (var item in arr)
  5868. {
  5869. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5870. {
  5871. if (thisSid != item.SId)
  5872. {
  5873. if (thisSid == -1)
  5874. {
  5875. thisSid = item.SId;
  5876. }
  5877. else
  5878. {
  5879. //合并小计行
  5880. //创建合并区域的实例
  5881. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5882. rowStartIndex, // 起始行索引(0-based)
  5883. rowStartIndex, // 结束行索引(0-based)
  5884. 0, // 起始列索引(0-based)
  5885. 3 // 结束列索引(0-based)
  5886. );
  5887. sheet.AddMergedRegion(cellRangeAddress);
  5888. var CellStyle = workbook.CreateCellStyle();
  5889. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5890. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5891. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5892. for (int i = 0; i <= clounmCount; i++)
  5893. {
  5894. if (i > 6)
  5895. {
  5896. var CellStyle1 = workbook.CreateCellStyle();
  5897. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5898. IFont Font = workbook.CreateFont(); // 创建字体
  5899. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5900. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5901. CellStyle1.SetFont(Font);
  5902. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5903. }
  5904. else
  5905. {
  5906. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5907. }
  5908. }
  5909. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5910. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5911. //超时合计
  5912. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5913. //超时数
  5914. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5915. //超时合计费用
  5916. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5917. thisSid = item.SId;
  5918. cloneRowFn();
  5919. chaoshiNumber = 0;
  5920. totalNumber = 0;
  5921. }
  5922. }
  5923. IRow row = sheet.GetRow(rowStartIndex);
  5924. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5925. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5926. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5927. if (isOpenOverspendSoure)
  5928. {
  5929. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5930. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5931. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5932. }
  5933. for (int i = 0; i <= clounmCount; i++)
  5934. {
  5935. var cell = row.GetCell(i);
  5936. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5937. if (cell == null)
  5938. {
  5939. cell = row.CreateCell(i);
  5940. }
  5941. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5942. fontRed.CloneStyleFrom(cell.CellStyle);
  5943. IFont Font = workbook.CreateFont(); // 创建字体
  5944. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5945. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5946. fontRed.SetFont(Font);
  5947. byte[] rgb = new byte[3] { 255, 242, 204 };
  5948. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5949. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5950. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5951. if (workbook is XSSFWorkbook)
  5952. {
  5953. BackgroundColor255_242_204.FillForegroundColor = 0;
  5954. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5955. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5956. }
  5957. else
  5958. {
  5959. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5960. }
  5961. if (i == 1 || i > 6)
  5962. {
  5963. if (i > 6)
  5964. {
  5965. fontRed.FillForegroundColor = 0;
  5966. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5967. fontRed.FillPattern = FillPattern.SolidForeground;
  5968. }
  5969. cell.CellStyle = fontRed;
  5970. }
  5971. if (i > 2 && i < 7)
  5972. {
  5973. cell.CellStyle = BackgroundColor255_242_204;
  5974. }
  5975. cell.SetCellValue(setCellValue); //写入单元格
  5976. }
  5977. if (overspendSoure.ContainsKey(thisSid))
  5978. {
  5979. var overspendId = overspendSoure[thisSid];
  5980. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5981. }
  5982. cloneRowFn();
  5983. existsId.Add(new CarCompare
  5984. {
  5985. DataPrice = item.DatePrice.ObjToDate(),
  5986. Sid = item.SId
  5987. });
  5988. }
  5989. if (item.Equals(lastElem))
  5990. {
  5991. //合并小计行
  5992. //创建合并区域的实例
  5993. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5994. rowStartIndex, // 起始行索引(0-based)
  5995. rowStartIndex, // 结束行索引(0-based)
  5996. 0, // 起始列索引(0-based)
  5997. 3 // 结束列索引(0-based)
  5998. );
  5999. sheet.AddMergedRegion(cellRangeAddress);
  6000. var CellStyle = workbook.CreateCellStyle();
  6001. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6002. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  6003. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  6004. for (int i = 0; i <= clounmCount; i++)
  6005. {
  6006. if (i > 6)
  6007. {
  6008. var CellStyle1 = workbook.CreateCellStyle();
  6009. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6010. IFont Font = workbook.CreateFont(); // 创建字体
  6011. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  6012. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6013. CellStyle1.SetFont(Font);
  6014. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  6015. }
  6016. else
  6017. {
  6018. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6019. }
  6020. }
  6021. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6022. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6023. //超时合计
  6024. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6025. //超时数
  6026. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6027. //超时合计费用
  6028. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6029. cloneRowFn();
  6030. // 创建合并区域的实例
  6031. cellRangeAddress = new CellRangeAddress(
  6032. rowStartIndex, // 起始行索引(0-based)
  6033. rowStartIndex, // 结束行索引(0-based)
  6034. 0, // 起始列索引(0-based)
  6035. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  6036. );
  6037. // 添加合并区域
  6038. sheet.AddMergedRegion(cellRangeAddress);
  6039. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  6040. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  6041. }
  6042. }
  6043. mergeRow();
  6044. // 保存修改后的Excel文件到新文件
  6045. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  6046. // new FileStream(newFilePath, FileMode.CreateNew)
  6047. using (var stream = new MemoryStream())
  6048. {
  6049. workbook.Write(stream, true);
  6050. stream.Flush();
  6051. stream.Seek(0, SeekOrigin.Begin);
  6052. MemoryStream memoryStream = new MemoryStream();
  6053. stream.CopyTo(memoryStream);
  6054. memoryStream.Seek(0, SeekOrigin.Begin);
  6055. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  6056. }
  6057. workbook.Close();
  6058. workbook.Dispose();
  6059. }
  6060. catch (Exception ex)
  6061. {
  6062. jw.Msg = "出现异常!" + ex.Message;
  6063. return Ok(jw);
  6064. }
  6065. }
  6066. if (Zips.Count > 0)
  6067. {
  6068. IOOperatorHelper io = new IOOperatorHelper();
  6069. var byts = io.ConvertZipStream(Zips);
  6070. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  6071. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  6072. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  6073. }
  6074. else
  6075. {
  6076. jw.Msg = "暂无生成文件!";
  6077. }
  6078. return Ok(jw);
  6079. }
  6080. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  6081. {
  6082. string outStr = string.Empty;
  6083. switch (i)
  6084. {
  6085. case 0:
  6086. outStr = arr[0].SidName;
  6087. break;
  6088. case 1:
  6089. outStr = arr[0].DataPriceStr;
  6090. break;
  6091. case 2:
  6092. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  6093. break;
  6094. case 4:
  6095. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  6096. break;
  6097. case 7:
  6098. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6099. {
  6100. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  6101. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  6102. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  6103. }
  6104. break;
  6105. case 8:
  6106. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6107. {
  6108. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  6109. }
  6110. break;
  6111. case 9:
  6112. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6113. {
  6114. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  6115. }
  6116. break;
  6117. case 10:
  6118. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6119. {
  6120. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6121. }
  6122. break;
  6123. }
  6124. return outStr;
  6125. }
  6126. #region OP行程单
  6127. /// <summary>
  6128. /// OP行程单初始化
  6129. /// </summary>
  6130. /// <param name="dto"></param>
  6131. /// <returns></returns>
  6132. [HttpPost]
  6133. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6134. {
  6135. var jw = JsonView(false);
  6136. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6137. var group = groupList.First();
  6138. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6139. if (group == null)
  6140. {
  6141. jw.Msg = "暂无团组!";
  6142. return Ok(jw);
  6143. }
  6144. group = groupList.Find(x => x.Id == diid);
  6145. if (group == null)
  6146. {
  6147. jw.Msg = "请输入正确的团组ID!";
  6148. return Ok(jw);
  6149. }
  6150. string city = string.Empty;
  6151. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6152. if (blackCode.Count > 0)
  6153. {
  6154. var black = blackCode.First();
  6155. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6156. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6157. if (blackSp.Length > 0)
  6158. {
  6159. try
  6160. {
  6161. var cityArrCode = new List<string>(20);
  6162. foreach (var item in blackSp)
  6163. {
  6164. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6165. var IndexSelect = itemSp[2];
  6166. var cityArrCodeLength = cityArrCode.Count - 1;
  6167. var startCity = IndexSelect.Substring(0, 3);
  6168. if (cityArrCodeLength > 0)
  6169. {
  6170. var arrEndCity = cityArrCode[cityArrCodeLength];
  6171. if (arrEndCity != startCity)
  6172. {
  6173. cityArrCode.Add(startCity.ToUpper());
  6174. }
  6175. }
  6176. else
  6177. {
  6178. cityArrCode.Add(startCity.ToUpper());
  6179. }
  6180. var endCity = IndexSelect.Substring(3, 3);
  6181. cityArrCode.Add(endCity.ToUpper());
  6182. }
  6183. var cityThree = string.Empty;
  6184. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6185. cityThree = cityThree.TrimEnd(',');
  6186. if (string.IsNullOrWhiteSpace(cityThree))
  6187. {
  6188. throw new
  6189. Exception("error");
  6190. }
  6191. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6192. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6193. foreach (var item in cityArrCode)
  6194. {
  6195. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6196. if (find != null)
  6197. {
  6198. city += find.City + "/";
  6199. }
  6200. else
  6201. {
  6202. city += item + "三字码未收入/";
  6203. }
  6204. }
  6205. city = city.TrimEnd('/');
  6206. }
  6207. catch (Exception e)
  6208. {
  6209. city = "黑屏代码格式不正确!";
  6210. }
  6211. }
  6212. }
  6213. else
  6214. {
  6215. city = "未录入黑屏代码";
  6216. }
  6217. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6218. {
  6219. Date = x.Date,
  6220. Days = x.Days,
  6221. Diffgroup = x.Diffgroup,
  6222. Diid = x.Diid,
  6223. Traffic_First = x.Traffic_First,
  6224. Traffic_Second = x.Traffic_Second,
  6225. Trip = x.Trip,
  6226. WeekDay = x.WeekDay,
  6227. Id = x.Id
  6228. }).ToList();
  6229. jw.Data = new
  6230. {
  6231. groupList = groupList.Select(x => new
  6232. {
  6233. x.Id,
  6234. x.TeamName,
  6235. x.TourCode
  6236. }).ToList(),
  6237. groupInfo = new
  6238. {
  6239. group.VisitDays,
  6240. group.TourCode,
  6241. group.VisitPNumber,
  6242. group.TeamName,
  6243. city
  6244. },
  6245. OpTravelList
  6246. };
  6247. jw.Code = 200;
  6248. jw.Msg = "操作成功!";
  6249. return Ok(jw);
  6250. }
  6251. /// <summary>
  6252. /// 删除团组行程单
  6253. /// </summary>
  6254. /// <returns></returns>
  6255. [HttpPost]
  6256. public IActionResult DelTravel(DelOpTravelDto dto)
  6257. {
  6258. var jw = JsonView(false);
  6259. if (dto.UserId <= 0 || dto.Diid <= 0)
  6260. {
  6261. jw.Msg = "请输入正确的参数!";
  6262. return Ok(jw);
  6263. }
  6264. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6265. .SetColumns(x => new Grp_TravelList
  6266. {
  6267. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6268. DeleteUserId = dto.UserId,
  6269. IsDel = 1,
  6270. }).ExecuteCommand();
  6271. jw = JsonView(true);
  6272. return Ok(jw);
  6273. }
  6274. /// <summary>
  6275. /// 行程单保存
  6276. /// </summary>
  6277. /// <returns></returns>
  6278. [HttpPost]
  6279. public IActionResult TravelSave(TravelSaveDto dto)
  6280. {
  6281. var jw = JsonView(false);
  6282. if (dto.Arr.Count > 0)
  6283. {
  6284. try
  6285. {
  6286. _sqlSugar.BeginTran();
  6287. foreach (var item in dto.Arr)
  6288. {
  6289. if (item.Id == 0)
  6290. {
  6291. throw new Exception("请传入正确的Id");
  6292. }
  6293. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6294. .SetColumns(x => new Grp_TravelList
  6295. {
  6296. Trip = item.Trip
  6297. }).ExecuteCommand();
  6298. }
  6299. _sqlSugar.CommitTran();
  6300. jw = JsonView(true);
  6301. }
  6302. catch (Exception ex)
  6303. {
  6304. _sqlSugar.RollbackTran();
  6305. jw.Msg = "程序异常!" + ex.Message;
  6306. }
  6307. }
  6308. else
  6309. {
  6310. jw.Msg = "请传入正确的参数!";
  6311. }
  6312. return Ok(jw);
  6313. }
  6314. /// <summary>
  6315. /// 导出行程单
  6316. /// </summary>
  6317. /// <param name="dto"></param>
  6318. /// <returns></returns>
  6319. [HttpPost]
  6320. public IActionResult ExportTravel(ExportTravelDto dto)
  6321. {
  6322. var jw = JsonView(false);
  6323. jw.Data = "";
  6324. int diid = 0;
  6325. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6326. if (Find == null)
  6327. {
  6328. jw.Msg = "请选择正确的团组!";
  6329. return Ok(jw);
  6330. }
  6331. else
  6332. {
  6333. diid = Find.Id;
  6334. }
  6335. //数据源
  6336. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6337. DataTable dtBlack = null;
  6338. try
  6339. {
  6340. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6341. }
  6342. catch (Exception)
  6343. {
  6344. jw.Msg = "机票黑屏代码有误!";
  6345. return Ok(jw);
  6346. }
  6347. string CityStr = string.Empty;
  6348. if (dtBlack.Rows.Count == 0)
  6349. {
  6350. jw.Msg = "机票黑屏代码有误!";
  6351. return Ok(jw);
  6352. }
  6353. else
  6354. {
  6355. foreach (DataRow row in dtBlack.Rows)
  6356. {
  6357. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6358. {
  6359. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6360. return Ok(jw);
  6361. }
  6362. }
  6363. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6364. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6365. }
  6366. //创建数据源Table
  6367. DataTable dtSource = new DataTable();
  6368. dtSource.Columns.Add("Days", typeof(string));
  6369. dtSource.Columns.Add("Date", typeof(string));
  6370. dtSource.Columns.Add("Week", typeof(string));
  6371. dtSource.Columns.Add("Traffic", typeof(string));
  6372. dtSource.Columns.Add("Trip", typeof(string));
  6373. //获取数据,放到datatable
  6374. foreach (var item in _travelList)
  6375. {
  6376. DataRow dr = dtSource.NewRow();
  6377. dr["Days"] = item.Days;
  6378. dr["Date"] = item.Date;
  6379. dr["Week"] = item.WeekDay;
  6380. dr["Traffic"] = item.Traffic_First
  6381. + "\r\n"
  6382. + item.Traffic_Second;
  6383. dr["Trip"] = item.Trip;
  6384. dtSource.Rows.Add(dr);
  6385. }
  6386. Dictionary<string, string> dic = new Dictionary<string, string>();
  6387. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6388. dic.Add("City", CityStr);
  6389. dic.Add("Days", Find.VisitDays.ToString());
  6390. dic.Add("DeleCode", Find.TourCode);
  6391. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6392. //模板路径
  6393. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6394. //载入模板
  6395. Document doc = null;
  6396. DocumentBuilder builder = null;
  6397. try
  6398. {
  6399. //载入模板
  6400. doc = new Document(tempPath);
  6401. builder = new DocumentBuilder(doc);
  6402. }
  6403. catch (Exception)
  6404. {
  6405. jw.Msg = "模板位置不存在!";
  6406. return Ok(jw);
  6407. }
  6408. foreach (var key in dic.Keys)
  6409. {
  6410. Bookmark bookmark = doc.Range.Bookmarks[key];
  6411. if (bookmark != null)
  6412. {
  6413. builder.MoveToBookmark(key);
  6414. builder.Write(dic[key]);
  6415. }
  6416. }
  6417. //获取word里所有表格
  6418. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6419. //获取所填表格的序数
  6420. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6421. try
  6422. {
  6423. //循环赋值
  6424. for (int i = 0; i < dtSource.Rows.Count; i++)
  6425. {
  6426. builder.MoveToCell(0, i + 1, 0, 0);
  6427. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6428. builder.MoveToCell(0, i + 1, 1, 0);
  6429. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6430. builder.MoveToCell(0, i + 1, 2, 0);
  6431. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6432. var trip = dtSource.Rows[i]["Trip"].ToString();
  6433. builder.MoveToCell(0, i + 1, 3, 0);
  6434. builder.Write(trip);
  6435. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6436. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6437. // 获取特定索引的段落
  6438. Paragraph paragraph = (Paragraph)paragraphs[0];
  6439. Run run = paragraph.Runs[0];
  6440. Aspose.Words.Font font = run.Font;
  6441. font.Name = "黑体";
  6442. //设置双休红色
  6443. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6444. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6445. paragraph = (Paragraph)paragraphs[1];
  6446. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6447. {
  6448. run = paragraph.Runs[0];
  6449. font = run.Font;
  6450. font.Color = Color.Red;
  6451. }
  6452. }
  6453. }
  6454. catch (Exception ex)
  6455. {
  6456. }
  6457. //删除多余行
  6458. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6459. {
  6460. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6461. }
  6462. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6463. if (!Directory.Exists(savePath))
  6464. {
  6465. try
  6466. {
  6467. Directory.CreateDirectory(savePath);
  6468. }
  6469. catch
  6470. {
  6471. }
  6472. }
  6473. string path = savePath + Find.TeamName + "出访日程";
  6474. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6475. try
  6476. {
  6477. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6478. string postfix = ".docx";
  6479. if (dto.IsPDF == 1)
  6480. {
  6481. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6482. postfix = ".pdf";
  6483. }
  6484. doc.Save(path + postfix, saveFormat);
  6485. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6486. }
  6487. catch (Exception)
  6488. {
  6489. jw = JsonView(false);
  6490. }
  6491. return Ok(jw);
  6492. }
  6493. /// <summary>
  6494. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6495. /// </summary>
  6496. /// <param name="num"></param>
  6497. /// <returns></returns>
  6498. string GetNum(string num)
  6499. {
  6500. string str = "";
  6501. switch (num)
  6502. {
  6503. case "1":
  6504. str = "一";
  6505. break;
  6506. case "2":
  6507. str = "二";
  6508. break;
  6509. case "3":
  6510. str = "三";
  6511. break;
  6512. case "4":
  6513. str = "四";
  6514. break;
  6515. case "5":
  6516. str = "五";
  6517. break;
  6518. case "6":
  6519. str = "六";
  6520. break;
  6521. case "7":
  6522. str = "七";
  6523. break;
  6524. case "8":
  6525. str = "八";
  6526. break;
  6527. case "9":
  6528. str = "九";
  6529. break;
  6530. case "10":
  6531. str = "十";
  6532. break;
  6533. case "11":
  6534. str = "十一";
  6535. break;
  6536. case "12":
  6537. str = "十二";
  6538. break;
  6539. case "一":
  6540. str = "1";
  6541. break;
  6542. case "二":
  6543. str = "2";
  6544. break;
  6545. case "三":
  6546. str = "3";
  6547. break;
  6548. case "四":
  6549. str = "4";
  6550. break;
  6551. case "五":
  6552. str = "5";
  6553. break;
  6554. case "六":
  6555. str = "6";
  6556. break;
  6557. case "七":
  6558. str = "7";
  6559. break;
  6560. case "八":
  6561. str = "8";
  6562. break;
  6563. case "九":
  6564. str = "9";
  6565. break;
  6566. case "十":
  6567. str = "10";
  6568. break;
  6569. case "十一":
  6570. str = "11";
  6571. break;
  6572. case "十二":
  6573. str = "12";
  6574. break;
  6575. }
  6576. return str;
  6577. }
  6578. #endregion
  6579. #endregion
  6580. #region 团组成本
  6581. /// <summary>
  6582. /// 团组成本数据初始化
  6583. /// </summary>
  6584. /// <param name="dto"></param>
  6585. /// <returns></returns>
  6586. [HttpPost]
  6587. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6588. {
  6589. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6590. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6591. WHEN COUNT(*) >= 0 THEN 'True'
  6592. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6593. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6594. ").ToList(); //团组列表
  6595. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6596. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6597. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6598. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6599. if (groupinfoValue != null)
  6600. {
  6601. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6602. var spArr = new string[1] { countryArr };
  6603. if (countryArr.Contains("|"))
  6604. {
  6605. spArr = countryArr.Split("|");
  6606. }
  6607. else if (countryArr.Contains("、"))
  6608. {
  6609. spArr = countryArr.Split("、");
  6610. }
  6611. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6612. {
  6613. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6614. if (dbQueryCountry != null)
  6615. {
  6616. visaCountryInfoArr.Add(dbQueryCountry);
  6617. }
  6618. }
  6619. }
  6620. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6621. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6622. var create = _GroupCostRepository.
  6623. CreateGroupCostByBlackCode(dto.Diid);
  6624. if (groupCost.Count == 0 && create.Code == 0)
  6625. {
  6626. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6627. }
  6628. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6629. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6630. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6631. groupCostMap = groupCostMap.Select(x =>
  6632. {
  6633. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6634. {
  6635. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6636. }
  6637. return x;
  6638. }).ToList();
  6639. //GroupCostParameter.Add(new
  6640. // Grp_GroupCostParameter());
  6641. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6642. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6643. return Ok(JsonView(new
  6644. {
  6645. groupList,
  6646. groupInfo,
  6647. groupChecks,
  6648. groupCost = groupCostMap,
  6649. hotelNumber,
  6650. GroupCostParameter = GroupCostParameterMap,
  6651. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6652. {
  6653. x.VisaCountry,
  6654. x.VisaPrice,
  6655. x.Id,
  6656. }).ToList(),
  6657. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6658. blackCodeIsTrue = create.Code == 0 ? true : false,
  6659. hotelIsTrue = hotelIsTrue,
  6660. }));
  6661. }
  6662. /// <summary>
  6663. /// 团组成本信息保存
  6664. /// </summary>
  6665. /// <param name="dto"></param>
  6666. /// <returns></returns>
  6667. [HttpPost]
  6668. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6669. {
  6670. if (dto.Diid <= 0 || dto.Userid <= 0)
  6671. {
  6672. return Ok(JsonView(false));
  6673. }
  6674. JsonView jw = null;
  6675. bool isTrue = false;
  6676. #region 复制团组成本
  6677. //if (dto.Diid == 2581)
  6678. //{
  6679. // dto.Diid = 2599;
  6680. // dto.CheckBoxs.ForEach(x =>
  6681. // {
  6682. // x.Diid = 2599;
  6683. // });
  6684. // dto.GroupCosts.ForEach(x =>
  6685. // {
  6686. // x.Diid = 2599;
  6687. // });
  6688. // dto.CostTypeHotelNumbers.ForEach(x =>
  6689. // {
  6690. // x.Diid = 2599;
  6691. // });
  6692. // dto.GroupCostParameters.ForEach(x =>
  6693. // {
  6694. // x.DiId = 2599;
  6695. // });
  6696. //}
  6697. #endregion
  6698. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6699. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6700. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6701. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6702. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6703. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6704. try
  6705. {
  6706. _sqlSugar.BeginTran();
  6707. isTrue = await _GroupCostRepository.
  6708. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6709. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6710. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6711. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6712. _sqlSugar.CommitTran();
  6713. jw = JsonView(true, "保存成功!", isTrue);
  6714. }
  6715. catch (Exception)
  6716. {
  6717. _sqlSugar.RollbackTran();
  6718. jw = JsonView(false);
  6719. }
  6720. return Ok(jw);
  6721. }
  6722. /// <summary>
  6723. /// 司兼导数据
  6724. /// </summary>
  6725. /// <param name="dto"></param>
  6726. /// <returns></returns>
  6727. [HttpPost]
  6728. public IActionResult GetCarGuides(CarGuidesDto dto)
  6729. {
  6730. JsonView jw = null;
  6731. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6732. jw = JsonView(true, "获取成功!", Data);
  6733. return Ok(jw);
  6734. }
  6735. /// <summary>
  6736. /// 导游数据
  6737. /// </summary>
  6738. /// <param name="dto"></param>
  6739. /// <returns></returns>
  6740. [HttpPost]
  6741. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6742. {
  6743. JsonView jw = null;
  6744. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6745. // 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
  6746. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6747. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6748. jw = JsonView(true, "获取成功!", Data);
  6749. return Ok(jw);
  6750. }
  6751. /// <summary>
  6752. /// 成本车数据
  6753. /// </summary>
  6754. /// <param name="dto"></param>
  6755. /// <returns></returns>
  6756. [HttpPost]
  6757. public IActionResult GetCarInfo(CarGuidesDto dto)
  6758. {
  6759. JsonView jw = null;
  6760. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6761. jw = JsonView(true, "获取成功!", Data);
  6762. return Ok(jw);
  6763. }
  6764. /// <summary>
  6765. /// 景点数据
  6766. /// </summary>
  6767. /// <param name="dto"></param>
  6768. /// <returns></returns>
  6769. [HttpPost]
  6770. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6771. {
  6772. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6773. return Ok(JsonView(true, "获取成功!", Data));
  6774. }
  6775. /// <summary>
  6776. /// 成本通知
  6777. /// </summary>
  6778. /// <param name="dto"></param>
  6779. /// <returns></returns>
  6780. [HttpPost]
  6781. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6782. {
  6783. if (dto.Diid < 0)
  6784. {
  6785. return Ok(JsonView(false));
  6786. }
  6787. JsonView jw = null;
  6788. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6789. if (GroupCostParameter != null)
  6790. {
  6791. int IsShare = 0;
  6792. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6793. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6794. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6795. string msg = string.Empty;
  6796. if (isTrue)
  6797. {
  6798. if (IsShare == 0)
  6799. {
  6800. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6801. }
  6802. else
  6803. {
  6804. #region 企微通知对应岗位用户
  6805. try
  6806. {
  6807. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6808. }
  6809. catch (Exception ex)
  6810. {
  6811. }
  6812. #endregion
  6813. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6814. }
  6815. jw = JsonView(isTrue, msg, new { IsShare });
  6816. }
  6817. else
  6818. {
  6819. msg = "修改失败!";
  6820. jw = JsonView(isTrue, msg);
  6821. }
  6822. }
  6823. else
  6824. {
  6825. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6826. }
  6827. return Ok(jw);
  6828. }
  6829. /// <summary>
  6830. /// 导出报价单
  6831. /// </summary>
  6832. /// <param name="dto"></param>
  6833. /// <returns></returns>
  6834. [HttpPost]
  6835. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6836. {
  6837. if (dto.Diid == 0)
  6838. {
  6839. return Ok(JsonView(false, "请传递团组id"));
  6840. }
  6841. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6842. if (deleInfo.Code != 0)
  6843. {
  6844. return Ok(JsonView(false, "团组信息查询失败!"));
  6845. }
  6846. var di = deleInfo.Data as DelegationInfoWebView;
  6847. if (di != null)
  6848. {
  6849. di.TeamName = di.TeamName.Replace("|","、");
  6850. di.VisitCountry = di.VisitCountry.Replace("|", "、");
  6851. //文件名
  6852. string strFileName = di.TeamName + "-收款账单.doc";
  6853. //获取模板
  6854. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6855. //载入模板
  6856. Document doc = new Document(tmppath);
  6857. decimal TotalPrice = 0.00M;
  6858. string itemStr = string.Empty;
  6859. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6860. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6861. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6862. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6863. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6864. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6865. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6866. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6867. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6868. foreach (var cost in groupCostType)
  6869. {
  6870. var List = cost.ToList();
  6871. if (cost.Key == "A")
  6872. {
  6873. foreach (var ListItem in List)
  6874. {
  6875. if (ListItem.number > 0)
  6876. {
  6877. if (ListItem.code.Contains("TBR"))
  6878. {
  6879. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6880. }
  6881. else
  6882. {
  6883. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6884. }
  6885. TotalPrice += (ListItem.number * ListItem.price);
  6886. }
  6887. }
  6888. }
  6889. else
  6890. {
  6891. itemStr = itemStr.Insert(0, "A段\r\n");
  6892. itemStr += "B段\r\n";
  6893. foreach (var ListItem in List)
  6894. {
  6895. if (ListItem.number > 0)
  6896. {
  6897. if (ListItem.code.Contains("TBR"))
  6898. {
  6899. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6900. }
  6901. else
  6902. {
  6903. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6904. }
  6905. TotalPrice += (ListItem.number * ListItem.price);
  6906. }
  6907. }
  6908. }
  6909. }
  6910. #region 替换Word模板书签内容
  6911. Dictionary<string, string> marks = new Dictionary<string, string>();
  6912. marks.Add("To", di.ClientUnit);//付款方
  6913. marks.Add("ToTel", di.TellPhone);//付款方电话
  6914. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6915. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6916. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6917. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6918. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6919. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6920. marks.Add("PayItemContent", itemStr);//详细信息
  6921. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6922. #endregion
  6923. ////注
  6924. //if (doc.Range.Bookmarks["Attention"] != null)
  6925. //{
  6926. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6927. // mark.Text = frList[0].Attention;
  6928. //}
  6929. foreach (var item in marks.Keys)
  6930. {
  6931. if (doc.Range.Bookmarks[item] != null)
  6932. {
  6933. Bookmark mark = doc.Range.Bookmarks[item];
  6934. mark.Text = marks[item];
  6935. }
  6936. }
  6937. byte[] bytes = null;
  6938. using (MemoryStream stream = new MemoryStream())
  6939. {
  6940. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6941. bytes = stream.ToArray();
  6942. }
  6943. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6944. return Ok(JsonView(true, "", new
  6945. {
  6946. Data = bytes,
  6947. strFileName,
  6948. }));
  6949. }
  6950. else
  6951. {
  6952. return Ok(JsonView(false, "团组信息不存在!"));
  6953. }
  6954. }
  6955. /// <summary>
  6956. /// 导出团组成本
  6957. /// </summary>
  6958. /// <param name="dto"></param>
  6959. /// <returns></returns>
  6960. [HttpPost]
  6961. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6962. {
  6963. var jw = JsonView(false);
  6964. if (dto.Diid == 0)
  6965. {
  6966. return Ok(JsonView(false, "请传递团组id"));
  6967. }
  6968. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6969. if (deleInfo.Code != 0)
  6970. {
  6971. return Ok(JsonView(false, "团组信息查询失败!"));
  6972. }
  6973. var di = deleInfo.Data as DelegationInfoWebView;
  6974. if (di == null)
  6975. {
  6976. return Ok(JsonView(false, "团组信息查询失败!"));
  6977. }
  6978. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6979. WorkbookDesigner designer = new WorkbookDesigner();
  6980. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6981. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6982. for (int i = 0; i < List_GC.Count; i++)
  6983. {
  6984. GroupCost_Excel gc = new GroupCost_Excel();
  6985. gc.Id = List_GC[i].Id;
  6986. gc.Diid = List_GC[i].Diid.ToString();
  6987. gc.DAY = List_GC[i].DAY;
  6988. string week = "";
  6989. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6990. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6991. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6992. gc.ITIN = List_GC[i].ITIN;
  6993. gc.CarType = List_GC[i].CarType;
  6994. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6995. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6996. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6997. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6998. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6999. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  7000. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  7001. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  7002. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  7003. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  7004. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  7005. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  7006. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7007. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7008. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  7009. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  7010. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  7011. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  7012. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  7013. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  7014. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  7015. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  7016. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  7017. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  7018. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  7019. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  7020. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  7021. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  7022. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  7023. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  7024. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  7025. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  7026. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  7027. List_GC1.Add(gc);
  7028. }
  7029. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  7030. dt.TableName = "TB";
  7031. //报表标题等不用dt的值
  7032. designer.SetDataSource("TeamName", dto.title.TeamName);
  7033. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  7034. designer.SetDataSource("Tax", dto.title.Tax);
  7035. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  7036. designer.SetDataSource("Currency", dto.title.Currency);
  7037. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  7038. designer.SetDataSource("Rate", dto.title.Rate);
  7039. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  7040. var Aparams = hotels.Find(x => x.Type == "Default");
  7041. if (Aparams == null)
  7042. {
  7043. return Ok(jw);
  7044. }
  7045. //酒店数量
  7046. var txtSGRNumber = Aparams.SGR.ToString();
  7047. var txtTBRNumber = Aparams.TBR.ToString();
  7048. var txtJSESNumber = Aparams.JSES.ToString();
  7049. var txtSUITENumbe = Aparams.SUITE.ToString();
  7050. if (dto.costType == "B")
  7051. {
  7052. Aparams = hotels.Find(x => x.Type == "A");
  7053. var Bparams = hotels.Find(x => x.Type == "B");
  7054. if (Aparams == null || Bparams == null)
  7055. {
  7056. return Ok(jw);
  7057. }
  7058. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  7059. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  7060. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  7061. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  7062. }
  7063. designer.SetDataSource("SGRNumber", txtSGRNumber);
  7064. designer.SetDataSource("TBRNumber", txtTBRNumber);
  7065. designer.SetDataSource("JSESNumber", txtJSESNumber);
  7066. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  7067. var ws = designer.Workbook.Worksheets[0];
  7068. int Row = List_GC.Count;
  7069. int startIndex = 11;
  7070. int HideRows = 0;
  7071. List<int> hideRowsList = new List<int>();
  7072. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  7073. #region A段left数据
  7074. var left = dto.leftInfo.Find(x => x.Type == "A");
  7075. if (left == null)
  7076. {
  7077. return Ok(jw);
  7078. }
  7079. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  7080. if (leftBindData != null)
  7081. {
  7082. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  7083. designer.SetDataSource("VisaRS", leftBindData.rs);
  7084. designer.SetDataSource("VisaXS", leftBindData.xs);
  7085. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7086. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7087. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7088. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7089. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7090. }
  7091. else
  7092. {
  7093. hideRowsList.Add(Row + startIndex + HideRows);
  7094. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7095. }
  7096. HideRows += 2;
  7097. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  7098. if (leftBindData != null)
  7099. {
  7100. designer.SetDataSource("BXDRCB", leftBindData.cb);
  7101. designer.SetDataSource("BXRS", leftBindData.rs);
  7102. designer.SetDataSource("BXXS", leftBindData.xs);
  7103. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7104. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7105. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7106. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7107. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7108. }
  7109. else
  7110. {
  7111. hideRowsList.Add(Row + startIndex + HideRows);
  7112. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7113. }
  7114. HideRows += 2;
  7115. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7116. if (leftBindData != null)
  7117. {
  7118. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7119. designer.SetDataSource("HSRS", leftBindData.rs);
  7120. designer.SetDataSource("HSXS", leftBindData.xs);
  7121. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7122. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7123. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7124. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7125. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7126. }
  7127. else
  7128. {
  7129. hideRowsList.Add(Row + startIndex + HideRows);
  7130. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7131. }
  7132. HideRows += 2;
  7133. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7134. if (leftBindData != null)
  7135. {
  7136. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7137. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7138. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7139. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7140. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7141. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7142. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7143. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7144. }
  7145. else
  7146. {
  7147. hideRowsList.Add(Row + startIndex + HideRows);
  7148. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7149. }
  7150. HideRows += 2;
  7151. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7152. if (leftBindData != null)
  7153. {
  7154. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7155. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7156. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7157. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7158. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7159. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7160. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7161. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7162. }
  7163. else
  7164. {
  7165. hideRowsList.Add(Row + startIndex + HideRows);
  7166. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7167. }
  7168. HideRows += 2;
  7169. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("头等舱"));
  7170. if (leftBindData != null)
  7171. {
  7172. designer.SetDataSource("JPTDCCB", leftBindData.cb);
  7173. designer.SetDataSource("JPTDCPNum", leftBindData.rs);
  7174. designer.SetDataSource("JPTDCXS", leftBindData.xs);
  7175. designer.SetDataSource("JPTDCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7176. designer.SetDataSource("JPTDCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7177. designer.SetDataSource("JPTDCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7178. designer.SetDataSource("JPTDCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7179. designer.SetDataSource("JPTDCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7180. }
  7181. else
  7182. {
  7183. hideRowsList.Add(Row + startIndex + HideRows);
  7184. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7185. }
  7186. HideRows += 2;
  7187. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7188. if (leftBindData != null)
  7189. {
  7190. ////TBR
  7191. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7192. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7193. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7194. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7195. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7196. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7197. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7198. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7199. }
  7200. else
  7201. {
  7202. hideRowsList.Add(Row + startIndex + HideRows);
  7203. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7204. }
  7205. HideRows += 2;
  7206. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7207. if (leftBindData != null)
  7208. {
  7209. ////SGR
  7210. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7211. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7212. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7213. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7214. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7215. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7216. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7217. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7218. }
  7219. else
  7220. {
  7221. hideRowsList.Add(Row + startIndex + HideRows);
  7222. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7223. }
  7224. HideRows += 2;
  7225. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7226. if (leftBindData != null)
  7227. {
  7228. ////JS/ES
  7229. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7230. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7231. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7232. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7233. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7234. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7235. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7236. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7237. }
  7238. else
  7239. {
  7240. hideRowsList.Add(Row + startIndex + HideRows);
  7241. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7242. }
  7243. HideRows += 2;
  7244. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7245. if (leftBindData != null)
  7246. {
  7247. ////SUITE
  7248. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7249. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7250. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7251. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7252. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7253. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7254. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7255. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7256. }
  7257. else
  7258. {
  7259. hideRowsList.Add(Row + startIndex + HideRows);
  7260. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7261. }
  7262. HideRows += 2;
  7263. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7264. if (leftBindData != null)
  7265. {
  7266. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7267. designer.SetDataSource("DJRS", leftBindData.rs);
  7268. designer.SetDataSource("DJXS", leftBindData.xs);
  7269. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7270. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7271. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7272. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7273. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7274. }
  7275. else
  7276. {
  7277. hideRowsList.Add(Row + startIndex + HideRows);
  7278. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7279. }
  7280. HideRows += 2;
  7281. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7282. if (leftBindData != null)
  7283. {
  7284. designer.SetDataSource("HCPCB", leftBindData.cb);
  7285. designer.SetDataSource("HCPRS", leftBindData.rs);
  7286. designer.SetDataSource("HCPXS", leftBindData.xs);
  7287. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7288. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7289. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7290. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7291. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7292. }
  7293. else
  7294. {
  7295. hideRowsList.Add(Row + startIndex + HideRows);
  7296. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7297. }
  7298. HideRows += 2;
  7299. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7300. if (leftBindData != null)
  7301. {
  7302. designer.SetDataSource("CPCB", leftBindData.cb);
  7303. designer.SetDataSource("CPRS", leftBindData.rs);
  7304. designer.SetDataSource("CPXS", leftBindData.xs);
  7305. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7306. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7307. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7308. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7309. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7310. }
  7311. else
  7312. {
  7313. hideRowsList.Add(Row + startIndex + HideRows);
  7314. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7315. }
  7316. HideRows += 2;
  7317. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7318. if (leftBindData != null)
  7319. {
  7320. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7321. designer.SetDataSource("GWRS", leftBindData.rs);
  7322. designer.SetDataSource("GWXS", leftBindData.xs);
  7323. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7324. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7325. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7326. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7327. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7328. }
  7329. else
  7330. {
  7331. hideRowsList.Add(Row + startIndex + HideRows);
  7332. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7333. }
  7334. HideRows += 2;
  7335. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7336. if (leftBindData != null)
  7337. {
  7338. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7339. designer.SetDataSource("LYJRS", leftBindData.rs);
  7340. designer.SetDataSource("LYJXS", leftBindData.xs);
  7341. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7342. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7343. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7344. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7345. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7346. }
  7347. else
  7348. {
  7349. hideRowsList.Add(Row + startIndex + HideRows);
  7350. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7351. }
  7352. #endregion
  7353. #region A段Right信息
  7354. var right = dto.rightInfo.Find(x => x.Type == "A");
  7355. if (right == null)
  7356. {
  7357. return Ok(jw);
  7358. }
  7359. HideRows += 4;
  7360. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7361. if (rightBindData != null)
  7362. {
  7363. //经济舱 + 双人间 TBR
  7364. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7365. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7366. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7367. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7368. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7369. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7370. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7371. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7372. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7373. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7374. }
  7375. else
  7376. {
  7377. hideRowsList.Add(Row + startIndex + HideRows);
  7378. }
  7379. HideRows += 2;
  7380. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7381. if (rightBindData != null)
  7382. {
  7383. //经济舱 + 单人间 SGR
  7384. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7385. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7386. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7387. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7388. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7389. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7390. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7391. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7392. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7393. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7394. }
  7395. else
  7396. {
  7397. hideRowsList.Add(Row + startIndex + HideRows);
  7398. }
  7399. HideRows += 2;
  7400. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7401. if (rightBindData != null)
  7402. {
  7403. //公务舱 + 单人间 SGR
  7404. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7405. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7406. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7407. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7408. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7409. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7410. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7411. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7412. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7413. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7414. }
  7415. else
  7416. {
  7417. hideRowsList.Add(Row + startIndex + HideRows);
  7418. }
  7419. HideRows += 2;
  7420. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7421. if (rightBindData != null)
  7422. {
  7423. //公务舱 + 小套房 JSES
  7424. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7425. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7426. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7427. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7428. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7429. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7430. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7431. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7432. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7433. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7434. }
  7435. else
  7436. {
  7437. hideRowsList.Add(Row + startIndex + HideRows);
  7438. }
  7439. HideRows += 2;
  7440. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7441. if (rightBindData != null)
  7442. {
  7443. //公务舱 + 小套房 JSES
  7444. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7445. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7446. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7447. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7448. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7449. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7450. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7451. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7452. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7453. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7454. }
  7455. else
  7456. {
  7457. hideRowsList.Add(Row + startIndex + HideRows);
  7458. }
  7459. HideRows += 2;
  7460. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7461. if (rightBindData != null)
  7462. {
  7463. //经济舱 + 大套房
  7464. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7465. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7466. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7467. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7468. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7469. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7470. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7471. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7472. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7473. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7474. }
  7475. else
  7476. {
  7477. hideRowsList.Add(Row + startIndex + HideRows);
  7478. }
  7479. HideRows += 2;
  7480. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 JS/ES"));
  7481. if (rightBindData != null)
  7482. {
  7483. //头等舱 + 小套房 JSES
  7484. designer.SetDataSource("lblTDCJSESDRCB", rightBindData.cb);
  7485. designer.SetDataSource("txtTDCJSESRS", rightBindData.rs);
  7486. designer.SetDataSource("lblTDCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7487. designer.SetDataSource("lblTDCJSESDRBJ", rightBindData.bj);
  7488. designer.SetDataSource("lblTDCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7489. designer.SetDataSource("lblTDCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7490. designer.SetDataSource("lblTDCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7491. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7492. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7493. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7494. }
  7495. else
  7496. {
  7497. hideRowsList.Add(Row + startIndex + HideRows);
  7498. }
  7499. HideRows += 2;
  7500. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 SUITE"));
  7501. if (rightBindData != null)
  7502. {
  7503. //头等舱 + 大套房
  7504. designer.SetDataSource("lblTDCSUITEDRCB", rightBindData.cb);
  7505. designer.SetDataSource("txtTDCSUITERS", rightBindData.rs);
  7506. designer.SetDataSource("lblTDCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7507. designer.SetDataSource("lblTDCSUITEDRBJ", rightBindData.bj);
  7508. designer.SetDataSource("lblTDCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7509. designer.SetDataSource("lblTDCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7510. designer.SetDataSource("lblTDCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7511. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7512. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7513. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7514. }
  7515. else
  7516. {
  7517. hideRowsList.Add(Row + startIndex + HideRows);
  7518. }
  7519. #endregion
  7520. #region B段标题清空
  7521. designer.SetDataSource("CostBDRCB", "");
  7522. designer.SetDataSource("CostBRS", "");
  7523. designer.SetDataSource("CostBXS", "");
  7524. designer.SetDataSource("CostBZCB", "");
  7525. designer.SetDataSource("CostBDRBJ", "");
  7526. designer.SetDataSource("CostBZBJ", "");
  7527. designer.SetDataSource("CostBDRLR", "");
  7528. designer.SetDataSource("CostBZLR", "");
  7529. designer.SetDataSource("CostBDRCBOM", "");
  7530. designer.SetDataSource("CostBRSOM", "");
  7531. designer.SetDataSource("CostBZCBOM", "");
  7532. designer.SetDataSource("CostBDRBJOM", "");
  7533. designer.SetDataSource("CostBZBJOM", "");
  7534. designer.SetDataSource("CostBDRLROM", "");
  7535. designer.SetDataSource("CostBZLROM", "");
  7536. #endregion
  7537. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7538. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7539. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7540. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7541. designer.SetDataSource("DJName", "地接(CNY)");
  7542. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7543. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7544. designer.SetDataSource("GWName", "公务(CNY)");
  7545. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7546. designer.SetDataSource("LYJName", "零用金(CNY)");
  7547. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7548. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7549. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7550. designer.SetDataSource("AirTDCName", "机票-头等舱(CNY)");
  7551. designer.SetDataSource("BXName", "保险(CNY)");
  7552. designer.SetDataSource("VisaName", "签证(CNY)");
  7553. #region B段基本数据
  7554. if (dto.costType == "B")
  7555. {
  7556. left = dto.leftInfo.Find(x => x.Type == "B");
  7557. if (left == null)
  7558. {
  7559. return Ok(jw);
  7560. }
  7561. #region B段left数据
  7562. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7563. if (leftBindData != null)
  7564. {
  7565. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7566. designer.SetDataSource("BHSRS", leftBindData.rs);
  7567. designer.SetDataSource("BHSXS", leftBindData.xs);
  7568. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7569. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7570. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7571. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7572. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7573. }
  7574. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7575. if (leftBindData != null)
  7576. {
  7577. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7578. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7579. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7580. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7581. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7582. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7583. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7584. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7585. }
  7586. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7587. if (leftBindData != null)
  7588. {
  7589. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7590. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7591. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7592. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7593. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7594. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7595. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7596. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7597. }
  7598. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7599. if (leftBindData != null)
  7600. {
  7601. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7602. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7603. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7604. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7605. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7606. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7607. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7608. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7609. }
  7610. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7611. if (leftBindData != null)
  7612. {
  7613. designer.SetDataSource("BCPCB", leftBindData.cb);
  7614. designer.SetDataSource("BCPRS", leftBindData.rs);
  7615. designer.SetDataSource("BCPXS", leftBindData.xs);
  7616. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7617. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7618. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7619. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7620. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7621. }
  7622. //TBR
  7623. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7624. if (leftBindData != null)
  7625. {
  7626. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7627. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7628. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7629. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7630. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7631. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7632. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7633. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7634. }
  7635. //SGR
  7636. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7637. if (leftBindData != null)
  7638. {
  7639. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7640. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7641. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7642. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7643. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7644. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7645. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7646. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7647. }
  7648. //JS/ES
  7649. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7650. if (leftBindData != null)
  7651. {
  7652. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7653. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7654. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7655. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7656. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7657. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7658. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7659. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7660. }
  7661. //SUITE
  7662. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7663. if (leftBindData != null)
  7664. {
  7665. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7666. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7667. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7668. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7669. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7670. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7671. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7672. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7673. }
  7674. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7675. if (leftBindData != null)
  7676. {
  7677. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7678. designer.SetDataSource("BDJRS", leftBindData.rs);
  7679. designer.SetDataSource("BDJXS", leftBindData.xs);
  7680. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7681. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7682. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7683. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7684. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7685. }
  7686. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7687. if (leftBindData != null)
  7688. {
  7689. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7690. designer.SetDataSource("BGWRS", leftBindData.rs);
  7691. designer.SetDataSource("BGWXS", leftBindData.xs);
  7692. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7693. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7694. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7695. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7696. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7697. }
  7698. #region 优化方案
  7699. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7700. //excelBind.Add("零用金", new {
  7701. //cb="",
  7702. //rs="",
  7703. //xs ="",
  7704. //zcb = "",
  7705. //});
  7706. #endregion
  7707. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7708. if (leftBindData != null)
  7709. {
  7710. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7711. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7712. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7713. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7714. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7715. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7716. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7717. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7718. }
  7719. #endregion
  7720. #region B段Right信息
  7721. right = dto.rightInfo.Find(x => x.Type == "B");
  7722. if (right == null)
  7723. {
  7724. return Ok(jw);
  7725. }
  7726. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7727. if (rightBindData != null)
  7728. {
  7729. //经济舱 + 双人间 TBR
  7730. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7731. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7732. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7733. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7734. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7735. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7736. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7737. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7738. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7739. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7740. }
  7741. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7742. if (rightBindData != null)
  7743. {
  7744. //经济舱 + 单人间 SGR
  7745. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7746. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7747. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7748. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7749. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7750. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7751. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7752. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7753. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7754. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7755. }
  7756. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7757. if (rightBindData != null)
  7758. {
  7759. //公务舱 + 单人间 SGR
  7760. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7761. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7762. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7763. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7764. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7765. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7766. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7767. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7768. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7769. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7770. }
  7771. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7772. if (rightBindData != null)
  7773. {
  7774. //公务舱 + 小套房 JSES
  7775. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7776. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7777. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7778. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7779. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7780. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7781. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7782. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7783. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7784. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7785. }
  7786. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7787. if (rightBindData != null)
  7788. {
  7789. //公务舱 + 小套房 JSES
  7790. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7791. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7792. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7793. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7794. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7795. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7796. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7797. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7798. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7799. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7800. }
  7801. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7802. if (rightBindData != null)
  7803. {
  7804. //经济舱 + 大套房
  7805. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7806. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7807. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7808. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7809. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7810. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7811. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7812. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7813. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7814. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7815. }
  7816. #endregion
  7817. #region 标题
  7818. designer.SetDataSource("CostBDRCB", "单人成本");
  7819. designer.SetDataSource("CostBRS", "人数");
  7820. designer.SetDataSource("CostBXS", "系数");
  7821. designer.SetDataSource("CostBZCB", "总成本");
  7822. designer.SetDataSource("CostBDRBJ", "单人报价");
  7823. designer.SetDataSource("CostBZBJ", "总报价");
  7824. designer.SetDataSource("CostBDRLR", "单人利润");
  7825. designer.SetDataSource("CostBZLR", "总利润");
  7826. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7827. designer.SetDataSource("CostBRSOM", "人数");
  7828. designer.SetDataSource("CostBZCBOM", "总成本");
  7829. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7830. designer.SetDataSource("CostBZBJOM", "总报价");
  7831. designer.SetDataSource("CostBDRLROM", "单人利润");
  7832. designer.SetDataSource("CostBZLROM", "总利润");
  7833. #endregion
  7834. }
  7835. #endregion
  7836. designer.SetDataSource("TzZCB2", TzZCB2);
  7837. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7838. designer.SetDataSource("TzZLR2", TzZLR2);
  7839. string[] dataSourceKeys = new string[]
  7840. {
  7841. "VF",
  7842. "TGS",
  7843. "TGOF",
  7844. "TGM",
  7845. "TGA",
  7846. "TGTF",
  7847. "TGEF",
  7848. "CFM",
  7849. "CFOF",
  7850. "B",
  7851. "L",
  7852. "D",
  7853. "TBR",
  7854. "SGR",
  7855. "JSES",
  7856. "Suite",
  7857. "TV",
  7858. "1L",
  7859. "IF",
  7860. "EF",
  7861. "BRF",
  7862. "TE",
  7863. "TGT",
  7864. "DRVT",
  7865. "PC",
  7866. "TLF",
  7867. "ECT"
  7868. };
  7869. foreach (var item in dataSourceKeys)
  7870. {
  7871. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7872. if (find != null)
  7873. {
  7874. designer.SetDataSource(item, find.text);
  7875. }
  7876. else
  7877. {
  7878. designer.SetDataSource(item, 0);
  7879. }
  7880. }
  7881. designer.SetDataSource(dt);
  7882. //根据数据源处理生成报表内容
  7883. designer.Process();
  7884. designer.Workbook.Worksheets[0].Name = "清单";
  7885. Worksheet sheet = designer.Workbook.Worksheets[0];
  7886. foreach (var Rowindex in hideRowsList)
  7887. {
  7888. ws.Cells.HideRows(Rowindex, 2);
  7889. }
  7890. byte[] bytes = null;
  7891. string strFileName = di.TeamName + "-团组-成本.xls";
  7892. using (MemoryStream stream = new MemoryStream())
  7893. {
  7894. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7895. bytes = stream.ToArray();
  7896. }
  7897. return Ok(JsonView(true, "", new
  7898. {
  7899. Data = bytes,
  7900. strFileName,
  7901. }));
  7902. }
  7903. /// <summary>
  7904. /// 导出客户报表
  7905. /// </summary>
  7906. /// <returns></returns>
  7907. [HttpPost]
  7908. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7909. {
  7910. var jw = JsonView(false);
  7911. if (dto.Diid == 0)
  7912. {
  7913. return Ok(JsonView(false, "请传递团组id"));
  7914. }
  7915. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7916. if (deleInfo.Code != 0)
  7917. {
  7918. return Ok(JsonView(false, "团组信息查询失败!"));
  7919. }
  7920. var di = deleInfo.Data as DelegationInfoWebView;
  7921. if (di == null)
  7922. {
  7923. return Ok(JsonView(false, "团组信息查询失败!"));
  7924. }
  7925. //文件名
  7926. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7927. //获取模板
  7928. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7929. //载入模板
  7930. Document doc = new Document(tmppath);
  7931. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7932. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7933. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7934. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7935. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7936. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7937. if (AParameter == null)
  7938. {
  7939. return Ok(JsonView(false, "系数不存在!"));
  7940. }
  7941. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7942. , TzAirDesc, TzZCost;
  7943. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7944. = TzAirDesc = TzZCost = string.Empty;
  7945. TzNumber = AParameter.CostTypenumber.ToString();
  7946. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7947. CarGuides1 = dto.CarGuides1;
  7948. Meal = dto.Meal;
  7949. SubsidizedMeals = dto.SubsidizedMeals;
  7950. NightRepair = dto.NightRepair;
  7951. AttractionsTickets = dto.AttractionsTickets;
  7952. MiscellaneousFees = dto.MiscellaneousFees;
  7953. ATip = dto.ATip;
  7954. TzHotelDesc = "";
  7955. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7956. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7957. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7958. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7959. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7960. TzAirDesc = "";
  7961. TzZCost = dto.TzZCost;
  7962. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7963. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7964. var index = 1;
  7965. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7966. foreach (var item in TzHotelDescArr)
  7967. {
  7968. if (AinfoArr != null)
  7969. {
  7970. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7971. if (Ainfo != null)
  7972. {
  7973. if (int.Parse(Ainfo.rs) <= 0)
  7974. {
  7975. continue;
  7976. }
  7977. var hotelText = string.Empty;
  7978. switch (item)
  7979. {
  7980. case "SGR":
  7981. hotelText = "单人间";
  7982. break;
  7983. case "JSES":
  7984. hotelText = "小套房";
  7985. break;
  7986. case "SUITE":
  7987. hotelText = "套房";
  7988. break;
  7989. case "TBR":
  7990. hotelText = "双人间";
  7991. break;
  7992. }
  7993. if (item != "TBR")
  7994. {
  7995. 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";
  7996. }
  7997. else
  7998. {
  7999. 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";
  8000. }
  8001. index++;
  8002. }
  8003. }
  8004. }
  8005. index = 1;
  8006. foreach (var item in TzAirDescArr)
  8007. {
  8008. if (AinfoArr != null)
  8009. {
  8010. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8011. if (Ainfo != null)
  8012. {
  8013. if (int.Parse(Ainfo.rs) <= 0)
  8014. {
  8015. continue;
  8016. }
  8017. 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";
  8018. index++;
  8019. }
  8020. }
  8021. }
  8022. if (dto.costType == "B")
  8023. {
  8024. if (BParameter == null)
  8025. {
  8026. return Ok(JsonView(false, "B段系数不存在!"));
  8027. }
  8028. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  8029. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  8030. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  8031. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  8032. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  8033. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  8034. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  8035. foreach (var item in TzHotelDescArr)
  8036. {
  8037. if (AinfoArr != null)
  8038. {
  8039. TzHotelDesc += "B段信息 \r\n";
  8040. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8041. if (Ainfo != null)
  8042. {
  8043. if (int.Parse(Ainfo.rs) <= 0)
  8044. {
  8045. continue;
  8046. }
  8047. var hotelText = string.Empty;
  8048. switch (item)
  8049. {
  8050. case "SGR":
  8051. hotelText = "单人间";
  8052. break;
  8053. case "JSES":
  8054. hotelText = "小套房";
  8055. break;
  8056. case "SUITE":
  8057. hotelText = "套房";
  8058. break;
  8059. case "TBR":
  8060. hotelText = "双人间";
  8061. break;
  8062. }
  8063. if (item != "TBR")
  8064. {
  8065. 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";
  8066. }
  8067. else
  8068. {
  8069. 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";
  8070. }
  8071. index++;
  8072. }
  8073. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  8074. }
  8075. }
  8076. index = 1;
  8077. foreach (var item in TzAirDescArr)
  8078. {
  8079. if (AinfoArr != null)
  8080. {
  8081. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8082. if (Ainfo != null)
  8083. {
  8084. if (int.Parse(Ainfo.rs) <= 0)
  8085. {
  8086. continue;
  8087. }
  8088. 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";
  8089. index++;
  8090. }
  8091. }
  8092. }
  8093. }
  8094. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  8095. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  8096. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  8097. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  8098. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  8099. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  8100. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  8101. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  8102. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  8103. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  8104. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  8105. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  8106. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  8107. DickeyValue.Add("Visa", Visa); // 签证单人报价
  8108. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  8109. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  8110. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  8111. DickeyValue.Add("TzZCost", TzZCost);
  8112. foreach (var key in DickeyValue.Keys)
  8113. {
  8114. if (doc.Range.Bookmarks[key] != null)
  8115. {
  8116. Bookmark mark = doc.Range.Bookmarks[key];
  8117. mark.Text = DickeyValue[key];
  8118. }
  8119. }
  8120. byte[] bytes = null;
  8121. string strFileName = di.TeamName + "-客户报价.doc";
  8122. using (MemoryStream stream = new MemoryStream())
  8123. {
  8124. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  8125. bytes = stream.ToArray();
  8126. }
  8127. return Ok(JsonView(true, "", new
  8128. {
  8129. Data = bytes,
  8130. strFileName,
  8131. }));
  8132. }
  8133. /// <summary>
  8134. /// 团组成本 各模块(酒店,地接,机票)成本提示
  8135. /// </summary>
  8136. /// <param name="dto"></param>
  8137. /// <returns></returns>
  8138. [HttpPost]
  8139. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8140. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  8141. {
  8142. try
  8143. {
  8144. #region 参数验证
  8145. if (dto.DiId < 0)
  8146. {
  8147. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  8148. }
  8149. List<int> cTableIds = new List<int>() {
  8150. 76 ,//酒店预订
  8151. 77 ,//行程
  8152. 79 ,//车/导游地接
  8153. 80 ,//签证
  8154. 81 ,//邀请/公务活
  8155. 82 ,//团组客户保险
  8156. 85 ,//机票预订
  8157. 98 ,//其他款项
  8158. 285 ,//收款退还
  8159. 751 ,//酒店早餐
  8160. 1015 // 超支费用
  8161. };
  8162. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  8163. {
  8164. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  8165. }
  8166. #endregion
  8167. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  8168. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  8169. if (_GroupCostParameters.Count <= 0)
  8170. {
  8171. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  8172. }
  8173. if (_GroupCostParameters[0].IsShare == 0)
  8174. {
  8175. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  8176. }
  8177. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8178. //处理date为空问题
  8179. if (_GroupCosts.Count > 0)
  8180. {
  8181. for (int i = 0; i < _GroupCosts.Count; i++)
  8182. {
  8183. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8184. {
  8185. if (i > 0)
  8186. {
  8187. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8188. }
  8189. }
  8190. }
  8191. }
  8192. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8193. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8194. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8195. string currCode = "";
  8196. #region currCode 验证
  8197. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8198. if (isInt)
  8199. {
  8200. var currData = currDatas.Find(it => it.Id == intCurrency);
  8201. if (currData != null)
  8202. {
  8203. currCode = currData.Name;
  8204. }
  8205. }
  8206. else
  8207. {
  8208. currCode = _GroupCostParameters[0].Currency.Trim();
  8209. }
  8210. #endregion
  8211. //op,酒店单段模式存储
  8212. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8213. {
  8214. CurrencyCode = currCode,
  8215. Rate = _GroupCostParameters[0].Rate,
  8216. CostType = _GroupCostParameters[0].CostType,
  8217. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8218. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8219. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8220. };
  8221. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8222. if (_GroupCostParameters.Count == 2)
  8223. {
  8224. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8225. }
  8226. foreach (var item in _GroupCostParameters)
  8227. {
  8228. decimal _rate = 1;
  8229. decimal _rate1 = item.Rate;
  8230. decimal _scale = 1;
  8231. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8232. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8233. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8234. //if (userInfo != null)
  8235. //{
  8236. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8237. // {
  8238. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8239. // {
  8240. // _scale = 1.00M;
  8241. // }
  8242. // }
  8243. //}
  8244. #endregion
  8245. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8246. {
  8247. CurrencyCode = currCode,
  8248. Rate = _rate1,
  8249. CostType = item.CostType,
  8250. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8251. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8252. CostTypeNumber = item.CostTypenumber
  8253. };
  8254. if (_GroupCostParameters.Count > 1)
  8255. {
  8256. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8257. }
  8258. else
  8259. {
  8260. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8261. }
  8262. if (dto.CTable == 79)//
  8263. {
  8264. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8265. modulePromptInfo.TotalCost = item.DJCB;
  8266. }
  8267. List<string> costTypes = new List<string>() { "A", "B" };
  8268. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8269. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8270. if (_GroupCostsDuplicates.Count() == 1)
  8271. {
  8272. _GroupCostsTypeData = _GroupCosts;
  8273. }
  8274. else
  8275. {
  8276. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8277. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8278. }
  8279. /*
  8280. * 76 酒店预订
  8281. * 77 行程
  8282. * 79 车/导游地接
  8283. * 80 签证
  8284. * 81 邀请/公务活动
  8285. * 82 团组客户保险
  8286. * 85 机票预订
  8287. * 98 其他款项
  8288. * 285 收款退还
  8289. * 751 酒店早餐
  8290. * 1015 超支费用
  8291. */
  8292. switch (dto.CTable)
  8293. {
  8294. case 76: // 酒店预订
  8295. _ModuleSubPromptInfo.AddRange(
  8296. _GroupCostsTypeData.Select(it => new
  8297. {
  8298. it.DAY,
  8299. it.Date,
  8300. it.ACCON,
  8301. it.ITIN,
  8302. it.SGR,
  8303. it.TBR,
  8304. it.JS_ES,
  8305. it.Suite
  8306. })
  8307. );
  8308. break;
  8309. case 79: // 车/导游地接
  8310. _ModuleSubPromptInfo.AddRange(
  8311. _GroupCostsTypeData.Select(it => new
  8312. {
  8313. Date = it.Date, //日期
  8314. CarFee = it.CarCost * _rate * _scale, //车费用
  8315. CarType = it.CarType, //车型
  8316. DriverFee = it.CFS * _rate * _scale, //司机工资
  8317. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8318. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8319. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8320. GuideFee = it.TGS * _rate * _scale, //导游费用
  8321. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8322. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8323. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8324. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8325. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8326. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8327. Breakfast = it.B * _rate * _scale, //早餐费
  8328. Lunch = it.L * _rate * _scale, //午餐费
  8329. Dinner = it.D * _rate * _scale, //晚餐费
  8330. OfficialActivitiesFee = it.TV * _rate * _scale,//会务活动费 --新加
  8331. OfficialTransFee = it.IF * _rate * _scale, //公务翻译费 --新加
  8332. InvitationFee = it.iL * _rate * _scale, //邀请函费用 --新加
  8333. TicketFee = it.EF * _rate * _scale, //门票费
  8334. TicketRemark = it.EFR, //门票费描述
  8335. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8336. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8337. SpentCash = it.PC * _rate * _scale, //零用金
  8338. LeadersFee = it.TLF * _rate * _scale, //领队费
  8339. ActivitiesFee = it.ECT * _rate * _scale, //会务费 --新加
  8340. })
  8341. );
  8342. break;
  8343. case 85: // 机票
  8344. List<dynamic> datas = new List<dynamic>();
  8345. datas.Add(
  8346. new
  8347. {
  8348. AirType = "经济舱",
  8349. AirNum = item.JJCRS,
  8350. AirDRCB = item.JJCCB,
  8351. AirZCB = (item.JJCRS * item.JJCCB)
  8352. }
  8353. );
  8354. datas.Add(
  8355. new
  8356. {
  8357. AirType = "公务舱",
  8358. AirNum = item.GWCRS,
  8359. AirDRCB = item.GWCCB,
  8360. AirZCB = (item.GWCRS * item.GWCCB)
  8361. }
  8362. );
  8363. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8364. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8365. modulePromptInfo.Data = new
  8366. {
  8367. airFeeData = datas,
  8368. airInitData = initDatas
  8369. };
  8370. _ModulePromptInfos.Add(modulePromptInfo);
  8371. break;
  8372. default:
  8373. break;
  8374. }
  8375. }
  8376. if (dto.CTable != 85)
  8377. {
  8378. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8379. _ModulePromptInfos.Add(_ModulePromptInfo);
  8380. }
  8381. _view.ModulePromptInfos = _ModulePromptInfos;
  8382. return Ok(JsonView(true, "操作成功!", _view));
  8383. }
  8384. catch (Exception ex)
  8385. {
  8386. return Ok(JsonView(false, ex.Message));
  8387. }
  8388. }
  8389. /// <summary>
  8390. /// 根据黑屏代码重新生成行程
  8391. /// </summary>
  8392. /// <param name="dto"></param>
  8393. /// <returns></returns>
  8394. [HttpPost]
  8395. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8396. {
  8397. var jw = JsonView(false);
  8398. var Create = _GroupCostRepository.
  8399. CreateGroupCostByBlackCode(dto.Diid);
  8400. jw.Msg = Create.Msg;
  8401. if (Create.Code == 0)
  8402. {
  8403. jw.Code = 200;
  8404. jw.Data = new
  8405. {
  8406. groupCost = Create.Data,
  8407. blackCodeIsTrue = true
  8408. };
  8409. }
  8410. else
  8411. {
  8412. jw.Code = 400;
  8413. jw.Data = new
  8414. {
  8415. groupCost = Create.Data,
  8416. blackCodeIsTrue = false,
  8417. };
  8418. }
  8419. return Ok(jw);
  8420. }
  8421. /// <summary>
  8422. /// 成本获取OP历史车费用
  8423. /// </summary>
  8424. /// <param name="dto"></param>
  8425. /// <returns></returns>
  8426. [HttpPost]
  8427. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8428. {
  8429. var jw = JsonView(false);
  8430. try
  8431. {
  8432. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8433. //获取现有所有车的数据
  8434. if (!dto.Param.IsNullOrWhiteSpace())
  8435. {
  8436. string sql = $@"
  8437. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8438. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8439. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8440. 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
  8441. AND gctggr.ServiceEndTime is not NULL
  8442. ORDER by gctggrc.id DESC
  8443. ";
  8444. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8445. var numeberResult = await Task.Run(() =>
  8446. {
  8447. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8448. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8449. return numberArr;
  8450. });
  8451. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8452. foreach (var item in numeberResult)
  8453. {
  8454. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8455. {
  8456. Country = "数据异常!",
  8457. City = string.Empty,
  8458. };
  8459. item.Area = find.Country + " " + find.City;
  8460. }
  8461. dbResult.AddRange(numeberResult);
  8462. if (dto.Param.Contains("、"))
  8463. {
  8464. var sp = dto.Param.Split("、");
  8465. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8466. .Where(x =>
  8467. {
  8468. return System.Array.Exists(sp, e =>
  8469. {
  8470. bool where = false;
  8471. if (x.Area != null)
  8472. {
  8473. where = x.Area.Contains(e);
  8474. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8475. {
  8476. return false;
  8477. }
  8478. }
  8479. if (x.PriceName != null && !where)
  8480. {
  8481. where = x.PriceName.Contains(e);
  8482. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8483. {
  8484. return false;
  8485. }
  8486. }
  8487. return where;
  8488. });
  8489. }).ToList();
  8490. }
  8491. else
  8492. {
  8493. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8494. .Where(x =>
  8495. {
  8496. bool where = false;
  8497. if (x.Area != null)
  8498. {
  8499. where = x.Area.Contains(dto.Param);
  8500. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8501. {
  8502. return false;
  8503. }
  8504. }
  8505. if (x.PriceName != null && !where)
  8506. {
  8507. where = x.PriceName.Contains(dto.Param);
  8508. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8509. {
  8510. return false;
  8511. }
  8512. }
  8513. return where;
  8514. }
  8515. )
  8516. .ToList();
  8517. }
  8518. }
  8519. var view = dbResult.Select(x =>
  8520. {
  8521. decimal dp = 0.00M;
  8522. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8523. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8524. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8525. {
  8526. if (startB && endB)
  8527. {
  8528. var timesp = endD.Subtract(startD);
  8529. if ((timesp.Days + 1) != 0)
  8530. {
  8531. dp = x.Price / (timesp.Days + 1);
  8532. }
  8533. }
  8534. }
  8535. else
  8536. {
  8537. dp = x.Price;
  8538. }
  8539. return new
  8540. {
  8541. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8542. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8543. x.Area,
  8544. x.id,
  8545. price = x.Price.ToString("F2"),
  8546. x.PriceName,
  8547. x.PriceContent,
  8548. x.TeamName,
  8549. x.DatePrice,
  8550. dayPrice = dp.ToString("F2"),
  8551. };
  8552. }).OrderByDescending(x => x.id).ToList();
  8553. jw = JsonView(true, "获取成功!", view);
  8554. }
  8555. catch (Exception e)
  8556. {
  8557. jw = JsonView(false, e.Message);
  8558. }
  8559. return Ok(jw);
  8560. }
  8561. #endregion
  8562. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8563. /// <summary>
  8564. /// 酒店预订
  8565. /// 酒店费用列表 根据团组Id查询
  8566. /// </summary>
  8567. /// <param name="_dto"></param>
  8568. /// <returns></returns>
  8569. [HttpPost]
  8570. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8571. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8572. {
  8573. #region 参数验证
  8574. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8575. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8576. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8577. #region 团组操作权限验证 76 酒店预定模块
  8578. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8579. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8580. #endregion
  8581. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8582. #region 页面操作权限验证
  8583. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8584. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8585. #endregion
  8586. #endregion
  8587. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8588. }
  8589. /// <summary>
  8590. /// 酒店预订
  8591. /// 基础数据
  8592. /// </summary>
  8593. /// <param name="_dto"></param>
  8594. /// <returns></returns>
  8595. [HttpPost]
  8596. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8597. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8598. {
  8599. #region 参数验证
  8600. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8601. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8602. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8603. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8604. #region 页面操作权限验证
  8605. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8606. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8607. #endregion
  8608. #region 团组操作权限验证 76 酒店预定模块
  8609. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8610. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8611. #endregion
  8612. #endregion
  8613. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8614. }
  8615. /// <summary>
  8616. /// 酒店预订
  8617. /// 创建 入住卷号码
  8618. /// </summary>
  8619. /// <param name="_dto"></param>
  8620. /// <returns></returns>
  8621. [HttpPost]
  8622. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8623. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8624. {
  8625. try
  8626. {
  8627. #region 参数验证
  8628. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8629. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8630. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8631. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8632. #region 页面操作权限验证
  8633. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8634. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8635. #endregion
  8636. #region 团组操作权限验证 76 酒店预定模块
  8637. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8638. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8639. #endregion
  8640. #endregion
  8641. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8642. if (data.Code != 0)
  8643. {
  8644. return Ok(JsonView(false, data.Msg));
  8645. }
  8646. return Ok(JsonView(true, data.Msg, data.Data));
  8647. }
  8648. catch (Exception ex)
  8649. {
  8650. return Ok(JsonView(false, ex.Message));
  8651. }
  8652. }
  8653. /// <summary>
  8654. /// 酒店预订
  8655. /// 详情
  8656. /// </summary>
  8657. /// <param name="_dto"></param>
  8658. /// <returns></returns>
  8659. [HttpPost]
  8660. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8661. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8662. {
  8663. #region 参数验证
  8664. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8665. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8666. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8667. #region 团组操作权限验证 76 酒店预定模块
  8668. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8669. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8670. #endregion
  8671. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8672. #region 页面操作权限验证
  8673. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8674. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8675. #endregion
  8676. #endregion
  8677. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8678. }
  8679. /// <summary>
  8680. /// 酒店预订
  8681. /// Add Or Edit
  8682. /// </summary>
  8683. /// <param name="_dto"></param>
  8684. /// <returns></returns>
  8685. [HttpPost]
  8686. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8687. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8688. {
  8689. #region 参数验证
  8690. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8691. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8692. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8693. #region 团组操作权限验证 76 酒店预定模块
  8694. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8695. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8696. #endregion
  8697. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8698. #region 页面操作权限验证
  8699. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8700. if (_dto.Id == 0) // Add
  8701. {
  8702. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8703. }
  8704. else if (_dto.Id > 1) // Edit
  8705. {
  8706. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8707. }
  8708. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8709. #endregion
  8710. #endregion
  8711. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8712. if (_view.Code != 200)
  8713. {
  8714. return Ok(_view);
  8715. }
  8716. #region 应用推送
  8717. try
  8718. {
  8719. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8720. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8721. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8722. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8723. //自动审核
  8724. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8725. }
  8726. catch (Exception ex)
  8727. {
  8728. }
  8729. #endregion
  8730. return Ok(_view);
  8731. }
  8732. /// <summary>
  8733. /// 酒店预订
  8734. /// Del
  8735. /// </summary>
  8736. /// <param name="_dto"></param>
  8737. /// <returns></returns>
  8738. [HttpPost]
  8739. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8740. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8741. {
  8742. #region 参数验证
  8743. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8744. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8745. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8746. #region 团组操作权限验证 76 酒店预定模块
  8747. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8748. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8749. #endregion
  8750. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8751. #region 页面操作权限验证
  8752. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8753. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8754. #endregion
  8755. #endregion
  8756. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8757. }
  8758. /// <summary>
  8759. /// 酒店预订
  8760. /// 生成VOUCHER
  8761. /// 2024.05.06 之前版本
  8762. /// </summary>
  8763. /// <param name="_dto"></param>
  8764. /// <returns></returns>
  8765. [HttpPost]
  8766. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8767. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8768. {
  8769. try
  8770. {
  8771. #region 参数验证
  8772. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8773. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8774. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8775. #region 团组操作权限验证 76 酒店预定模块
  8776. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8777. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8778. #endregion
  8779. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8780. #region 页面操作权限验证
  8781. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8782. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8783. #endregion
  8784. #endregion
  8785. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8786. //判断数据是否完整
  8787. if (hr != null)
  8788. {
  8789. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8790. {
  8791. string strFileName = "HotelStatement/";
  8792. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8793. if (dele != null)
  8794. strFileName += dele.TourCode;
  8795. //载入模板
  8796. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8797. Document doc = new Document(sss);
  8798. DocumentBuilder builder = new DocumentBuilder(doc);
  8799. #region 替换Word模板书签内容
  8800. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8801. //入住卷预定号码
  8802. if (doc.Range.Bookmarks["VNO"] != null)
  8803. {
  8804. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8805. mark.Text = hr.CheckNumber;
  8806. }
  8807. //酒店时间
  8808. if (doc.Range.Bookmarks["Date"] != null)
  8809. {
  8810. Bookmark mark = doc.Range.Bookmarks["Date"];
  8811. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8812. }
  8813. //团号
  8814. if (doc.Range.Bookmarks["TNo"] != null)
  8815. {
  8816. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8817. mark.Text = dele.TourCode;
  8818. }
  8819. //预定号码
  8820. if (doc.Range.Bookmarks["BookingId"] != null)
  8821. {
  8822. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8823. mark.Text = hr.ReservationsNo;
  8824. }
  8825. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8826. {
  8827. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8828. mark.Text = hr.DetermineNo;
  8829. }
  8830. //酒店城市
  8831. if (doc.Range.Bookmarks["City"] != null)
  8832. {
  8833. Bookmark mark = doc.Range.Bookmarks["City"];
  8834. mark.Text = hr.City;
  8835. }
  8836. //酒店名称
  8837. if (doc.Range.Bookmarks["HName"] != null)
  8838. {
  8839. Bookmark mark = doc.Range.Bookmarks["HName"];
  8840. mark.Text = hr.HotelName;
  8841. }
  8842. //酒店地址
  8843. if (doc.Range.Bookmarks["Address"] != null)
  8844. {
  8845. Bookmark mark = doc.Range.Bookmarks["Address"];
  8846. mark.Text = hr.HotelAddress;
  8847. }
  8848. //酒店电话
  8849. if (doc.Range.Bookmarks["Tel"] != null)
  8850. {
  8851. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8852. mark.Text = hr.HotelTel;
  8853. }
  8854. //酒店传真
  8855. if (doc.Range.Bookmarks["Fax"] != null)
  8856. {
  8857. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8858. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8859. {
  8860. mark.Text = hr.HotelFax;
  8861. }
  8862. }
  8863. //入住时间
  8864. if (doc.Range.Bookmarks["CIn"] != null)
  8865. {
  8866. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8867. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8868. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8869. }
  8870. //退房时间
  8871. if (doc.Range.Bookmarks["COut"] != null)
  8872. {
  8873. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8874. Bookmark mark = doc.Range.Bookmarks["COut"];
  8875. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8876. }
  8877. //客户名称
  8878. if (doc.Range.Bookmarks["GName"] != null)
  8879. {
  8880. string guestName = "";
  8881. string[] clients = new string[] { };
  8882. if (hr.GuestName.Contains(","))
  8883. {
  8884. clients = hr.GuestName.Split(",");
  8885. }
  8886. else
  8887. {
  8888. clients = new string[] { hr.GuestName };
  8889. }
  8890. List<int> clientIds_int = new List<int>();
  8891. if (clients.Length > 0)
  8892. {
  8893. foreach (var item in clients)
  8894. {
  8895. if (item.IsNumeric())
  8896. {
  8897. clientIds_int.Add(int.Parse(item));
  8898. }
  8899. }
  8900. }
  8901. if (clientIds_int.Count > 0)
  8902. {
  8903. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8904. foreach (var client in _clientDatas)
  8905. {
  8906. //男
  8907. if (client.Sex == 0) guestName += $"Mr.";
  8908. //女
  8909. else if (client.Sex == 1) guestName += $"Ms.";
  8910. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8911. {
  8912. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8913. }
  8914. //guestName += $"{client.Pinyin},";
  8915. }
  8916. if (guestName.Length > 0)
  8917. {
  8918. guestName = guestName.Substring(0, guestName.Length - 1);
  8919. }
  8920. }
  8921. else
  8922. {
  8923. guestName = hr.GuestName;
  8924. }
  8925. Bookmark mark = doc.Range.Bookmarks["GName"];
  8926. mark.Text = guestName;
  8927. }
  8928. //房间介绍
  8929. if (doc.Range.Bookmarks["ROOM"] != null)
  8930. {
  8931. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8932. mark.Text = hr.RoomExplanation;
  8933. }
  8934. //报价描述
  8935. if (doc.Range.Bookmarks["NOTE"] != null)
  8936. {
  8937. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8938. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8939. if (ss != null)
  8940. mark.Text = ss.Name;
  8941. }
  8942. //入住时间
  8943. if (doc.Range.Bookmarks["CheckIn"] != null)
  8944. {
  8945. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8946. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8947. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8948. }
  8949. //退房时间
  8950. if (doc.Range.Bookmarks["CheckOut"] != null)
  8951. {
  8952. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8953. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8954. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8955. }
  8956. //日期
  8957. if (doc.Range.Bookmarks["DT"] != null)
  8958. {
  8959. Bookmark mark = doc.Range.Bookmarks["DT"];
  8960. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8961. }
  8962. //名称
  8963. if (doc.Range.Bookmarks["VName"] != null)
  8964. {
  8965. Bookmark mark = doc.Range.Bookmarks["VName"];
  8966. mark.Text = hr.HotelName;
  8967. }
  8968. //号码
  8969. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8970. {
  8971. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8972. mark.Text = hr.CheckNumber;
  8973. }
  8974. #endregion
  8975. strFileName += "VOUCHER.doc";
  8976. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8977. doc.Save(fileDir);
  8978. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8979. return Ok(JsonView(true, "操作成功!", Url));
  8980. }
  8981. else
  8982. {
  8983. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8984. }
  8985. }
  8986. else
  8987. {
  8988. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8989. }
  8990. }
  8991. catch (Exception ex)
  8992. {
  8993. return Ok(JsonView(false, ex.Message));
  8994. }
  8995. }
  8996. /// <summary>
  8997. /// 酒店预订
  8998. /// 生成VOUCHER
  8999. /// 2024.05.06 之后版本
  9000. /// </summary>
  9001. /// <param name="_dto"></param>
  9002. /// <returns></returns>
  9003. [HttpPost]
  9004. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9005. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  9006. {
  9007. #region 参数验证
  9008. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9009. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9010. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9011. #region 团组操作权限验证 76 酒店预定模块
  9012. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9013. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9014. #endregion
  9015. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9016. #region 页面操作权限验证
  9017. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9018. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9019. #endregion
  9020. #endregion
  9021. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9022. //判断数据是否完整
  9023. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  9024. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9025. string strFileName = "HotelStatement/";
  9026. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9027. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  9028. #region 数据处理
  9029. List<int> guestIds = new List<int>();
  9030. int index = 0;
  9031. foreach (var item in hrDtas)
  9032. {
  9033. if (item.GuestName.Contains(","))
  9034. {
  9035. string[] guestIdArr = item.GuestName.Split(',');
  9036. foreach (var guestIdStr in guestIdArr)
  9037. {
  9038. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  9039. if (guestBool)
  9040. {
  9041. guestIds.Add(guestId);
  9042. }
  9043. }
  9044. }
  9045. else guestNames += item.GuestName;
  9046. var voucherInfo = new HotelVoucherInfoView()
  9047. {
  9048. HotelName = item.HotelName,
  9049. CheckInDate = item.CheckInDate,
  9050. CheckOutDate = item.CheckOutDate,
  9051. ConfirmationNumber = item.DetermineNo.Trim(),
  9052. RoomType = item.RoomExplanation
  9053. };
  9054. vouchers.Add(voucherInfo);
  9055. }
  9056. if (guestIds.Count > 0)
  9057. {
  9058. guestIds = guestIds.Distinct().ToList();
  9059. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  9060. if (guestDatas.Count > 0)
  9061. {
  9062. guestNames = "";
  9063. foreach (var guest in guestDatas)
  9064. {
  9065. string guestName = "";
  9066. if (guest.Sex == 0) guestName += @"MR.";
  9067. else if (guest.Sex == 1) guestName += @"MS.";
  9068. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9069. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9070. guestNames += @$"{guestName.Trim()}、";
  9071. }
  9072. if (guestNames.Length > 0)
  9073. {
  9074. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9075. }
  9076. }
  9077. }
  9078. #endregion
  9079. //载入模板
  9080. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  9081. Document doc = new Document(sss);
  9082. DocumentBuilder builder = new DocumentBuilder(doc);
  9083. if (doc.Range.Bookmarks["GuestName"] != null)
  9084. {
  9085. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9086. mark.Text = guestNames;
  9087. }
  9088. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9089. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9090. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9091. for (int i = 1; i <= vouchers.Count; i++)
  9092. {
  9093. HotelVoucherInfoView hviv = vouchers[i - 1];
  9094. builder.MoveToCell(0, i, 0, 0);
  9095. builder.Write(hviv.HotelName);
  9096. builder.MoveToCell(0, i, 1, 0);
  9097. builder.Write(hviv.CheckInDate);
  9098. builder.MoveToCell(0, i, 2, 0);
  9099. builder.Write(hviv.CheckOutDate);
  9100. builder.MoveToCell(0, i, 3, 0);
  9101. builder.Write(hviv.RoomType);
  9102. builder.MoveToCell(0, i, 4, 0);
  9103. builder.Write(hviv.ConfirmationNumber);
  9104. }
  9105. //删除多余行
  9106. int currRowIndex = vouchers.Count + 1;
  9107. int delRows = 21 - currRowIndex;
  9108. if (delRows > 0)
  9109. {
  9110. for (int i = 0; i < delRows; i++)
  9111. {
  9112. table.Rows.RemoveAt(currRowIndex);
  9113. //cultivateRowIndex++;
  9114. }
  9115. }
  9116. strFileName += "VOUCHER.docx";
  9117. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9118. doc.Save(fileDir);
  9119. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9120. return Ok(JsonView(true, "操作成功!", Url));
  9121. }
  9122. /// <summary>
  9123. /// 酒店预订
  9124. /// 生成 预定成本 Excel
  9125. /// </summary>
  9126. /// <param name="_dto"></param>
  9127. /// <returns></returns>
  9128. [HttpPost]
  9129. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9130. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9131. {
  9132. #region 参数验证
  9133. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9134. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9135. if (!vadalitorRes.IsValid)
  9136. {
  9137. var errors = new StringBuilder();
  9138. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9139. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  9140. }
  9141. #region 团组操作权限验证 76 酒店预定模块
  9142. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9143. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9144. #endregion
  9145. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9146. #region 页面操作权限验证
  9147. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9148. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9149. #endregion
  9150. #endregion
  9151. decimal _rate = 1.00M;
  9152. string _currency = "";
  9153. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9154. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9155. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  9156. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9157. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  9158. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9159. {
  9160. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  9161. }
  9162. _currency = _GroupCostParameter.Currency;
  9163. bool isIntType = int.TryParse(_currency, out int currId);
  9164. if (isIntType)
  9165. {
  9166. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9167. }
  9168. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9169. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9170. if (currInfo == null)
  9171. {
  9172. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  9173. }
  9174. if (!_currency.ToUpper().Equals("CNY"))
  9175. {
  9176. _rate = _GroupCostParameter.Rate;
  9177. }
  9178. _rate = currInfo.Rate;
  9179. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9180. string strFileName = "HotelStatement/";
  9181. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9182. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9183. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  9184. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  9185. #region 数据处理
  9186. foreach (var item in hrDtas)
  9187. {
  9188. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9189. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  9190. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  9191. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  9192. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  9193. string roomCurr = currDatas.Find(it => it.Id == roomInfo?.Currency)?.Name ?? "";
  9194. string singleRoomFeeStr = string.Empty,
  9195. doubleRoomFeeStr = string.Empty,
  9196. suiteRoomFeeStr = string.Empty,
  9197. otherRoomFeeStr = string.Empty,
  9198. payMoneyStr = string.Empty,
  9199. cardPriceStr = string.Empty;
  9200. if (roomCurr.Equals(_currency))
  9201. {
  9202. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9203. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9204. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9205. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9206. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9207. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9208. }
  9209. else
  9210. {
  9211. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9212. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9213. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9214. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9215. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9216. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9217. }
  9218. string breakfastPriceStr = string.Empty,
  9219. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9220. governmentRentStr = string.Empty,
  9221. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9222. cityTaxStrStr = string.Empty,
  9223. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9224. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  9225. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  9226. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  9227. int payDId = roomInfo?.PayDId ?? 0;
  9228. pcfds.Add(new HotelReservations_PCFD_View()
  9229. {
  9230. City = item.City,
  9231. HotelName = item.HotelName,
  9232. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9233. // SingleRoomCount = item.SingleRoomCount,
  9234. SingleRoomPrice = singleRoomFeeStr,
  9235. // DoubleRoomCount = item.DoubleRoomCount,
  9236. DoubleRoomPrice = doubleRoomFeeStr,
  9237. //SuiteRoomCount = item.SuiteRoomCount,
  9238. SuiteRoomPrice = suiteRoomFeeStr,
  9239. OtherRoomPrice = otherRoomFeeStr,
  9240. //OtherRoomCount = item.OtherRoomCount,
  9241. BreakfastPrice = breakfastPriceStr,
  9242. GovernmentRent = governmentRentStr,
  9243. CityTax = cityTaxStrStr,
  9244. RoomExplanation = item.RoomExplanation,
  9245. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == payDId).First()?.Name ?? "",
  9246. PayTime = roomInfo?.ConsumptionDate,
  9247. BankNo = roomInfo?.BankNo,
  9248. PayMoney = payMoneyStr,
  9249. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9250. ConsumptionPatterns = roomInfo?.ConsumptionPatterns,
  9251. CardPrice = cardPriceStr,
  9252. Remark = ccpInfo.Remark
  9253. });
  9254. }
  9255. #endregion
  9256. //载入模板
  9257. WorkbookDesigner designer = new WorkbookDesigner();
  9258. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9259. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9260. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9261. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9262. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9263. designer.SetDataSource("Opertor", userInfo.CnName);
  9264. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9265. dt.TableName = "ViewMyHotelReservations";
  9266. designer.SetDataSource(dt);
  9267. designer.Process();
  9268. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  9269. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9270. designer.Workbook.Save(serverPath);
  9271. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9272. #region 删除指定行
  9273. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  9274. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9275. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9276. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9277. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9278. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9279. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9280. cssIndex = dt.Columns["CityTax"].Ordinal,
  9281. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9282. remarkIndex = dt.Columns["Remark"].Ordinal;
  9283. //删除指定列
  9284. foreach (DataRow item in dt.Rows)
  9285. {
  9286. string singleStr = item["SingleRoomPrice"].ToString();
  9287. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9288. if (containsDigitButNotZero1) singleDel = false;
  9289. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9290. string doubleStr = item["DoubleRoomPrice"].ToString();
  9291. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9292. if (containsDigitButNotZero2) doubleDel = false;
  9293. string suiteStr = item["SuiteRoomPrice"].ToString();
  9294. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9295. if (containsDigitButNotZero3) suiteDel = false;
  9296. string otherStr = item["OtherRoomPrice"].ToString();
  9297. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9298. if (containsDigitButNotZero4) otherDel = false;
  9299. string zcStr = item["BreakfastPrice"].ToString();
  9300. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9301. if (containsDigitButNotZero5) zcDel = false;
  9302. string dsStr = item["GovernmentRent"].ToString();
  9303. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9304. if (containsDigitButNotZero6) dsDel = false;
  9305. string cssStr = item["CityTax"].ToString();
  9306. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9307. if (containsDigitButNotZero7) cssDel = false;
  9308. string cpStr = item["ConsumptionPatterns"].ToString();
  9309. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9310. string remarkStr = item["Remark"].ToString();
  9311. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9312. }
  9313. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9314. DeleteColumn(serverPath, cpIndex, cpDel);
  9315. DeleteColumn(serverPath, dsIndex, dsDel);
  9316. DeleteColumn(serverPath, cssIndex, cssDel);
  9317. DeleteColumn(serverPath, zcIndex, zcDel);
  9318. DeleteColumn(serverPath, otherIndex, otherDel);
  9319. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9320. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9321. DeleteColumn(serverPath, singleIndex, singleDel);
  9322. #endregion
  9323. //只保留第一个表格
  9324. DeleteSheet(serverPath);
  9325. return Ok(JsonView(true, "操作成功", url = rst));
  9326. }
  9327. /// <summary>
  9328. /// 删除指定列
  9329. /// </summary>
  9330. /// <param name="file"></param>
  9331. /// <param name="columnIndex"></param>
  9332. /// <param name="isDel"></param>
  9333. private void DeleteColumn(string file, int columnIndex, bool isDel)
  9334. {
  9335. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9336. //wb.Save(file);
  9337. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9338. if (sheet1 != null)
  9339. {
  9340. if (isDel)
  9341. {
  9342. Cells cells = sheet1.Cells;
  9343. cells.DeleteColumn(columnIndex);
  9344. }
  9345. }
  9346. wb.Save(file);
  9347. }
  9348. /// <summary>
  9349. /// 删除sheet
  9350. /// </summary>
  9351. /// <param name="file"></param>
  9352. /// <param name="sheetName"></param>
  9353. private void DeleteSheet(string file, string sheetName = "")
  9354. {
  9355. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9356. //wb.Save(file);
  9357. List<string> sheets = new List<string>();
  9358. foreach (var item in wb.Worksheets)
  9359. {
  9360. sheets.Add(item.Name);
  9361. }
  9362. if (sheets.Count > 0)
  9363. {
  9364. sheets.RemoveAt(0);//不删除第一个sheet
  9365. foreach (var item in sheets)
  9366. {
  9367. wb.Worksheets.RemoveAt(item);
  9368. }
  9369. }
  9370. wb.Save(file);
  9371. }
  9372. /// <summary>
  9373. /// 酒店预订
  9374. /// 确认单
  9375. /// </summary>
  9376. /// <param name="_dto"></param>
  9377. /// <returns></returns>
  9378. [HttpPost]
  9379. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9380. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9381. {
  9382. try
  9383. {
  9384. #region 参数验证
  9385. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9386. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9387. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9388. #region 团组操作权限验证 76 酒店预定模块
  9389. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9390. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9391. #endregion
  9392. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9393. #region 页面操作权限验证
  9394. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9395. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9396. #endregion
  9397. #endregion
  9398. //团组信息
  9399. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9400. //酒店数据
  9401. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9402. if (listhoteldata.Count < 0)
  9403. {
  9404. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9405. }
  9406. //利datatable存储
  9407. DataTable dt = new DataTable();
  9408. dt.Columns.Add("CheckInDate", typeof(string));
  9409. dt.Columns.Add("City", typeof(string));
  9410. dt.Columns.Add("Hotel", typeof(string));
  9411. dt.Columns.Add("Room", typeof(string));
  9412. for (int i = 0; i < listhoteldata.Count; i++)
  9413. {
  9414. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9415. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9416. while (dayStart < dayEnd)
  9417. {
  9418. string temp = "";
  9419. DataRow row = dt.NewRow();
  9420. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9421. row["City"] = listhoteldata[i].City;
  9422. row["Hotel"] = listhoteldata[i].HotelName;
  9423. if (listhoteldata[i].SingleRoomCount > 0)
  9424. {
  9425. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9426. }
  9427. if (listhoteldata[i].DoubleRoomCount > 0)
  9428. {
  9429. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9430. }
  9431. if (listhoteldata[i].SuiteRoomCount > 0)
  9432. {
  9433. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9434. }
  9435. if (listhoteldata[i].OtherRoomCount > 0)
  9436. {
  9437. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9438. }
  9439. row["Room"] = temp;
  9440. dt.Rows.Add(row);
  9441. dayStart = dayStart.AddDays(1);
  9442. }
  9443. }
  9444. Dictionary<string, string> dic = new Dictionary<string, string>();
  9445. dic.Add("Dele", di.TeamName);
  9446. dic.Add("City", di.VisitCountry);
  9447. //模板路径
  9448. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9449. //载入模板
  9450. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9451. DocumentBuilder builder = new DocumentBuilder(doc);
  9452. foreach (var key in dic.Keys)
  9453. {
  9454. builder.MoveToBookmark(key);
  9455. builder.Write(dic[key]);
  9456. }
  9457. //获取word里所有表格
  9458. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9459. //获取所填表格的序数
  9460. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9461. var rowStart = tableOne.Rows[0]; //获取第1行
  9462. //循环赋值
  9463. for (int i = 0; i < dt.Rows.Count; i++)
  9464. {
  9465. builder.MoveToCell(0, i + 1, 0, 0);
  9466. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9467. builder.MoveToCell(0, i + 1, 1, 0);
  9468. builder.Write(dt.Rows[i]["City"].ToString());
  9469. builder.MoveToCell(0, i + 1, 2, 0);
  9470. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9471. builder.MoveToCell(0, i + 1, 3, 0);
  9472. builder.Write(dt.Rows[i]["Room"].ToString());
  9473. }
  9474. //删除多余行
  9475. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9476. {
  9477. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9478. }
  9479. string strFileName = di.TeamName + "酒店确认单.doc";
  9480. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9481. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9482. return Ok(JsonView(true, "成功", url));
  9483. }
  9484. catch (Exception ex)
  9485. {
  9486. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9487. }
  9488. }
  9489. #endregion
  9490. #region 团组状态
  9491. /// <summary>
  9492. /// 团组状态列表 Page
  9493. /// </summary>
  9494. /// <param name="dto">团组列表请求dto</param>
  9495. /// <returns></returns>
  9496. [HttpPost]
  9497. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9498. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9499. {
  9500. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9501. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9502. {
  9503. string sqlWhere = string.Empty;
  9504. if (dto.IsSure == 0) //未完成
  9505. {
  9506. sqlWhere += string.Format(@" And IsSure = 0");
  9507. }
  9508. else if (dto.IsSure == 1) //已完成
  9509. {
  9510. sqlWhere += string.Format(@" And IsSure = 1");
  9511. }
  9512. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9513. {
  9514. string tj = dto.SearchCriteria;
  9515. 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}%')",
  9516. tj, tj, tj, tj, tj);
  9517. }
  9518. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9519. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9520. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9521. From (
  9522. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9523. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9524. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9525. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9526. From Grp_DelegationInfo gdi
  9527. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9528. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9529. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9530. Where gdi.IsDel = 0 {0}
  9531. ) temp ", sqlWhere);
  9532. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9533. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9534. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9535. }
  9536. else
  9537. {
  9538. return Ok(JsonView(false, "查询失败"));
  9539. }
  9540. }
  9541. /// <summary>
  9542. /// 团组状态
  9543. /// 设置操作完成
  9544. /// </summary>
  9545. /// <param name="dto">团组列表请求dto</param>
  9546. /// <returns></returns>
  9547. [HttpPost]
  9548. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9549. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9550. {
  9551. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9552. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9553. {
  9554. Id = dto.Id,
  9555. IsSure = 1
  9556. };
  9557. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9558. .UpdateColumns(it => new { it.IsSure })
  9559. .WhereColumns(it => new { it.Id })
  9560. .ExecuteCommandAsync();
  9561. if (result > 0)
  9562. {
  9563. return Ok(JsonView(true, "操作完成!"));
  9564. }
  9565. return Ok(JsonView(false, "操作失败!"));
  9566. }
  9567. #endregion
  9568. #region 保险费用录入
  9569. /// <summary>
  9570. /// 根据团组Id查询保险费用列表
  9571. /// </summary>
  9572. /// <param name="dto"></param>
  9573. /// <returns></returns>
  9574. [HttpPost]
  9575. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9576. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9577. {
  9578. try
  9579. {
  9580. Result groupData = await _customersRep.CustomersByDiId(dto);
  9581. if (groupData.Code != 0)
  9582. {
  9583. return Ok(JsonView(false, groupData.Msg));
  9584. }
  9585. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9586. }
  9587. catch (Exception ex)
  9588. {
  9589. return Ok(JsonView(false, ex.Message));
  9590. }
  9591. }
  9592. /// <summary>
  9593. /// 根据保险费用Id查询保险费用详细
  9594. /// </summary>
  9595. /// <param name="dto"></param>
  9596. /// <returns></returns>
  9597. [HttpPost]
  9598. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9599. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9600. {
  9601. try
  9602. {
  9603. Result groupData = await _customersRep.CustomersById(dto);
  9604. if (groupData.Code != 0)
  9605. {
  9606. return Ok(JsonView(false, groupData.Msg));
  9607. }
  9608. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9609. }
  9610. catch (Exception ex)
  9611. {
  9612. return Ok(JsonView(false, ex.Message));
  9613. }
  9614. }
  9615. /// <summary>
  9616. /// 保险费用录入页面初始化绑定
  9617. /// </summary>
  9618. /// <param name="dto"></param>
  9619. /// <returns></returns>
  9620. [HttpPost]
  9621. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9622. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9623. {
  9624. try
  9625. {
  9626. Result groupData = await _customersRep.CustomersInitialize(dto);
  9627. if (groupData.Code != 0)
  9628. {
  9629. return Ok(JsonView(false, groupData.Msg));
  9630. }
  9631. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9632. }
  9633. catch (Exception ex)
  9634. {
  9635. return Ok(JsonView(false, ex.Message));
  9636. }
  9637. }
  9638. /// <summary>
  9639. /// 保险费用操作(Status:1.新增,2.修改)
  9640. /// </summary>
  9641. /// <param name="dto"></param>
  9642. /// <returns></returns>
  9643. [HttpPost]
  9644. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9645. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9646. {
  9647. try
  9648. {
  9649. Result groupData = await _customersRep.OpCustomers(dto);
  9650. if (groupData.Code != 0)
  9651. {
  9652. return Ok(JsonView(false, groupData.Msg));
  9653. }
  9654. #region 应用推送
  9655. try
  9656. {
  9657. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9658. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9659. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9660. }
  9661. catch (Exception ex)
  9662. {
  9663. }
  9664. #endregion
  9665. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9666. }
  9667. catch (Exception ex)
  9668. {
  9669. return Ok(JsonView(false, ex.Message));
  9670. }
  9671. }
  9672. /// <summary>
  9673. /// 保险文件上传
  9674. /// </summary>
  9675. /// <param name="file"></param>
  9676. /// <returns></returns>
  9677. [HttpPost]
  9678. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9679. public async Task<IActionResult> UploadCus(IFormFile file)
  9680. {
  9681. try
  9682. {
  9683. if (file != null)
  9684. {
  9685. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9686. //文件名称
  9687. string projectFileName = file.FileName;
  9688. //上传的文件的路径
  9689. string filePath = "";
  9690. if (!Directory.Exists(fileDir))
  9691. {
  9692. Directory.CreateDirectory(fileDir);
  9693. }
  9694. //上传的文件的路径
  9695. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9696. using (FileStream fs = System.IO.File.Create(filePath))
  9697. {
  9698. file.CopyTo(fs);
  9699. fs.Flush();
  9700. }
  9701. return Ok(JsonView(true, "上传成功!", projectFileName));
  9702. }
  9703. else
  9704. {
  9705. return Ok(JsonView(false, "上传失败!"));
  9706. }
  9707. }
  9708. catch (Exception ex)
  9709. {
  9710. return Ok(JsonView(false, "程序错误!"));
  9711. throw;
  9712. }
  9713. }
  9714. /// <summary>
  9715. /// 保险删除指定文件
  9716. /// </summary>
  9717. /// <param name="dto"></param>
  9718. /// <returns></returns>
  9719. [HttpPost]
  9720. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9721. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9722. {
  9723. try
  9724. {
  9725. string filePath = "";
  9726. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9727. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9728. //int id = 0;
  9729. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9730. // 删除该文件
  9731. try
  9732. {
  9733. System.IO.File.Delete(filePath);
  9734. 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()
  9735. {
  9736. Attachment = "",
  9737. }).ExecuteCommandAsync();
  9738. if (result != 0)
  9739. {
  9740. return Ok(JsonView(true, "成功!"));
  9741. }
  9742. else
  9743. {
  9744. return Ok(JsonView(false, "失败!"));
  9745. }
  9746. }
  9747. catch (Exception)
  9748. {
  9749. 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()
  9750. {
  9751. Attachment = "",
  9752. }).ExecuteCommandAsync();
  9753. if (result != 0)
  9754. {
  9755. return Ok(JsonView(true, "成功!"));
  9756. }
  9757. else
  9758. {
  9759. return Ok(JsonView(false, "失败!"));
  9760. }
  9761. }
  9762. }
  9763. catch (Exception ex)
  9764. {
  9765. return Ok(JsonView(false, "程序错误!"));
  9766. throw;
  9767. }
  9768. }
  9769. /// <summary>
  9770. /// 保险费用操作(删除)
  9771. /// </summary>
  9772. /// <param name="dto"></param>
  9773. /// <returns></returns>
  9774. [HttpPost]
  9775. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9776. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9777. {
  9778. try
  9779. {
  9780. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9781. if (!res)
  9782. {
  9783. return Ok(JsonView(false, "删除失败"));
  9784. }
  9785. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9786. {
  9787. IsDel = 1,
  9788. DeleteUserId = dto.DeleteUserId,
  9789. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9790. }).ExecuteCommandAsync();
  9791. return Ok(JsonView(true, "删除成功!"));
  9792. }
  9793. catch (Exception ex)
  9794. {
  9795. return Ok(JsonView(false, "程序错误!"));
  9796. throw;
  9797. }
  9798. }
  9799. #endregion
  9800. #region 接团客户名单 PageId 104
  9801. /// <summary>
  9802. /// 接团客户名单
  9803. /// 迁移数据(慎用!)
  9804. /// </summary>
  9805. /// <param name="dto"></param>
  9806. /// <returns></returns>
  9807. [HttpPost]
  9808. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9809. public async Task<IActionResult> PostTourClientListChange()
  9810. {
  9811. try
  9812. {
  9813. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9814. //var groupClinetData1
  9815. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9816. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9817. int updateCount = 0;
  9818. if (oldOAClientList.Count > 0)
  9819. {
  9820. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9821. _sqlSugar.BeginTran();
  9822. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9823. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9824. foreach (var item in oldOAClientList)
  9825. {
  9826. int comId = 0;
  9827. string format = "yyyy-MM-dd HH:mm:ss";
  9828. string data11 = "1990-01-01 00:00";
  9829. var data1 = IsValidDate(item.OPdate, format);
  9830. if (data1) data11 = item.OPdate;
  9831. //客户公司验证
  9832. if (!string.IsNullOrEmpty(item.Company))
  9833. {
  9834. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9835. if (clientComInfo == null) // add
  9836. {
  9837. var addInfo = new Crm_CustomerCompany()
  9838. {
  9839. CompanyAbbreviation = "",
  9840. CompanyFullName = item.Company,
  9841. Address = "",
  9842. PostCodes = "",
  9843. LastedOpUserId = item.OPer,
  9844. LastedOpDt = Convert.ToDateTime(data11),
  9845. CreateUserId = item.OPer,
  9846. CreateTime = Convert.ToDateTime(data11),
  9847. IsDel = 0
  9848. };
  9849. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9850. if (comId1 > 0) comId = comId1;
  9851. }
  9852. else comId = clientComInfo.Id;
  9853. }
  9854. //客户人员验证
  9855. int clientId = 0;
  9856. string name = item.LastName + item.Name;
  9857. if (!string.IsNullOrEmpty(name))
  9858. {
  9859. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9860. if (clientInfo == null)
  9861. {
  9862. DateTime? dateTime = null;
  9863. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9864. if (isDt) dateTime = birthDayDt;
  9865. var addInfo1 = new Crm_DeleClient()
  9866. {
  9867. CrmCompanyId = comId,
  9868. DiId = -1,
  9869. LastName = item.LastName,
  9870. FirstName = item.Name,
  9871. OldName = "",
  9872. Pinyin = item.Pinyin,
  9873. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9874. Marriage = 0,
  9875. Phone = item.Phone,
  9876. Job = item.Job,
  9877. BirthDay = dateTime
  9878. };
  9879. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9880. if (clientId1 > 0) clientId = clientId1;
  9881. }
  9882. else clientId = clientInfo.Id;
  9883. }
  9884. if (clientId < 1)
  9885. {
  9886. continue;
  9887. }
  9888. int airType = 0;
  9889. if (item.AirType == "超经舱") airType = 459;
  9890. else if (item.AirType == "公务舱") airType = 458;
  9891. else if (item.AirType == "经济舱") airType = 460;
  9892. else if (item.AirType == "其他") airType = 565;
  9893. else if (item.AirType == "头等舱") airType = 457;
  9894. var _TourClientListEntity = new Grp_TourClientList()
  9895. {
  9896. DiId = item.Diid,
  9897. ClientId = clientId,
  9898. CreateUserId = item.OPer,
  9899. CreateTime = Convert.ToDateTime(data11),
  9900. Remark = item.Remark,
  9901. IsDel = item.Isdel,
  9902. ShippingSpaceTypeId = airType,
  9903. ShippingSpaceSpecialNeeds = item.AirRemark,
  9904. HotelSpecialNeeds = item.RoomType
  9905. };
  9906. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9907. if (_TourClientList > 0)
  9908. {
  9909. updateCount++;
  9910. }
  9911. }
  9912. _sqlSugar.CommitTran();
  9913. }
  9914. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9915. }
  9916. catch (Exception ex)
  9917. {
  9918. _sqlSugar.RollbackTran();
  9919. return Ok(JsonView(false, ex.Message));
  9920. }
  9921. return Ok(JsonView(true));
  9922. }
  9923. private bool IsValidDate(string dateString, string format)
  9924. {
  9925. DateTime dateValue;
  9926. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9927. return valid;
  9928. }
  9929. /// <summary>
  9930. /// 接团客户名单
  9931. /// 根据团组Id查询List
  9932. /// </summary>
  9933. /// <param name="dto"></param>
  9934. /// <returns></returns>
  9935. [HttpPost]
  9936. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9937. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9938. {
  9939. #region 参数验证
  9940. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9941. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9942. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9943. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9944. #region 页面操作权限验证
  9945. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9946. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9947. #endregion
  9948. #endregion
  9949. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9950. if (viewData.Code != 0)
  9951. {
  9952. return Ok(JsonView(false, viewData.Msg));
  9953. }
  9954. return Ok(JsonView(viewData.Data));
  9955. }
  9956. /// <summary>
  9957. /// 接团客户名单
  9958. /// 基础数据 Init
  9959. /// </summary>
  9960. /// <param name="_dto"></param>
  9961. /// <returns></returns>
  9962. [HttpPost]
  9963. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9964. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9965. {
  9966. #region 参数验证
  9967. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9968. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9969. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9970. #region 页面操作权限验证
  9971. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9972. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9973. #endregion
  9974. #endregion
  9975. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9976. if (viewData.Code != 0)
  9977. {
  9978. return Ok(JsonView(false, viewData.Msg));
  9979. }
  9980. return Ok(JsonView(viewData.Data));
  9981. }
  9982. /// <summary>
  9983. /// 接团客户名单
  9984. /// 根据 Id查询 Details
  9985. /// </summary>
  9986. /// <param name="_dto"></param>
  9987. /// <returns></returns>
  9988. [HttpPost]
  9989. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9990. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9991. {
  9992. #region 参数验证
  9993. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9994. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9995. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9996. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9997. #region 页面操作权限验证
  9998. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9999. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10000. #endregion
  10001. #endregion
  10002. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  10003. if (viewData.Code != 0)
  10004. {
  10005. return Ok(JsonView(false, viewData.Msg));
  10006. }
  10007. return Ok(JsonView(viewData.Data));
  10008. }
  10009. /// <summary>
  10010. /// 接团客户名单
  10011. /// Add Or Edit
  10012. /// </summary>
  10013. /// <param name="_dto"></param>
  10014. /// <returns></returns>
  10015. [HttpPost]
  10016. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10017. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  10018. {
  10019. #region 参数验证
  10020. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10021. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10022. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10023. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10024. #region 页面操作权限验证
  10025. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10026. if (_dto.Id == 0) //添加
  10027. {
  10028. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10029. }
  10030. else if (_dto.Id >= 0) //修改
  10031. {
  10032. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  10033. }
  10034. #endregion
  10035. #endregion
  10036. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  10037. if (viewData.Code != 0)
  10038. {
  10039. return Ok(JsonView(false, viewData.Msg));
  10040. }
  10041. return Ok(JsonView(true));
  10042. }
  10043. /// <summary>
  10044. /// 接团客户名单
  10045. /// AddMultiple(添加多个)
  10046. /// </summary>
  10047. /// <param name="_dto"></param>
  10048. /// <returns></returns>
  10049. [HttpPost]
  10050. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10051. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  10052. {
  10053. #region 参数验证
  10054. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10055. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10056. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10057. #region 页面操作权限验证
  10058. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10059. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10060. #endregion
  10061. #endregion
  10062. var viewData = await _tourClientListRep._AddMultiple(_dto);
  10063. if (viewData.Code != 0)
  10064. {
  10065. return Ok(JsonView(false, viewData.Msg));
  10066. }
  10067. return Ok(JsonView(true));
  10068. }
  10069. /// <summary>
  10070. /// 接团客户名单
  10071. /// Del
  10072. /// </summary>
  10073. /// <param name="_dto"></param>
  10074. /// <returns></returns>
  10075. [HttpPost]
  10076. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10077. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  10078. {
  10079. #region 参数验证
  10080. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10081. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10082. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10083. #region 页面操作权限验证
  10084. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10085. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  10086. #endregion
  10087. #endregion
  10088. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  10089. if (viewData.Code != 0)
  10090. {
  10091. return Ok(JsonView(false, viewData.Msg));
  10092. }
  10093. return Ok(JsonView(true));
  10094. }
  10095. /// <summary>
  10096. /// 接团客户名单
  10097. /// 文件下载 客户名单
  10098. /// </summary>
  10099. /// <param name="_dto"></param>
  10100. /// <returns></returns>
  10101. [HttpPost]
  10102. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10103. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  10104. {
  10105. #region 参数验证
  10106. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10107. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10108. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10109. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10110. #region 页面操作权限验证
  10111. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10112. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10113. #endregion
  10114. #endregion
  10115. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10116. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10117. From Grp_TourClientList tcl
  10118. Left Join
  10119. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10120. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10121. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10122. From Crm_DeleClient dc
  10123. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10124. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10125. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10126. Where dc.IsDel = 0) temp
  10127. On temp.DcId =tcl.ClientId
  10128. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10129. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10130. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10131. //载入模板
  10132. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10133. if (_dto.Language == 1)
  10134. {
  10135. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10136. }
  10137. //载入模板
  10138. var doc = new Document(tempPath);
  10139. DocumentBuilder builder = new DocumentBuilder(doc);
  10140. //获取word里所有表格
  10141. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10142. //获取所填表格的序数
  10143. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10144. var rowStart = tableOne.Rows[0]; //获取第1行
  10145. if (_dto.Language == 0)
  10146. {
  10147. //循环赋值
  10148. for (int i = 0; i < DcList.Count; i++)
  10149. {
  10150. builder.MoveToCell(0, i + 1, 0, 0);
  10151. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10152. builder.MoveToCell(0, i + 1, 1, 0);
  10153. int sex = DcList[i].Sex;
  10154. string sexStr = string.Empty;
  10155. if (sex == 0) sexStr = "男";
  10156. else if (sex == 1) sexStr = "女";
  10157. else sexStr = "未设置";
  10158. builder.Write(sexStr);
  10159. builder.MoveToCell(0, i + 1, 2, 0);
  10160. string birthDay = DcList[i].BirthDay;
  10161. string birthDayStr = string.Empty;
  10162. if (!string.IsNullOrEmpty(birthDay))
  10163. {
  10164. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10165. }
  10166. builder.Write(birthDayStr);
  10167. builder.MoveToCell(0, i + 1, 3, 0);
  10168. string company = "";
  10169. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10170. {
  10171. company = DcList[i].CompanyFullName.ToString();
  10172. }
  10173. builder.Write(company);
  10174. builder.MoveToCell(0, i + 1, 4, 0);
  10175. builder.Write(DcList[i].Job);
  10176. }
  10177. }
  10178. else if (_dto.Language == 1)
  10179. {
  10180. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10181. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10182. List<string> transArrayStr = new List<string>();
  10183. string transStrRes1 = "";
  10184. for (int i = 0; i < DcList.Count; i++)
  10185. {
  10186. var dc = DcList[i];
  10187. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  10188. if (dc.Job.Equals("暂无")) dc.Job = "-";
  10189. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  10190. if (DcList.Count - 1 == i) transStrRes1 += str1;
  10191. else transStrRes1 += $"{str1}|";
  10192. }
  10193. //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";
  10194. string transStrRes = "";
  10195. if (transStrRes1.Length > 0 )
  10196. {
  10197. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  10198. }
  10199. //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
  10200. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  10201. //List<string> transArray = new List<string> { };
  10202. List<TranslateInfo> transArray = new List<TranslateInfo>();
  10203. if (transStrRes.Contains("|"))
  10204. {
  10205. string[] transArray1 = transStrRes.Split('|');
  10206. if (transArray1.Length > 0)
  10207. {
  10208. foreach (var item in transArray1)
  10209. {
  10210. if (item.Contains("&"))
  10211. {
  10212. string[] transArray2 = item.Split('&');
  10213. int index = 0;
  10214. string companyName = "", job = "";
  10215. if (transArray2.Length > 0)
  10216. {
  10217. bool success = int.TryParse(transArray2[0].Trim(), out index);
  10218. if (1 < transArray2.Length) companyName = transArray2[1];
  10219. if (2 < transArray2.Length) job = transArray2[2];
  10220. }
  10221. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  10222. }
  10223. }
  10224. }
  10225. }
  10226. //循环赋值
  10227. for (int i = 0; i < DcList.Count; i++)
  10228. {
  10229. string PYName = "";
  10230. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10231. {
  10232. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10233. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10234. PYName = PY_First + " " + PY_Last;
  10235. }
  10236. else
  10237. {
  10238. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10239. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10240. PYName = PY_First + " " + PY_Last;
  10241. }
  10242. builder.MoveToCell(0, i + 1, 0, 0);
  10243. builder.Write(PYName);
  10244. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10245. builder.MoveToCell(0, i + 1, 1, 0);
  10246. builder.Write(sex);
  10247. DateTime birthDt;
  10248. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10249. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  10250. builder.MoveToCell(0, i + 1, 2, 0);
  10251. builder.Write(birthday);
  10252. string company = string.Empty,job = string.Empty;
  10253. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  10254. if (dcTransInfo != null)
  10255. {
  10256. company = dcTransInfo.CompanyName;
  10257. job = dcTransInfo.Job;
  10258. }
  10259. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10260. {
  10261. //查询对照表
  10262. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10263. if (tempCec != null)
  10264. {
  10265. company = tempCec.enName;
  10266. }
  10267. //翻译
  10268. else
  10269. {
  10270. }
  10271. }
  10272. builder.MoveToCell(0, i + 1, 3, 0);
  10273. builder.Write(company);
  10274. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10275. {
  10276. //查询对照表
  10277. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10278. if (tempPec != null)
  10279. {
  10280. job = tempPec.enName;
  10281. }
  10282. //翻译
  10283. else
  10284. {
  10285. }
  10286. }
  10287. builder.MoveToCell(0, i + 1, 4, 0);
  10288. builder.Write(job);
  10289. }
  10290. }
  10291. //删除多余行
  10292. while (tableOne.Rows.Count > DcList.Count + 1)
  10293. {
  10294. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10295. }
  10296. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10297. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10298. doc.Save(fileDir);
  10299. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10300. return Ok(JsonView(true, "操作成功!", Url));
  10301. }
  10302. private class TranslateInfo
  10303. {
  10304. public int Index { get; set; }
  10305. public string CompanyName { get; set; }
  10306. public string Job { get; set; }
  10307. }
  10308. #endregion
  10309. #region 团组倒推表
  10310. /// <summary>
  10311. /// 倒推表基础数据
  10312. /// Init
  10313. /// </summary>
  10314. /// <param name="dto"></param>
  10315. /// <returns></returns>
  10316. [HttpPost]
  10317. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10318. public async Task<IActionResult> PostInvertedListInit()
  10319. {
  10320. var viewData = await _invertedListRep._Init();
  10321. if (viewData.Code != 0)
  10322. {
  10323. return Ok(JsonView(false, viewData.Msg));
  10324. }
  10325. return Ok(JsonView(viewData.Data));
  10326. }
  10327. /// <summary>
  10328. /// 倒推表
  10329. /// Info
  10330. /// </summary>
  10331. /// <param name="dto"></param>
  10332. /// <returns></returns>
  10333. [HttpPost]
  10334. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10335. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10336. {
  10337. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10338. if (viewData.Code != 0)
  10339. {
  10340. return Ok(JsonView(false, viewData.Msg));
  10341. }
  10342. return Ok(JsonView(viewData.Data));
  10343. }
  10344. /// <summary>
  10345. /// 倒推表
  10346. /// Create
  10347. /// </summary>
  10348. /// <param name="dto"></param>
  10349. /// <returns></returns>
  10350. [HttpPost]
  10351. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10352. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10353. {
  10354. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10355. if (viewData.Code != 0)
  10356. {
  10357. return Ok(JsonView(false, viewData.Msg));
  10358. }
  10359. return Ok(JsonView(viewData.Data));
  10360. }
  10361. /// <summary>
  10362. /// 倒推表
  10363. /// Update
  10364. /// </summary>
  10365. /// <param name="dto"></param>
  10366. /// <returns></returns>
  10367. [HttpPost]
  10368. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10369. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10370. {
  10371. var viewData = await _invertedListRep._Update(dto);
  10372. if (viewData.Code != 0)
  10373. {
  10374. return Ok(JsonView(false, viewData.Msg));
  10375. }
  10376. return Ok(JsonView(viewData.Data));
  10377. }
  10378. /// <summary>
  10379. /// 倒推表
  10380. /// File Download
  10381. /// </summary>
  10382. /// <param name="dto"></param>
  10383. /// <returns></returns>
  10384. [HttpPost]
  10385. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10386. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10387. {
  10388. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10389. if (info2.Code != 0)
  10390. {
  10391. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10392. }
  10393. var info1 = info2.Data as InvertedListInfoView;
  10394. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10395. string teamName = "";
  10396. if (info != null) teamName = info.TeamName;
  10397. //载入模板
  10398. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10399. DocumentBuilder builder = new DocumentBuilder(doc);
  10400. //利用键值对存放数据
  10401. Dictionary<string, string> dic = new Dictionary<string, string>();
  10402. dic.Add("TeamName", teamName);
  10403. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10404. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10405. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10406. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10407. dic.Add("SQRemark", info1.ApprovalRemark);
  10408. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10409. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10410. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10411. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10412. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10413. dic.Add("QZRemark", info1.VisaInformationRemark);
  10414. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10415. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10416. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10417. dic.Add("CQRemark", info1.IssueVisaRemark);
  10418. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10419. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10420. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10421. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10422. #region 填充word模板书签内容
  10423. foreach (var key in dic.Keys)
  10424. {
  10425. builder.MoveToBookmark(key);
  10426. builder.Write(dic[key]);
  10427. }
  10428. #endregion
  10429. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10430. string fileName = $"{teamName}团出行准备流程表.doc";
  10431. string filePath = fileDir + $@"InvertedList/{fileName}";
  10432. doc.Save(filePath);
  10433. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10434. return Ok(JsonView(true, "操作成功!", Url));
  10435. }
  10436. #endregion
  10437. #region 三公签证费用(签证费、代办费)
  10438. /// <summary>
  10439. /// 三公签证费用(签证费、代办费)
  10440. /// List
  10441. /// </summary>
  10442. /// <returns></returns>
  10443. [HttpPost]
  10444. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10445. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10446. {
  10447. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10448. if (_view.Code != 0)
  10449. {
  10450. return Ok(JsonView(false, _view.Msg));
  10451. }
  10452. return Ok(JsonView(true, "操作成功!", _view.Data));
  10453. }
  10454. /// <summary>
  10455. /// 三公签证费用(签证费、代办费)
  10456. /// Add Or Update
  10457. /// </summary>
  10458. /// <returns></returns>
  10459. [HttpPost]
  10460. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10461. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10462. {
  10463. var _view = await _visaFeeInfoRep._Update(_dto);
  10464. if (_view.Code != 0)
  10465. {
  10466. return Ok(JsonView(false, _view.Msg));
  10467. }
  10468. return Ok(JsonView(true, _view.Msg));
  10469. }
  10470. #endregion
  10471. #region 酒店询价
  10472. /// <summary>
  10473. /// 酒店询价
  10474. /// Init
  10475. /// </summary>
  10476. /// <param name="dto"></param>
  10477. /// <returns></returns>
  10478. [HttpPost]
  10479. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10480. public async Task<IActionResult> PostHotelInquiryInit()
  10481. {
  10482. var res = await _hotelInquiryRep._Init();
  10483. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10484. return Ok(JsonView(true, res.Msg, res.Data));
  10485. }
  10486. /// <summary>
  10487. /// 酒店询价
  10488. /// page Item
  10489. /// </summary>
  10490. /// <param name="_dto"></param>
  10491. /// <returns></returns>
  10492. [HttpPost]
  10493. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10494. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10495. {
  10496. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10497. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10498. var view = res.Data as PageDataViewBase;
  10499. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10500. }
  10501. /// <summary>
  10502. /// 酒店询价
  10503. /// info
  10504. /// </summary>
  10505. /// <param name="_dto"></param>
  10506. /// <returns></returns>
  10507. [HttpPost]
  10508. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10509. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10510. {
  10511. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10512. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10513. return Ok(JsonView(true, res.Msg, res.Data));
  10514. }
  10515. /// <summary>
  10516. /// 酒店询价
  10517. /// Add Or Edit
  10518. /// </summary>
  10519. /// <param name="_dto"></param>
  10520. /// <returns></returns>
  10521. [HttpPost]
  10522. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10523. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10524. {
  10525. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10526. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10527. return Ok(JsonView(true, res.Msg, res.Data));
  10528. }
  10529. /// <summary>
  10530. /// 酒店询价
  10531. /// Del
  10532. /// </summary>
  10533. /// <param name="_dto"></param>
  10534. /// <returns></returns>
  10535. [HttpPost]
  10536. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10537. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10538. {
  10539. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10540. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10541. return Ok(JsonView(true, res.Msg, res.Data));
  10542. }
  10543. #endregion
  10544. #region 下载匹配op行程单
  10545. /// <summary>
  10546. /// 匹配op行程单
  10547. /// Init
  10548. /// </summary>
  10549. /// <param name="dto">团组列表请求dto</param>
  10550. /// <returns></returns>
  10551. [HttpPost]
  10552. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10553. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10554. {
  10555. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10556. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10557. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10558. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10559. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10560. .Where(it => it.IsDel == 0)
  10561. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10562. .OrderByDescending(it => it.CreateUserId)
  10563. .ToList();
  10564. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10565. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10566. var diids = groupInfos.Select(it => it.Id).ToList();
  10567. List<string> countrys = new List<string>();
  10568. foreach (var item in country)
  10569. {
  10570. var data = _groupRepository.FormartTeamName(item);
  10571. var dataArray = _groupRepository.GroupSplitCountry(data);
  10572. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10573. }
  10574. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10575. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10576. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10577. foreach (var item in areaItem)
  10578. {
  10579. string areaStr = item.Value;
  10580. if (!string.IsNullOrEmpty(areaStr))
  10581. {
  10582. string[] str1 = areaStr.Split("-");
  10583. if (str1.Length > 0)
  10584. {
  10585. areaArray.AddRange(str1);
  10586. }
  10587. }
  10588. }
  10589. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10590. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10591. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10592. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10593. .ToList();
  10594. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10595. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10596. .Where(it => countriesIds.Contains(it.Id))
  10597. .Select(it => new { it.Id, Name = it.Name_CN })
  10598. .ToList();
  10599. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10600. .Select(it => it.TeamName).ToList();
  10601. stopwatch.Stop();
  10602. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10603. }
  10604. ///// <summary>
  10605. ///// 匹配op行程单
  10606. ///// Init 查询区域数据
  10607. ///// </summary>
  10608. ///// <param name="dto">团组列表请求dto</param>
  10609. ///// <returns></returns>
  10610. //[HttpPost]
  10611. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10612. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10613. //{
  10614. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10615. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10616. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10617. // if (string.IsNullOrEmpty(countriesDataStr))
  10618. // {
  10619. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10620. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10621. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10622. // }
  10623. // else
  10624. // {
  10625. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10626. // }
  10627. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10628. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10629. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10630. // List<dynamic> childList = new List<dynamic>();
  10631. // int parentId = dto.CountriesId;
  10632. // if (provinceData.Count > 1)
  10633. // {
  10634. // foreach (var item1 in provinceData)
  10635. // {
  10636. // List<dynamic> childList1 = new List<dynamic>();
  10637. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10638. // foreach (var item2 in citiesData1)
  10639. // {
  10640. // List<dynamic> childList2 = new List<dynamic>();
  10641. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10642. // foreach (var item3 in countiesData1)
  10643. // {
  10644. // childList2.Add(new
  10645. // {
  10646. // id = item3.Id,
  10647. // parentId = item2.Id,
  10648. // level = "district",
  10649. // name = item3.Name_CN,
  10650. // });
  10651. // }
  10652. // childList1.Add(new
  10653. // {
  10654. // id = item2.Id,
  10655. // parentId = item1.Id,
  10656. // level = "city",
  10657. // name = item2.Name_CN,
  10658. // childList = childList2
  10659. // });
  10660. // }
  10661. // childList.Add(new
  10662. // {
  10663. // id = item1.Id,
  10664. // parentId = parentId,
  10665. // level = "province",
  10666. // name = item1.Name_CN,
  10667. // childList = childList1
  10668. // });
  10669. // }
  10670. // //城市
  10671. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10672. // foreach (var item2 in citiesData2)
  10673. // {
  10674. // List<dynamic> childList22 = new List<dynamic>();
  10675. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10676. // foreach (var item3 in countiesData1)
  10677. // {
  10678. // childList22.Add(new
  10679. // {
  10680. // id = item3.Id,
  10681. // parentId = item2.Id,
  10682. // level = "district",
  10683. // name = item3.Name_CN,
  10684. // });
  10685. // }
  10686. // childList.Add(new
  10687. // {
  10688. // id = item2.Id,
  10689. // parentId = parentId,
  10690. // level = "city",
  10691. // name = item2.Name_CN,
  10692. // childList = childList22
  10693. // });
  10694. // }
  10695. // }
  10696. // else
  10697. // {
  10698. // foreach (var item2 in citiesData)
  10699. // {
  10700. // string cname = item2.Name_CN;
  10701. // List<dynamic> childList1 = new List<dynamic>();
  10702. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10703. // foreach (var item3 in countiesData1)
  10704. // {
  10705. // childList1.Add(new
  10706. // {
  10707. // Id = item3.Id,
  10708. // parentId = item2.Id,
  10709. // level = "district",
  10710. // name = item3.Name_CN
  10711. // });
  10712. // }
  10713. // childList.Add(new
  10714. // {
  10715. // id = item2.Id,
  10716. // parentId = parentId,
  10717. // level = "city",
  10718. // name = item2.Name_CN,
  10719. // childList = childList1
  10720. // });
  10721. // }
  10722. // }
  10723. // stopwatch.Stop();
  10724. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10725. //}
  10726. /// <summary>
  10727. /// 匹配op行程单
  10728. /// 接团信息列表 Page
  10729. /// </summary>
  10730. /// <param name="dto">团组列表请求dto</param>
  10731. /// <returns></returns>
  10732. [HttpPost]
  10733. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10734. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10735. {
  10736. var swatch = new Stopwatch();
  10737. swatch.Start();
  10738. #region 参数验证
  10739. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10740. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10741. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10742. #region 页面操作权限验证
  10743. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10744. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10745. #endregion
  10746. #endregion
  10747. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10748. {
  10749. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10750. string sqlWhere = "";
  10751. if (!string.IsNullOrEmpty(dto.Country))
  10752. {
  10753. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10754. }
  10755. if (!string.IsNullOrEmpty(dto.Area))
  10756. {
  10757. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10758. }
  10759. if (!string.IsNullOrEmpty(dto.TeamName))
  10760. {
  10761. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10762. }
  10763. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10764. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10765. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10766. swatch.Stop();
  10767. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10768. }
  10769. else
  10770. {
  10771. return Ok(JsonView(false, "查询失败"));
  10772. }
  10773. }
  10774. /// <summary>
  10775. /// 匹配op行程单
  10776. /// 行程单下载
  10777. /// </summary>
  10778. /// <param name="dto">团组列表请求dto</param>
  10779. /// <returns></returns>
  10780. [HttpPost]
  10781. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10782. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10783. {
  10784. #region 参数验证
  10785. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10786. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10787. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10788. #region 页面操作权限验证
  10789. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10790. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10791. #endregion
  10792. #endregion
  10793. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10794. {
  10795. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10796. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10797. }
  10798. else
  10799. {
  10800. return Ok(JsonView(false, "下载失败!"));
  10801. }
  10802. }
  10803. #endregion
  10804. #region 国家信息 数据 注释
  10805. //[HttpPost]
  10806. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10807. //{
  10808. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10809. // foreach (var item in dto)
  10810. // {
  10811. // infos.Add(new Grp_GroupsTaskAssignment()
  10812. // {
  10813. // DIId = item,
  10814. // CTId = 82,
  10815. // UId = 248,
  10816. // IsEnable = 1,
  10817. // CreateUserId = 233,
  10818. // CreateTime = DateTime.Now,
  10819. // IsDel = 0
  10820. // });
  10821. // infos.Add(new Grp_GroupsTaskAssignment()
  10822. // {
  10823. // DIId = item,
  10824. // CTId = 82,
  10825. // UId = 286,
  10826. // IsEnable = 1,
  10827. // CreateUserId = 233,
  10828. // CreateTime = DateTime.Now,
  10829. // IsDel = 0
  10830. // });
  10831. // }
  10832. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10833. // return Ok("操作成功");
  10834. //}
  10835. //public class paramJsonDto
  10836. //{
  10837. // public List<CountriesInfo> str { get; set; }
  10838. //}
  10839. //[HttpPost]
  10840. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10841. //{
  10842. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10843. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10844. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10845. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10846. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10847. // _sqlSugar.BeginTran();
  10848. // int countitiesIndex = 0;
  10849. // foreach (var item in dto.str)
  10850. // {
  10851. // dynamic data = item.c;
  10852. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10853. // if (data != null)
  10854. // {
  10855. // countitiesIndex++;
  10856. // foreach (var item1 in data)
  10857. // {
  10858. // string cnname = item1.cn;
  10859. // string enname = item1.en;
  10860. // Sys_Cities provinceInfo = new Sys_Cities()
  10861. // {
  10862. // CountriesId = countriesId,
  10863. // Name_CN = cnname,
  10864. // Name_EN = enname,
  10865. // ParentId = 0,
  10866. // IsCapital = 1,
  10867. // CreateUserId = 208,
  10868. // CreateTime = DateTime.Now,
  10869. // IsDel = 0
  10870. // };
  10871. // if (item1.lv == "province") //省份
  10872. // {
  10873. // provinceInfo.Level = 1;
  10874. // int provinceId = 0;
  10875. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10876. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10877. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10878. // var data1 = item1.c;
  10879. // foreach (var item2 in data1)
  10880. // {
  10881. // if (item2.lv == "city")
  10882. // {
  10883. // string citycnname = item2.cn;
  10884. // string cityenname = item2.en;
  10885. // Sys_Cities cityInfo = new Sys_Cities()
  10886. // {
  10887. // CountriesId = countriesId,
  10888. // ParentId = provinceId,
  10889. // Level = 2,
  10890. // Name_CN = citycnname,
  10891. // Name_EN = cityenname,
  10892. // IsCapital = 1,
  10893. // CreateUserId = 208,
  10894. // CreateTime = DateTime.Now,
  10895. // IsDel = 0
  10896. // };
  10897. // if (item2.c != null)
  10898. // {
  10899. // int cityId = 0;
  10900. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10901. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10902. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10903. // foreach (var item3 in item2.c)
  10904. // {
  10905. // if (item3.lv == "district")
  10906. // {
  10907. // var districtInfo = new Sys_Cities()
  10908. // {
  10909. // CountriesId = countriesId,
  10910. // Name_CN = item3.cn,
  10911. // Name_EN = item3.en,
  10912. // Level = 3,
  10913. // ParentId = cityId,
  10914. // IsCapital = 1,
  10915. // CreateUserId = 208,
  10916. // CreateTime = DateTime.Now,
  10917. // IsDel = 0
  10918. // };
  10919. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10920. // //{
  10921. // districts.Add(districtInfo);
  10922. // //}
  10923. // }
  10924. // }
  10925. // }
  10926. // else
  10927. // {
  10928. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10929. // //{
  10930. // cities.Add(cityInfo);
  10931. // //}
  10932. // }
  10933. // }
  10934. // }
  10935. // }
  10936. // else if (item1.lv == "city")//城市
  10937. // {
  10938. // provinceInfo.Level = 2;
  10939. // if (item1.c != null)
  10940. // {
  10941. // int cityId = 0;
  10942. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10943. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10944. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10945. // foreach (var item3 in item1.c)
  10946. // {
  10947. // if (item3.lv == "district")
  10948. // {
  10949. // var districtInfo = new Sys_Cities()
  10950. // {
  10951. // CountriesId = countriesId,
  10952. // Name_CN = item3.cn,
  10953. // Name_EN = item3.en,
  10954. // Level = 3,
  10955. // ParentId = cityId,
  10956. // IsCapital = 1,
  10957. // CreateUserId = 208,
  10958. // CreateTime = DateTime.Now,
  10959. // IsDel = 0
  10960. // };
  10961. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10962. // //{
  10963. // districts.Add(districtInfo);
  10964. // //}
  10965. // }
  10966. // }
  10967. // }
  10968. // else
  10969. // {
  10970. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10971. // //{
  10972. // cities.Add(provinceInfo);
  10973. // //}
  10974. // }
  10975. // }
  10976. // }
  10977. // }
  10978. // }
  10979. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10980. // cities = cities.Distinct().ToList();
  10981. // districts = districts.Distinct().ToList();
  10982. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10983. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10984. // cities.AddRange(districts);
  10985. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10986. // //_sqlSugar.RollbackTran();
  10987. // _sqlSugar.CommitTran();
  10988. // return Ok(JsonView(false, "操作成功!"));
  10989. //}
  10990. //[HttpPost]
  10991. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10992. //{
  10993. // List<CountitiesInfo> infos = dto.MyProperty;
  10994. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10995. // _sqlSugar.BeginTran();
  10996. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10997. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10998. // foreach (var item in infos)
  10999. // {
  11000. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  11001. // if (countryInfo != null)
  11002. // {
  11003. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  11004. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  11005. // if (cityInfo1 != null)
  11006. // {
  11007. // cityInfo1.IsCapital = 0;
  11008. // cityInfos.Add(cityInfo1);
  11009. // }
  11010. // }
  11011. // }
  11012. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  11013. // .UpdateColumns(it => it.IsCapital)
  11014. // .WhereColumns(it => it.Id)
  11015. // .ExecuteCommand();
  11016. // //_sqlSugar.RollbackTran();
  11017. // _sqlSugar.CommitTran();
  11018. // return Ok(JsonView(false, "操作成功!"));
  11019. //}
  11020. //public class CounrtiesDto
  11021. //{
  11022. // public List<CountitiesInfo> MyProperty { get; set; }
  11023. //}
  11024. //public class CountitiesInfo
  11025. //{
  11026. // /// <summary>
  11027. // /// 圣约翰
  11028. // /// </summary>
  11029. // public string capital_name_chinese { get; set; }
  11030. // /// <summary>
  11031. // ///
  11032. // /// </summary>
  11033. // public string capital_name { get; set; }
  11034. // /// <summary>
  11035. // ///
  11036. // /// </summary>
  11037. // public string country_type { get; set; }
  11038. // /// <summary>
  11039. // /// 安提瓜和巴布达
  11040. // /// </summary>
  11041. // public string country_name_chinese { get; set; }
  11042. // /// <summary>
  11043. // /// 安提瓜和巴布达
  11044. // /// </summary>
  11045. // public string country_name_chinese_short { get; set; }
  11046. // /// <summary>
  11047. // /// 安提瓜和巴布达
  11048. // /// </summary>
  11049. // public string country_name_chinese_UN { get; set; }
  11050. // /// <summary>
  11051. // ///
  11052. // /// </summary>
  11053. // public string country_name_english_abbreviation { get; set; }
  11054. // /// <summary>
  11055. // ///
  11056. // /// </summary>
  11057. // public string country_name_english_formal { get; set; }
  11058. // /// <summary>
  11059. // ///
  11060. // /// </summary>
  11061. // public string country_name_english_UN { get; set; }
  11062. // /// <summary>
  11063. // ///
  11064. // /// </summary>
  11065. // public string continent_name { get; set; }
  11066. // /// <summary>
  11067. // ///
  11068. // /// </summary>
  11069. // public string subregion_name { get; set; }
  11070. // /// <summary>
  11071. // ///
  11072. // /// </summary>
  11073. // public string country_code2 { get; set; }
  11074. // /// <summary>
  11075. // ///
  11076. // /// </summary>
  11077. // public string country_code3 { get; set; }
  11078. // /// <summary>
  11079. // ///
  11080. // /// </summary>
  11081. // public string phone_code { get; set; }
  11082. //}
  11083. //public class CountriesInfo : BasicInfo
  11084. //{
  11085. // public List<CitiesInfo> c { get; set; }
  11086. //}
  11087. //public class CitiesInfo : BasicInfo
  11088. //{
  11089. // public List<AreaInfo> c { get; set; }
  11090. //}
  11091. //public class AreaInfo : BasicInfo
  11092. //{
  11093. // public List<AreaInfo> c { get; set; }
  11094. //}
  11095. //public class BasicInfo
  11096. //{
  11097. // public string code { get; set; }
  11098. // public string cn { get; set; }
  11099. // public string lv { get; set; }
  11100. // public string en { get; set; }
  11101. //}
  11102. #endregion
  11103. #region 查看邀请方
  11104. /// <summary>
  11105. /// 查看邀请方
  11106. /// 邀请方信息 Init
  11107. /// </summary>
  11108. /// <param name="dto"></param>
  11109. /// <returns></returns>
  11110. [HttpPost]
  11111. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11112. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  11113. {
  11114. string sqlWhere = string.Empty;
  11115. if (!string.IsNullOrEmpty(dto.Search))
  11116. {
  11117. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  11118. }
  11119. string sql = string.Format($@"Select
  11120. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  11121. Id,
  11122. UnitName
  11123. From Res_InvitationOfficialActivityData
  11124. Where IsDel = 0
  11125. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  11126. RefAsync<int> total = 0;
  11127. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11128. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  11129. }
  11130. /// <summary>
  11131. /// 查看邀请方
  11132. /// 国家信息 Init
  11133. /// </summary>
  11134. /// <param name="dto"></param>
  11135. /// <returns></returns>
  11136. [HttpPost]
  11137. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11138. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  11139. {
  11140. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  11141. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11142. var diids = groupInfos.Select(it => it.Id).ToList();
  11143. List<string> countrys = new List<string>();
  11144. foreach (var item in country)
  11145. {
  11146. var data = _groupRepository.FormartTeamName(item);
  11147. var dataArray = _groupRepository.GroupSplitCountry(data);
  11148. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11149. }
  11150. countrys = countrys.Distinct().ToList();
  11151. for (int i = 0; i < countrys.Count; i++)
  11152. {
  11153. string item = countrys[i];
  11154. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  11155. {
  11156. countrys.Remove(item);
  11157. i--;
  11158. }
  11159. }
  11160. RefAsync<int> total = 0;
  11161. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  11162. .Where(it => countrys.Contains(it.Name_CN))
  11163. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11164. .Select(it => new { id = it.Id, name = it.Name_CN })
  11165. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11166. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11167. }
  11168. /// <summary>
  11169. /// 查看邀请方
  11170. /// 城市信息 Init
  11171. /// </summary>
  11172. /// <param name="dto"></param>
  11173. /// <returns></returns>
  11174. [HttpPost]
  11175. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11176. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  11177. {
  11178. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  11179. RefAsync<int> total = 0;
  11180. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  11181. .Where(it => it.CountriesId == dto.CountiesId)
  11182. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11183. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  11184. .Select(it => new { id = it.Id, name = it.Name_CN })
  11185. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11186. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11187. }
  11188. /// <summary>
  11189. /// 查看邀请方
  11190. /// 团组名称 Init
  11191. /// </summary>
  11192. /// <param name="dto"></param>
  11193. /// <returns></returns>
  11194. [HttpPost]
  11195. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11196. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  11197. {
  11198. var watch = new Stopwatch();
  11199. watch.Start();
  11200. RefAsync<int> total = 0;
  11201. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  11202. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  11203. .Where((oa, di) => oa.IsDel == 0)
  11204. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  11205. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  11206. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  11207. .Distinct()
  11208. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11209. watch.Stop();
  11210. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  11211. }
  11212. /// <summary>
  11213. /// 查看邀请方
  11214. /// 团组 & 邀请方信息
  11215. /// </summary>
  11216. /// <param name="dto"></param>
  11217. /// <returns></returns>
  11218. [HttpPost]
  11219. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11220. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  11221. {
  11222. var watch = new Stopwatch();
  11223. watch.Start();
  11224. RefAsync<int> total = 0;
  11225. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  11226. .AS("Grp_DelegationInfo")
  11227. .Includes(x => x.InvitingInfos)
  11228. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  11229. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  11230. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  11231. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  11232. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  11233. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  11234. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11235. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  11236. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  11237. infos.ForEach(x =>
  11238. {
  11239. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  11240. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  11241. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  11242. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  11243. });
  11244. watch.Stop();
  11245. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  11246. }
  11247. #endregion
  11248. #region 报批行程
  11249. /// <summary>
  11250. /// 报批行程初始化
  11251. /// </summary>
  11252. /// <param name="dto"></param>
  11253. /// <returns></returns>
  11254. [HttpPost]
  11255. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  11256. {
  11257. const int chiNumber = 5;
  11258. var jw = JsonView(false);
  11259. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  11260. var group = groupList.First();
  11261. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  11262. group = groupList.First(x => x.Id == diid);
  11263. if (group == null)
  11264. {
  11265. jw.Msg = "暂无团组!";
  11266. return Ok(jw);
  11267. }
  11268. var data = new
  11269. {
  11270. groupList = groupList.Select(x => new
  11271. {
  11272. x.TeamName,
  11273. x.Id
  11274. }),
  11275. content = new ArrayList(),
  11276. groupInfo = new
  11277. {
  11278. group.VisitDays,
  11279. group.TourCode,
  11280. group.VisitPNumber,
  11281. group.TeamName,
  11282. group.Id,
  11283. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  11284. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  11285. },
  11286. };
  11287. var resultArr = new ArrayList();
  11288. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  11289. if (content.Count == 0)
  11290. {
  11291. var stay = "-";
  11292. var cityPath = "-";
  11293. //添加城市路径以及住宿地
  11294. //黑屏代码数据
  11295. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11296. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11297. {
  11298. jw = JsonView(true, "黑屏代码有误!", data);
  11299. return Ok(jw);
  11300. }
  11301. foreach (DataRow row in dtBlack.Rows)
  11302. {
  11303. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11304. {
  11305. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  11306. return Ok(jw);
  11307. }
  11308. }
  11309. //黑屏代码获取时间区间
  11310. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11311. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11312. _sqlSugar.BeginTran();
  11313. for (int i = 0; i < timeArr.Count; i++)
  11314. {
  11315. stay = "-";
  11316. cityPath = "-";
  11317. DateTime NewData = DateTime.Parse(timeArr[i]);
  11318. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11319. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11320. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11321. if (tbSelect.Length > 0)
  11322. {
  11323. List<string> threeCodeStr = new List<string>();
  11324. foreach (var item in tbSelect)
  11325. {
  11326. var threeCode = item["Three"].ToString() ?? "";
  11327. if (threeCode.Length == 6)
  11328. {
  11329. var start = threeCode.Substring(0, 3);
  11330. var end = threeCode.Substring(3, 3);
  11331. if (threeCodeStr.Count == 0)
  11332. {
  11333. threeCodeStr.Add(start);
  11334. threeCodeStr.Add(end);
  11335. }
  11336. else
  11337. {
  11338. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11339. {
  11340. threeCodeStr.Add(end);
  11341. }
  11342. else
  11343. {
  11344. threeCodeStr.Add(start);
  11345. threeCodeStr.Add(end);
  11346. }
  11347. }
  11348. }
  11349. }
  11350. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11351. var last = threeCodeStr.Last();
  11352. foreach (var item in threeCodeStr)
  11353. {
  11354. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11355. if (item.Equals(last))
  11356. {
  11357. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11358. }
  11359. }
  11360. cityPath = cityPath.Trim('-');
  11361. }
  11362. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11363. appro.Diid = diid ?? -1;
  11364. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11365. appro.Id = thisId;
  11366. appro.CreateUserId = dto.UserId;
  11367. appro.CreateTime = DateTime.Now;
  11368. content.Add(appro);
  11369. }
  11370. _sqlSugar.CommitTran();
  11371. }
  11372. foreach (var x in content)
  11373. {
  11374. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  11375. if (chiList.Count < chiNumber)
  11376. {
  11377. for (int i = chiList.Count; i < chiNumber; i++)
  11378. {
  11379. chiList.Add(new Grp_ApprovalTravelDetails());
  11380. }
  11381. }
  11382. resultArr.Add(new
  11383. {
  11384. x.Id,
  11385. x.Date,
  11386. x.Diid,
  11387. chiList = chiList.Select(x1 => new
  11388. {
  11389. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11390. x1.Details,
  11391. x1.ParentId,
  11392. x1.Id
  11393. })
  11394. });
  11395. }
  11396. data = data with
  11397. {
  11398. content = resultArr,
  11399. };
  11400. jw = JsonView(true, "获取成功!", data);
  11401. return Ok(jw);
  11402. }
  11403. /// <summary>
  11404. /// 报批行程删除
  11405. /// </summary>
  11406. /// <param name="dto"></param>
  11407. /// <returns></returns>
  11408. [HttpPost]
  11409. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11410. {
  11411. var jw = JsonView(false);
  11412. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11413. if (group == null)
  11414. {
  11415. jw.Msg = "团组参数有误!";
  11416. return Ok(jw);
  11417. }
  11418. try
  11419. {
  11420. _sqlSugar.BeginTran();
  11421. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11422. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11423. {
  11424. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11425. DeleteUserId = dto.uesrId,
  11426. IsDel = 1
  11427. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11428. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11429. {
  11430. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11431. DeleteUserId = dto.uesrId,
  11432. IsDel = 1
  11433. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11434. _sqlSugar.CommitTran();
  11435. jw = JsonView(true, "删除成功");
  11436. }
  11437. catch (Exception ex)
  11438. {
  11439. jw = JsonView(false, ex.Message);
  11440. }
  11441. return Ok(jw);
  11442. }
  11443. /// <summary>
  11444. /// 报批行程保存
  11445. /// </summary>
  11446. /// <param name="dto"></param>
  11447. /// <returns></returns>
  11448. [HttpPost]
  11449. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11450. {
  11451. var jw = JsonView(false);
  11452. var Find = dto.Arr.Find(x => x.id == 0);
  11453. if (Find != null)
  11454. {
  11455. jw.Msg = "生成的ID为0!";
  11456. return Ok(jw);
  11457. }
  11458. foreach (var item in dto.Arr)
  11459. {
  11460. foreach (var chi in item.chiList)
  11461. {
  11462. if (chi.parentId == 0)
  11463. {
  11464. chi.parentId = item.id;
  11465. }
  11466. }
  11467. }
  11468. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11469. _sqlSugar.BeginTran();
  11470. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11471. {
  11472. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11473. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11474. {
  11475. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11476. DeleteUserId = dto.UserId,
  11477. IsDel = 1
  11478. }).ExecuteCommand();
  11479. }
  11480. try
  11481. {
  11482. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11483. {
  11484. CreateTime = DateTime.Now,
  11485. CreateUserId = dto.UserId,
  11486. Details = x.details,
  11487. ParentId = x.parentId,
  11488. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11489. Remark = "",
  11490. IsDel = 0
  11491. }).ToList()).ExecuteCommand();
  11492. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11493. {
  11494. Id = x.id,
  11495. Details = x.details,
  11496. ParentId = x.parentId,
  11497. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11498. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11499. {
  11500. Details = x.Details,
  11501. ParentId = x.ParentId,
  11502. Time = x.Time
  11503. }).ExecuteCommand();
  11504. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11505. {
  11506. Id = x.id,
  11507. Date = x.date,
  11508. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11509. {
  11510. Date = x.Date
  11511. }).ExecuteCommand();
  11512. _sqlSugar.CommitTran();
  11513. jw = JsonView(true, "保存成功!");
  11514. }
  11515. catch (Exception ex)
  11516. {
  11517. _sqlSugar.RollbackTran();
  11518. jw = JsonView(false, "保存失败!" + ex.Message);
  11519. }
  11520. return Ok(jw);
  11521. }
  11522. /// <summary>
  11523. /// 报批行程生成
  11524. /// </summary>
  11525. /// <param name="dto"></param>
  11526. /// <returns></returns>
  11527. [HttpPost]
  11528. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11529. {
  11530. var jw = JsonView(false);
  11531. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11532. if (group == null)
  11533. {
  11534. jw.Msg = "暂无该团组!";
  11535. return Ok(jw);
  11536. }
  11537. //黑屏代码数据
  11538. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11539. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11540. {
  11541. jw.Msg = "黑屏代码有误!";
  11542. return Ok(jw);
  11543. }
  11544. foreach (DataRow row in dtBlack.Rows)
  11545. {
  11546. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11547. {
  11548. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11549. return Ok(jw);
  11550. }
  11551. }
  11552. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11553. var resultArr = new ArrayList();
  11554. if (officialActivitiesArr.Count == 0)
  11555. {
  11556. jw.Msg = "暂无公务出访信息!";
  11557. return Ok(jw);
  11558. }
  11559. try
  11560. {
  11561. _sqlSugar.BeginTran();
  11562. DeleteApprovalJourney(new
  11563. Domain.Dtos.Groups.DeleteApprovalJourney
  11564. {
  11565. Diid = dto.Diid,
  11566. uesrId = dto.Userid
  11567. });
  11568. var stay = "-";
  11569. var cityPath = "-";
  11570. //添加城市路径以及住宿地
  11571. //黑屏代码获取时间区间
  11572. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11573. var empty = "【未收入该三字码!请机票同事录入】";
  11574. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11575. for (int i = 0; i < timeArr.Count; i++)
  11576. {
  11577. stay = "-";
  11578. cityPath = "-";
  11579. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11580. DateTime NewData = DateTime.Parse(timeArr[i]);
  11581. 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();
  11582. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11583. if (tbSelect.Length > 0)
  11584. {
  11585. List<string> threeCodeStr = new List<string>();
  11586. bool isTrade = false;
  11587. string trip = string.Empty;
  11588. var rowLast = tbSelect.Last();
  11589. var rowFirst = tbSelect.First();
  11590. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11591. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11592. var takeOffTime = DateTime.Parse(timeArr[i]);
  11593. var fallToTime = DateTime.Parse(timeArr[i]);
  11594. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11595. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11596. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11597. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11598. foreach (var item in tbSelect)
  11599. {
  11600. var start = string.Empty;
  11601. var end = string.Empty;
  11602. var threeCode = item["Three"].ToString() ?? "";
  11603. if (threeCode.Length == 6)
  11604. {
  11605. start = threeCode.Substring(0, 3);
  11606. end = threeCode.Substring(3, 3);
  11607. if (threeCodeStr.Count == 0)
  11608. {
  11609. threeCodeStr.Add(start);
  11610. threeCodeStr.Add(end);
  11611. }
  11612. else
  11613. {
  11614. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11615. {
  11616. threeCodeStr.Add(end);
  11617. }
  11618. else
  11619. {
  11620. threeCodeStr.Add(start);
  11621. threeCodeStr.Add(end);
  11622. }
  11623. }
  11624. }
  11625. //处理机票信息
  11626. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11627. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11628. if (start_Object == null)
  11629. {
  11630. start_Object = new Res_ThreeCode()
  11631. {
  11632. AirPort = empty,
  11633. AirPort_En = empty,
  11634. City = empty,
  11635. Country = empty,
  11636. Four = empty,
  11637. Three = empty,
  11638. };
  11639. }
  11640. if (end_Object == null)
  11641. {
  11642. end_Object = new Res_ThreeCode()
  11643. {
  11644. AirPort = empty,
  11645. AirPort_En = empty,
  11646. City = empty,
  11647. Country = empty,
  11648. Four = empty,
  11649. Three = empty,
  11650. };
  11651. }
  11652. //机型判断
  11653. string airModel = item["AirModel"].ToString();
  11654. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11655. string flightTime = item["FlightTime"].ToString();
  11656. if (flightTime!.Contains(":"))
  11657. {
  11658. flightTime = flightTime.Replace(":", "小时");
  11659. flightTime += "分钟";
  11660. }
  11661. if (flightTime.Contains("H"))
  11662. {
  11663. flightTime = flightTime.Replace("H", "小时");
  11664. }
  11665. if (flightTime.Contains("M"))
  11666. {
  11667. flightTime = flightTime.Replace("M", "分钟");
  11668. }
  11669. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11670. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11671. {
  11672. flightTime = flightDataTime.Hour > 0
  11673. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11674. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11675. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11676. }
  11677. //航班号
  11678. string flightcode = item["Fliagtcode"].ToString();
  11679. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11680. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11681. if (aircompany == null)
  11682. {
  11683. aircompany = new Res_AirCompany
  11684. {
  11685. CnName = hsEmpty,
  11686. EnName = hsEmpty,
  11687. ShortCode = hsEmpty,
  11688. };
  11689. }
  11690. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11691. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11692. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11693. if (isTrade)
  11694. {
  11695. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11696. }
  11697. else
  11698. {
  11699. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11700. }
  11701. }
  11702. chiarr.Add(new Grp_ApprovalTravelDetails
  11703. {
  11704. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11705. CreateTime = DateTime.Now,
  11706. CreateUserId = dto.Userid,
  11707. ParentId = 0,
  11708. Details = trip
  11709. });
  11710. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11711. var last = threeCodeStr.Last();
  11712. foreach (var item in threeCodeStr)
  11713. {
  11714. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11715. if (item.Equals(last))
  11716. {
  11717. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11718. }
  11719. }
  11720. cityPath = cityPath.Trim('-');
  11721. }
  11722. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11723. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11724. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11725. appro.Diid = dto.Diid;
  11726. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11727. appro.Id = thisId;
  11728. appro.CreateUserId = dto.Userid;
  11729. appro.CreateTime = DateTime.Now;
  11730. foreach (var item in gwinfo)
  11731. {
  11732. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11733. chi.Details = "拜访" + item.Client;
  11734. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11735. {
  11736. chi.Details += "," + item.ReqSample;
  11737. }
  11738. chi.ParentId = thisId;
  11739. chi.Time = item.Time;
  11740. chiarr.Add(chi);
  11741. }
  11742. if (chiarr.Count < 5)
  11743. {
  11744. for (int j = chiarr.Count; j < 5; j++)
  11745. {
  11746. chiarr.Add(new
  11747. Grp_ApprovalTravelDetails());
  11748. }
  11749. }
  11750. resultArr.Add(new
  11751. {
  11752. appro.Id,
  11753. appro.Date,
  11754. appro.Diid,
  11755. chiList = chiarr.Select(x1 => new
  11756. {
  11757. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11758. x1.Details,
  11759. x1.ParentId,
  11760. x1.Id
  11761. })
  11762. });
  11763. }
  11764. _sqlSugar.CommitTran();
  11765. jw = JsonView(true, "生成成功!", resultArr);
  11766. }
  11767. catch (Exception ex)
  11768. {
  11769. jw.Code = 400;
  11770. jw.Msg = "生成失败!" + ex.Message;
  11771. }
  11772. return Ok(jw);
  11773. }
  11774. /// <summary>
  11775. /// 报批行程word导出
  11776. /// </summary>
  11777. /// <param name="dto"></param>
  11778. /// <returns></returns>
  11779. [HttpPost]
  11780. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11781. {
  11782. var jw = JsonView(false);
  11783. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11784. if (group == null)
  11785. {
  11786. jw.Msg = "暂无该团组!";
  11787. return Ok(jw);
  11788. }
  11789. //模板路径
  11790. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11791. //载入模板
  11792. Document doc = new Document(tempPath);
  11793. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11794. //获取所填表格的序数
  11795. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11796. Aspose.Words.Tables.Row titleRowClone = null;
  11797. Aspose.Words.Tables.Row CenterRowClone = null;
  11798. int index = 0;
  11799. int indexChi = 0;
  11800. int SetIndex = 0;
  11801. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11802. //获取数据,放到datatable
  11803. foreach (var item in ApprovalTravelArr)
  11804. {
  11805. if (index > 0)
  11806. {
  11807. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11808. tableOne.AppendChild(titleRowClone);
  11809. }
  11810. var textTime = item.Date;
  11811. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11812. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11813. SetIndex++;
  11814. if (ChiRep.Count > 0)
  11815. {
  11816. foreach (var itemChi in ChiRep)
  11817. {
  11818. var txtTime = itemChi.Time;
  11819. var txtDetail = itemChi.Details;
  11820. if (indexChi > 0)
  11821. {
  11822. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11823. tableOne.AppendChild(CenterRowClone);
  11824. }
  11825. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11826. {
  11827. SetCells(tableOne, doc, SetIndex, 0, "");
  11828. SetCells(tableOne, doc, SetIndex, 1, "");
  11829. indexChi++;
  11830. SetIndex++;
  11831. break;
  11832. }
  11833. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11834. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11835. indexChi++;
  11836. SetIndex++;
  11837. }
  11838. }
  11839. else
  11840. {
  11841. if (indexChi > 0)
  11842. {
  11843. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11844. tableOne.AppendChild(CenterRowClone);
  11845. }
  11846. SetCells(tableOne, doc, SetIndex, 0, "");
  11847. SetCells(tableOne, doc, SetIndex, 1, "");
  11848. indexChi++;
  11849. SetIndex++;
  11850. }
  11851. index++;
  11852. }
  11853. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11854. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11855. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11856. jw.Code = 200;
  11857. jw.Msg = "";
  11858. return Ok(jw);
  11859. }
  11860. private string intToString(int numberVal)
  11861. {
  11862. string numberval = numberVal.ToString();
  11863. Dictionary<char, string> Number = new Dictionary<char, string>();
  11864. Number.Add('1', "一");
  11865. Number.Add('2', "二");
  11866. Number.Add('3', "三");
  11867. Number.Add('4', "四");
  11868. Number.Add('5', "五");
  11869. Number.Add('6', "六");
  11870. Number.Add('7', "七");
  11871. Number.Add('8', "八");
  11872. Number.Add('9', "九");
  11873. string stringNumberVal = string.Empty;
  11874. for (int i = 0; i < numberval.Length; i++)
  11875. {
  11876. if (i == 0)
  11877. {
  11878. stringNumberVal += Number[numberval[i]];
  11879. }
  11880. else if (i >= 1)
  11881. {
  11882. if (numberval[i] == '0')
  11883. {
  11884. stringNumberVal = "十";
  11885. }
  11886. else
  11887. {
  11888. stringNumberVal += "十" + Number[numberval[i]];
  11889. }
  11890. }
  11891. }
  11892. return stringNumberVal;
  11893. }
  11894. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11895. {
  11896. //获取table中的某个单元格,从0开始
  11897. Cell lshCell = table.Rows[rows].Cells[cells];
  11898. //将单元格中段落移除
  11899. foreach (Node item in lshCell.Paragraphs)
  11900. {
  11901. lshCell.Paragraphs.Remove(item);
  11902. }
  11903. if (val.Contains("\r\n"))
  11904. {
  11905. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11906. foreach (var item in spArr)
  11907. {
  11908. //新建一个段落
  11909. Paragraph p = new Paragraph(doc);
  11910. var r = new Run(doc, item);
  11911. //把设置的值赋给之前新建的段落
  11912. p.AppendChild(r);
  11913. //将此段落加到单元格内
  11914. lshCell.AppendChild(p);
  11915. }
  11916. }
  11917. else
  11918. {
  11919. //新建一个段落
  11920. Paragraph p = new Paragraph(doc);
  11921. var r = new Run(doc, val);
  11922. //把设置的值赋给之前新建的段落
  11923. p.AppendChild(r);
  11924. //将此段落加到单元格内
  11925. lshCell.AppendChild(p);
  11926. }
  11927. }
  11928. [HttpPost]
  11929. public async Task<IActionResult> ServerHttp(string paramStr)
  11930. {
  11931. paramStr = paramStr.TrimEnd('\'');
  11932. paramStr = paramStr.TrimStart('\'');
  11933. JsonView jw = JsonView(false);
  11934. JObject param = JObject.Parse(paramStr);
  11935. if (!param.ContainsKey("url"))
  11936. {
  11937. jw.Msg = "url null";
  11938. return Ok(jw);
  11939. }
  11940. string url = param["url"]!.ToString();
  11941. var methon = "get";
  11942. Dictionary<string, string> bodyValues = null;
  11943. Dictionary<string, string> headValues = null;
  11944. if (param.ContainsKey("methon"))
  11945. {
  11946. methon = param["methon"]!.ToString();
  11947. }
  11948. if (param.ContainsKey("header"))
  11949. {
  11950. var header = param["header"]!.ToString();
  11951. JObject headerJobject = JObject.Parse(header);
  11952. headValues = new Dictionary<string, string>();
  11953. foreach (JProperty item in headerJobject.Properties())
  11954. {
  11955. var value = item.Value.ToString();
  11956. var head = item.Path;
  11957. headValues.Add(head, value);
  11958. }
  11959. }
  11960. if (param.ContainsKey("body"))
  11961. {
  11962. var body = param["body"]!.ToString();
  11963. bodyValues = new Dictionary<string, string>();
  11964. JObject bodyJobject = JObject.Parse(body);
  11965. foreach (JProperty item in bodyJobject.Properties())
  11966. {
  11967. var value = item.Value.ToString();
  11968. var head = item.Path;
  11969. bodyValues.Add(head, value);
  11970. }
  11971. }
  11972. HttpClient client = new HttpClient();
  11973. string responseString = string.Empty;
  11974. if (param.ContainsKey("isJson"))
  11975. {
  11976. }
  11977. if (headValues != null)
  11978. {
  11979. foreach (var item in headValues.Keys)
  11980. {
  11981. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11982. }
  11983. }
  11984. try
  11985. {
  11986. if (methon == "get")
  11987. {
  11988. responseString = await client.GetStringAsync(url);
  11989. }
  11990. else if (methon == "post")
  11991. {
  11992. if (bodyValues == null)
  11993. {
  11994. jw.Msg = "methon post body null";
  11995. return Ok(jw);
  11996. }
  11997. // 数据转化为 key=val 格式
  11998. var content = new FormUrlEncodedContent(bodyValues);
  11999. var response = await client.PostAsync(url, content);
  12000. // 获取数据
  12001. responseString = await response.Content.ReadAsStringAsync();
  12002. }
  12003. else
  12004. {
  12005. jw.Msg = "methon error";
  12006. }
  12007. jw = JsonView(true, "success", responseString);
  12008. }
  12009. catch (Exception ex)
  12010. {
  12011. jw.Msg = "error " + ex.Message;
  12012. jw.Data = ex.StackTrace;
  12013. }
  12014. finally
  12015. {
  12016. client.Dispose();
  12017. }
  12018. return Ok(jw);
  12019. }
  12020. #endregion
  12021. // /// <summary>
  12022. // ///
  12023. // /// </summary>
  12024. // /// <param name="_dto"></param>
  12025. // /// <returns></returns>
  12026. // [HttpPost]
  12027. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12028. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12029. // {
  12030. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12031. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  12032. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  12033. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12034. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  12035. // dic_psg.Add("客人", 974);
  12036. // dic_psg.Add("司机", 975);
  12037. // dic_psg.Add("导游", 976);
  12038. // dic_psg.Add("公司内部人员", 977);
  12039. // dic_psg.Add("司机/导游/公司内部人员", 978);
  12040. // foreach (var item in list_visa)
  12041. // {
  12042. // Grp_VisaInfo temp = new Grp_VisaInfo();
  12043. // temp.Id = item.Id;
  12044. // temp.DIId = item.DIId;
  12045. // temp.VisaClient = item.VisaClient;
  12046. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  12047. // temp.VisaCurrency = item.VisaCurrency;
  12048. // temp.IsThird = item.IsThird;
  12049. // if (dic_psg.ContainsKey(item.PassengerType))
  12050. // {
  12051. // temp.PassengerType = dic_psg[item.PassengerType];
  12052. // }
  12053. // else {
  12054. // temp.PassengerType = -1;
  12055. // }
  12056. // temp.VisaNumber = item.VisaNumber;
  12057. // temp.VisaFreeNumber = item.VisaFreeNumber;
  12058. // temp.CreateUserId = item.Operators;
  12059. // DateTime dt_ct;
  12060. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  12061. // if (b_ct)
  12062. // {
  12063. // temp.CreateTime = dt_ct;
  12064. // }
  12065. // else
  12066. // {
  12067. // temp.CreateTime = DateTime.Now;
  12068. // }
  12069. // temp.DeleteTime = "";
  12070. // temp.DeleteUserId = 0;
  12071. // temp.Remark = item.Remark;
  12072. // if (string.IsNullOrEmpty(temp.Remark)) {
  12073. // temp.Remark = "";
  12074. // }
  12075. // temp.IsDel = item.IsDel;
  12076. // temp.VisaDescription = item.VisaAttachment;
  12077. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  12078. //([Id]
  12079. // ,[DIId]
  12080. // ,[VisaClient]
  12081. // ,[VisaPrice]
  12082. // ,[VisaCurrency]
  12083. // ,[IsThird]
  12084. // ,[PassengerType]
  12085. // ,[VisaNumber]
  12086. // ,[VisaFreeNumber]
  12087. // ,[CreateUserId]
  12088. // ,[CreateTime]
  12089. // ,[DeleteTime]
  12090. // ,[DeleteUserId]
  12091. // ,[Remark]
  12092. // ,[IsDel]
  12093. // ,[visaDescription])
  12094. // VALUES
  12095. // ({0},{1},'{2}',{3},{4}
  12096. //,{5},{6},{7},{8},{9}
  12097. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  12098. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  12099. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  12100. //);
  12101. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  12102. // }
  12103. // return Ok(JsonView(true, "操作成功!"));
  12104. // }
  12105. /// <summary>
  12106. /// 123132123
  12107. /// </summary>
  12108. /// <param name="_dto"></param>
  12109. /// <returns></returns>
  12110. [HttpPost]
  12111. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12112. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12113. {
  12114. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12115. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  12116. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  12117. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12118. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  12119. dicDetail.Add(789, 1034);
  12120. dicDetail.Add(790, 1035);
  12121. dicDetail.Add(791, 1036);
  12122. dicDetail.Add(792, 1037);
  12123. dicDetail.Add(793, 1038);
  12124. dicDetail.Add(794, 1039);
  12125. dicDetail.Add(795, 1040);
  12126. dicDetail.Add(796, 1041);
  12127. dicDetail.Add(797, 1042);
  12128. dicDetail.Add(798, 1043);
  12129. dicDetail.Add(801, 1044);
  12130. dicDetail.Add(802, 1045);
  12131. dicDetail.Add(803, 1046);
  12132. Dictionary<int, int> dic = new Dictionary<int, int>();
  12133. dic.Add(806, 1027);
  12134. dic.Add(807, 1028);
  12135. dic.Add(808, 1029);
  12136. dic.Add(809, 1030);
  12137. dic.Add(810, 1031);
  12138. dic.Add(811, 1032);
  12139. dic.Add(812, 1033);
  12140. foreach (var item in list_visa)
  12141. {
  12142. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  12143. temp.Coefficient = item.coefficient;
  12144. DateTime dtCrt;
  12145. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  12146. if (b1)
  12147. {
  12148. temp.CreateTime = dtCrt;
  12149. }
  12150. else
  12151. {
  12152. temp.CreateTime = DateTime.Now;
  12153. }
  12154. temp.CreateUserId = item.Operators;
  12155. temp.DeleteTime = "";
  12156. temp.DeleteUserId = 0;
  12157. temp.DiId = int.Parse(item.DIID);
  12158. temp.FilePath = item.FilePath;
  12159. temp.IsDel = item.IsDel;
  12160. temp.Price = item.Price;
  12161. temp.PriceCount = 1;
  12162. temp.PriceCurrency = item.Currency;
  12163. int detailId = 0;
  12164. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  12165. {
  12166. detailId = dicDetail[item.PriceTypeDetail];
  12167. }
  12168. temp.PriceDetailType = detailId;
  12169. temp.PriceDt = DateTime.Now;
  12170. temp.PriceName = item.PriceName;
  12171. temp.PriceSum = item.Price;
  12172. int tid = 0;
  12173. if (dic.ContainsKey(item.PriceType))
  12174. {
  12175. tid = dic[item.PriceType];
  12176. }
  12177. temp.PriceType = tid;
  12178. temp.Remark = item.Remark;
  12179. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  12180. }
  12181. return Ok(JsonView(true, "操作成功!"));
  12182. }
  12183. }
  12184. }