GroupsController.cs 634 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. using NPOI.HSSF.Util;
  78. using NPOI.HSSF.UserModel;
  79. using NPOI.SS.UserModel;
  80. using NPOI.XSSF.UserModel;
  81. using MySqlX.XDevAPI.Relational;
  82. using SqlSugar.Extensions;
  83. using Table = Aspose.Words.Tables.Table;
  84. using Aspose.Cells.Tables;
  85. using NPOI.SS.Util;
  86. using RestSharp.Extensions;
  87. using Microsoft.AspNetCore.WebUtilities;
  88. using K4os.Compression.LZ4.Internal;
  89. using static Pipelines.Sockets.Unofficial.SocketConnection;
  90. using System.Diagnostics.PerformanceData;
  91. using System.Drawing.Printing;
  92. using OASystem.Domain.Dtos.FileDto;
  93. using Microsoft.VisualBasic;
  94. using Microsoft.EntityFrameworkCore.Query.Internal;
  95. using MathNet.Numerics.Distributions;
  96. namespace OASystem.API.Controllers
  97. {
  98. /// <summary>
  99. /// 团组相关
  100. /// </summary>
  101. //[Authorize]
  102. [Route("api/[controller]/[action]")]
  103. public class GroupsController : ControllerBase
  104. {
  105. private readonly GrpScheduleRepository _grpScheduleRep;
  106. private readonly IMapper _mapper;
  107. private readonly DelegationInfoRepository _groupRepository;
  108. private readonly TaskAssignmentRepository _taskAssignmentRep;
  109. private readonly AirTicketResRepository _airTicketResRep;
  110. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  111. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  112. private readonly DelegationEnDataRepository _delegationEnDataRep;
  113. private readonly DelegationVisaRepository _delegationVisaRep;
  114. private readonly VisaPriceRepository _visaPriceRep;
  115. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  116. private readonly HotelPriceRepository _hotelPriceRep;
  117. private readonly CustomersRepository _customersRep;
  118. private readonly MessageRepository _message;
  119. private readonly SqlSugarClient _sqlSugar;
  120. private readonly TourClientListRepository _tourClientListRep;
  121. private readonly TeamRateRepository _teamRateRep;
  122. #region 成本相关
  123. private readonly CheckBoxsRepository _checkBoxs;
  124. private readonly GroupCostRepository _GroupCostRepository;
  125. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  126. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  127. #endregion
  128. private readonly SetDataRepository _setDataRep;
  129. private string url;
  130. private string path;
  131. private readonly EnterExitCostRepository _enterExitCostRep;
  132. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  133. private readonly UsersRepository _usersRep;
  134. private readonly IJuHeApiService _juHeApi;
  135. private readonly InvertedListRepository _invertedListRep;
  136. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  137. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  138. private readonly ThreeCodeRepository _threeCodeRepository;
  139. private readonly HotelInquiryRepository _hotelInquiryRep;
  140. private readonly FeeAuditRepository _feeAuditRep;
  141. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  142. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  143. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  144. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  145. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  146. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  147. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  148. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  149. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  150. {
  151. _mapper = mapper;
  152. _grpScheduleRep = grpScheduleRep;
  153. _groupRepository = groupRepository;
  154. _taskAssignmentRep = taskAssignmentRep;
  155. _airTicketResRep = airTicketResRep;
  156. _sqlSugar = sqlSugar;
  157. url = AppSettingsHelper.Get("ExcelBaseUrl");
  158. path = AppSettingsHelper.Get("ExcelBasePath");
  159. if (!System.IO.Directory.Exists(path))
  160. {
  161. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  162. }
  163. _decreasePaymentsRep = decreasePaymentsRep;
  164. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  165. _delegationEnDataRep = delegationEnDataRep;
  166. _enterExitCostRep = enterExitCostRep;
  167. _delegationVisaRep = delegationVisaRep;
  168. _message = message;
  169. _visaPriceRep = visaPriceRep;
  170. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  171. _checkBoxs = checkBoxs;
  172. _GroupCostRepository = GroupCostRepository;
  173. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  174. _GroupCostParameterRepository = GroupCostParameterRepository;
  175. _hotelPriceRep = hotelPriceRep;
  176. _customersRep = customersRep;
  177. _setDataRep = setDataRep;
  178. _tourClientListRep = tourClientListRep;
  179. _teamRateRep = teamRateRep;
  180. _hubContext = hubContext;
  181. _usersRep = usersRep;
  182. _juHeApi = juHeApi;
  183. _invertedListRep = invertedListRep;
  184. _visaFeeInfoRep = visaFeeInfoRep;
  185. _ticketBlackCodeRep = ticketBlackCodeRep;
  186. _hotelInquiryRep = hotelInquiryRep;
  187. _threeCodeRepository = threeCodeRepository;
  188. _feeAuditRep = feeAuditRep;
  189. }
  190. #region 流程管控
  191. /// <summary>
  192. /// 获取团组流程管控信息
  193. /// </summary>
  194. /// <param name="paras">参数Json字符串</param>
  195. /// <returns></returns>
  196. [HttpPost]
  197. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  198. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  199. {
  200. if (string.IsNullOrEmpty(_jsonDto.Paras))
  201. {
  202. return Ok(JsonView(false, "参数为空"));
  203. }
  204. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  205. if (_ScheduleDto != null)
  206. {
  207. if (_ScheduleDto.SearchType == 2)//获取列表
  208. {
  209. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  210. return Ok(JsonView(_grpScheduleViewList));
  211. }
  212. else//获取对象
  213. {
  214. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  215. if (_grpScheduleView != null)
  216. {
  217. return Ok(JsonView(_grpScheduleView));
  218. }
  219. }
  220. }
  221. else
  222. {
  223. return Ok(JsonView(false, "参数反序列化失败"));
  224. }
  225. return Ok(JsonView(false, "暂无数据!"));
  226. }
  227. /// <summary>
  228. /// 修改团组流程管控详细表数据
  229. /// </summary>
  230. /// <param name="paras"></param>
  231. /// <returns></returns>
  232. [HttpPost]
  233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  234. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  235. {
  236. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  237. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  238. .SetColumns(it => it.Duty == _detail.Duty)
  239. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  240. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  241. .SetColumns(it => it.JobContent == _detail.JobContent)
  242. .SetColumns(it => it.Remark == _detail.Remark)
  243. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  244. .Where(s => s.Id == dto.Id)
  245. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  246. .ExecuteCommandAsync();
  247. if (result > 0)
  248. {
  249. return Ok(JsonView(true, "保存成功!"));
  250. }
  251. return Ok(JsonView(false, "保存失败!"));
  252. }
  253. /// <summary>
  254. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  255. /// </summary>
  256. /// <param name="dto"></param>
  257. /// <returns></returns>
  258. [HttpPost]
  259. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  260. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  261. {
  262. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  263. _detail.IsDel = 1;
  264. _detail.DeleteUserId = dto.Duty;
  265. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  266. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  267. .SetColumns(it => it.IsDel == _detail.IsDel)
  268. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  269. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  270. .Where(it => it.Id == dto.Id)
  271. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  272. //.WhereColumns(s => s.Id == dto.Id)
  273. .ExecuteCommandAsync();
  274. if (result > 0)
  275. {
  276. return Ok(JsonView(true, "删除成功!"));
  277. }
  278. return Ok(JsonView(false, "删除失败!"));
  279. }
  280. /// <summary>
  281. /// 增加团组流程管控详细表数据
  282. /// </summary>
  283. /// <param name="dto"></param>
  284. /// <returns></returns>
  285. [HttpPost]
  286. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  287. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  288. {
  289. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  290. if (DateTime.Now < _detail.ExpectBeginDt)
  291. {
  292. _detail.StepStatus = 0;
  293. }
  294. else
  295. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  296. _detail.StepStatus = 1;
  297. }
  298. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  299. if (result > 0)
  300. {
  301. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  302. return Ok(JsonView(true, "添加成功!", _result));
  303. }
  304. return Ok(JsonView(false, "添加失败!"));
  305. }
  306. #endregion
  307. #region 团组基本信息
  308. /// <summary>
  309. /// 接团信息列表
  310. /// </summary>
  311. /// <param name="dto">团组列表请求dto</param>
  312. /// <returns></returns>
  313. [HttpPost]
  314. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  315. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  316. {
  317. var groupData = await _groupRepository.GetGroupList(dto);
  318. if (groupData.Code != 0)
  319. {
  320. return Ok(JsonView(false, groupData.Msg));
  321. }
  322. return Ok(JsonView(groupData.Data));
  323. }
  324. /// <summary>
  325. /// 接团信息列表 Page
  326. /// </summary>
  327. /// <param name="dto">团组列表请求dto</param>
  328. /// <returns></returns>
  329. [HttpPost]
  330. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  331. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  332. {
  333. #region 参数验证
  334. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  335. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  336. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  337. #region 页面操作权限验证
  338. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  339. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  340. #endregion
  341. #endregion
  342. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  343. {
  344. string sqlWhere = string.Empty;
  345. if (dto.IsSure == 0) //未完成
  346. {
  347. sqlWhere += string.Format(@" And IsSure = 0");
  348. }
  349. else if (dto.IsSure == 1) //已完成
  350. {
  351. sqlWhere += string.Format(@" And IsSure = 1");
  352. }
  353. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  354. {
  355. string tj = dto.SearchCriteria;
  356. 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}%')",
  357. tj, tj, tj, tj, tj);
  358. }
  359. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  360. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  361. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  362. JietuanOperator,IsSure,CreateTime
  363. From (
  364. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  365. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  366. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  367. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  368. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  369. From Grp_DelegationInfo gdi
  370. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  371. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  372. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  373. Where gdi.IsDel = 0 {0}
  374. ) temp", sqlWhere);
  375. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  376. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  377. #region 处理所属部门
  378. /*
  379. * 1.sq 和 gyy 等显示 市场部
  380. * 2.王鸽和主管及张总还有管理员号统一国交部
  381. * 2-1. 4 管理员 ,21 张海麟
  382. */
  383. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  384. List<int> userIds1 = new List<int>() { 4, 21 };
  385. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  386. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  387. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  388. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  389. .ToList();
  390. foreach (var item in _DelegationList)
  391. {
  392. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  393. }
  394. #endregion
  395. var _view = new
  396. {
  397. PageFuncAuth = pageFunAuthView,
  398. Data = _DelegationList
  399. };
  400. return Ok(JsonView(true, "查询成功!", _view, total));
  401. }
  402. else
  403. {
  404. return Ok(JsonView(false, "查询失败"));
  405. }
  406. }
  407. /// <summary>
  408. /// 团组列表
  409. /// </summary>
  410. /// <returns></returns>
  411. [HttpPost]
  412. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  413. {
  414. #region 参数验证
  415. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  416. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  417. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  418. #region 页面操作权限验证
  419. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  420. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  421. #endregion
  422. #endregion
  423. if (dto.PortType != 1 && dto.PortType != 2)
  424. {
  425. return Ok(JsonView(false, "查询失败!"));
  426. }
  427. string orderbyStr = "order by gdi.CreateTime Desc";
  428. string sqlWhere = string.Empty;
  429. if (dto.IsSure == 0) //未完成
  430. {
  431. sqlWhere += string.Format(@" And IsSure = 0");
  432. }
  433. else if (dto.IsSure == 1) //已完成
  434. {
  435. sqlWhere += string.Format(@" And IsSure = 1");
  436. }
  437. //团组类型
  438. if (dto.TeamDid > 0)
  439. {
  440. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  441. }
  442. //团组名称
  443. if (!string.IsNullOrEmpty(dto.TeamName))
  444. {
  445. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  446. }
  447. //客户名称
  448. if (!string.IsNullOrEmpty(dto.ClientName))
  449. {
  450. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  451. }
  452. //客户单位
  453. if (!string.IsNullOrEmpty(dto.ClientUnit))
  454. {
  455. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  456. }
  457. //出访时间
  458. if (!string.IsNullOrEmpty(dto.visitDataTime))
  459. {
  460. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  461. orderbyStr = "order by gdi.VisitDate";
  462. }
  463. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  464. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  465. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  466. JietuanOperator,IsSure,CreateTime
  467. From (
  468. Select row_number() over({0}) as Row_Number,
  469. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  470. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  471. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  472. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  473. From Grp_DelegationInfo gdi
  474. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  475. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  476. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  477. Where gdi.IsDel = 0 {1}
  478. ) temp ", orderbyStr, sqlWhere);
  479. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  480. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  481. #region 处理所属部门
  482. /*
  483. * 1.sq 和 gyy 等显示 市场部
  484. * 2.王鸽和主管及张总还有管理员号统一国交部
  485. * 2-1. 4 管理员 ,21 张海麟
  486. */
  487. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  488. List<int> userIds1 = new List<int>() { 4, 21 };
  489. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  490. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  491. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  492. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  493. .ToList();
  494. foreach (var item in _DelegationList)
  495. {
  496. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  497. }
  498. #endregion
  499. var _view = new
  500. {
  501. PageFuncAuth = pageFunAuthView,
  502. Data = _DelegationList
  503. };
  504. return Ok(JsonView(true, "查询成功!", _view, total));
  505. }
  506. /// <summary>
  507. /// 接团信息详情
  508. /// </summary>
  509. /// <param name="dto">团组info请求dto</param>
  510. /// <returns></returns>
  511. [HttpPost]
  512. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  513. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  514. {
  515. var groupData = await _groupRepository.GetGroupInfo(dto);
  516. if (groupData.Code != 0)
  517. {
  518. return Ok(JsonView(false, groupData.Msg));
  519. }
  520. return Ok(JsonView(groupData.Data));
  521. }
  522. /// <summary>
  523. /// 接团信息 编辑添加
  524. /// 基础信息数据源
  525. /// </summary>
  526. /// <param name="dto"></param>
  527. /// <returns></returns>
  528. [HttpPost]
  529. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  530. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  531. {
  532. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  533. if (groupData.Code != 0)
  534. {
  535. return Ok(JsonView(false, groupData.Msg));
  536. }
  537. return Ok(JsonView(groupData.Data));
  538. }
  539. /// <summary>
  540. /// 接团信息 操作(增改)
  541. /// </summary>
  542. /// <param name="dto"></param>
  543. /// <returns></returns>
  544. [HttpPost]
  545. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  546. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  547. {
  548. try
  549. {
  550. var groupData = await _groupRepository.GroupOperation(dto);
  551. if (groupData.Code != 0)
  552. {
  553. return Ok(JsonView(false, groupData.Msg));
  554. }
  555. int diId = 0;
  556. //添加时 默认加入团组汇率
  557. if (dto.Status == 1) //添加
  558. {
  559. diId = groupData.Data;
  560. //添加默认币种
  561. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  562. //默认分配权限
  563. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  564. //消息提示 王鸽 主管号
  565. List<int> _managerIds = new List<int>() { 22, 32 };
  566. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  567. if (userIds.Count > 0)
  568. {
  569. userIds.Add(208);
  570. //创建团组管控
  571. GroupStepForDelegation.CreateWorkStep(diId);
  572. //发送消息
  573. string groupName = dto.TeamName;
  574. string createGroupUser = string.Empty;
  575. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  576. if (userInfo != null) createGroupUser = userInfo.CnName;
  577. string title = $"系统通知";
  578. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  579. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  580. }
  581. //默认创建倒推表
  582. await _invertedListRep._Create(dto.UserId, diId);
  583. }
  584. else if (dto.Status == 2)
  585. {
  586. diId = dto.Id;
  587. }
  588. return Ok(JsonView(true, "操作成功!", diId));
  589. }
  590. catch (Exception ex)
  591. {
  592. Logs("[response]" + JsonConvert.SerializeObject(dto));
  593. Logs(ex.Message);
  594. return Ok(JsonView(false, ex.Message));
  595. }
  596. }
  597. /// <summary>
  598. /// 接团流程操作(增改)
  599. /// 安卓端使用 建团时添加客户名单
  600. /// </summary>
  601. /// <param name="dto"></param>
  602. /// <returns></returns>
  603. [HttpPost]
  604. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  605. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  606. {
  607. try
  608. {
  609. #region 参数验证
  610. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  611. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  612. #region 页面操作权限验证
  613. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  614. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  615. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  616. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  617. #endregion
  618. #endregion
  619. _sqlSugar.BeginTran();
  620. var _dto = new GroupOperationDto();
  621. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  622. var groupData = await _groupRepository.GroupOperation(_dto);
  623. if (groupData.Code != 0)
  624. {
  625. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  626. }
  627. int diId = 0;
  628. //添加时 默认加入团组汇率
  629. if (dto.Status == 1) //添加
  630. {
  631. diId = groupData.Data;
  632. //添加默认币种
  633. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  634. //默认分配权限
  635. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  636. //消息提示 王鸽 主管号
  637. List<int> _managerIds = new List<int>() { 22, 32 };
  638. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  639. if (userIds.Count > 0)
  640. {
  641. userIds.Add(208);
  642. //创建团组管控
  643. GroupStepForDelegation.CreateWorkStep(diId);
  644. //发送消息
  645. string groupName = dto.TeamName;
  646. string createGroupUser = string.Empty;
  647. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  648. if (userInfo != null) createGroupUser = userInfo.CnName;
  649. string title = $"系统通知";
  650. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  651. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  652. }
  653. }
  654. if (dto.Status == 2)
  655. {
  656. diId = dto.Id;
  657. if (diId == 0)
  658. {
  659. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  660. }
  661. }
  662. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  663. if (viewData.Code != 0)
  664. {
  665. _sqlSugar.RollbackTran();
  666. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  667. }
  668. _sqlSugar.CommitTran();
  669. return Ok(JsonView(true, "添加成功"));
  670. }
  671. catch (Exception ex)
  672. {
  673. _sqlSugar.RollbackTran();
  674. return Ok(JsonView(false, ex.Message));
  675. }
  676. }
  677. /// <summary>
  678. /// 接团信息 操作(删除)
  679. /// </summary>
  680. /// <param name="dto"></param>
  681. /// <returns></returns>
  682. [HttpPost]
  683. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  684. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  685. {
  686. try
  687. {
  688. var groupData = await _groupRepository.GroupDel(dto);
  689. if (groupData.Code != 0)
  690. {
  691. return Ok(JsonView(false, groupData.Msg));
  692. }
  693. return Ok(JsonView(true));
  694. }
  695. catch (Exception ex)
  696. {
  697. Logs("[response]" + JsonConvert.SerializeObject(dto));
  698. Logs(ex.Message);
  699. return Ok(JsonView(false, ex.Message));
  700. }
  701. }
  702. /// <summary>
  703. /// 获取团组销售报价号
  704. /// 团组添加时 使用
  705. /// </summary>
  706. /// <returns></returns>
  707. [HttpPost]
  708. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  709. public async Task<IActionResult> GetGroupSalesQuoteNo()
  710. {
  711. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  712. if (groupData.Code != 0)
  713. {
  714. return Ok(JsonView(false, groupData.Msg));
  715. }
  716. object salesQuoteNo = new
  717. {
  718. SalesQuoteNo = groupData.Data
  719. };
  720. return Ok(JsonView(salesQuoteNo));
  721. }
  722. /// <summary>
  723. /// 设置确认出团
  724. /// </summary>
  725. /// <param name="dto"></param>
  726. /// <returns></returns>
  727. [HttpPost]
  728. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  729. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  730. {
  731. var groupData = await _groupRepository.ConfirmationGroup(dto);
  732. if (groupData.Code != 0)
  733. {
  734. return Ok(JsonView(false, groupData.Msg));
  735. }
  736. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  737. #region OA消息推送
  738. try
  739. {
  740. string groupName = groupInfo.TeamName;
  741. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  742. List<int> userIds = new List<int>();
  743. listUser.ForEach(s => userIds.Add(s.Id));
  744. string title = $"系统通知";
  745. string content = $"团组[{groupName}]已确认出团!";
  746. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  747. }
  748. catch (Exception ex)
  749. {
  750. }
  751. #endregion
  752. #region 应用推送
  753. try
  754. {
  755. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  756. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  757. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  758. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  759. {
  760. List<string> userList = new List<string>() { users.QiyeChatUserId };
  761. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  762. }
  763. }
  764. catch (Exception ex)
  765. {
  766. }
  767. #endregion
  768. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  769. return Ok(JsonView(true, "操作成功!", groupData.Data));
  770. }
  771. /// <summary>
  772. /// 获取团组名称data And 签证国别Data
  773. /// </summary>
  774. /// <param name="dto"></param>
  775. /// <returns></returns>
  776. [HttpPost]
  777. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  778. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  779. {
  780. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(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. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  789. /// </summary>
  790. /// <returns></returns>
  791. [HttpPost]
  792. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  793. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  794. {
  795. try
  796. {
  797. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  798. if (groupData.Code != 0)
  799. {
  800. return Ok(JsonView(false, groupData.Msg));
  801. }
  802. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  803. }
  804. catch (Exception ex)
  805. {
  806. return Ok(JsonView(false, "程序错误!"));
  807. throw;
  808. }
  809. }
  810. #endregion
  811. #region 团组&签证
  812. /// <summary>
  813. /// 根据团组Id获取签证客户信息List
  814. /// </summary>
  815. /// <param name="dto">请求dto</param>
  816. /// <returns></returns>
  817. [HttpPost]
  818. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  819. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  820. {
  821. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  822. if (groupData.Code != 0)
  823. {
  824. return Ok(JsonView(false, groupData.Msg));
  825. }
  826. return Ok(JsonView(groupData.Data));
  827. }
  828. /// <summary>
  829. /// IOS获取团组签证拍照上传进度01(团组列表)
  830. /// </summary>
  831. /// <param name="dto">请求dto</param>
  832. /// <returns></returns>
  833. [HttpPost]
  834. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  835. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  836. {
  837. if (dto == null)
  838. {
  839. return Ok(JsonView(false, "参数为空"));
  840. }
  841. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  842. return Ok(JsonView(visaList));
  843. }
  844. /// <summary>
  845. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  846. /// </summary>
  847. /// <returns></returns>
  848. [HttpPost]
  849. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  850. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  851. {
  852. if (dto == null)
  853. {
  854. return Ok(JsonView(false, "请求错误:"));
  855. }
  856. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  857. return Ok(JsonView(list));
  858. }
  859. /// <summary>
  860. /// IOS获取团组签证拍照上传进度03(相册)
  861. /// </summary>
  862. /// <returns></returns>
  863. [HttpPost]
  864. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  865. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  866. {
  867. if (dto == null)
  868. {
  869. return Ok(JsonView(false, "请求错误:"));
  870. }
  871. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  872. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  873. list.ForEach(s => s.url = url);
  874. return Ok(JsonView(list));
  875. }
  876. /// <summary>
  877. /// IOS获取团组签证拍照上传进度04(图片上传)
  878. /// </summary>
  879. /// <param name="dto"></param>
  880. /// <returns></returns>
  881. [HttpPost]
  882. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  883. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  884. {
  885. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  886. //if (!string.IsNullOrEmpty(result))
  887. //{
  888. //}
  889. //else {
  890. // return Ok(JsonView(false, "上传失败"));
  891. //}
  892. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  893. int sucNum = 0;
  894. try
  895. {
  896. foreach (var item in dto.base64DataList)
  897. {
  898. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  899. string result = decodeBase64ToImage(item, imageName);
  900. if (!string.IsNullOrEmpty(result))
  901. {
  902. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  903. pic.CreateUserId = dto.CreateUserId;
  904. pic.PicName = imageName;
  905. pic.PicPath = result;
  906. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  907. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  908. if (insertResult > 0)
  909. {
  910. sucNum++;
  911. }
  912. }
  913. }
  914. }
  915. catch (Exception ex)
  916. {
  917. return Ok(JsonView(false, ex.Message));
  918. }
  919. string msg = string.Format(@"成功上传{0}张", sucNum);
  920. return Ok(JsonView(true, msg));
  921. }
  922. private string decodeBase64ToImage(string base64DataURL, string imgName)
  923. {
  924. string filename = "";//声明一个string类型的相对路径
  925. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  926. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  927. try//会有异常抛出,try,catch一下
  928. {
  929. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  930. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  931. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  932. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  933. //文件名称
  934. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  935. //上传的文件的路径
  936. string filePath = "";
  937. if (!Directory.Exists(fileDir))
  938. {
  939. Directory.CreateDirectory(fileDir);
  940. }
  941. //上传的文件的路径
  942. filePath = fileDir + filename;
  943. //string url = HttpRuntime.AppDomainAppPath.ToString();
  944. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  945. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  946. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  947. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  948. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  949. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  950. ms.Close();//关闭当前流,并释放所有与之关联的资源
  951. bitmap.Dispose();
  952. }
  953. catch (Exception e)
  954. {
  955. string massage = e.Message;
  956. Logs("IOS图片上传Error:" + massage);
  957. //filename = e.Message;
  958. }
  959. return filename;//返回相对路径
  960. }
  961. /// <summary>
  962. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  963. /// </summary>
  964. /// <param name="dto"></param>
  965. /// <returns></returns>
  966. [HttpPost]
  967. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  968. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  969. {
  970. if (dto == null)
  971. {
  972. return Ok(JsonView(false, "请求错误:"));
  973. }
  974. string msg = "参数错误";
  975. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  976. {
  977. try
  978. {
  979. //_delegationVisaRep.BeginTran();
  980. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  981. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  982. .Where(s => s.Id == dto.visaProgressCustomerId)
  983. .ExecuteCommandAsync();
  984. if (updCount > 0 && dto.publishCode == 1)
  985. {
  986. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  987. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  988. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  989. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  990. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  991. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  992. if (groupData == null)
  993. {
  994. _delegationVisaRep.RollbackTran();
  995. }
  996. string title = string.Format(@"[签证进度更新]");
  997. string content = string.Format(@"测试文本");
  998. bool rst = await _message.AddMsg(new MessageDto()
  999. {
  1000. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  1001. IssuerId = dto.publisher,
  1002. Title = title,
  1003. Content = content,
  1004. ReleaseTime = DateTime.Now,
  1005. UIdList = new List<int> {
  1006. 234
  1007. }
  1008. });
  1009. if (rst)
  1010. {
  1011. return Ok(JsonView(true, "发送通知成功"));
  1012. }
  1013. }
  1014. //_delegationVisaRep.CommitTran();
  1015. }
  1016. catch (Exception)
  1017. {
  1018. //_delegationVisaRep.RollbackTran();
  1019. }
  1020. }
  1021. return Ok(JsonView(true, msg));
  1022. }
  1023. #endregion
  1024. #region 团组任务分配
  1025. /// <summary>
  1026. /// 团组任务分配初始化
  1027. /// </summary>
  1028. /// <param name="dto"></param>
  1029. /// <returns></returns>
  1030. [HttpPost]
  1031. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1032. public async Task<IActionResult> GetTaskAssignmen()
  1033. {
  1034. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1035. if (groupData.Code != 0)
  1036. {
  1037. return Ok(JsonView(false, groupData.Msg));
  1038. }
  1039. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1040. }
  1041. /// <summary>
  1042. /// 团组任务分配查询
  1043. /// </summary>
  1044. /// <param name="dto"></param>
  1045. /// <returns></returns>
  1046. [HttpPost]
  1047. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1048. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1049. {
  1050. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1051. if (groupData.Code != 0)
  1052. {
  1053. return Ok(JsonView(false, groupData.Msg));
  1054. }
  1055. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1056. }
  1057. /// <summary>
  1058. /// 团组任务分配操作
  1059. /// </summary>
  1060. /// <param name="dto"></param>
  1061. /// <returns></returns>
  1062. [HttpPost]
  1063. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1064. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1065. {
  1066. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1067. if (groupData.Code != 0)
  1068. {
  1069. return Ok(JsonView(false, groupData.Msg));
  1070. }
  1071. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1072. }
  1073. #endregion
  1074. #region 团组费用审核
  1075. /// <summary>
  1076. /// 费用审核
  1077. /// 团组列表 Page
  1078. /// </summary>
  1079. /// <param name="_dto">团组列表请求dto</param>
  1080. /// <returns></returns>
  1081. [HttpPost]
  1082. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1083. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1084. {
  1085. #region 参数验证
  1086. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1087. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1088. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1089. #region 页面操作权限验证
  1090. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1091. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1092. #endregion
  1093. #endregion
  1094. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1095. {
  1096. string sqlWhere = string.Empty;
  1097. if (_dto.IsSure == 0) //未完成
  1098. {
  1099. sqlWhere += string.Format(@" And IsSure = 0");
  1100. }
  1101. else if (_dto.IsSure == 1) //已完成
  1102. {
  1103. sqlWhere += string.Format(@" And IsSure = 1");
  1104. }
  1105. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1106. {
  1107. string tj = _dto.SearchCriteria;
  1108. 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}%')",
  1109. tj, tj, tj, tj, tj);
  1110. }
  1111. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1112. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1113. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1114. From (
  1115. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1116. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1117. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1118. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1119. From Grp_DelegationInfo gdi
  1120. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1121. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1122. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1123. Where gdi.IsDel = 0 {0}
  1124. ) temp ", sqlWhere);
  1125. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1126. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1127. var _view = new
  1128. {
  1129. PageFuncAuth = pageFunAuthView,
  1130. Data = _DelegationList
  1131. };
  1132. return Ok(JsonView(true, "查询成功!", _view, total));
  1133. }
  1134. else
  1135. {
  1136. return Ok(JsonView(false, "查询失败"));
  1137. }
  1138. }
  1139. /// <summary>
  1140. /// 获取团组费用审核
  1141. /// </summary>
  1142. /// <param name="paras">参数Json字符串</param>
  1143. /// <returns></returns>
  1144. [HttpPost]
  1145. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1146. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1147. {
  1148. try
  1149. {
  1150. #region 参数验证
  1151. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1152. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1153. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1154. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1155. #region 页面操作权限验证
  1156. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1157. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1158. #endregion
  1159. #endregion
  1160. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1161. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1162. #region 费用清单
  1163. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1164. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1165. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1166. List<Grp_CreditCardPayment> entityList = _groupRepository
  1167. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1168. .Where(exp.ToExpression())
  1169. .ToList();
  1170. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1171. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1172. /*
  1173. * 76://酒店预订
  1174. */
  1175. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1176. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1177. .ToListAsync();
  1178. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1179. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1180. .ToListAsync();
  1181. /*
  1182. * 79://车/导游地接
  1183. */
  1184. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1185. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1186. .ToListAsync();
  1187. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1188. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1189. .ToListAsync();
  1190. /*
  1191. * 80: //签证
  1192. */
  1193. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1194. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1195. .ToListAsync();
  1196. /*
  1197. *81: //邀请/公务活动
  1198. */
  1199. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1200. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1201. .ToListAsync();
  1202. /*
  1203. * 82: //团组客户保险
  1204. */
  1205. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1206. /*
  1207. * Lable = 85 机票预订
  1208. */
  1209. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1210. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1211. .ToListAsync();
  1212. /*
  1213. * 85 机票预定
  1214. */
  1215. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1216. /*
  1217. * 98 其他款项
  1218. */
  1219. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1220. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1221. .ToListAsync();
  1222. /*
  1223. * 285:收款退还
  1224. */
  1225. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1226. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1227. .ToListAsync();
  1228. /*
  1229. * 1015: //超支费用
  1230. */
  1231. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1232. /*
  1233. * 币种信息
  1234. */
  1235. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1236. /*
  1237. * 车/导游地接 费用类型
  1238. */
  1239. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1240. /*
  1241. * 车/导游地接 费用类型
  1242. */
  1243. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1244. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1245. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1246. /*
  1247. * 用户信息
  1248. */
  1249. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1250. /*
  1251. * 费用模块
  1252. */
  1253. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1254. string priceModule = string.Empty;
  1255. if (sdPriceName != null)
  1256. {
  1257. priceModule = sdPriceName.Name;
  1258. }
  1259. /*
  1260. * 成本信息
  1261. */
  1262. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1263. decimal _groupRate = 0.0000M;
  1264. string _groupCurrencyCode = "-";
  1265. if (groupCost != null)
  1266. {
  1267. _groupRate = groupCost.Rate;
  1268. if (int.TryParse(groupCost.Currency, out int _currency))
  1269. {
  1270. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1271. }
  1272. else _groupCurrencyCode = groupCost.Currency;
  1273. }
  1274. string costContentSql = $"Select * From Grp_GroupCost";
  1275. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1276. //处理日期为空的天数
  1277. for (int i = 0; i < groupCostDetails.Count; i++)
  1278. if (i != 0)
  1279. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1280. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1281. /*
  1282. * 处理详情数据
  1283. */
  1284. foreach (var entity in entityList)
  1285. {
  1286. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1287. _detail.Id = entity.Id;
  1288. _detail.PriceName = priceModule;
  1289. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1290. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1291. /*
  1292. * 应付款金额
  1293. */
  1294. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1295. string PaymentCurrency_WaitPay = "Unknown";
  1296. string hotelCurrncyCode = "Unknown";
  1297. string hotelCurrncyName = "Unknown";
  1298. if (sdPaymentCurrency_WaitPay != null)
  1299. {
  1300. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1301. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1302. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1303. if (hotelCurrncyCode.Equals("CNY"))
  1304. {
  1305. entity.DayRate = 1.0000M;
  1306. }
  1307. }
  1308. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1309. /*
  1310. * 此次付款金额
  1311. */
  1312. decimal CurrPayStr = 0;
  1313. if (entity.PayPercentage == 0)
  1314. {
  1315. if (entity.PayThenMoney != 0)
  1316. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1317. }
  1318. else
  1319. {
  1320. if (entity.PayMoney != 0)
  1321. {
  1322. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1323. }
  1324. }
  1325. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1326. /*
  1327. * 剩余尾款
  1328. */
  1329. decimal BalanceStr = 0;
  1330. if (CurrPayStr != 0)
  1331. {
  1332. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1333. BalanceStr = 0;
  1334. else
  1335. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1336. }
  1337. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1338. /*
  1339. * Bus名称
  1340. */
  1341. _detail.BusName = "待增加";
  1342. /*
  1343. *费用所属
  1344. */
  1345. switch (entity.CTable)
  1346. {
  1347. case 76://酒店预订
  1348. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1349. if (hotelReservations != null)
  1350. {
  1351. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1352. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1353. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1354. string roomFeeStr = "", roomFeestr1 = "";
  1355. //是否比较房型价格
  1356. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1357. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1358. if (hotelReservations.SingleRoomPrice > 0)
  1359. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1360. if (hotelReservations.DoubleRoomPrice > 0)
  1361. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1362. if (hotelReservations.SuiteRoomPrice > 0)
  1363. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1364. if (hotelReservations.OtherRoomPrice > 0)
  1365. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1366. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1367. else roomFeeStr += " 0.00 * 0";
  1368. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1369. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1370. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1371. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1372. /*
  1373. * 费用类型
  1374. * 1:房费
  1375. * 2:早餐
  1376. * 3:地税
  1377. * 4:城市税
  1378. * </summary>
  1379. */
  1380. //地税
  1381. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1382. if (governmentRentData != null)
  1383. {
  1384. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1385. governmentRentFee = governmentRentData.Price;
  1386. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1387. if (governmentRentCurrData != null)
  1388. {
  1389. governmentRentCode = governmentRentCurrData.Name;
  1390. governmentRentName = $"({governmentRentCurrData.Remark})";
  1391. }
  1392. }
  1393. //城市税
  1394. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1395. if (cityTaxData != null)
  1396. {
  1397. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1398. cityTaxFee = cityTaxData.Price;
  1399. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1400. if (cityTaxCurrData != null)
  1401. {
  1402. cityTaxCode = cityTaxCurrData.Name;
  1403. cityTaxName = $"({cityTaxCurrData.Remark})";
  1404. }
  1405. }
  1406. //酒店早餐
  1407. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1408. if (breakfastData != null)
  1409. {
  1410. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1411. breakfastFee = breakfastData.Price;
  1412. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1413. if (breakfastCurrData != null)
  1414. {
  1415. breakfastCode = breakfastCurrData.Name;
  1416. breakfastName = $"({breakfastCurrData.Remark})";
  1417. }
  1418. }
  1419. //房间费用
  1420. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1421. if (roomData != null)
  1422. {
  1423. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1424. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1425. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1426. roomFee = roomData.Price;
  1427. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1428. if (roomCurrData != null)
  1429. {
  1430. roomCode = roomCurrData.Name;
  1431. roomName = $"({roomCurrData.Remark})";
  1432. }
  1433. }
  1434. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1435. string hotelCostStr = "";
  1436. decimal hotelCsotTotal = 0.00M;
  1437. if (groupCost != null)
  1438. {
  1439. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1440. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1441. }
  1442. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1443. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1444. string hotelCost_day = "";
  1445. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1446. foreach (var item in hotelCostDetails1)
  1447. {
  1448. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1449. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1450. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1451. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1452. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1453. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1454. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1455. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1456. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1457. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1458. hotelCost_day += @$"</br>";
  1459. }
  1460. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1461. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1462. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1463. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1464. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1465. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1466. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1467. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1468. $"房间说明: {hotelReservations.Remark} <br/>" +
  1469. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1470. $"{hotelBreakfastStr}" +
  1471. $"{hotelGovernmentRentStr}" +
  1472. $"{hotelCityTaxStr}";
  1473. _detail.PriceNameContent = hotelReservations.HotelName;
  1474. }
  1475. break;
  1476. case 79://车/导游地接
  1477. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1478. if (touristGuideGroundReservations != null)
  1479. {
  1480. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1481. {
  1482. _detail.BusName = touristGuideGroundReservations.BusName;
  1483. }
  1484. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1485. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1486. //if (isInt)
  1487. //{
  1488. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1489. // if (cityInfo != null)
  1490. // {
  1491. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1492. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1493. // if (carFeeItem != null)
  1494. // {
  1495. // nameContent += $@"({carFeeItem.Name})";
  1496. // }
  1497. // _detail.PriceNameContent = nameContent;
  1498. // }
  1499. //}
  1500. //else
  1501. //{
  1502. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1503. //}
  1504. var touristGuideGroundReservationsContents =
  1505. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1506. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1507. foreach (var item in touristGuideGroundReservationsContents)
  1508. {
  1509. string typeName = "Unknown";
  1510. string carCurrencyCode = "Unknown";
  1511. string carCurrencyName = "Unknown";
  1512. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1513. if (carTypeData != null) typeName = carTypeData.Name;
  1514. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1515. if (currencyData != null)
  1516. {
  1517. carCurrencyCode = currencyData.Name;
  1518. carCurrencyName = currencyData.Remark;
  1519. }
  1520. string opCostStr = string.Empty;
  1521. decimal opCostTypePrice = 0.00M;
  1522. #region 处理成本各项费用
  1523. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1524. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1525. if (opCost.Count > 0)
  1526. {
  1527. switch (item.SId)
  1528. {
  1529. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1530. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1531. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1532. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1533. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1534. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1535. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1536. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1537. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1538. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1539. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1540. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1541. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1542. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1543. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1544. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1545. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1546. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1547. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1548. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1549. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1550. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1551. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1552. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1553. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1554. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1555. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1556. }
  1557. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1558. }
  1559. #endregion
  1560. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1561. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1562. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1563. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1564. }
  1565. _detail.PriceMsgContent = priceMsg;
  1566. }
  1567. break;
  1568. case 80: //签证
  1569. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1570. if (visaInfo != null)
  1571. {
  1572. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1573. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1574. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1575. }
  1576. break;
  1577. case 81: //邀请/公务活动
  1578. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1579. if (_ioa != null)
  1580. {
  1581. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1582. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1583. sendCurrName = "Unknown", //快递费用币种 Name
  1584. sendCurrCode = "Unknown", //快递费用币种 Code
  1585. eventsCurrName = "Unknown", //公务活动费币种 Name
  1586. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1587. translateCurrName = "Unknown", //公务翻译费 Name
  1588. translateCurrCode = "Unknown"; //公务翻译费 Code
  1589. #region 处理费用币种
  1590. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1591. if (inviteCurrData != null)
  1592. {
  1593. inviteCurrName = inviteCurrData.Remark;
  1594. inviteCurrCode = inviteCurrData.Name;
  1595. }
  1596. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1597. if (sendCurrData != null)
  1598. {
  1599. sendCurrName = sendCurrData.Remark;
  1600. sendCurrCode = sendCurrData.Name;
  1601. }
  1602. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1603. if (eventsCurrData != null)
  1604. {
  1605. eventsCurrName = eventsCurrData.Remark;
  1606. eventsCurrCode = eventsCurrData.Name;
  1607. }
  1608. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1609. if (translateCurrData != null)
  1610. {
  1611. translateCurrName = translateCurrData.Remark;
  1612. translateCurrCode = translateCurrData.Name;
  1613. }
  1614. #endregion
  1615. _detail.PriceNameContent = _ioa.InviterArea;
  1616. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1617. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1618. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1619. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1620. $@"备注:" + _ioa.Remark + "<br/>";
  1621. }
  1622. break;
  1623. case 82: //团组客户保险
  1624. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1625. if (customers != null)
  1626. {
  1627. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1628. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1629. }
  1630. break;
  1631. case 85: //机票预订
  1632. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1633. if (jpRes != null)
  1634. {
  1635. string FlightsDescription = jpRes.FlightsDescription;
  1636. string PriceDescription = jpRes.PriceDescription;
  1637. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1638. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1639. }
  1640. break;
  1641. case 98://其他款项
  1642. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1643. if (gdpRes != null)
  1644. {
  1645. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1646. _detail.PriceNameContent = gdpRes.PriceName;
  1647. }
  1648. break;
  1649. case 285://收款退还
  1650. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1651. if (refundAndOtherMoney != null)
  1652. {
  1653. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1654. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1655. }
  1656. break;
  1657. case 751://酒店早餐
  1658. break;
  1659. case 1015://超支费用
  1660. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1661. if (groupExtraCost != null)
  1662. {
  1663. _detail.PriceNameContent = groupExtraCost.PriceName;
  1664. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1665. }
  1666. break;
  1667. default:
  1668. break;
  1669. }
  1670. /*
  1671. * 申请人
  1672. */
  1673. string operatorName = " - ";
  1674. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1675. if (_opUser != null)
  1676. {
  1677. operatorName = _opUser.CnName;
  1678. }
  1679. _detail.OperatorName = operatorName;
  1680. /*
  1681. * 审核人
  1682. */
  1683. string auditOperatorName = "Unknown";
  1684. if (entity.AuditGMOperate == 0)
  1685. auditOperatorName = " - ";
  1686. else if (entity.AuditGMOperate == 4)
  1687. auditOperatorName = "自动审核";
  1688. else
  1689. {
  1690. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1691. if (_adUser != null)
  1692. {
  1693. auditOperatorName = _adUser.CnName;
  1694. }
  1695. }
  1696. _detail.AuditOperatorName = auditOperatorName;
  1697. /*
  1698. * 超预算比例
  1699. */
  1700. string overBudgetStr = "";
  1701. if (entity.ExceedBudget == -1)
  1702. overBudgetStr = sdPriceName.Name + "尚无预算";
  1703. else if (entity.ExceedBudget == 0)
  1704. {
  1705. if (entity.CTable == 76 || entity.CTable == 79)
  1706. {
  1707. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1708. else overBudgetStr = "超预算";
  1709. }
  1710. else
  1711. {
  1712. overBudgetStr = "未超预算";
  1713. }
  1714. }
  1715. else
  1716. overBudgetStr = entity.ExceedBudget.ToString("P");
  1717. _detail.OverBudget = overBudgetStr;
  1718. /*
  1719. * 费用总计
  1720. */
  1721. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1722. {
  1723. CurrencyId = entity.PaymentCurrency,
  1724. CurrencyName = PaymentCurrency_WaitPay,
  1725. AmountPayable = entity.PayMoney,
  1726. ThisPayment = CurrPayStr,
  1727. BalancePayment = BalanceStr,
  1728. AuditedFunds = CurrPayStr
  1729. });
  1730. _detail.IsAuditGM = entity.IsAuditGM;
  1731. detailList.Add(_detail);
  1732. }
  1733. #endregion
  1734. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1735. /*
  1736. * 下方描述处理
  1737. */
  1738. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1739. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1740. if (ccpCurrencyPrice != null)
  1741. {
  1742. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1743. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1744. }
  1745. else
  1746. {
  1747. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1748. }
  1749. string amountPayableStr = string.Format(@"应付款总金额: ");
  1750. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1751. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1752. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1753. foreach (var item in nonDuplicat)
  1754. {
  1755. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1756. if (strs.Count > 0)
  1757. {
  1758. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1759. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1760. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1761. //单独处理此次付款金额
  1762. if (item.CurrencyId == 836) //人民币
  1763. {
  1764. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1765. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1766. }
  1767. else
  1768. {
  1769. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1770. }
  1771. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1772. //单独处理已审核费用
  1773. if (item.CurrencyId == 836) //人民币
  1774. {
  1775. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1776. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1777. }
  1778. else
  1779. {
  1780. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1781. }
  1782. }
  1783. }
  1784. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1785. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1786. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1787. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1788. var _view1 = new
  1789. {
  1790. PageFuncAuth = pageFunAuthView,
  1791. Data = _view
  1792. };
  1793. return Ok(JsonView(_view1));
  1794. }
  1795. catch (Exception ex)
  1796. {
  1797. return Ok(JsonView(false, ex.Message));
  1798. }
  1799. }
  1800. /// <summary>
  1801. /// 费用审核
  1802. /// 修改团组费用审核状态
  1803. /// </summary>
  1804. /// <param name="_dto">参数Json字符串</param>
  1805. /// <returns></returns>
  1806. [HttpPost]
  1807. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1808. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1809. {
  1810. #region 参数验证
  1811. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1812. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1813. #endregion
  1814. #region 页面操作权限验证
  1815. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1816. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1817. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1818. #endregion
  1819. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1820. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1821. DateTime dtNow = DateTime.Now;
  1822. _groupRepository.BeginTran();
  1823. int rst = 0;
  1824. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1825. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1826. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1827. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1828. List<dynamic> msgDatas = new List<dynamic>();
  1829. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1830. foreach (var item in idList)
  1831. {
  1832. int CreditId = int.Parse(item);
  1833. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1834. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1835. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1836. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1837. .Where(s => s.Id == CreditId)
  1838. .ExecuteCommandAsync();
  1839. if (result < 1)
  1840. {
  1841. rst = -1;
  1842. _groupRepository.RollbackTran();
  1843. return Ok(JsonView(false, "操作失败并回滚!"));
  1844. }
  1845. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1846. if (creditData != null)
  1847. {
  1848. #region 应用通知配置
  1849. try
  1850. {
  1851. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1852. }
  1853. catch (Exception ex)
  1854. {
  1855. }
  1856. #endregion
  1857. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1858. string groupNameStr = string.Empty;
  1859. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1860. if (groupData != null) groupNameStr = groupData.TeamName;
  1861. string creditTypeStr = string.Empty;
  1862. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1863. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1864. string creditCurrency = string.Empty;
  1865. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1866. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1867. if (creditCurrency.Equals("CNY"))
  1868. {
  1869. creditData.DayRate = 1.0000M;
  1870. }
  1871. if (creditData.PayPercentage == 0.00M)
  1872. {
  1873. creditData.PayPercentage = 100M;
  1874. }
  1875. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1876. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1877. string msgContent = "";
  1878. if (creditCurrency.Equals("CNY"))
  1879. {
  1880. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1881. }
  1882. else
  1883. {
  1884. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1885. }
  1886. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1887. }
  1888. }
  1889. if (rst == 0)
  1890. {
  1891. _groupRepository.CommitTran();
  1892. foreach (var item in msgDatas)
  1893. {
  1894. //发送消息
  1895. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1896. }
  1897. #region 应用推送
  1898. try
  1899. {
  1900. foreach (var ccpId in dic_ccp_user.Keys)
  1901. {
  1902. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1903. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1904. }
  1905. }
  1906. catch (Exception)
  1907. {
  1908. }
  1909. #endregion
  1910. return Ok(JsonView(true, "操作成功!"));
  1911. }
  1912. return Ok(JsonView(false, "操作失败!"));
  1913. }
  1914. #endregion
  1915. #region 机票费用录入
  1916. /// <summary>
  1917. /// 机票录入当前登录人可操作团组
  1918. /// </summary>
  1919. /// <param name="dto"></param>
  1920. /// <returns></returns>
  1921. [HttpPost]
  1922. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1923. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1924. {
  1925. try
  1926. {
  1927. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1928. if (groupData.Code != 0)
  1929. {
  1930. return Ok(JsonView(false, groupData.Msg));
  1931. }
  1932. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1933. }
  1934. catch (Exception ex)
  1935. {
  1936. return Ok(JsonView(false, "程序错误!"));
  1937. throw;
  1938. }
  1939. }
  1940. /// <summary>
  1941. /// 机票费用录入列表
  1942. /// </summary>
  1943. /// <param name="dto"></param>
  1944. /// <returns></returns>
  1945. [HttpPost]
  1946. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1947. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1948. {
  1949. try
  1950. {
  1951. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1952. if (groupData.Code != 0)
  1953. {
  1954. return Ok(JsonView(false, groupData.Msg));
  1955. }
  1956. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1957. }
  1958. catch (Exception ex)
  1959. {
  1960. return Ok(JsonView(false, ex.Message));
  1961. throw;
  1962. }
  1963. }
  1964. /// <summary>
  1965. /// 根据id查询费用录入信息
  1966. /// </summary>
  1967. /// <param name="dto"></param>
  1968. /// <returns></returns>
  1969. [HttpPost]
  1970. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1971. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1972. {
  1973. try
  1974. {
  1975. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1976. if (groupData.Code != 0)
  1977. {
  1978. return Ok(JsonView(false, groupData.Msg));
  1979. }
  1980. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1981. }
  1982. catch (Exception ex)
  1983. {
  1984. return Ok(JsonView(false, "程序错误!"));
  1985. throw;
  1986. }
  1987. }
  1988. /// <summary>
  1989. /// 机票费用录入操作(Status:1.新增,2.修改)
  1990. /// </summary>
  1991. /// <param name="dto"></param>
  1992. /// <returns></returns>
  1993. [HttpPost]
  1994. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1995. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1996. {
  1997. try
  1998. {
  1999. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  2000. if (groupData.Code != 0)
  2001. {
  2002. return Ok(JsonView(false, groupData.Msg));
  2003. }
  2004. #region 应用推送
  2005. try
  2006. {
  2007. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2008. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2009. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2010. }
  2011. catch (Exception ex)
  2012. {
  2013. }
  2014. #endregion
  2015. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2016. }
  2017. catch (Exception ex)
  2018. {
  2019. return Ok(JsonView(false, "程序错误!"));
  2020. throw;
  2021. }
  2022. }
  2023. /// <summary>
  2024. /// 根据舱位类型查询接团客户名单信息
  2025. /// </summary>
  2026. /// <param name="dto"></param>
  2027. /// <returns></returns>
  2028. [HttpPost]
  2029. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2030. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2031. {
  2032. try
  2033. {
  2034. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2035. if (crm_Groups.Count != 0)
  2036. {
  2037. List<dynamic> Customer = new List<dynamic>();
  2038. foreach (var item in crm_Groups)
  2039. {
  2040. var data = new
  2041. {
  2042. Id = item.Id,
  2043. Pinyin = item.Pinyin,
  2044. Name = item.LastName + item.FirstName
  2045. };
  2046. Customer.Add(data);
  2047. }
  2048. return Ok(JsonView(true, "查询成功!", Customer));
  2049. }
  2050. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2051. }
  2052. catch (Exception ex)
  2053. {
  2054. return Ok(JsonView(false, "程序错误!"));
  2055. throw;
  2056. }
  2057. }
  2058. /// <summary>
  2059. /// 根据团号获取客户信息
  2060. /// </summary>
  2061. /// <param name="dto"></param>
  2062. /// <returns></returns>
  2063. [HttpPost]
  2064. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2065. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2066. {
  2067. var jw = JsonView(false);
  2068. if (dto.DIID < 1)
  2069. {
  2070. jw.Msg += "请输入正确的diid";
  2071. return Ok(jw);
  2072. }
  2073. var arr = getSimplClientList(dto.DIID);
  2074. jw = JsonView(true, "获取成功!", arr);
  2075. return Ok(jw);
  2076. }
  2077. private List<SimplClientInfo> getSimplClientList(int diId)
  2078. {
  2079. 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);
  2080. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2081. return arr;
  2082. }
  2083. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2084. {
  2085. string result = origin;
  2086. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2087. {
  2088. string[] temparr = origin.Split(',');
  2089. string fistrStr = temparr[0];
  2090. int count = temparr.Count();
  2091. int tempId;
  2092. bool success = int.TryParse(fistrStr, out tempId);
  2093. if (success)
  2094. {
  2095. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2096. if (tempInfo != null)
  2097. {
  2098. if (count > 1)
  2099. {
  2100. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2101. }
  2102. else
  2103. {
  2104. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2105. }
  2106. }
  2107. }
  2108. }
  2109. return result;
  2110. }
  2111. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2112. {
  2113. string result = origin;
  2114. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2115. {
  2116. string[] temparr = origin.Split(',');
  2117. result = "";
  2118. foreach (var item in temparr)
  2119. {
  2120. int tempId;
  2121. bool success = int.TryParse(item, out tempId);
  2122. if (success)
  2123. {
  2124. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2125. if (tempInfo != null)
  2126. {
  2127. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2128. }
  2129. }
  2130. }
  2131. }
  2132. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2133. return result;
  2134. }
  2135. /// <summary>
  2136. /// 机票费用录入,删除
  2137. /// </summary>
  2138. /// <param name="dto"></param>
  2139. /// <returns></returns>
  2140. [HttpPost]
  2141. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2142. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2143. {
  2144. try
  2145. {
  2146. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2147. if (res)
  2148. {
  2149. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2150. {
  2151. IsDel = 1,
  2152. DeleteUserId = dto.DeleteUserId,
  2153. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2154. }).ExecuteCommandAsync();
  2155. return Ok(JsonView(true, "删除成功!"));
  2156. }
  2157. return Ok(JsonView(false, "删除失败!"));
  2158. }
  2159. catch (Exception ex)
  2160. {
  2161. return Ok(JsonView(false, "程序错误!"));
  2162. throw;
  2163. }
  2164. }
  2165. /// <summary>
  2166. /// 导出机票录入报表
  2167. /// </summary>
  2168. /// <param name="dto"></param>
  2169. /// <returns></returns>
  2170. [HttpPost]
  2171. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2172. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2173. {
  2174. try
  2175. {
  2176. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2177. if (groupData.Code != 0)
  2178. {
  2179. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2180. }
  2181. else
  2182. {
  2183. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2184. if (AirTicketReservations.Count != 0)
  2185. {
  2186. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2187. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2188. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2189. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2190. WorkbookDesigner designer = new WorkbookDesigner();
  2191. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2192. decimal countCost = 0;
  2193. foreach (var item in AirTicketReservations)
  2194. {
  2195. #region 处理客人姓名
  2196. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2197. item.ClientName = clientNames;
  2198. #endregion
  2199. if (item.BankType == "其他")
  2200. {
  2201. item.BankNo = "--";
  2202. }
  2203. else
  2204. {
  2205. if (!string.IsNullOrEmpty(item.BankType))
  2206. {
  2207. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2208. }
  2209. }
  2210. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2211. item.Price = System.Decimal.Round(item.Price, 2);
  2212. countCost += Convert.ToDecimal(item.Price);
  2213. }
  2214. designer.SetDataSource("Export", AirTicketReservations);
  2215. designer.SetDataSource("ExportDiCode", diCode);
  2216. designer.SetDataSource("ExportDiName", diName);
  2217. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2218. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2219. designer.Process();
  2220. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2221. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2222. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2223. return Ok(JsonView(true, "成功", url = rst));
  2224. }
  2225. else
  2226. {
  2227. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2228. }
  2229. }
  2230. }
  2231. catch (Exception ex)
  2232. {
  2233. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2234. throw;
  2235. }
  2236. }
  2237. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2238. /// <summary>
  2239. /// 行程单导出
  2240. /// </summary>
  2241. /// <param name="dto"></param>
  2242. /// <returns></returns>
  2243. [HttpPost]
  2244. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2245. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2246. {
  2247. try
  2248. {
  2249. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2250. if (groupData.Code != 0)
  2251. {
  2252. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2253. }
  2254. else
  2255. {
  2256. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2257. if (dto.Language == "CN")
  2258. {
  2259. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2260. DocumentBuilder builder = new DocumentBuilder(doc);
  2261. int tableIndex = 0;//表格索引
  2262. //得到文档中的第一个表格
  2263. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2264. foreach (var item in _AirTicketReservations)
  2265. {
  2266. #region 处理固定数据
  2267. string[] FlightsCode = item.FlightsCode.Split('/');
  2268. if (FlightsCode.Length != 0)
  2269. {
  2270. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2271. if (_AirCompany != null)
  2272. {
  2273. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2274. }
  2275. else
  2276. {
  2277. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2278. }
  2279. }
  2280. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2281. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2282. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2283. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2284. string name = "";
  2285. foreach (string clientName in nameArray)
  2286. {
  2287. if (!name.Contains(clientName))
  2288. {
  2289. name += clientName + ",";
  2290. }
  2291. }
  2292. if (!string.IsNullOrWhiteSpace(name))
  2293. {
  2294. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2295. }
  2296. else
  2297. {
  2298. table.Range.Bookmarks["ClientName"].Text = "--";
  2299. }
  2300. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2301. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2302. table.Range.Bookmarks["JointTicket"].Text = "--";
  2303. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2304. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2305. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2306. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2307. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2308. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2309. #endregion
  2310. #region 循环数据处理
  2311. List<AirInfo> airs = new List<AirInfo>();
  2312. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2313. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2314. for (int i = 0; i < FlightsCode.Length; i++)
  2315. {
  2316. AirInfo air = new AirInfo();
  2317. string[] tempstr = DayArray[i]
  2318. .Replace("\r\n", string.Empty)
  2319. .Replace("\\r\\n", string.Empty)
  2320. .TrimStart().TrimEnd()
  2321. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2322. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2323. string starCity = "";
  2324. if (star_Three != null)
  2325. {
  2326. starCity = star_Three.AirPort;
  2327. }
  2328. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2329. string EndCity = "";
  2330. if (End_Three != null)
  2331. {
  2332. EndCity = End_Three.AirPort;
  2333. }
  2334. air.Destination = starCity + "/" + EndCity;
  2335. air.Flight = FlightsCode[i];
  2336. air.SeatingClass = item.CTypeName;
  2337. string dateTime = tempstr[2];
  2338. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2339. air.FlightDate = DateTemp;
  2340. air.DepartureTime = tempstr[5];
  2341. air.LandingTime = tempstr[6];
  2342. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2343. air.TicketStatus = "--";
  2344. air.Luggage = "--";
  2345. air.DepartureTerminal = "--";
  2346. air.LandingTerminal = "--";
  2347. airs.Add(air);
  2348. }
  2349. int row = 13;
  2350. for (int i = 0; i < airs.Count; i++)
  2351. {
  2352. if (airs.Count > 2)
  2353. {
  2354. for (int j = 0; j < airs.Count - 2; j++)
  2355. {
  2356. var CopyRow = table.Rows[12].Clone(true);
  2357. table.Rows.Add(CopyRow);
  2358. }
  2359. }
  2360. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2361. int index = 0;
  2362. foreach (PropertyInfo property in properties)
  2363. {
  2364. string value = property.GetValue(airs[i]).ToString();
  2365. Cell ishcel0 = table.Rows[row].Cells[index];
  2366. Paragraph p = new Paragraph(doc);
  2367. string s = value;
  2368. p.AppendChild(new Run(doc, s));
  2369. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2370. ishcel0.AppendChild(p);
  2371. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2372. index++;
  2373. }
  2374. row++;
  2375. }
  2376. #endregion
  2377. Paragraph lastParagraph = new Paragraph(doc);
  2378. //第一个表格末尾加段落
  2379. table.ParentNode.InsertAfter(lastParagraph, table);
  2380. //复制第一个表格
  2381. Table cloneTable = (Table)table.Clone(true);
  2382. //在文档末尾段落后面加入复制的表格
  2383. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2384. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2385. {
  2386. int rownewsIndex = 13;
  2387. for (int i = 0; i < 2; i++)
  2388. {
  2389. var CopyRow = table.Rows[12].Clone(true);
  2390. table.Rows.RemoveAt(13);
  2391. table.Rows.Add(CopyRow);
  2392. rownewsIndex++;
  2393. }
  2394. }
  2395. else
  2396. {
  2397. table.Rows.RemoveAt(12);
  2398. }
  2399. cloneTable.Rows.RemoveAt(12);
  2400. }
  2401. if (_AirTicketReservations.Count != 0)
  2402. {
  2403. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2404. if (FlightsCode.Length != 0)
  2405. {
  2406. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2407. if (_AirCompany != null)
  2408. {
  2409. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2410. }
  2411. else
  2412. {
  2413. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2414. }
  2415. }
  2416. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2417. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2418. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2419. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2420. string name = "";
  2421. foreach (string clientName in nameArray)
  2422. {
  2423. if (!name.Contains(clientName))
  2424. {
  2425. name += clientName + ",";
  2426. }
  2427. }
  2428. if (!string.IsNullOrWhiteSpace(name))
  2429. {
  2430. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2431. }
  2432. else
  2433. {
  2434. table.Range.Bookmarks["ClientName"].Text = "--";
  2435. }
  2436. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2437. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2438. table.Range.Bookmarks["JointTicket"].Text = "--";
  2439. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2440. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2441. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2442. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2443. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2444. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2445. }
  2446. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2447. //保存合并后的文档
  2448. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2449. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2450. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2451. return Ok(JsonView(true, "成功!", rst));
  2452. }
  2453. else
  2454. {
  2455. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2456. DocumentBuilder builder = new DocumentBuilder(doc);
  2457. int tableIndex = 0;//表格索引
  2458. //得到文档中的第一个表格
  2459. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2460. List<string> texts = new List<string>();
  2461. foreach (var item in _AirTicketReservations)
  2462. {
  2463. string[] FlightsCode = item.FlightsCode.Split('/');
  2464. if (FlightsCode.Length != 0)
  2465. {
  2466. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2467. if (_AirCompany != null)
  2468. {
  2469. if (!transDic.ContainsKey(_AirCompany.CnName))
  2470. {
  2471. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2472. }
  2473. }
  2474. else
  2475. {
  2476. if (!transDic.ContainsKey("--"))
  2477. {
  2478. transDic.Add("--", "--");
  2479. }
  2480. }
  2481. }
  2482. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2483. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2484. string name = "";
  2485. foreach (string clientName in nameArray)
  2486. {
  2487. name += clientName + ",";
  2488. }
  2489. if (!texts.Contains(name))
  2490. {
  2491. texts.Add(name);
  2492. }
  2493. List<AirInfo> airs = new List<AirInfo>();
  2494. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2495. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2496. for (int i = 0; i < FlightsCode.Length; i++)
  2497. {
  2498. AirInfo air = new AirInfo();
  2499. string[] tempstr = DayArray[i]
  2500. .Replace("\r\n", string.Empty)
  2501. .Replace("\\r\\n", string.Empty)
  2502. .TrimStart().TrimEnd()
  2503. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2504. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2505. if (star_Three != null)
  2506. {
  2507. if (!transDic.ContainsKey(star_Three.AirPort))
  2508. {
  2509. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2510. }
  2511. }
  2512. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2513. if (End_Three != null)
  2514. {
  2515. if (!transDic.ContainsKey(End_Three.AirPort))
  2516. {
  2517. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2518. }
  2519. }
  2520. if (!texts.Contains(item.CTypeName))
  2521. {
  2522. texts.Add(item.CTypeName);
  2523. }
  2524. }
  2525. }
  2526. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2527. if (transData.Count > 0)
  2528. {
  2529. foreach (TranslateResult item in transData)
  2530. {
  2531. if (!transDic.ContainsKey(item.Query))
  2532. {
  2533. transDic.Add(item.Query, item.Translation);
  2534. }
  2535. }
  2536. }
  2537. foreach (var item in _AirTicketReservations)
  2538. {
  2539. #region 处理固定数据
  2540. string[] FlightsCode = item.FlightsCode.Split('/');
  2541. if (FlightsCode.Length != 0)
  2542. {
  2543. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2544. if (_AirCompany != null)
  2545. {
  2546. string str = "--";
  2547. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2548. if (!string.IsNullOrEmpty(translateResult))
  2549. {
  2550. str = translateResult;
  2551. str = _airTicketResRep.Processing(str);
  2552. }
  2553. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2554. }
  2555. else
  2556. {
  2557. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2558. }
  2559. }
  2560. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2561. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2562. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2563. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2564. string names = "";
  2565. foreach (string clientName in nameArray)
  2566. {
  2567. names += clientName + ",";
  2568. }
  2569. if (!string.IsNullOrWhiteSpace(names))
  2570. {
  2571. string str = "--";
  2572. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2573. if (!string.IsNullOrEmpty(translateResult))
  2574. {
  2575. str = translateResult;
  2576. str = _airTicketResRep.Processing(str);
  2577. }
  2578. table.Range.Bookmarks["ClientName"].Text = str;
  2579. }
  2580. else
  2581. {
  2582. table.Range.Bookmarks["ClientName"].Text = "--";
  2583. }
  2584. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2585. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2586. table.Range.Bookmarks["JointTicket"].Text = "--";
  2587. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2588. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2589. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2590. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2591. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2592. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2593. #endregion
  2594. #region 循环数据处理
  2595. List<AirInfo> airs = new List<AirInfo>();
  2596. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2597. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2598. for (int i = 0; i < FlightsCode.Length; i++)
  2599. {
  2600. AirInfo air = new AirInfo();
  2601. string[] tempstr = DayArray[i]
  2602. .Replace("\r\n", string.Empty)
  2603. .Replace("\\r\\n", string.Empty)
  2604. .TrimStart().TrimEnd()
  2605. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2606. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2607. string starCity = "";
  2608. if (star_Three != null)
  2609. {
  2610. string str2 = "--";
  2611. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2612. if (!string.IsNullOrEmpty(translateResult2))
  2613. {
  2614. str2 = translateResult2;
  2615. str2 = _airTicketResRep.Processing(str2);
  2616. }
  2617. starCity = str2;
  2618. }
  2619. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2620. string EndCity = "";
  2621. if (End_Three != null)
  2622. {
  2623. string str1 = "--";
  2624. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2625. if (!string.IsNullOrEmpty(translateResult1))
  2626. {
  2627. str1 = translateResult1;
  2628. str1 = _airTicketResRep.Processing(str1);
  2629. }
  2630. EndCity = str1;
  2631. }
  2632. air.Destination = starCity + "/" + EndCity;
  2633. air.Flight = FlightsCode[i];
  2634. string str = "--";
  2635. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2636. if (!string.IsNullOrEmpty(translateResult))
  2637. {
  2638. str = translateResult;
  2639. str = _airTicketResRep.Processing(str);
  2640. }
  2641. air.SeatingClass = str;
  2642. string dateTime = tempstr[2];
  2643. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2644. air.FlightDate = DateTemp;
  2645. air.DepartureTime = tempstr[5];
  2646. air.LandingTime = tempstr[6];
  2647. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2648. air.TicketStatus = "--";
  2649. air.Luggage = "--";
  2650. air.DepartureTerminal = "--";
  2651. air.LandingTerminal = "--";
  2652. airs.Add(air);
  2653. }
  2654. int row = 13;
  2655. for (int i = 0; i < airs.Count; i++)
  2656. {
  2657. if (airs.Count > 2)
  2658. {
  2659. for (int j = 0; j < airs.Count - 2; j++)
  2660. {
  2661. var CopyRow = table.Rows[12].Clone(true);
  2662. table.Rows.Add(CopyRow);
  2663. }
  2664. }
  2665. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2666. int index = 0;
  2667. foreach (PropertyInfo property in properties)
  2668. {
  2669. string value = property.GetValue(airs[i]).ToString();
  2670. Cell ishcel0 = table.Rows[row].Cells[index];
  2671. Paragraph p = new Paragraph(doc);
  2672. string s = value;
  2673. p.AppendChild(new Run(doc, s));
  2674. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2675. ishcel0.AppendChild(p);
  2676. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2677. //ishcel0.CellFormat.VerticalAlignment=
  2678. index++;
  2679. }
  2680. row++;
  2681. }
  2682. #endregion
  2683. Paragraph lastParagraph = new Paragraph(doc);
  2684. //第一个表格末尾加段落
  2685. table.ParentNode.InsertAfter(lastParagraph, table);
  2686. //复制第一个表格
  2687. Table cloneTable = (Table)table.Clone(true);
  2688. //在文档末尾段落后面加入复制的表格
  2689. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2690. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2691. {
  2692. int rownewsIndex = 13;
  2693. for (int i = 0; i < 2; i++)
  2694. {
  2695. var CopyRow = table.Rows[12].Clone(true);
  2696. table.Rows.RemoveAt(13);
  2697. table.Rows.Add(CopyRow);
  2698. rownewsIndex++;
  2699. }
  2700. }
  2701. else
  2702. {
  2703. table.Rows.RemoveAt(12);
  2704. }
  2705. cloneTable.Rows.RemoveAt(12);
  2706. }
  2707. if (_AirTicketReservations.Count != 0)
  2708. {
  2709. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2710. if (FlightsCode.Length != 0)
  2711. {
  2712. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2713. if (_AirCompany != null)
  2714. {
  2715. string str = "--";
  2716. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2717. if (!string.IsNullOrEmpty(translateResult))
  2718. {
  2719. str = translateResult;
  2720. str = _airTicketResRep.Processing(str);
  2721. }
  2722. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2723. }
  2724. else
  2725. {
  2726. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2727. }
  2728. }
  2729. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2730. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2731. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2732. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2733. string names = "";
  2734. foreach (string clientName in nameArray)
  2735. {
  2736. names += clientName + ",";
  2737. }
  2738. if (!string.IsNullOrWhiteSpace(names))
  2739. {
  2740. string str = "--";
  2741. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2742. if (!string.IsNullOrEmpty(translateResult))
  2743. {
  2744. str = translateResult;
  2745. str = _airTicketResRep.Processing(str);
  2746. }
  2747. table.Range.Bookmarks["ClientName"].Text = str;
  2748. }
  2749. else
  2750. {
  2751. table.Range.Bookmarks["ClientName"].Text = "--";
  2752. }
  2753. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2754. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2755. table.Range.Bookmarks["JointTicket"].Text = "--";
  2756. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2757. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2758. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2759. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2760. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2761. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2762. }
  2763. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2764. //保存合并后的文档
  2765. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2766. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2767. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2768. return Ok(JsonView(true, "成功!", rst));
  2769. }
  2770. }
  2771. }
  2772. catch (Exception ex)
  2773. {
  2774. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2775. throw;
  2776. }
  2777. }
  2778. #endregion
  2779. #region 团组增减款项 --> 其他款项
  2780. /// <summary>
  2781. /// 团组增减款项下拉框绑定
  2782. /// </summary>
  2783. /// <param name="dto"></param>
  2784. /// <returns></returns>
  2785. [HttpPost]
  2786. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2787. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2788. {
  2789. #region 参数验证
  2790. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2791. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2792. #endregion
  2793. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2794. }
  2795. /// <summary>
  2796. /// 根据团组Id查询团组增减款项
  2797. /// </summary>
  2798. /// <param name="dto"></param>
  2799. /// <returns></returns>
  2800. [HttpPost]
  2801. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2802. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2803. {
  2804. #region 参数验证
  2805. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2806. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2807. #endregion
  2808. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2809. }
  2810. /// <summary>
  2811. /// 团组增减款项操作(Status:1.新增,2.修改)
  2812. /// </summary>
  2813. /// <param name="dto"></param>
  2814. /// <returns></returns>
  2815. [HttpPost]
  2816. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2817. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2818. {
  2819. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2820. if (groupData.Code != 200)
  2821. {
  2822. return Ok(JsonView(false, groupData.Msg));
  2823. }
  2824. #region 应用推送
  2825. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2826. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2827. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2828. #endregion
  2829. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2830. }
  2831. /// <summary>
  2832. /// 团组增减款项操作 删除
  2833. /// </summary>
  2834. /// <param name="dto"></param>
  2835. /// <returns></returns>
  2836. [HttpPost]
  2837. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2838. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2839. {
  2840. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2841. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2842. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2843. if (res.Code == 0)
  2844. {
  2845. return Ok(JsonView(true, "删除成功!"));
  2846. }
  2847. return Ok(JsonView(false, "删除失败!"));
  2848. }
  2849. /// <summary>
  2850. /// 根据团组增减款项Id查询
  2851. /// </summary>
  2852. /// <param name="dto"></param>
  2853. /// <returns></returns>
  2854. [HttpPost]
  2855. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2856. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2857. {
  2858. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2859. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2860. }
  2861. /// <summary>
  2862. /// 查询供应商名称
  2863. /// </summary>
  2864. /// <param name="dto"></param>
  2865. /// <returns></returns>
  2866. [HttpPost]
  2867. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2868. {
  2869. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2870. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2871. ?? new List<Grp_DecreasePayments>();
  2872. dbResult = dbResult.Distinct(new
  2873. ProductComparer()).ToList();
  2874. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2875. {
  2876. x.Id,
  2877. x.SupplierAddress,
  2878. x.SupplierArea,
  2879. x.SupplierContact,
  2880. x.SupplierContactNumber,
  2881. x.SupplierEmail,
  2882. x.SupplierName,
  2883. x.SupplierSocialAccount,
  2884. x.SupplierTypeId,
  2885. }).ToList());
  2886. return Ok(jw);
  2887. }
  2888. #endregion
  2889. #region 文件上传、删除
  2890. /// <summary>
  2891. /// region 文件上传 可以带参数
  2892. /// </summary>
  2893. /// <param name="file"></param>
  2894. /// <returns></returns>
  2895. [HttpPost]
  2896. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2897. public async Task<IActionResult> UploadProject(IFormFile file)
  2898. {
  2899. try
  2900. {
  2901. var TypeName = Request.Headers["TypeName"].ToString();
  2902. if (file != null)
  2903. {
  2904. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2905. //文件名称
  2906. string projectFileName = file.FileName;
  2907. //上传的文件的路径
  2908. string filePath = "";
  2909. if (TypeName == "A")//A代表团组增减款项
  2910. {
  2911. if (!Directory.Exists(fileDir))
  2912. {
  2913. Directory.CreateDirectory(fileDir);
  2914. }
  2915. //上传的文件的路径
  2916. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2917. }
  2918. else if (TypeName == "B")//B代表商邀相关文件
  2919. {
  2920. if (!Directory.Exists(fileDir))
  2921. {
  2922. Directory.CreateDirectory(fileDir);
  2923. }
  2924. //上传的文件的路径
  2925. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2926. }
  2927. using (FileStream fs = System.IO.File.Create(filePath))
  2928. {
  2929. file.CopyTo(fs);
  2930. fs.Flush();
  2931. }
  2932. return Ok(JsonView(true, "上传成功!", projectFileName));
  2933. }
  2934. else
  2935. {
  2936. return Ok(JsonView(false, "上传失败!"));
  2937. }
  2938. }
  2939. catch (Exception ex)
  2940. {
  2941. return Ok(JsonView(false, "程序错误!"));
  2942. throw;
  2943. }
  2944. }
  2945. /// <summary>
  2946. /// 删除指定文件
  2947. /// </summary>
  2948. /// <param name="dto"></param>
  2949. /// <returns></returns>
  2950. [HttpPost]
  2951. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2952. public async Task<IActionResult> DelFile(DelFileDto dto)
  2953. {
  2954. try
  2955. {
  2956. var TypeName = Request.Headers["TypeName"].ToString();
  2957. string filePath = "";
  2958. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2959. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2960. int id = 0;
  2961. if (TypeName == "A")
  2962. {
  2963. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2964. // 删除该文件
  2965. System.IO.File.Delete(filePath);
  2966. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2967. }
  2968. else if (TypeName == "B")
  2969. {
  2970. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2971. // 删除该文件
  2972. System.IO.File.Delete(filePath);
  2973. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2974. }
  2975. if (id != 0)
  2976. {
  2977. return Ok(JsonView(true, "成功!"));
  2978. }
  2979. else
  2980. {
  2981. return Ok(JsonView(false, "失败!"));
  2982. }
  2983. }
  2984. catch (Exception ex)
  2985. {
  2986. return Ok(JsonView(false, "程序错误!"));
  2987. throw;
  2988. }
  2989. }
  2990. #endregion
  2991. #region 商邀费用录入
  2992. /// <summary>
  2993. /// 根据团组Id查询商邀费用列表
  2994. /// </summary>
  2995. /// <param name="dto"></param>
  2996. /// <returns></returns>
  2997. [HttpPost]
  2998. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2999. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  3000. {
  3001. try
  3002. {
  3003. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3004. if (groupData.Code != 0)
  3005. {
  3006. return Ok(JsonView(false, groupData.Msg));
  3007. }
  3008. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3009. }
  3010. catch (Exception ex)
  3011. {
  3012. return Ok(JsonView(false, "程序错误!"));
  3013. throw;
  3014. }
  3015. }
  3016. //
  3017. /// <summary>
  3018. /// 商邀费用 Info Page 基础数据源
  3019. /// </summary>
  3020. /// <param name="dto"></param>
  3021. /// <returns></returns>
  3022. [HttpPost]
  3023. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3024. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3025. {
  3026. try
  3027. {
  3028. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3029. if (groupData.Code != 0)
  3030. {
  3031. return Ok(JsonView(false, groupData.Msg));
  3032. }
  3033. return Ok(JsonView(true, "操作成功", groupData.Data));
  3034. }
  3035. catch (Exception ex)
  3036. {
  3037. return Ok(JsonView(false, ex.Message));
  3038. throw;
  3039. }
  3040. }
  3041. /// <summary>
  3042. /// 根据商邀费用ID查询C表和商邀费用数据
  3043. /// </summary>
  3044. /// <param name="dto"></param>
  3045. /// <returns></returns>
  3046. [HttpPost]
  3047. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3048. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3049. {
  3050. try
  3051. {
  3052. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3053. if (groupData.Code != 0)
  3054. {
  3055. return Ok(JsonView(false, groupData.Msg));
  3056. }
  3057. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3058. }
  3059. catch (Exception ex)
  3060. {
  3061. return Ok(JsonView(false, ex.Message));
  3062. throw;
  3063. }
  3064. }
  3065. /// <summary>
  3066. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3067. /// </summary>
  3068. /// <param name="dto"></param>
  3069. /// <returns></returns>
  3070. [HttpPost]
  3071. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3072. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3073. {
  3074. try
  3075. {
  3076. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3077. if (groupData.Code != 0)
  3078. {
  3079. return Ok(JsonView(false, groupData.Msg));
  3080. }
  3081. #region 应用推送
  3082. try
  3083. {
  3084. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3085. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3086. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3087. }
  3088. catch (Exception ex)
  3089. {
  3090. }
  3091. #endregion
  3092. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3093. }
  3094. catch (Exception ex)
  3095. {
  3096. return Ok(JsonView(false, "程序错误!"));
  3097. throw;
  3098. }
  3099. }
  3100. /// <summary>
  3101. /// 商邀删除
  3102. /// </summary>
  3103. /// <param name="dto"></param>
  3104. /// <returns></returns>
  3105. [HttpPost]
  3106. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3107. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3108. {
  3109. try
  3110. {
  3111. _sqlSugar.BeginTran();
  3112. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3113. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3114. {
  3115. IsDel = 1,
  3116. DeleteUserId = dto.DeleteUserId,
  3117. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3118. })
  3119. .Where(it => it.Id == dto.Id)
  3120. .ExecuteCommand();
  3121. if (res1 > 0)
  3122. {
  3123. int _diId = 0;
  3124. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3125. if (_ioaInfo != null)
  3126. {
  3127. _diId = _ioaInfo.DiId;
  3128. }
  3129. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3130. .SetColumns(a => new Grp_CreditCardPayment()
  3131. {
  3132. IsDel = 1,
  3133. DeleteUserId = dto.DeleteUserId,
  3134. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3135. })
  3136. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3137. .ExecuteCommand();
  3138. if (res2 > 0)
  3139. {
  3140. _sqlSugar.CommitTran();
  3141. return Ok(JsonView(true, "删除成功!"));
  3142. }
  3143. }
  3144. _sqlSugar.RollbackTran();
  3145. return Ok(JsonView(false, "删除失败"));
  3146. }
  3147. catch (Exception ex)
  3148. {
  3149. _sqlSugar.RollbackTran();
  3150. return Ok(JsonView(false, ex.Message));
  3151. }
  3152. }
  3153. /// <summary>
  3154. /// 团组模块文件上传
  3155. /// </summary>
  3156. /// <param name="dto"></param>
  3157. /// <returns></returns>
  3158. [HttpPost]
  3159. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3160. {
  3161. var jw = JsonView(false);
  3162. long M = 1024 * 1024;
  3163. if (dto.Files == null || dto.Files.Count == 0)
  3164. {
  3165. jw.Msg = "无文件信息!";
  3166. return Ok(jw);
  3167. }
  3168. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3169. {
  3170. jw.Msg = "文件大小超过20M!";
  3171. return Ok(jw);
  3172. }
  3173. //var nameSp = dto.File.FileName.Split(".");
  3174. //if (nameSp.Length < 2)
  3175. //{
  3176. // jw.Msg = "拓展名称有误!";
  3177. // return Ok(jw);
  3178. //}
  3179. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3180. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3181. //{
  3182. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3183. // return Ok(jw);
  3184. //}
  3185. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3186. if (Ctable == null)
  3187. {
  3188. jw.Msg = "Ctable指向有误!";
  3189. return Ok(jw);
  3190. }
  3191. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3192. if (groupInfo == null)
  3193. {
  3194. jw.Msg = "团组信息不存在!";
  3195. return Ok(jw);
  3196. }
  3197. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3198. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3199. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3200. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3201. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3202. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3203. try
  3204. {
  3205. if (!Directory.Exists(fileBase))
  3206. {
  3207. Directory.CreateDirectory(fileBase);
  3208. }
  3209. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3210. foreach (var fileStream in dto.Files)
  3211. {
  3212. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3213. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3214. {
  3215. Cid = dto.Cid,
  3216. CreateTime = DateTime.Now,
  3217. CreateUserId = dto.Userid,
  3218. Ctable = dto.Ctable,
  3219. Diid = dto.Diid,
  3220. IsDel = 0,
  3221. FilePath = saveFilePath,
  3222. FileName = fileStream.FileName
  3223. };
  3224. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3225. {
  3226. fileStream.CopyTo(fs);
  3227. fs.Flush();
  3228. }
  3229. saveArr.Add(file);
  3230. }
  3231. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3232. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3233. jw = JsonView(true, "保存成功!", new
  3234. {
  3235. count = addResult,
  3236. filesName = saveArr.Select(x => x.FileName)
  3237. }) ;
  3238. }
  3239. catch (Exception ex)
  3240. {
  3241. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3242. {
  3243. count = 0,
  3244. filesName = new string[0],
  3245. }) ;
  3246. }
  3247. return Ok(jw);
  3248. }
  3249. /// <summary>
  3250. /// 查询各模块已保存文件
  3251. /// </summary>
  3252. /// <param name="dto"></param>
  3253. /// <returns></returns>
  3254. [HttpPost]
  3255. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3256. {
  3257. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3258. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3259. .WhereIF(dto.UserId != -1,x=>x.CreateUserId == dto.UserId)
  3260. .ToList();
  3261. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3262. {
  3263. x.FileName,
  3264. x.Id,
  3265. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + System.Web.HttpUtility.UrlEncode(x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"),AppSettingsHelper.Get("GrpFileFtpPath")), System.Text.Encoding.UTF8),
  3266. })));
  3267. }
  3268. /// <summary>
  3269. /// 下载该团组下的所有文件
  3270. /// </summary>
  3271. /// <param name="dto"></param>
  3272. /// <returns></returns>
  3273. [HttpPost]
  3274. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3275. {
  3276. var jw = JsonView(false);
  3277. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3278. if (groupInfo == null)
  3279. {
  3280. jw.Msg = "团组信息不存在!";
  3281. return Ok(jw);
  3282. }
  3283. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3284. var isModule = Convert.ToBoolean(dto.isModule);
  3285. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3286. IOOperatorHelper io = new IOOperatorHelper();
  3287. if (isModule)
  3288. {
  3289. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3290. foreach (var moduleArr in moduleGroup)
  3291. {
  3292. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3293. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3294. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3295. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3296. foreach (var item in moduleArr)
  3297. {
  3298. if (System.IO.File.Exists(item.FilePath))
  3299. {
  3300. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3301. {
  3302. byte[] bytes = new byte[fileStream.Length];
  3303. fileStream.Read(bytes, 0, bytes.Length);
  3304. fileStream.Close();
  3305. Stream stream = new MemoryStream(bytes);
  3306. chiZips.Add(item.FileName, stream);
  3307. }
  3308. }
  3309. }
  3310. if (chiZips.Count > 0)
  3311. {
  3312. var byts = io.ConvertZipStream(chiZips);
  3313. Stream stream = new MemoryStream(byts);
  3314. Zips.Add(key.Name+"_.zip", stream);
  3315. }
  3316. }
  3317. }
  3318. else
  3319. {
  3320. foreach (var item in dbQuery)
  3321. {
  3322. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3323. {
  3324. byte[] bytes = new byte[fileStream.Length];
  3325. fileStream.Read(bytes, 0, bytes.Length);
  3326. fileStream.Close();
  3327. Stream stream = new MemoryStream(bytes);
  3328. while (Zips.Keys.Contains(item.FileName))
  3329. {
  3330. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3331. }
  3332. Zips.Add(item.FileName, stream);
  3333. }
  3334. }
  3335. }
  3336. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3337. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3338. if (Zips.Count > 0)
  3339. {
  3340. var byts = io.ConvertZipStream(Zips);
  3341. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3342. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3343. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3344. }
  3345. else
  3346. {
  3347. jw.Msg = "暂无生成文件!";
  3348. }
  3349. return Ok(jw);
  3350. }
  3351. /// <summary>
  3352. /// 下载该团组下此模块的所有文件
  3353. /// </summary>
  3354. /// <param name="dto"></param>
  3355. /// <returns></returns>
  3356. [HttpPost]
  3357. public IActionResult ExportGroupByModule(ExportGroupByModuleDto dto)
  3358. {
  3359. var jw = JsonView(false);
  3360. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3361. if (groupInfo == null)
  3362. {
  3363. jw.Msg = "团组信息不存在!";
  3364. return Ok(jw);
  3365. }
  3366. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid && x.Ctable == dto.Ctable).ToList();
  3367. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == dto.Ctable
  3368. && x.IsDel == 0);
  3369. if (key == null)
  3370. {
  3371. jw.Msg = "Ctable指向错误!";
  3372. return Ok(jw);
  3373. }
  3374. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3375. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3376. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3377. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3378. IOOperatorHelper io = new IOOperatorHelper();
  3379. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3380. foreach (var item in dbQuery)
  3381. {
  3382. if (System.IO.File.Exists(item.FilePath))
  3383. {
  3384. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3385. {
  3386. byte[] bytes = new byte[fileStream.Length];
  3387. fileStream.Read(bytes, 0, bytes.Length);
  3388. fileStream.Close();
  3389. Stream stream = new MemoryStream(bytes);
  3390. while (Zips.Keys.Contains(item.FileName))
  3391. {
  3392. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3393. }
  3394. Zips.Add(item.FileName, stream);
  3395. }
  3396. }
  3397. }
  3398. if (Zips.Count > 0)
  3399. {
  3400. var byts = io.ConvertZipStream(Zips);
  3401. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3402. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{key.Name}_.Zip");
  3403. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{key.Name}_.zip" });
  3404. }
  3405. else
  3406. {
  3407. jw.Msg = "暂无生成文件!";
  3408. }
  3409. return Ok(jw);
  3410. }
  3411. /// <summary>
  3412. /// 删除该团组下的指定文件
  3413. /// </summary>
  3414. /// <param name="dto"></param>
  3415. /// <returns></returns>
  3416. [HttpPost]
  3417. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3418. {
  3419. var jw = JsonView(false);
  3420. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3421. if (sing == null)
  3422. {
  3423. jw.Msg = "暂无";
  3424. return Ok(jw);
  3425. }
  3426. if (System.IO.File.Exists(sing.FilePath))
  3427. {
  3428. try
  3429. {
  3430. System.IO.File.Delete(sing.FilePath);
  3431. }
  3432. catch (Exception ex)
  3433. {
  3434. jw.Msg = "删除失败!" + ex.Message;
  3435. return Ok(jw);
  3436. }
  3437. }
  3438. sing.IsDel = 1;
  3439. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3440. sing.DeleteUserId = dto.UserId;
  3441. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3442. jw = JsonView(true, "删除成功!");
  3443. return Ok(jw);
  3444. }
  3445. #endregion
  3446. #region 团组英文资料
  3447. /// <summary>
  3448. /// 查询团组英文所有资料
  3449. /// </summary>
  3450. /// <param name="dto"></param>
  3451. /// <returns></returns>
  3452. [HttpPost]
  3453. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3454. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3455. {
  3456. try
  3457. {
  3458. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3459. if (groupData.Code != 0)
  3460. {
  3461. return Ok(JsonView(false, groupData.Msg));
  3462. }
  3463. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3464. }
  3465. catch (Exception ex)
  3466. {
  3467. return Ok(JsonView(false, "程序错误!"));
  3468. throw;
  3469. }
  3470. }
  3471. /// <summary>
  3472. /// 团组英文资料操作(Status:1.新增,2.修改)
  3473. /// </summary>
  3474. /// <param name="dto"></param>
  3475. /// <returns></returns>
  3476. [HttpPost]
  3477. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3478. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3479. {
  3480. try
  3481. {
  3482. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3483. if (groupData.Code != 0)
  3484. {
  3485. return Ok(JsonView(false, groupData.Msg));
  3486. }
  3487. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3488. }
  3489. catch (Exception ex)
  3490. {
  3491. return Ok(JsonView(false, "程序错误!"));
  3492. throw;
  3493. }
  3494. }
  3495. /// <summary>
  3496. /// 团组英文资料Id查询数据
  3497. /// </summary>
  3498. /// <param name="dto"></param>
  3499. /// <returns></returns>
  3500. [HttpPost]
  3501. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3502. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3503. {
  3504. try
  3505. {
  3506. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3507. if (_DelegationEnData != null)
  3508. {
  3509. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3510. }
  3511. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3512. }
  3513. catch (Exception ex)
  3514. {
  3515. return Ok(JsonView(false, "程序错误!"));
  3516. throw;
  3517. }
  3518. }
  3519. /// <summary>
  3520. /// 团组英文资料删除
  3521. /// </summary>
  3522. /// <param name="dto"></param>
  3523. /// <returns></returns>
  3524. [HttpPost]
  3525. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3526. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3527. {
  3528. try
  3529. {
  3530. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3531. if (!res)
  3532. {
  3533. return Ok(JsonView(false, "删除失败"));
  3534. }
  3535. return Ok(JsonView(true, "删除成功!"));
  3536. }
  3537. catch (Exception ex)
  3538. {
  3539. return Ok(JsonView(false, "程序错误!"));
  3540. throw;
  3541. }
  3542. }
  3543. #endregion
  3544. #region 导出邀请函
  3545. /// <summary>
  3546. /// 导出邀请函页面初始化
  3547. /// </summary>
  3548. /// <param name="dto"></param>
  3549. /// <returns></returns>
  3550. [HttpPost]
  3551. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3552. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3553. {
  3554. try
  3555. {
  3556. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3557. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3558. if (dto.DiId == 0)
  3559. {
  3560. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3561. }
  3562. else
  3563. {
  3564. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3565. }
  3566. return Ok(JsonView(true, "查询成功!", new
  3567. {
  3568. deleClient = crm_Deles,
  3569. delegations = grp_Delegations
  3570. }));
  3571. }
  3572. catch (Exception ex)
  3573. {
  3574. return Ok(JsonView(false, "程序错误!"));
  3575. throw;
  3576. }
  3577. }
  3578. /// <summary>
  3579. /// 导出邀请函
  3580. /// </summary>
  3581. /// <param name="dto"></param>
  3582. /// <returns></returns>
  3583. [HttpPost]
  3584. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3585. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3586. {
  3587. #region 参数验证
  3588. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3589. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3590. #endregion
  3591. try
  3592. {
  3593. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3594. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3595. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3596. From Grp_TourClientList tcl
  3597. Left Join
  3598. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3599. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3600. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3601. From Crm_DeleClient dc
  3602. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3603. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3604. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3605. Where dc.IsDel = 0) temp
  3606. On temp.DcId =tcl.ClientId
  3607. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3608. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3609. List<string> texts = new List<string>();
  3610. if (datas.Count != 0)
  3611. {
  3612. foreach (TourClientListDetailsView item in datas)
  3613. {
  3614. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3615. {
  3616. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3617. }
  3618. else
  3619. {
  3620. string name = item.LastName + item.FirstName;
  3621. texts.Add(name);
  3622. }
  3623. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3624. {
  3625. if (!transDic.ContainsKey(item.Job))
  3626. {
  3627. texts.Add(item.Job);
  3628. }
  3629. }
  3630. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3631. {
  3632. texts.Add(item.CompanyFullName);
  3633. }
  3634. }
  3635. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3636. if (transData.Count > 0)
  3637. {
  3638. foreach (TranslateResult item in transData)
  3639. {
  3640. if (!transDic.ContainsKey(item.Query))
  3641. {
  3642. transDic.Add(item.Query, item.Translation);
  3643. }
  3644. }
  3645. }
  3646. List<GuestList> list = new List<GuestList>();
  3647. foreach (TourClientListDetailsView dele in datas)
  3648. {
  3649. GuestList guestList = new GuestList();
  3650. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3651. {
  3652. guestList.Name = dele.Pinyin;
  3653. }
  3654. else
  3655. {
  3656. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3657. guestList.Name = Name;
  3658. }
  3659. if (dele.Sex == 0)
  3660. {
  3661. guestList.Sex = "Male";
  3662. }
  3663. else if (dele.Sex == 1)
  3664. {
  3665. guestList.Sex = "Female";
  3666. }
  3667. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3668. if (!string.IsNullOrEmpty(dele.Job))
  3669. {
  3670. guestList.Job = dele.Job;
  3671. }
  3672. list.Add(guestList);
  3673. }
  3674. //载入模板
  3675. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3676. DocumentBuilder builder = new DocumentBuilder(doc);
  3677. //获取word里所有表格
  3678. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3679. //获取所填表格的序数
  3680. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3681. var rowStart = tableOne.Rows[0]; //获取第1行
  3682. //循环赋值
  3683. for (int i = 0; i < list.Count; i++)
  3684. {
  3685. builder.MoveToCell(0, i + 1, 0, 0);
  3686. builder.Write(list[i].Name.ToString());
  3687. builder.MoveToCell(0, i + 1, 1, 0);
  3688. builder.Write(list[i].Sex.ToString());
  3689. builder.MoveToCell(0, i + 1, 2, 0);
  3690. builder.Write(list[i].DOB.ToString());
  3691. builder.MoveToCell(0, i + 1, 3, 0);
  3692. builder.Write(list[i].Job.ToString());
  3693. }
  3694. //删除多余行
  3695. while (tableOne.Rows.Count > list.Count + 1)
  3696. {
  3697. tableOne.Rows.RemoveAt(list.Count + 1);
  3698. }
  3699. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3700. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3701. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3702. doc.Save(filePath);
  3703. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3704. return Ok(JsonView(true, "操作成功!", Url));
  3705. }
  3706. else
  3707. {
  3708. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3709. }
  3710. }
  3711. catch (Exception ex)
  3712. {
  3713. return Ok(JsonView(false, ex.Message));
  3714. throw;
  3715. }
  3716. }
  3717. #endregion
  3718. #region 团组经理模块 出入境费用
  3719. ///// <summary>
  3720. ///// 团组模块 - 出入境费用
  3721. ///// </summary>
  3722. ///// <returns></returns>
  3723. //[HttpPost]
  3724. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3725. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3726. //{
  3727. // try
  3728. // {
  3729. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3730. // if (data.Code != 0)
  3731. // {
  3732. // return Ok(JsonView(false, data.Msg));
  3733. // }
  3734. // return Ok(JsonView(true, "查询成功!"));
  3735. // }
  3736. // catch (Exception ex)
  3737. // {
  3738. // return Ok(JsonView(false, ex.Message));
  3739. // throw;
  3740. // }
  3741. //}
  3742. /// <summary>
  3743. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3744. /// </summary>
  3745. /// <returns></returns>
  3746. [HttpPost]
  3747. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3748. public async Task<IActionResult> SetDayAndCostAreaChange()
  3749. {
  3750. try
  3751. {
  3752. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3753. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3754. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3755. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3756. foreach (var item in unite) //处理交集数据
  3757. {
  3758. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3759. }
  3760. foreach (var item in merge) //处理差集数据
  3761. {
  3762. int nationalTravelFeeId = 0;
  3763. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3764. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3765. else
  3766. {
  3767. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3768. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3769. }
  3770. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3771. }
  3772. //只更新dayAndCost 的 nationalTravelFeeId;
  3773. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3774. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3775. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3776. }
  3777. catch (Exception ex)
  3778. {
  3779. return Ok(JsonView(false, ex.Message));
  3780. throw;
  3781. }
  3782. }
  3783. /// <summary>
  3784. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3785. /// </summary>
  3786. /// <returns></returns>
  3787. [HttpPost]
  3788. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3789. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3790. {
  3791. try
  3792. {
  3793. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3794. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3795. //SetDataInfoView
  3796. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3797. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3798. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3799. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3800. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3801. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3802. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3803. //默认币种显示
  3804. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3805. {
  3806. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3807. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3808. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3809. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3810. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3811. };
  3812. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3813. if (_currencyRate.Count > 0)
  3814. {
  3815. foreach (var item in _currencyInfos)
  3816. {
  3817. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3818. if (rateInfo != null)
  3819. {
  3820. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3821. rate1 *= 1.035M;
  3822. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3823. }
  3824. }
  3825. }
  3826. return Ok(JsonView(true, "查询成功!", new
  3827. {
  3828. GroupNameData = groupNameData.Data,
  3829. CurrencyData = _CurrencyData,
  3830. WordTypeData = _WordTypeData,
  3831. ExcelTypeData = _ExcelTypeData,
  3832. CurrencyInit = _currencyInfos
  3833. }));
  3834. }
  3835. catch (Exception ex)
  3836. {
  3837. return Ok(JsonView(false, ex.Message));
  3838. throw;
  3839. }
  3840. }
  3841. /// <summary>
  3842. /// 团组模块 - 出入境费用
  3843. /// 实时汇率 tips
  3844. /// 签证费用 tips
  3845. /// </summary>
  3846. /// <returns></returns>
  3847. [HttpPost]
  3848. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3849. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3850. {
  3851. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3852. //默认币种显示
  3853. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3854. {
  3855. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3856. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3857. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3858. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3859. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3860. };
  3861. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3862. List<dynamic> reteInfos = new List<dynamic>();
  3863. if (_currencyRate.Count > 0)
  3864. {
  3865. foreach (var item in _currencyInfos)
  3866. {
  3867. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3868. if (rateInfo != null)
  3869. {
  3870. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3871. decimal rate1 = item.Rate;
  3872. rate1 *= 1.03M;
  3873. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3874. reteInfos.Add(new
  3875. {
  3876. currCode = item.CurrencyCode,
  3877. currName = item.CurrencyName,
  3878. rate = rate2,
  3879. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3880. });
  3881. }
  3882. }
  3883. }
  3884. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3885. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3886. return Ok(JsonView(true, "查询成功!", new
  3887. {
  3888. //GroupNameData = groupNameData.Data,
  3889. visaData = visaData.Data,
  3890. airData = airData.Data,
  3891. reteInfos = reteInfos
  3892. }));
  3893. }
  3894. /// <summary>
  3895. /// 团组模块 - 出入境费用 - Info
  3896. /// </summary>
  3897. /// <returns></returns>
  3898. [HttpPost]
  3899. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3900. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3901. {
  3902. try
  3903. {
  3904. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3905. if (data.Code != 0)
  3906. {
  3907. return Ok(JsonView(false, data.Msg));
  3908. }
  3909. return Ok(JsonView(true, "查询成功!", data.Data));
  3910. }
  3911. catch (Exception ex)
  3912. {
  3913. return Ok(JsonView(false, ex.Message));
  3914. }
  3915. }
  3916. /// <summary>
  3917. /// 团组模块 - 出入境费用 - Add And Update
  3918. /// </summary>
  3919. /// <returns></returns>
  3920. [HttpPost]
  3921. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3922. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3923. {
  3924. try
  3925. {
  3926. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3927. if (data.Code != 0)
  3928. {
  3929. return Ok(JsonView(false, data.Msg));
  3930. }
  3931. //生成默认文件pdf并且通知人员
  3932. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3933. {
  3934. DiId = dto.DiId,
  3935. ExportType = 1,
  3936. SubTypeId = 1005
  3937. }, "pdf");
  3938. //发送通知
  3939. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3940. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3941. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3942. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3943. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3944. return Ok(JsonView(true, data.Msg, data.Data));
  3945. }
  3946. catch (Exception ex)
  3947. {
  3948. return Ok(JsonView(false, ex.Message));
  3949. }
  3950. }
  3951. /// <summary>
  3952. /// 团组模块 - 出入境费用 - Confirm 费用
  3953. /// </summary>
  3954. /// <returns></returns>
  3955. [HttpPost]
  3956. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3957. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3958. {
  3959. //TODO:测试完毕需把对应的用户ID更改
  3960. //1、数据表添加字段
  3961. //2、更改字段接口()
  3962. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3963. //3、确认成功 给财务发送消息
  3964. if (_view.Code == 200)
  3965. {
  3966. if (dto.Type == 1)
  3967. {
  3968. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  3969. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  3970. }
  3971. }
  3972. return Ok(_view);
  3973. }
  3974. /// <summary>
  3975. /// 团组模块 - 出入境费用 - File downlaod
  3976. /// </summary>
  3977. /// <param name="dto"></param>
  3978. /// <returns></returns>
  3979. [HttpPost]
  3980. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3981. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3982. {
  3983. try
  3984. {
  3985. if (dto.DiId < 1)
  3986. {
  3987. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3988. }
  3989. if (dto.ExportType < 1)
  3990. {
  3991. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3992. }
  3993. if (dto.SubTypeId < 1)
  3994. {
  3995. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3996. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3997. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3998. 3 团组成员名单 1 团组成员名单"));
  3999. }
  4000. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4001. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  4002. if (_EnterExitCosts == null)
  4003. {
  4004. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  4005. }
  4006. //数据源
  4007. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  4008. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  4009. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  4010. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  4011. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  4012. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  4013. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  4014. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  4015. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  4016. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  4017. .Select((tcl, dc, cc) => new
  4018. {
  4019. Name = dc.LastName + dc.FirstName,
  4020. Sex = dc.Sex,
  4021. Birthday = dc.BirthDay,
  4022. Company = cc.CompanyFullName,
  4023. Job = dc.Job
  4024. })
  4025. .ToList();
  4026. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4027. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  4028. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  4029. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  4030. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  4031. if (dto.ExportType == 1) //明细表
  4032. {
  4033. if (dto.SubTypeId == 1005) //1005(默认明细表)
  4034. {
  4035. //获取模板
  4036. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  4037. //载入模板
  4038. Document doc = new Document(tempPath);
  4039. DocumentBuilder builder = new DocumentBuilder(doc);
  4040. //利用键值对存放数据
  4041. Dictionary<string, string> dic = new Dictionary<string, string>();
  4042. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  4043. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  4044. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  4045. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  4046. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  4047. string row1_1 = "";
  4048. if (_EnterExitCosts.Visa > 0)
  4049. {
  4050. //insidePayTotal += _EnterExitCosts.Visa;
  4051. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  4052. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  4053. {
  4054. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  4055. }
  4056. }
  4057. string row1_2 = "";
  4058. if (_EnterExitCosts.YiMiao > 0)
  4059. {
  4060. //insidePayTotal += _EnterExitCosts.YiMiao;
  4061. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  4062. }
  4063. if (_EnterExitCosts.HeSuan > 0)
  4064. {
  4065. //insidePayTotal += _EnterExitCosts.HeSuan;
  4066. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4067. }
  4068. if (_EnterExitCosts.Service > 0)
  4069. {
  4070. //insidePayTotal += _EnterExitCosts.Service;
  4071. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4072. }
  4073. string row1_3 = "";
  4074. if (_EnterExitCosts.Safe > 0)
  4075. {
  4076. //insidePayTotal += _EnterExitCosts.Safe;
  4077. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4078. }
  4079. if (_EnterExitCosts.Ticket > 0)
  4080. {
  4081. //insidePayTotal += _EnterExitCosts.Ticket;
  4082. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4083. }
  4084. string row1 = "";
  4085. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4086. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4087. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4088. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4089. dic.Add("Row1Str", row1);
  4090. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  4091. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  4092. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4093. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  4094. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4095. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4096. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4097. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  4098. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  4099. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  4100. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  4101. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  4102. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4103. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4104. #region 填充word模板书签内容
  4105. foreach (var key in dic.Keys)
  4106. {
  4107. builder.MoveToBookmark(key);
  4108. builder.Write(dic[key]);
  4109. }
  4110. #endregion
  4111. #region 填充word表格内容
  4112. ////获读取指定表格方法二
  4113. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4114. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4115. for (int i = 0; i < dac1.Count; i++)
  4116. {
  4117. Grp_DayAndCost dac = dac1[i];
  4118. if (dac == null) continue;
  4119. builder.MoveToCell(0, i, 0, 0);
  4120. builder.Write("第" + dac.Days.ToString() + "晚:");
  4121. builder.MoveToCell(0, i, 1, 0);
  4122. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4123. //builder.Write(dac.Place == null ? "" : dac.Place);
  4124. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4125. builder.MoveToCell(0, i, 2, 0);
  4126. builder.Write("费用标准:");
  4127. string curr = "";
  4128. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4129. if (currData != null)
  4130. {
  4131. curr = currData.Name;
  4132. }
  4133. builder.MoveToCell(0, i, 3, 0);
  4134. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4135. builder.MoveToCell(0, i, 4, 0);
  4136. builder.Write("费用小计:");
  4137. builder.MoveToCell(0, i, 5, 0);
  4138. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4139. }
  4140. //删除多余行
  4141. while (table1.Rows.Count > dac1.Count)
  4142. {
  4143. table1.Rows.RemoveAt(dac1.Count);
  4144. }
  4145. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4146. for (int i = 0; i < dac2.Count; i++)
  4147. {
  4148. Grp_DayAndCost dac = dac2[i];
  4149. if (dac == null) continue;
  4150. builder.MoveToCell(1, i, 0, 0);
  4151. builder.Write("第" + dac.Days.ToString() + "天:");
  4152. builder.MoveToCell(1, i, 1, 0);
  4153. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4154. builder.MoveToCell(1, i, 2, 0);
  4155. builder.Write("费用标准:");
  4156. string curr = "";
  4157. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4158. if (currData != null)
  4159. {
  4160. curr = currData.Name;
  4161. }
  4162. builder.MoveToCell(1, i, 3, 0);
  4163. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4164. builder.MoveToCell(1, i, 4, 0);
  4165. builder.Write("费用小计:");
  4166. builder.MoveToCell(1, i, 5, 0);
  4167. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4168. }
  4169. //删除多余行
  4170. while (table2.Rows.Count > dac2.Count)
  4171. {
  4172. table2.Rows.RemoveAt(dac2.Count);
  4173. }
  4174. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4175. for (int i = 0; i < dac3.Count; i++)
  4176. {
  4177. Grp_DayAndCost dac = dac3[i];
  4178. if (dac == null) continue;
  4179. builder.MoveToCell(2, i, 0, 0);
  4180. builder.Write("第" + dac.Days.ToString() + "天:");
  4181. builder.MoveToCell(2, i, 1, 0);
  4182. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4183. builder.MoveToCell(2, i, 2, 0);
  4184. builder.Write("费用标准:");
  4185. string curr = "";
  4186. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4187. if (currData != null)
  4188. {
  4189. curr = currData.Name;
  4190. }
  4191. builder.MoveToCell(2, i, 3, 0);
  4192. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4193. builder.MoveToCell(2, i, 4, 0);
  4194. builder.Write("费用小计:");
  4195. builder.MoveToCell(2, i, 5, 0);
  4196. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4197. }
  4198. //删除多余行
  4199. while (table3.Rows.Count > dac3.Count)
  4200. {
  4201. table3.Rows.RemoveAt(dac3.Count);
  4202. }
  4203. #endregion
  4204. //文件名
  4205. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4206. AsposeHelper.removewatermark_v2180();
  4207. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4208. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4209. return Ok(JsonView(true, "成功", new { Url = url }));
  4210. }
  4211. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4212. {
  4213. //获取模板
  4214. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4215. //载入模板
  4216. Document doc = new Document(tempPath);
  4217. DocumentBuilder builder = new DocumentBuilder(doc);
  4218. Dictionary<string, string> dic = new Dictionary<string, string>();
  4219. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4220. {
  4221. List<string> list = new List<string>();
  4222. try
  4223. {
  4224. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4225. foreach (var item in spilitArr)
  4226. {
  4227. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4228. var depCode = spDotandEmpty[2].Substring(0, 3);
  4229. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4230. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4231. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4232. list.Add(depName);
  4233. list.Add(arrName);
  4234. }
  4235. list = list.Distinct().ToList();
  4236. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4237. }
  4238. catch (Exception)
  4239. {
  4240. dic.Add("ReturnCode", "行程录入不正确!");
  4241. }
  4242. }
  4243. else
  4244. {
  4245. dic.Add("ReturnCode", "未录入行程!");
  4246. }
  4247. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4248. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4249. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4250. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4251. {
  4252. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4253. dic.Add("Day", sp.Days.ToString());
  4254. }
  4255. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4256. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4257. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4258. //dic.Add("Names", Names);
  4259. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4260. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4261. decimal dac1totalPrice = 0.00M;
  4262. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4263. foreach (var dac in dac1)
  4264. {
  4265. if (dac.SubTotal == 0.00M)
  4266. {
  4267. continue;
  4268. }
  4269. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4270. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4271. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4272. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4273. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4274. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4275. builder.Write(currency);//币种
  4276. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4277. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4278. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4279. builder.Write("");//人数
  4280. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4281. builder.Write("");//天数
  4282. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4283. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4284. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4285. decimal rate = 0.00M;
  4286. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4287. builder.Write(rate.ToString("#0.0000"));//汇率
  4288. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4289. decimal rbmPrice = dac.SubTotal;
  4290. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4291. accommodationStartIndex++;
  4292. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4293. }
  4294. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4295. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4296. {
  4297. table1.Rows.RemoveAt(i - 1);
  4298. foodandotherStartIndex--;
  4299. }
  4300. if (dac2.Count == dac3.Count)//国家 币种 金额
  4301. {
  4302. for (int i = 0; i < dac2.Count; i++)
  4303. {
  4304. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4305. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4306. }
  4307. }
  4308. decimal dac2totalPrice = 0.00M;
  4309. foreach (var dac in dac2)
  4310. {
  4311. if (dac.SubTotal == 0)
  4312. {
  4313. continue;
  4314. }
  4315. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4316. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4317. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4318. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4319. builder.Write(currency);//币种
  4320. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4321. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4322. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4323. builder.Write("");//人数
  4324. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4325. builder.Write("");//天数
  4326. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4327. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4328. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4329. decimal rate = 0.00M;
  4330. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4331. builder.Write(rate.ToString("#0.0000"));//汇率
  4332. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4333. decimal rbmPrice = dac.SubTotal;
  4334. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4335. foodandotherStartIndex++;
  4336. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4337. }
  4338. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4339. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4340. {
  4341. table1.Rows.RemoveAt(i - 1);
  4342. }
  4343. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4344. string otherFeeStr = "";
  4345. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4346. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4347. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4348. if (otherFeeStr.Length > 0)
  4349. {
  4350. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4351. otherFeeStr = $"({otherFeeStr})";
  4352. dic.Add("OtherFeeStr", otherFeeStr);
  4353. }
  4354. //总计
  4355. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4356. //国际旅费
  4357. string outsideJJ = "";
  4358. string allPriceJJ = "";
  4359. if (_EnterExitCosts.SumJJC == 1)
  4360. {
  4361. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4362. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4363. }
  4364. string outsideGW = "";
  4365. string allPriceGW = "";
  4366. if (_EnterExitCosts.SumGWC == 1)
  4367. {
  4368. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4369. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4370. }
  4371. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4372. {
  4373. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4374. dic.Add("InTravelPrice", InTravelPriceStr);
  4375. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4376. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4377. }
  4378. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4379. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4380. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4381. foreach (var key in dic.Keys)
  4382. {
  4383. builder.MoveToBookmark(key);
  4384. builder.Write(dic[key]);
  4385. }
  4386. //模板文件名
  4387. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4388. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4389. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4390. return Ok(JsonView(true, "成功", new { Url = url }));
  4391. }
  4392. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4393. {
  4394. //获取模板
  4395. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4396. //载入模板
  4397. WorkbookDesigner designer = new WorkbookDesigner();
  4398. designer.Workbook = new Workbook(tempPath);
  4399. Dictionary<string, string> dic = new Dictionary<string, string>();
  4400. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4401. {
  4402. List<string> list = new List<string>();
  4403. try
  4404. {
  4405. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4406. foreach (var item in spilitArr)
  4407. {
  4408. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4409. var depCode = spDotandEmpty[2].Substring(0, 3);
  4410. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4411. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4412. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4413. list.Add(depName);
  4414. list.Add(arrName);
  4415. }
  4416. list = list.Distinct().ToList();
  4417. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4418. }
  4419. catch (Exception)
  4420. {
  4421. dic.Add("ReturnCode", "行程录入不正确!");
  4422. }
  4423. }
  4424. else
  4425. {
  4426. dic.Add("ReturnCode", "未录入行程!");
  4427. }
  4428. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4429. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4430. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4431. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4432. {
  4433. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4434. dic.Add("Day", sp.Days.ToString());
  4435. }
  4436. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4437. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4438. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4439. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4440. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4441. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4442. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4443. designer.SetDataSource("Name", Names);
  4444. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4445. designer.SetDataSource("Day", dic["Day"] + "天");
  4446. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4447. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4448. int startIndex = 10;
  4449. const int startIndexcopy = 10;
  4450. if (dac2.Count == dac3.Count)//国家 币种 金额
  4451. {
  4452. for (int i = 0; i < dac2.Count; i++)
  4453. {
  4454. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4455. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4456. }
  4457. }
  4458. DataTable dtdac1 = new DataTable();
  4459. List<string> place = new List<string>();
  4460. dtdac1.Columns.AddRange(new DataColumn[] {
  4461. new DataColumn(){ ColumnName = "city"},
  4462. new DataColumn(){ ColumnName = "curr"},
  4463. new DataColumn(){ ColumnName = "criterion"},
  4464. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4465. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4466. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4467. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4468. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4469. });
  4470. DataTable dtdac2 = new DataTable();
  4471. dtdac2.Columns.AddRange(new DataColumn[] {
  4472. new DataColumn(){ ColumnName = "city"},
  4473. new DataColumn(){ ColumnName = "curr"},
  4474. new DataColumn(){ ColumnName = "criterion"},
  4475. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4476. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4477. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4478. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4479. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4480. });
  4481. dtdac1.TableName = "tb1";
  4482. dtdac2.TableName = "tb2";
  4483. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4484. foreach (var item in dac1)
  4485. {
  4486. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4487. if (place.Contains(item.Place))
  4488. {
  4489. continue;
  4490. }
  4491. DataRow row = dtdac1.NewRow();
  4492. row["city"] = item.Place;
  4493. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4494. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4495. row["curr"] = currency;
  4496. row["rate"] = rate.ToString("#0.0000");
  4497. row["criterion"] = item.Cost.ToString("#0.00");
  4498. row["number"] = 1;
  4499. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4500. //row["costRMB"] = rbmPrice;
  4501. dtdac1.Rows.Add(row);
  4502. place.Add(item.Place);
  4503. }
  4504. place = new List<string>();
  4505. foreach (var item in dac2)
  4506. {
  4507. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4508. if (place.Contains(item.Place))
  4509. {
  4510. continue;
  4511. }
  4512. DataRow row = dtdac2.NewRow();
  4513. row["city"] = item.Place;
  4514. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4515. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4516. row["curr"] = currency;
  4517. row["rate"] = rate.ToString("#0.0000");
  4518. row["criterion"] = item.Cost.ToString("#0.00");
  4519. row["number"] = 1;
  4520. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4521. //row["cost"] = item.SubTotal;
  4522. //row["costRMB"] = rbmPrice;
  4523. dtdac2.Rows.Add(row);
  4524. place.Add(item.Place);
  4525. //dac2totalPrice += rbmPrice;
  4526. }
  4527. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4528. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4529. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4530. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4531. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4532. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4533. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4534. string cellStr = $" 5.其他费用(";
  4535. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4536. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4537. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4538. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4539. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4540. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4541. if (cellStr.Length > 8)
  4542. {
  4543. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4544. }
  4545. cellStr += ")";
  4546. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4547. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4548. decimal pxFee = dac4.Sum(it => it.Cost);
  4549. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4550. string celllastStr1 = "";
  4551. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4552. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4553. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4554. celllastStr1 += $",国际旅费 元";
  4555. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4556. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4557. designer.SetDataSource("cell4Str", cell4Str);
  4558. designer.SetDataSource("cellStr", cellStr);
  4559. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4560. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4561. designer.SetDataSource("celllastStr", celllastStr);
  4562. Workbook wb = designer.Workbook;
  4563. var sheet = wb.Worksheets[0];
  4564. //绑定datatable数据集
  4565. designer.SetDataSource(dtdac1);
  4566. designer.SetDataSource(dtdac2);
  4567. designer.Process();
  4568. var rowStart = dtdac1.Rows.Count;
  4569. while (rowStart > 0)
  4570. {
  4571. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4572. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4573. startIndex++;
  4574. rowStart--;
  4575. }
  4576. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4577. startIndex += 1; //总计行
  4578. rowStart = dtdac2.Rows.Count;
  4579. while (rowStart > 0)
  4580. {
  4581. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4582. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4583. startIndex++;
  4584. rowStart--;
  4585. }
  4586. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4587. wb.CalculateFormula(true);
  4588. //模板文件名
  4589. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4590. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4591. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4592. return Ok(JsonView(true, "成功", new { Url = url }));
  4593. }
  4594. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4595. {
  4596. //获取模板
  4597. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4598. //载入模板
  4599. Document doc = new Document(tempPath);
  4600. DocumentBuilder builder = new DocumentBuilder(doc);
  4601. Dictionary<string, string> dic = new Dictionary<string, string>();
  4602. dic.Add("GroupName", _DelegationInfo.TeamName);
  4603. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4604. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4605. string missionLeaderJob = "";//负责人job
  4606. int groupNumber = 0; //团人数
  4607. if (DeleClientList.Count > 0)
  4608. {
  4609. missionLeader = DeleClientList[0]?.Name ?? "";
  4610. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4611. }
  4612. dic.Add("MissionLeader", missionLeader); //团负责人
  4613. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4614. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4615. #region MyRegion
  4616. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4617. //{
  4618. // List<string> list = new List<string>();
  4619. // try
  4620. // {
  4621. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4622. // foreach (var item in spilitArr)
  4623. // {
  4624. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4625. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4626. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4627. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4628. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4629. // list.Add(depName);
  4630. // list.Add(arrName);
  4631. // }
  4632. // list = list.Distinct().ToList();
  4633. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4634. // }
  4635. // catch (Exception)
  4636. // {
  4637. // dic.Add("ReturnCode", "行程录入不正确!");
  4638. // }
  4639. //}
  4640. //else
  4641. //{
  4642. // dic.Add("ReturnCode", "未录入行程!");
  4643. //}
  4644. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4645. dic.Add("ReturnCode", string.Join("、", countrys));
  4646. #endregion
  4647. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4648. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4649. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4650. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4651. //{
  4652. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4653. // dic.Add("Day", sp.Days.ToString());
  4654. //}
  4655. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4656. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4657. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4658. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4659. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4660. //培训人员名单
  4661. int cultivateRowIndex = 7;
  4662. foreach (var item in DeleClientList)
  4663. {
  4664. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4665. builder.Write(item.Name);
  4666. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4667. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4668. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4669. string birthDay = "";
  4670. if (item.Birthday != null)
  4671. {
  4672. DateTime dt = Convert.ToDateTime(item.Birthday);
  4673. birthDay = $"{dt.Year}.{dt.Month}";
  4674. }
  4675. builder.Write(birthDay);
  4676. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4677. builder.Write(item.Company);
  4678. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4679. builder.Write(item.Job);
  4680. cultivateRowIndex++;
  4681. }
  4682. //删除多余行
  4683. //cultivateRowIndex -= 2;
  4684. int delRows = 10 + 7 - cultivateRowIndex;
  4685. if (delRows > 0)
  4686. {
  4687. for (int i = 0; i < delRows; i++)
  4688. {
  4689. table1.Rows.RemoveAt(cultivateRowIndex);
  4690. //cultivateRowIndex++;
  4691. }
  4692. }
  4693. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4694. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4695. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4696. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4697. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4698. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4699. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4700. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4701. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4702. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4703. //其他费用
  4704. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4705. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4706. //其他费用合计
  4707. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4708. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4709. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4710. //公务舱合计
  4711. //国际旅费
  4712. string outsideJJ = "";
  4713. string allPriceJJ = "";
  4714. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4715. {
  4716. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4717. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4718. }
  4719. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4720. {
  4721. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4722. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4723. }
  4724. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4725. {
  4726. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4727. dic.Add("AirFeeTotal", airFeeTotalStr);
  4728. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4729. dic.Add("FeeTotal", feeTotalStr);
  4730. }
  4731. foreach (var key in dic.Keys)
  4732. {
  4733. builder.MoveToBookmark(key);
  4734. builder.Write(dic[key]);
  4735. }
  4736. //模板文件名
  4737. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4738. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4739. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4740. return Ok(JsonView(true, "成功", new { Url = url }));
  4741. }
  4742. }
  4743. else if (dto.ExportType == 2) //表格
  4744. {
  4745. //利用键值对存放数据
  4746. Dictionary<string, string> dic = new Dictionary<string, string>();
  4747. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4748. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4749. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4750. dic.Add("Day", sp.Days.ToString());
  4751. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4752. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4753. {
  4754. //获取模板
  4755. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4756. //载入模板
  4757. Document doc = new Document(tempPath);
  4758. DocumentBuilder builder = new DocumentBuilder(doc);
  4759. dic.Add("TeamName", _DelegationInfo.TeamName);
  4760. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4761. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4762. string missionLeaderName = "",
  4763. missionLeaderJob = "";
  4764. if (DeleClientList.Count > 0)
  4765. {
  4766. missionLeaderName = DeleClientList[0].Name;
  4767. missionLeaderJob = DeleClientList[0].Job;
  4768. }
  4769. dic.Add("MissionLeaderName", missionLeaderName);
  4770. dic.Add("MissionLeaderJob", missionLeaderJob);
  4771. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4772. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4773. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4774. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4775. int rowCount = 10;//总人数行
  4776. int startRowIndex = 7; //起始行
  4777. for (int i = 0; i < DeleClientList.Count; i++)
  4778. {
  4779. builder.MoveToCell(0, startRowIndex, 0, 0);
  4780. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4781. builder.MoveToCell(0, startRowIndex, 1, 0);
  4782. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4783. builder.Write(sex);//性别
  4784. builder.MoveToCell(0, startRowIndex, 2, 0);
  4785. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4786. builder.MoveToCell(0, startRowIndex, 3, 0);
  4787. builder.Write(DeleClientList[i].Company);//工作单位
  4788. builder.MoveToCell(0, startRowIndex, 4, 0);
  4789. builder.Write(DeleClientList[i].Job);//职务及级别
  4790. builder.MoveToCell(0, startRowIndex, 5, 0);
  4791. builder.Write("");//人员属性
  4792. builder.MoveToCell(0, startRowIndex, 6, 0);
  4793. builder.Write("");//上次出国时间
  4794. startRowIndex++;
  4795. }
  4796. int nullRow = rowCount - DeleClientList.Count;//空行
  4797. for (int i = 0; i < nullRow; i++)
  4798. {
  4799. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4800. }
  4801. foreach (var key in dic.Keys)
  4802. {
  4803. builder.MoveToBookmark(key);
  4804. builder.Write(dic[key]);
  4805. }
  4806. //模板文件名
  4807. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4808. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4809. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4810. return Ok(JsonView(true, "成功", new { Url = url }));
  4811. }
  4812. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4813. {
  4814. //获取模板
  4815. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4816. //载入模板
  4817. Document doc = new Document(tempPath);
  4818. DocumentBuilder builder = new DocumentBuilder(doc);
  4819. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4820. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4821. dic.Add("Names", Names);
  4822. int accommodationRows = 12, foodandotherRows = 12;
  4823. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4824. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4825. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4826. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4827. int accommodationStartIndex = 6;
  4828. decimal dac1totalPrice = 0.00M;
  4829. foreach (var dac in dac1)
  4830. {
  4831. if (dac.SubTotal == 0)
  4832. {
  4833. continue;
  4834. }
  4835. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4836. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4837. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4838. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4839. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4840. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4841. builder.Write(currency);//币种
  4842. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4843. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4844. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4845. builder.Write("");//人数
  4846. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4847. builder.Write("");//天数
  4848. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4849. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4850. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4851. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4852. builder.Write(rate.ToString("#0.0000"));//汇率
  4853. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4854. decimal rbmPrice = rate * dac.SubTotal;
  4855. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4856. accommodationStartIndex++;
  4857. dac1totalPrice += rbmPrice;
  4858. }
  4859. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4860. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4861. builder.Write("小计");
  4862. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4863. builder.Write(dac1totalPrice.ToString("#0.00"));
  4864. accommodationStartIndex++;
  4865. int nullRow = accommodationRows - dac1.Count;
  4866. //删除空行
  4867. //if (nullRow > 0)
  4868. //{
  4869. // int rowIndex = accommodationStartIndex;
  4870. // for (int i = 0; i < nullRow; i++)
  4871. // {
  4872. // Row row = table1.Rows[rowIndex];
  4873. // row.Remove();
  4874. // rowIndex++;
  4875. // }
  4876. //}
  4877. if (dac2.Count == dac3.Count)//国家 币种 金额
  4878. {
  4879. for (int i = 0; i < dac2.Count; i++)
  4880. {
  4881. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4882. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4883. }
  4884. }
  4885. int foodandotherStartIndex = 19;//
  4886. decimal dac2totalPrice = 0.00M;
  4887. foreach (var dac in dac2)
  4888. {
  4889. if (dac.SubTotal == 0)
  4890. {
  4891. continue;
  4892. }
  4893. //foodandotherStartIndex = 12;
  4894. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4895. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4896. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4897. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4898. builder.Write(currency);//币种
  4899. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4900. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4901. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4902. builder.Write("");//人数
  4903. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4904. builder.Write("");//天数
  4905. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4906. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4907. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4908. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4909. builder.Write(rate.ToString("#0.0000"));//汇率
  4910. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4911. decimal rbmPrice = rate * dac.SubTotal;
  4912. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4913. foodandotherStartIndex++;
  4914. dac2totalPrice += rbmPrice;
  4915. }
  4916. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4917. //删除空行
  4918. if (dac2.Count < foodandotherRows)
  4919. {
  4920. //int nullRow = accommodationRows - dac2.Count;
  4921. //while (table2.Rows.Count > dac2.Count)
  4922. //{
  4923. // table2.Rows.RemoveAt(dac2.Count);
  4924. //}
  4925. }
  4926. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4927. string otherFeeStr = "";
  4928. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4929. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4930. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4931. if (otherFeeStr.Length > 0)
  4932. {
  4933. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4934. otherFeeStr = $"({otherFeeStr})";
  4935. dic.Add("OtherFeeStr", otherFeeStr);
  4936. }
  4937. foreach (var key in dic.Keys)
  4938. {
  4939. builder.MoveToBookmark(key);
  4940. builder.Write(dic[key]);
  4941. }
  4942. //模板文件名
  4943. string strFileName = $"省级单位出(境)经费报销单.docx";
  4944. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4945. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4946. return Ok(JsonView(true, "成功", new { Url = url }));
  4947. }
  4948. }
  4949. else if (dto.ExportType == 3)
  4950. {
  4951. if (dto.SubTypeId == 1) //团组成员名单
  4952. {
  4953. if (DeleClientList.Count < 1)
  4954. {
  4955. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4956. }
  4957. //获取模板
  4958. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4959. //载入模板
  4960. Document doc = new Document(tempPath);
  4961. DocumentBuilder builder = new DocumentBuilder(doc);
  4962. //获取word里所有表格
  4963. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4964. //获取所填表格的序数
  4965. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4966. var rowStart = tableOne.Rows[0]; //获取第1行
  4967. //循环赋值
  4968. for (int i = 0; i < DeleClientList.Count; i++)
  4969. {
  4970. builder.MoveToCell(0, i + 1, 0, 0);
  4971. builder.Write(DeleClientList[i].Name);
  4972. builder.MoveToCell(0, i + 1, 1, 0);
  4973. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4974. builder.Write(sex);
  4975. builder.MoveToCell(0, i + 1, 2, 0);
  4976. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4977. builder.MoveToCell(0, i + 1, 3, 0);
  4978. builder.Write(DeleClientList[i].Company);
  4979. builder.MoveToCell(0, i + 1, 4, 0);
  4980. builder.Write(DeleClientList[i].Job);
  4981. }
  4982. //删除多余行
  4983. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4984. {
  4985. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4986. }
  4987. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4988. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4989. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4990. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4991. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4992. return Ok(JsonView(true, "成功", new { Url = url }));
  4993. }
  4994. }
  4995. return Ok(JsonView(false, "操作失败!"));
  4996. }
  4997. catch (Exception ex)
  4998. {
  4999. return Ok(JsonView(false, ex.Message));
  5000. }
  5001. }
  5002. /// <summary>
  5003. /// 获取三公费用标准city
  5004. /// </summary>
  5005. /// <param name="placeData"></param>
  5006. /// <param name="nationalTravelFeeId"></param>
  5007. /// <returns></returns>
  5008. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  5009. {
  5010. string _city = string.Empty;
  5011. if (placeData.Count < 1) return _city;
  5012. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  5013. if (data == null) return _city;
  5014. string country = data.Country;
  5015. string city = data.City;
  5016. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  5017. else _city = city;
  5018. return _city;
  5019. }
  5020. /// <summary>
  5021. /// 团组模块 - 出入境费用 - 明细表导出
  5022. /// </summary>
  5023. /// <returns></returns>
  5024. [HttpPost]
  5025. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5026. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  5027. {
  5028. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  5029. if (data.Code != 0)
  5030. {
  5031. return Ok(JsonView(false, data.Msg));
  5032. }
  5033. return Ok(JsonView(true, data.Msg, data.Data));
  5034. }
  5035. /// <summary>
  5036. /// 团组模块 - 出入境费用 - 一键清空
  5037. /// </summary>
  5038. /// <returns></returns>
  5039. [HttpPost]
  5040. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5041. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  5042. {
  5043. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  5044. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  5045. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  5046. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  5047. if (_view.Code == 0)
  5048. {
  5049. return Ok(JsonView(true, "操作成功"));
  5050. }
  5051. return Ok(JsonView(false, "操作失败"));
  5052. }
  5053. /// <summary>
  5054. /// 团组模块 - 出入境费用 - 子项删除
  5055. /// </summary>
  5056. /// <returns></returns>
  5057. [HttpPost]
  5058. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5059. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  5060. {
  5061. try
  5062. {
  5063. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  5064. if (data.Code != 0)
  5065. {
  5066. return Ok(JsonView(false, data.Msg));
  5067. }
  5068. return Ok(JsonView(true, "操作成功!", data.Data));
  5069. }
  5070. catch (Exception ex)
  5071. {
  5072. return Ok(JsonView(false, ex.Message));
  5073. }
  5074. }
  5075. /// <summary>
  5076. /// 团组模块 - 出入境国家费用标准 List
  5077. /// </summary>
  5078. /// <returns></returns>
  5079. [HttpPost]
  5080. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5081. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5082. {
  5083. try
  5084. {
  5085. Stopwatch sw = new Stopwatch();
  5086. sw.Start();
  5087. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5088. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5089. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5090. Where gntf.Isdel = 0");
  5091. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5092. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5093. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5094. //foreach (var item in nationalTravel)
  5095. //{
  5096. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5097. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5098. // if (otherData != null)
  5099. // {
  5100. // cityData.Remove(otherData);
  5101. // cityData.Add(otherData);
  5102. // }
  5103. // nationalTravelFeeData1.Add(new
  5104. // {
  5105. // Country = item.Country,
  5106. // CityData = cityData
  5107. // });
  5108. //}
  5109. sw.Stop();
  5110. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5111. }
  5112. catch (Exception ex)
  5113. {
  5114. return Ok(JsonView(false, ex.Message));
  5115. throw;
  5116. }
  5117. }
  5118. /// <summary>
  5119. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5120. /// </summary>
  5121. /// <returns></returns>
  5122. [HttpPost]
  5123. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5124. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5125. {
  5126. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5127. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5128. List<string> countryData = new List<string>();
  5129. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5130. countryData = countryData.Distinct().ToList();
  5131. List<dynamic> dataSource = new List<dynamic>();
  5132. foreach (var item in countryData)
  5133. {
  5134. List<string> cityData1 = new List<string>();
  5135. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5136. var countryData2 = new
  5137. {
  5138. CountryName = item,
  5139. CityData = cityData1
  5140. };
  5141. dataSource.Add(countryData2);
  5142. }
  5143. return Ok(JsonView(true, "查询成功!", dataSource));
  5144. }
  5145. /// <summary>
  5146. /// 团组模块 - 出入境国家费用标准 Page List
  5147. /// </summary>
  5148. /// <returns></returns>
  5149. [HttpPost]
  5150. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5151. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5152. {
  5153. int portId = dto.PortType;
  5154. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5155. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5156. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5157. string whereSql = string.Empty;
  5158. if (!string.IsNullOrEmpty(dto.Country))
  5159. {
  5160. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5161. }
  5162. if (!string.IsNullOrEmpty(dto.City))
  5163. {
  5164. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5165. }
  5166. string pageSql = string.Format(@"Select * From (
  5167. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5168. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5169. From Grp_NationalTravelFee gntf
  5170. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5171. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5172. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5173. RefAsync<int> total = 0;
  5174. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5175. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5176. }
  5177. /// <summary>
  5178. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5179. /// </summary>
  5180. /// <returns></returns>
  5181. [HttpPost]
  5182. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5183. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5184. {
  5185. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5186. int portId = dto.PortType;
  5187. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5188. string whereSql = string.Empty;
  5189. if (!string.IsNullOrEmpty(dto.Country))
  5190. {
  5191. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5192. }
  5193. if (!string.IsNullOrEmpty(dto.City))
  5194. {
  5195. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5196. }
  5197. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5198. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5199. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5200. From Grp_NationalTravelFee gntf
  5201. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5202. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5203. Where gntf.Isdel = 0 {0} ", whereSql);
  5204. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5205. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5206. }
  5207. /// <summary>
  5208. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5209. /// </summary>
  5210. /// <returns></returns>
  5211. [HttpPost]
  5212. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5213. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5214. {
  5215. try
  5216. {
  5217. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5218. if (data.Code != 0)
  5219. {
  5220. return Ok(JsonView(false, data.Msg));
  5221. }
  5222. return Ok(JsonView(true, "操作成功!", data.Data));
  5223. }
  5224. catch (Exception ex)
  5225. {
  5226. return Ok(JsonView(false, ex.Message));
  5227. }
  5228. }
  5229. /// <summary>
  5230. /// 团组模块 - 出入境国家费用标准 - Del
  5231. /// </summary>
  5232. /// <returns></returns>
  5233. [HttpPost]
  5234. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5235. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5236. {
  5237. try
  5238. {
  5239. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5240. {
  5241. Id = dto.Id,
  5242. DeleteUserId = dto.DeleteUserId,
  5243. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5244. IsDel = 1
  5245. };
  5246. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5247. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5248. .WhereColumns(it => new { it.Id })
  5249. .ExecuteCommandAsync();
  5250. if (delStatus <= 0)
  5251. {
  5252. return Ok(JsonView(false, "删除失败!"));
  5253. }
  5254. return Ok(JsonView(true, "操作成功!"));
  5255. }
  5256. catch (Exception ex)
  5257. {
  5258. return Ok(JsonView(false, ex.Message));
  5259. }
  5260. }
  5261. #endregion
  5262. #region 签证费用录入
  5263. /// <summary>
  5264. /// 根据diid查询签证费用列表
  5265. /// </summary>
  5266. /// <param name="dto"></param>
  5267. /// <returns></returns>
  5268. [HttpPost]
  5269. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5270. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5271. {
  5272. try
  5273. {
  5274. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5275. if (groupData.Code != 0)
  5276. {
  5277. return Ok(JsonView(false, groupData.Msg));
  5278. }
  5279. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5280. }
  5281. catch (Exception ex)
  5282. {
  5283. return Ok(JsonView(false, ex.Message));
  5284. }
  5285. }
  5286. /// <summary>
  5287. /// 根据签证费用Id查询单条数据及c表数据
  5288. /// </summary>
  5289. /// <param name="dto"></param>
  5290. /// <returns></returns>
  5291. [HttpPost]
  5292. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5293. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5294. {
  5295. try
  5296. {
  5297. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5298. if (groupData.Code != 0)
  5299. {
  5300. return Ok(JsonView(false, groupData.Msg));
  5301. }
  5302. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5303. }
  5304. catch (Exception ex)
  5305. {
  5306. return Ok(JsonView(false, ex.Message));
  5307. }
  5308. }
  5309. /// <summary>
  5310. /// 签证费用删除
  5311. /// </summary>
  5312. /// <param name="dto"></param>
  5313. /// <returns></returns>
  5314. [HttpPost]
  5315. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5316. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5317. {
  5318. _sqlSugar.BeginTran();
  5319. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5320. if (!res)
  5321. {
  5322. _sqlSugar.RollbackTran();
  5323. return Ok(JsonView(false, "删除失败"));
  5324. }
  5325. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5326. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5327. .SetColumns(a => new Grp_CreditCardPayment()
  5328. {
  5329. IsDel = 1,
  5330. DeleteUserId = dto.DeleteUserId,
  5331. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5332. }).ExecuteCommand();
  5333. if (resSub < 1)
  5334. {
  5335. _sqlSugar.RollbackTran();
  5336. return Ok(JsonView(false, "删除失败"));
  5337. }
  5338. _sqlSugar.CommitTran();
  5339. return Ok(JsonView(true, "删除成功!"));
  5340. }
  5341. /// <summary>
  5342. /// 签证费用录入下拉框初始化
  5343. /// </summary>
  5344. /// <returns></returns>
  5345. [HttpPost]
  5346. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5347. public async Task<IActionResult> VisaPriceAddSelect()
  5348. {
  5349. try
  5350. {
  5351. //支付方式
  5352. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5353. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5354. //币种
  5355. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5356. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5357. //乘客类型
  5358. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5359. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5360. //卡类型
  5361. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5362. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5363. var data = new
  5364. {
  5365. Payment = _Payment,
  5366. CurrencyList = _CurrencyList,
  5367. PassengerType = _PassengerType,
  5368. BankCard = _BankCard
  5369. };
  5370. return Ok(JsonView(true, "查询成功!", data));
  5371. }
  5372. catch (Exception ex)
  5373. {
  5374. return Ok(JsonView(false, "程序错误!"));
  5375. throw;
  5376. }
  5377. }
  5378. /// <summary>
  5379. /// 签证费用录入操作(Status:1.新增,2.修改)
  5380. /// </summary>
  5381. /// <param name="dto"></param>
  5382. /// <returns></returns>
  5383. [HttpPost]
  5384. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5385. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5386. {
  5387. try
  5388. {
  5389. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5390. if (groupData.Code != 0)
  5391. {
  5392. return Ok(JsonView(false, groupData.Msg));
  5393. }
  5394. #region 应用推送
  5395. try
  5396. {
  5397. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5398. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5399. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5400. }
  5401. catch (Exception ex)
  5402. {
  5403. }
  5404. #endregion
  5405. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5406. }
  5407. catch (Exception ex)
  5408. {
  5409. return Ok(JsonView(false, ex.Message));
  5410. }
  5411. }
  5412. #endregion
  5413. #region op费用录入
  5414. /// <summary>
  5415. /// 根据diid查询op费用列表
  5416. /// </summary>
  5417. /// <param name="dto"></param>
  5418. /// <returns></returns>
  5419. [HttpPost]
  5420. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5421. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5422. {
  5423. try
  5424. {
  5425. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5426. if (groupData.Code != 0)
  5427. {
  5428. return Ok(JsonView(false, groupData.Msg));
  5429. }
  5430. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5431. }
  5432. catch (Exception ex)
  5433. {
  5434. return Ok(JsonView(false, ex.Message));
  5435. }
  5436. }
  5437. /// <summary>
  5438. /// 根据op费用Id查询单条数据及c表数据
  5439. /// </summary>
  5440. /// <param name="dto"></param>
  5441. /// <returns></returns>
  5442. [HttpPost]
  5443. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5444. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5445. {
  5446. try
  5447. {
  5448. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5449. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5450. var data = new
  5451. {
  5452. CarTouristGuideGround = _groupData,
  5453. CreditCardPayment = _creditCardPayment
  5454. };
  5455. return Ok(JsonView(true, "查询成功!", data));
  5456. }
  5457. catch (Exception ex)
  5458. {
  5459. return Ok(JsonView(false, "程序错误!"));
  5460. }
  5461. }
  5462. /// <summary>
  5463. /// op费用删除
  5464. /// </summary>
  5465. /// <param name="dto"></param>
  5466. /// <returns></returns>
  5467. [HttpPost]
  5468. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5469. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5470. {
  5471. try
  5472. {
  5473. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5474. if (!res)
  5475. {
  5476. return Ok(JsonView(false, "删除失败"));
  5477. }
  5478. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5479. {
  5480. IsDel = 1,
  5481. DeleteUserId = dto.DeleteUserId,
  5482. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5483. }).ExecuteCommandAsync();
  5484. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5485. {
  5486. IsDel = 1,
  5487. DeleteUserId = dto.DeleteUserId,
  5488. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5489. }).ExecuteCommandAsync();
  5490. return Ok(JsonView(true, "删除成功!"));
  5491. }
  5492. catch (Exception ex)
  5493. {
  5494. return Ok(JsonView(false, "程序错误!"));
  5495. throw;
  5496. }
  5497. }
  5498. /// <summary>
  5499. /// op费用录入操作(Status:1.新增,2.修改)
  5500. /// </summary>
  5501. /// <param name="dto"></param>
  5502. /// <returns></returns>
  5503. [HttpPost]
  5504. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5505. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5506. {
  5507. try
  5508. {
  5509. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5510. if (groupData.Code != 0)
  5511. {
  5512. return Ok(JsonView(false, groupData.Msg));
  5513. }
  5514. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5515. }
  5516. catch (Exception ex)
  5517. {
  5518. return Ok(JsonView(false, ex.Message));
  5519. }
  5520. }
  5521. /// <summary>
  5522. /// 填写费用详细页面初始化绑定
  5523. /// </summary>
  5524. /// <param name="dto"></param>
  5525. /// <returns></returns>
  5526. [HttpPost]
  5527. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5528. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5529. {
  5530. try
  5531. {
  5532. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5533. if (groupData.Code != 0)
  5534. {
  5535. return Ok(JsonView(false, groupData.Msg));
  5536. }
  5537. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5538. }
  5539. catch (Exception ex)
  5540. {
  5541. return Ok(JsonView(false, ex.Message));
  5542. }
  5543. }
  5544. /// <summary>
  5545. /// 根据op费用Id查询详细数据
  5546. /// </summary>
  5547. /// <param name="dto"></param>
  5548. /// <returns></returns>
  5549. [HttpPost]
  5550. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5551. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5552. {
  5553. try
  5554. {
  5555. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5556. if (groupData.Code != 0)
  5557. {
  5558. return Ok(JsonView(false, groupData.Msg));
  5559. }
  5560. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5561. }
  5562. catch (Exception ex)
  5563. {
  5564. return Ok(JsonView(false, ex.Message));
  5565. }
  5566. }
  5567. /// <summary>
  5568. /// OP费用录入填写详情
  5569. /// </summary>
  5570. /// <param name="dto"></param>
  5571. /// <returns></returns>
  5572. [HttpPost]
  5573. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5574. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5575. {
  5576. try
  5577. {
  5578. #region 参数校验
  5579. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5580. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5581. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5582. #endregion
  5583. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5584. if (groupData.Code != 0)
  5585. {
  5586. return Ok(JsonView(false, groupData.Msg));
  5587. }
  5588. //自动审核
  5589. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5590. #region 应用推送
  5591. try
  5592. {
  5593. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5594. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5595. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5596. }
  5597. catch (Exception ex)
  5598. {
  5599. }
  5600. #endregion
  5601. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5602. }
  5603. catch (Exception ex)
  5604. {
  5605. return Ok(JsonView(false, ex.Message));
  5606. }
  5607. }
  5608. /// <summary>
  5609. /// 获取三公详细所有城市
  5610. /// </summary>
  5611. /// <returns></returns>
  5612. [HttpGet]
  5613. public IActionResult OpCarCityResult()
  5614. {
  5615. var jw = JsonView(false);
  5616. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5617. {
  5618. x.Id,
  5619. x.Country,
  5620. x.City,
  5621. }).ToList();
  5622. if (data.Count > 0)
  5623. {
  5624. jw = JsonView(true, "获取成功!", data);
  5625. }
  5626. else
  5627. {
  5628. jw.Msg = "城市数据为空!";
  5629. jw.Data = new string[0];
  5630. }
  5631. return Ok(jw);
  5632. }
  5633. /// <summary>
  5634. /// 导出地接费用明细
  5635. /// </summary>
  5636. /// <param name="dto"></param>
  5637. /// <returns></returns>
  5638. [HttpPost]
  5639. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5640. {
  5641. var jw = JsonView(false);
  5642. if (dto.Diid < 1)
  5643. {
  5644. jw.Msg = "请输入正确的diid!";
  5645. return Ok(jw);
  5646. }
  5647. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5648. if (group == null)
  5649. {
  5650. jw.Msg = "未找到团组信息!";
  5651. return Ok(jw);
  5652. }
  5653. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5654. if (localGuideArr.Count == 0)
  5655. {
  5656. jw.Msg = "该团组暂无地接信息!";
  5657. return Ok(jw);
  5658. }
  5659. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5660. var overspendSoure = new Dictionary<int, int>
  5661. {
  5662. { 91, 982 }, //车
  5663. { 92 , 1059} ,//导游
  5664. { 994 , 1073}, //翻译
  5665. { 988 , 1074 }, //早餐
  5666. { 93 , 1075 }, //午餐
  5667. { 989 , 1076 }, //晚餐
  5668. };
  5669. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5670. foreach (var groupArr in localGroup)
  5671. {
  5672. var keyValue = groupArr.Key;
  5673. if (int.TryParse(keyValue, out int cityid))
  5674. {
  5675. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5676. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5677. }
  5678. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5679. foreach (var item in groupArr)
  5680. {
  5681. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5682. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5683. new Grp_CarTouristGuideGroundReservationsContentExtend
  5684. {
  5685. Count = a.Count,
  5686. CreateTime = a.CreateTime,
  5687. CreateUserId = a.CreateUserId,
  5688. CTGGRId = a.CTGGRId,
  5689. Currency = a.Currency,
  5690. DatePrice = a.DatePrice,
  5691. DeleteTime = a.DeleteTime,
  5692. DeleteUserId = a.DeleteUserId,
  5693. DiId = a.DiId,
  5694. Id = a.Id,
  5695. IsDel = a.IsDel,
  5696. Price = a.Price,
  5697. PriceContent = a.PriceContent,
  5698. Remark = a.Remark,
  5699. SId = a.SId,
  5700. SidName = b.Name,
  5701. Units = a.Units,
  5702. }
  5703. ).ToList();
  5704. if (content.Count > 0)
  5705. {
  5706. contentArr.Add(content);
  5707. }
  5708. }
  5709. //open excel
  5710. //set excel
  5711. //save excel
  5712. try
  5713. {
  5714. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5715. IWorkbook workbook;
  5716. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5717. {
  5718. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5719. }
  5720. else
  5721. {
  5722. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5723. }
  5724. ISheet sheet = workbook.GetSheetAt(0);
  5725. var rowStartIndex = 2;
  5726. var clounmCount = 10;
  5727. var initStyleRow = sheet.GetRow(2);
  5728. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5729. //var overspendArrDetail =
  5730. var existsId = new List<CarCompare>();
  5731. var lastElem = arr.Last();
  5732. var thisSid = -1;
  5733. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5734. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5735. {
  5736. Name = "未知币种!",
  5737. Remark = "未知币种!",
  5738. };
  5739. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5740. Action cloneRowFn = () =>
  5741. {
  5742. rowStartIndex++;
  5743. var cloneRow = sheet.CreateRow(rowStartIndex);
  5744. // 复制样式
  5745. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5746. {
  5747. ICell sourceCell = initStyleRow.GetCell(i);
  5748. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5749. // 确保单元格存在样式
  5750. if (sourceCell.CellStyle != null)
  5751. {
  5752. targetCell.CellStyle = sourceCell.CellStyle;
  5753. }
  5754. }
  5755. };
  5756. var mergeRow = () =>
  5757. {
  5758. for (int i = 2; i < sheet.LastRowNum; i++)
  5759. {
  5760. var row = sheet.GetRow(i);
  5761. var cellFirst = row.GetCell(0);
  5762. var thisIndex = i + 1;
  5763. while (thisIndex < sheet.LastRowNum)
  5764. {
  5765. var nextRow = sheet.GetRow(thisIndex);
  5766. var nextCellFirst = nextRow.GetCell(0);
  5767. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5768. {
  5769. thisIndex++;
  5770. }
  5771. else
  5772. {
  5773. break;
  5774. }
  5775. }
  5776. thisIndex--;
  5777. if (thisIndex != i)
  5778. {
  5779. //合并row
  5780. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5781. i, // 起始行索引(0-based)
  5782. thisIndex, // 结束行索引(0-based)
  5783. 0, // 起始列索引(0-based)
  5784. 0 // 结束列索引(0-based)
  5785. );
  5786. sheet.AddMergedRegion(cellRangeAddress);
  5787. i = thisIndex;
  5788. }
  5789. }
  5790. };
  5791. var chaoshiNumber = 0;
  5792. var totalNumber = 0.00M;
  5793. string lastStr = "";
  5794. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5795. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5796. {
  5797. b.IsAuditGM,
  5798. x.Id,
  5799. x.Area,
  5800. b.PayPercentage,
  5801. b.PayMoney,
  5802. }).ToList();
  5803. string yesPayment = "", noPayment = "";
  5804. foreach (var item in queryCarArrByCityAndDiid)
  5805. {
  5806. if (item.IsAuditGM == 1)
  5807. {
  5808. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5809. }
  5810. else
  5811. {
  5812. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5813. }
  5814. }
  5815. lastStr = yesPayment + noPayment;
  5816. foreach (var item in arr)
  5817. {
  5818. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5819. {
  5820. if (thisSid != item.SId)
  5821. {
  5822. if (thisSid == -1)
  5823. {
  5824. thisSid = item.SId;
  5825. }
  5826. else
  5827. {
  5828. //合并小计行
  5829. //创建合并区域的实例
  5830. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5831. rowStartIndex, // 起始行索引(0-based)
  5832. rowStartIndex, // 结束行索引(0-based)
  5833. 0, // 起始列索引(0-based)
  5834. 3 // 结束列索引(0-based)
  5835. );
  5836. sheet.AddMergedRegion(cellRangeAddress);
  5837. var CellStyle = workbook.CreateCellStyle();
  5838. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5839. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5840. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5841. for (int i = 0; i <= clounmCount; i++)
  5842. {
  5843. if (i > 6)
  5844. {
  5845. var CellStyle1 = workbook.CreateCellStyle();
  5846. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5847. IFont Font = workbook.CreateFont(); // 创建字体
  5848. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5849. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5850. CellStyle1.SetFont(Font);
  5851. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5852. }
  5853. else
  5854. {
  5855. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5856. }
  5857. }
  5858. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5859. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5860. //超时合计
  5861. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5862. //超时数
  5863. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5864. //超时合计费用
  5865. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5866. thisSid = item.SId;
  5867. cloneRowFn();
  5868. chaoshiNumber = 0;
  5869. totalNumber = 0;
  5870. }
  5871. }
  5872. IRow row = sheet.GetRow(rowStartIndex);
  5873. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5874. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5875. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5876. if (isOpenOverspendSoure)
  5877. {
  5878. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5879. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5880. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5881. }
  5882. for (int i = 0; i <= clounmCount; i++)
  5883. {
  5884. var cell = row.GetCell(i);
  5885. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5886. if (cell == null)
  5887. {
  5888. cell = row.CreateCell(i);
  5889. }
  5890. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5891. fontRed.CloneStyleFrom(cell.CellStyle);
  5892. IFont Font = workbook.CreateFont(); // 创建字体
  5893. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5894. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5895. fontRed.SetFont(Font);
  5896. byte[] rgb = new byte[3] { 255, 242, 204 };
  5897. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5898. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5899. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5900. if (workbook is XSSFWorkbook)
  5901. {
  5902. BackgroundColor255_242_204.FillForegroundColor = 0;
  5903. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5904. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5905. }
  5906. else
  5907. {
  5908. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5909. }
  5910. if (i == 1 || i > 6)
  5911. {
  5912. if (i > 6)
  5913. {
  5914. fontRed.FillForegroundColor = 0;
  5915. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5916. fontRed.FillPattern = FillPattern.SolidForeground;
  5917. }
  5918. cell.CellStyle = fontRed;
  5919. }
  5920. if (i > 2 && i < 7)
  5921. {
  5922. cell.CellStyle = BackgroundColor255_242_204;
  5923. }
  5924. cell.SetCellValue(setCellValue); //写入单元格
  5925. }
  5926. if (overspendSoure.ContainsKey(thisSid))
  5927. {
  5928. var overspendId = overspendSoure[thisSid];
  5929. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5930. }
  5931. cloneRowFn();
  5932. existsId.Add(new CarCompare
  5933. {
  5934. DataPrice = item.DatePrice.ObjToDate(),
  5935. Sid = item.SId
  5936. });
  5937. }
  5938. if (item.Equals(lastElem))
  5939. {
  5940. //合并小计行
  5941. //创建合并区域的实例
  5942. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5943. rowStartIndex, // 起始行索引(0-based)
  5944. rowStartIndex, // 结束行索引(0-based)
  5945. 0, // 起始列索引(0-based)
  5946. 3 // 结束列索引(0-based)
  5947. );
  5948. sheet.AddMergedRegion(cellRangeAddress);
  5949. var CellStyle = workbook.CreateCellStyle();
  5950. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5951. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5952. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5953. for (int i = 0; i <= clounmCount; i++)
  5954. {
  5955. if (i > 6)
  5956. {
  5957. var CellStyle1 = workbook.CreateCellStyle();
  5958. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5959. IFont Font = workbook.CreateFont(); // 创建字体
  5960. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5961. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5962. CellStyle1.SetFont(Font);
  5963. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5964. }
  5965. else
  5966. {
  5967. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5968. }
  5969. }
  5970. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5971. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5972. //超时合计
  5973. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5974. //超时数
  5975. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5976. //超时合计费用
  5977. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5978. cloneRowFn();
  5979. // 创建合并区域的实例
  5980. cellRangeAddress = new CellRangeAddress(
  5981. rowStartIndex, // 起始行索引(0-based)
  5982. rowStartIndex, // 结束行索引(0-based)
  5983. 0, // 起始列索引(0-based)
  5984. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  5985. );
  5986. // 添加合并区域
  5987. sheet.AddMergedRegion(cellRangeAddress);
  5988. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  5989. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  5990. }
  5991. }
  5992. mergeRow();
  5993. // 保存修改后的Excel文件到新文件
  5994. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  5995. // new FileStream(newFilePath, FileMode.CreateNew)
  5996. using (var stream = new MemoryStream())
  5997. {
  5998. workbook.Write(stream, true);
  5999. stream.Flush();
  6000. stream.Seek(0, SeekOrigin.Begin);
  6001. MemoryStream memoryStream = new MemoryStream();
  6002. stream.CopyTo(memoryStream);
  6003. memoryStream.Seek(0, SeekOrigin.Begin);
  6004. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  6005. }
  6006. workbook.Close();
  6007. workbook.Dispose();
  6008. }
  6009. catch (Exception ex)
  6010. {
  6011. jw.Msg = "出现异常!" + ex.Message;
  6012. return Ok(jw);
  6013. }
  6014. }
  6015. if (Zips.Count > 0)
  6016. {
  6017. IOOperatorHelper io = new IOOperatorHelper();
  6018. var byts = io.ConvertZipStream(Zips);
  6019. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  6020. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  6021. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  6022. }
  6023. else
  6024. {
  6025. jw.Msg = "暂无生成文件!";
  6026. }
  6027. return Ok(jw);
  6028. }
  6029. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  6030. {
  6031. string outStr = string.Empty;
  6032. switch (i)
  6033. {
  6034. case 0:
  6035. outStr = arr[0].SidName;
  6036. break;
  6037. case 1:
  6038. outStr = arr[0].DataPriceStr;
  6039. break;
  6040. case 2:
  6041. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  6042. break;
  6043. case 4:
  6044. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  6045. break;
  6046. case 7:
  6047. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6048. {
  6049. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  6050. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  6051. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  6052. }
  6053. break;
  6054. case 8:
  6055. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6056. {
  6057. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  6058. }
  6059. break;
  6060. case 9:
  6061. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6062. {
  6063. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  6064. }
  6065. break;
  6066. case 10:
  6067. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6068. {
  6069. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6070. }
  6071. break;
  6072. }
  6073. return outStr;
  6074. }
  6075. #region OP行程单
  6076. /// <summary>
  6077. /// OP行程单初始化
  6078. /// </summary>
  6079. /// <param name="dto"></param>
  6080. /// <returns></returns>
  6081. [HttpPost]
  6082. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6083. {
  6084. var jw = JsonView(false);
  6085. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6086. var group = groupList.First();
  6087. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6088. if (group == null)
  6089. {
  6090. jw.Msg = "暂无团组!";
  6091. return Ok(jw);
  6092. }
  6093. group = groupList.Find(x => x.Id == diid);
  6094. if (group == null)
  6095. {
  6096. jw.Msg = "请输入正确的团组ID!";
  6097. return Ok(jw);
  6098. }
  6099. string city = string.Empty;
  6100. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6101. if (blackCode.Count > 0)
  6102. {
  6103. var black = blackCode.First();
  6104. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6105. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6106. if (blackSp.Length > 0)
  6107. {
  6108. try
  6109. {
  6110. var cityArrCode = new List<string>(20);
  6111. foreach (var item in blackSp)
  6112. {
  6113. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6114. var IndexSelect = itemSp[2];
  6115. var cityArrCodeLength = cityArrCode.Count - 1;
  6116. var startCity = IndexSelect.Substring(0, 3);
  6117. if (cityArrCodeLength > 0)
  6118. {
  6119. var arrEndCity = cityArrCode[cityArrCodeLength];
  6120. if (arrEndCity != startCity)
  6121. {
  6122. cityArrCode.Add(startCity.ToUpper());
  6123. }
  6124. }
  6125. else
  6126. {
  6127. cityArrCode.Add(startCity.ToUpper());
  6128. }
  6129. var endCity = IndexSelect.Substring(3, 3);
  6130. cityArrCode.Add(endCity.ToUpper());
  6131. }
  6132. var cityThree = string.Empty;
  6133. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6134. cityThree = cityThree.TrimEnd(',');
  6135. if (string.IsNullOrWhiteSpace(cityThree))
  6136. {
  6137. throw new
  6138. Exception("error");
  6139. }
  6140. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6141. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6142. foreach (var item in cityArrCode)
  6143. {
  6144. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6145. if (find != null)
  6146. {
  6147. city += find.City + "/";
  6148. }
  6149. else
  6150. {
  6151. city += item + "三字码未收入/";
  6152. }
  6153. }
  6154. city = city.TrimEnd('/');
  6155. }
  6156. catch (Exception e)
  6157. {
  6158. city = "黑屏代码格式不正确!";
  6159. }
  6160. }
  6161. }
  6162. else
  6163. {
  6164. city = "未录入黑屏代码";
  6165. }
  6166. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6167. {
  6168. Date = x.Date,
  6169. Days = x.Days,
  6170. Diffgroup = x.Diffgroup,
  6171. Diid = x.Diid,
  6172. Traffic_First = x.Traffic_First,
  6173. Traffic_Second = x.Traffic_Second,
  6174. Trip = x.Trip,
  6175. WeekDay = x.WeekDay,
  6176. Id = x.Id
  6177. }).ToList();
  6178. jw.Data = new
  6179. {
  6180. groupList = groupList.Select(x => new
  6181. {
  6182. x.Id,
  6183. x.TeamName,
  6184. x.TourCode
  6185. }).ToList(),
  6186. groupInfo = new
  6187. {
  6188. group.VisitDays,
  6189. group.TourCode,
  6190. group.VisitPNumber,
  6191. group.TeamName,
  6192. city
  6193. },
  6194. OpTravelList
  6195. };
  6196. jw.Code = 200;
  6197. jw.Msg = "操作成功!";
  6198. return Ok(jw);
  6199. }
  6200. /// <summary>
  6201. /// 删除团组行程单
  6202. /// </summary>
  6203. /// <returns></returns>
  6204. [HttpPost]
  6205. public IActionResult DelTravel(DelOpTravelDto dto)
  6206. {
  6207. var jw = JsonView(false);
  6208. if (dto.UserId <= 0 || dto.Diid <= 0)
  6209. {
  6210. jw.Msg = "请输入正确的参数!";
  6211. return Ok(jw);
  6212. }
  6213. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6214. .SetColumns(x => new Grp_TravelList
  6215. {
  6216. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6217. DeleteUserId = dto.UserId,
  6218. IsDel = 1,
  6219. }).ExecuteCommand();
  6220. jw = JsonView(true);
  6221. return Ok(jw);
  6222. }
  6223. /// <summary>
  6224. /// 行程单保存
  6225. /// </summary>
  6226. /// <returns></returns>
  6227. [HttpPost]
  6228. public IActionResult TravelSave(TravelSaveDto dto)
  6229. {
  6230. var jw = JsonView(false);
  6231. if (dto.Arr.Count > 0)
  6232. {
  6233. try
  6234. {
  6235. _sqlSugar.BeginTran();
  6236. foreach (var item in dto.Arr)
  6237. {
  6238. if (item.Id == 0)
  6239. {
  6240. throw new Exception("请传入正确的Id");
  6241. }
  6242. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6243. .SetColumns(x => new Grp_TravelList
  6244. {
  6245. Trip = item.Trip
  6246. }).ExecuteCommand();
  6247. }
  6248. _sqlSugar.CommitTran();
  6249. jw = JsonView(true);
  6250. }
  6251. catch (Exception ex)
  6252. {
  6253. _sqlSugar.RollbackTran();
  6254. jw.Msg = "程序异常!" + ex.Message;
  6255. }
  6256. }
  6257. else
  6258. {
  6259. jw.Msg = "请传入正确的参数!";
  6260. }
  6261. return Ok(jw);
  6262. }
  6263. /// <summary>
  6264. /// 导出行程单
  6265. /// </summary>
  6266. /// <param name="dto"></param>
  6267. /// <returns></returns>
  6268. [HttpPost]
  6269. public IActionResult ExportTravel(ExportTravelDto dto)
  6270. {
  6271. var jw = JsonView(false);
  6272. jw.Data = "";
  6273. int diid = 0;
  6274. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6275. if (Find == null)
  6276. {
  6277. jw.Msg = "请选择正确的团组!";
  6278. return Ok(jw);
  6279. }
  6280. else
  6281. {
  6282. diid = Find.Id;
  6283. }
  6284. //数据源
  6285. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6286. DataTable dtBlack = null;
  6287. try
  6288. {
  6289. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6290. }
  6291. catch (Exception)
  6292. {
  6293. jw.Msg = "机票黑屏代码有误!";
  6294. return Ok(jw);
  6295. }
  6296. string CityStr = string.Empty;
  6297. if (dtBlack.Rows.Count == 0)
  6298. {
  6299. jw.Msg = "机票黑屏代码有误!";
  6300. return Ok(jw);
  6301. }
  6302. else
  6303. {
  6304. foreach (DataRow row in dtBlack.Rows)
  6305. {
  6306. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6307. {
  6308. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6309. return Ok(jw);
  6310. }
  6311. }
  6312. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6313. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6314. }
  6315. //创建数据源Table
  6316. DataTable dtSource = new DataTable();
  6317. dtSource.Columns.Add("Days", typeof(string));
  6318. dtSource.Columns.Add("Date", typeof(string));
  6319. dtSource.Columns.Add("Week", typeof(string));
  6320. dtSource.Columns.Add("Traffic", typeof(string));
  6321. dtSource.Columns.Add("Trip", typeof(string));
  6322. //获取数据,放到datatable
  6323. foreach (var item in _travelList)
  6324. {
  6325. DataRow dr = dtSource.NewRow();
  6326. dr["Days"] = item.Days;
  6327. dr["Date"] = item.Date;
  6328. dr["Week"] = item.WeekDay;
  6329. dr["Traffic"] = item.Traffic_First
  6330. + "\r\n"
  6331. + item.Traffic_Second;
  6332. dr["Trip"] = item.Trip;
  6333. dtSource.Rows.Add(dr);
  6334. }
  6335. Dictionary<string, string> dic = new Dictionary<string, string>();
  6336. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6337. dic.Add("City", CityStr);
  6338. dic.Add("Days", Find.VisitDays.ToString());
  6339. dic.Add("DeleCode", Find.TourCode);
  6340. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6341. //模板路径
  6342. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6343. //载入模板
  6344. Document doc = null;
  6345. DocumentBuilder builder = null;
  6346. try
  6347. {
  6348. //载入模板
  6349. doc = new Document(tempPath);
  6350. builder = new DocumentBuilder(doc);
  6351. }
  6352. catch (Exception)
  6353. {
  6354. jw.Msg = "模板位置不存在!";
  6355. return Ok(jw);
  6356. }
  6357. foreach (var key in dic.Keys)
  6358. {
  6359. Bookmark bookmark = doc.Range.Bookmarks[key];
  6360. if (bookmark != null)
  6361. {
  6362. builder.MoveToBookmark(key);
  6363. builder.Write(dic[key]);
  6364. }
  6365. }
  6366. //获取word里所有表格
  6367. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6368. //获取所填表格的序数
  6369. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6370. try
  6371. {
  6372. //循环赋值
  6373. for (int i = 0; i < dtSource.Rows.Count; i++)
  6374. {
  6375. builder.MoveToCell(0, i + 1, 0, 0);
  6376. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6377. builder.MoveToCell(0, i + 1, 1, 0);
  6378. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6379. builder.MoveToCell(0, i + 1, 2, 0);
  6380. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6381. var trip = dtSource.Rows[i]["Trip"].ToString();
  6382. builder.MoveToCell(0, i + 1, 3, 0);
  6383. builder.Write(trip);
  6384. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6385. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6386. // 获取特定索引的段落
  6387. Paragraph paragraph = (Paragraph)paragraphs[0];
  6388. Run run = paragraph.Runs[0];
  6389. Aspose.Words.Font font = run.Font;
  6390. font.Name = "黑体";
  6391. //设置双休红色
  6392. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6393. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6394. paragraph = (Paragraph)paragraphs[1];
  6395. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6396. {
  6397. run = paragraph.Runs[0];
  6398. font = run.Font;
  6399. font.Color = Color.Red;
  6400. }
  6401. }
  6402. }
  6403. catch (Exception ex)
  6404. {
  6405. }
  6406. //删除多余行
  6407. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6408. {
  6409. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6410. }
  6411. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6412. if (!Directory.Exists(savePath))
  6413. {
  6414. try
  6415. {
  6416. Directory.CreateDirectory(savePath);
  6417. }
  6418. catch
  6419. {
  6420. }
  6421. }
  6422. string path = savePath + Find.TeamName + "出访日程";
  6423. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6424. try
  6425. {
  6426. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6427. string postfix = ".docx";
  6428. if (dto.IsPDF == 1)
  6429. {
  6430. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6431. postfix = ".pdf";
  6432. }
  6433. doc.Save(path + postfix, saveFormat);
  6434. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6435. }
  6436. catch (Exception)
  6437. {
  6438. jw = JsonView(false);
  6439. }
  6440. return Ok(jw);
  6441. }
  6442. /// <summary>
  6443. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6444. /// </summary>
  6445. /// <param name="num"></param>
  6446. /// <returns></returns>
  6447. string GetNum(string num)
  6448. {
  6449. string str = "";
  6450. switch (num)
  6451. {
  6452. case "1":
  6453. str = "一";
  6454. break;
  6455. case "2":
  6456. str = "二";
  6457. break;
  6458. case "3":
  6459. str = "三";
  6460. break;
  6461. case "4":
  6462. str = "四";
  6463. break;
  6464. case "5":
  6465. str = "五";
  6466. break;
  6467. case "6":
  6468. str = "六";
  6469. break;
  6470. case "7":
  6471. str = "七";
  6472. break;
  6473. case "8":
  6474. str = "八";
  6475. break;
  6476. case "9":
  6477. str = "九";
  6478. break;
  6479. case "10":
  6480. str = "十";
  6481. break;
  6482. case "11":
  6483. str = "十一";
  6484. break;
  6485. case "12":
  6486. str = "十二";
  6487. break;
  6488. case "一":
  6489. str = "1";
  6490. break;
  6491. case "二":
  6492. str = "2";
  6493. break;
  6494. case "三":
  6495. str = "3";
  6496. break;
  6497. case "四":
  6498. str = "4";
  6499. break;
  6500. case "五":
  6501. str = "5";
  6502. break;
  6503. case "六":
  6504. str = "6";
  6505. break;
  6506. case "七":
  6507. str = "7";
  6508. break;
  6509. case "八":
  6510. str = "8";
  6511. break;
  6512. case "九":
  6513. str = "9";
  6514. break;
  6515. case "十":
  6516. str = "10";
  6517. break;
  6518. case "十一":
  6519. str = "11";
  6520. break;
  6521. case "十二":
  6522. str = "12";
  6523. break;
  6524. }
  6525. return str;
  6526. }
  6527. #endregion
  6528. #endregion
  6529. #region 团组成本
  6530. /// <summary>
  6531. /// 团组成本数据初始化
  6532. /// </summary>
  6533. /// <param name="dto"></param>
  6534. /// <returns></returns>
  6535. [HttpPost]
  6536. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6537. {
  6538. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6539. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6540. WHEN COUNT(*) >= 0 THEN 'True'
  6541. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6542. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6543. ").ToList(); //团组列表
  6544. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6545. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6546. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6547. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6548. if (groupinfoValue != null)
  6549. {
  6550. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6551. var spArr = new string[1] { countryArr };
  6552. if (countryArr.Contains("|"))
  6553. {
  6554. spArr = countryArr.Split("|");
  6555. }
  6556. else if (countryArr.Contains("、"))
  6557. {
  6558. spArr = countryArr.Split("、");
  6559. }
  6560. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6561. {
  6562. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6563. if (dbQueryCountry != null)
  6564. {
  6565. visaCountryInfoArr.Add(dbQueryCountry);
  6566. }
  6567. }
  6568. }
  6569. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6570. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6571. var create = _GroupCostRepository.
  6572. CreateGroupCostByBlackCode(dto.Diid);
  6573. if (groupCost.Count == 0 && create.Code == 0)
  6574. {
  6575. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6576. }
  6577. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6578. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6579. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6580. groupCostMap = groupCostMap.Select(x =>
  6581. {
  6582. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6583. {
  6584. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6585. }
  6586. return x;
  6587. }).ToList();
  6588. //GroupCostParameter.Add(new
  6589. // Grp_GroupCostParameter());
  6590. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6591. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6592. return Ok(JsonView(new
  6593. {
  6594. groupList,
  6595. groupInfo,
  6596. groupChecks,
  6597. groupCost = groupCostMap,
  6598. hotelNumber,
  6599. GroupCostParameter = GroupCostParameterMap,
  6600. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6601. {
  6602. x.VisaCountry,
  6603. x.VisaPrice,
  6604. x.Id,
  6605. }).ToList(),
  6606. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6607. blackCodeIsTrue = create.Code == 0 ? true : false,
  6608. hotelIsTrue = hotelIsTrue,
  6609. }));
  6610. }
  6611. /// <summary>
  6612. /// 团组成本信息保存
  6613. /// </summary>
  6614. /// <param name="dto"></param>
  6615. /// <returns></returns>
  6616. [HttpPost]
  6617. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6618. {
  6619. if (dto.Diid <= 0 || dto.Userid <= 0)
  6620. {
  6621. return Ok(JsonView(false));
  6622. }
  6623. JsonView jw = null;
  6624. bool isTrue = false;
  6625. #region 复制团组成本
  6626. //if (dto.Diid == 2581)
  6627. //{
  6628. // dto.Diid = 2599;
  6629. // dto.CheckBoxs.ForEach(x =>
  6630. // {
  6631. // x.Diid = 2599;
  6632. // });
  6633. // dto.GroupCosts.ForEach(x =>
  6634. // {
  6635. // x.Diid = 2599;
  6636. // });
  6637. // dto.CostTypeHotelNumbers.ForEach(x =>
  6638. // {
  6639. // x.Diid = 2599;
  6640. // });
  6641. // dto.GroupCostParameters.ForEach(x =>
  6642. // {
  6643. // x.DiId = 2599;
  6644. // });
  6645. //}
  6646. #endregion
  6647. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6648. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6649. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6650. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6651. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6652. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6653. try
  6654. {
  6655. _sqlSugar.BeginTran();
  6656. isTrue = await _GroupCostRepository.
  6657. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6658. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6659. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6660. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6661. _sqlSugar.CommitTran();
  6662. jw = JsonView(true, "保存成功!", isTrue);
  6663. }
  6664. catch (Exception)
  6665. {
  6666. _sqlSugar.RollbackTran();
  6667. jw = JsonView(false);
  6668. }
  6669. return Ok(jw);
  6670. }
  6671. /// <summary>
  6672. /// 司兼导数据
  6673. /// </summary>
  6674. /// <param name="dto"></param>
  6675. /// <returns></returns>
  6676. [HttpPost]
  6677. public IActionResult GetCarGuides(CarGuidesDto dto)
  6678. {
  6679. JsonView jw = null;
  6680. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6681. jw = JsonView(true, "获取成功!", Data);
  6682. return Ok(jw);
  6683. }
  6684. /// <summary>
  6685. /// 导游数据
  6686. /// </summary>
  6687. /// <param name="dto"></param>
  6688. /// <returns></returns>
  6689. [HttpPost]
  6690. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6691. {
  6692. JsonView jw = null;
  6693. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6694. // 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
  6695. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6696. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6697. jw = JsonView(true, "获取成功!", Data);
  6698. return Ok(jw);
  6699. }
  6700. /// <summary>
  6701. /// 成本车数据
  6702. /// </summary>
  6703. /// <param name="dto"></param>
  6704. /// <returns></returns>
  6705. [HttpPost]
  6706. public IActionResult GetCarInfo(CarGuidesDto dto)
  6707. {
  6708. JsonView jw = null;
  6709. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6710. jw = JsonView(true, "获取成功!", Data);
  6711. return Ok(jw);
  6712. }
  6713. /// <summary>
  6714. /// 景点数据
  6715. /// </summary>
  6716. /// <param name="dto"></param>
  6717. /// <returns></returns>
  6718. [HttpPost]
  6719. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6720. {
  6721. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6722. return Ok(JsonView(true, "获取成功!", Data));
  6723. }
  6724. /// <summary>
  6725. /// 成本通知
  6726. /// </summary>
  6727. /// <param name="dto"></param>
  6728. /// <returns></returns>
  6729. [HttpPost]
  6730. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6731. {
  6732. if (dto.Diid < 0)
  6733. {
  6734. return Ok(JsonView(false));
  6735. }
  6736. JsonView jw = null;
  6737. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6738. if (GroupCostParameter != null)
  6739. {
  6740. int IsShare = 0;
  6741. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6742. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6743. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6744. string msg = string.Empty;
  6745. if (isTrue)
  6746. {
  6747. if (IsShare == 0)
  6748. {
  6749. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6750. }
  6751. else
  6752. {
  6753. #region 企微通知对应岗位用户
  6754. try
  6755. {
  6756. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6757. }
  6758. catch (Exception ex)
  6759. {
  6760. }
  6761. #endregion
  6762. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6763. }
  6764. jw = JsonView(isTrue, msg, new { IsShare });
  6765. }
  6766. else
  6767. {
  6768. msg = "修改失败!";
  6769. jw = JsonView(isTrue, msg);
  6770. }
  6771. }
  6772. else
  6773. {
  6774. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6775. }
  6776. return Ok(jw);
  6777. }
  6778. /// <summary>
  6779. /// 导出报价单
  6780. /// </summary>
  6781. /// <param name="dto"></param>
  6782. /// <returns></returns>
  6783. [HttpPost]
  6784. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6785. {
  6786. if (dto.Diid == 0)
  6787. {
  6788. return Ok(JsonView(false, "请传递团组id"));
  6789. }
  6790. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6791. if (deleInfo.Code != 0)
  6792. {
  6793. return Ok(JsonView(false, "团组信息查询失败!"));
  6794. }
  6795. var di = deleInfo.Data as DelegationInfoWebView;
  6796. if (di != null)
  6797. {
  6798. //文件名
  6799. string strFileName = di.TeamName + "-收款账单.doc";
  6800. //获取模板
  6801. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6802. //载入模板
  6803. Document doc = new Document(tmppath);
  6804. decimal TotalPrice = 0.00M;
  6805. string itemStr = string.Empty;
  6806. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6807. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6808. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6809. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6810. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6811. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6812. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6813. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6814. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6815. foreach (var cost in groupCostType)
  6816. {
  6817. var List = cost.ToList();
  6818. if (cost.Key == "A")
  6819. {
  6820. foreach (var ListItem in List)
  6821. {
  6822. if (ListItem.number > 0)
  6823. {
  6824. if (ListItem.code.Contains("TBR"))
  6825. {
  6826. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6827. }
  6828. else
  6829. {
  6830. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6831. }
  6832. TotalPrice += (ListItem.number * ListItem.price);
  6833. }
  6834. }
  6835. }
  6836. else
  6837. {
  6838. itemStr = itemStr.Insert(0, "A段\r\n");
  6839. itemStr += "B段\r\n";
  6840. foreach (var ListItem in List)
  6841. {
  6842. if (ListItem.number > 0)
  6843. {
  6844. if (ListItem.code.Contains("TBR"))
  6845. {
  6846. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6847. }
  6848. else
  6849. {
  6850. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6851. }
  6852. TotalPrice += (ListItem.number * ListItem.price);
  6853. }
  6854. }
  6855. }
  6856. }
  6857. #region 替换Word模板书签内容
  6858. Dictionary<string, string> marks = new Dictionary<string, string>();
  6859. marks.Add("To", di.ClientUnit);//付款方
  6860. marks.Add("ToTel", di.TellPhone);//付款方电话
  6861. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6862. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6863. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6864. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6865. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6866. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6867. marks.Add("PayItemContent", itemStr);//详细信息
  6868. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6869. #endregion
  6870. ////注
  6871. //if (doc.Range.Bookmarks["Attention"] != null)
  6872. //{
  6873. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6874. // mark.Text = frList[0].Attention;
  6875. //}
  6876. foreach (var item in marks.Keys)
  6877. {
  6878. if (doc.Range.Bookmarks[item] != null)
  6879. {
  6880. Bookmark mark = doc.Range.Bookmarks[item];
  6881. mark.Text = marks[item];
  6882. }
  6883. }
  6884. byte[] bytes = null;
  6885. using (MemoryStream stream = new MemoryStream())
  6886. {
  6887. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6888. bytes = stream.ToArray();
  6889. }
  6890. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6891. return Ok(JsonView(true, "", new
  6892. {
  6893. Data = bytes,
  6894. strFileName,
  6895. }));
  6896. }
  6897. else
  6898. {
  6899. return Ok(JsonView(false, "团组信息不存在!"));
  6900. }
  6901. }
  6902. /// <summary>
  6903. /// 导出团组成本
  6904. /// </summary>
  6905. /// <param name="dto"></param>
  6906. /// <returns></returns>
  6907. [HttpPost]
  6908. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6909. {
  6910. var jw = JsonView(false);
  6911. if (dto.Diid == 0)
  6912. {
  6913. return Ok(JsonView(false, "请传递团组id"));
  6914. }
  6915. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6916. if (deleInfo.Code != 0)
  6917. {
  6918. return Ok(JsonView(false, "团组信息查询失败!"));
  6919. }
  6920. var di = deleInfo.Data as DelegationInfoWebView;
  6921. if (di == null)
  6922. {
  6923. return Ok(JsonView(false, "团组信息查询失败!"));
  6924. }
  6925. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6926. WorkbookDesigner designer = new WorkbookDesigner();
  6927. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6928. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6929. for (int i = 0; i < List_GC.Count; i++)
  6930. {
  6931. GroupCost_Excel gc = new GroupCost_Excel();
  6932. gc.Id = List_GC[i].Id;
  6933. gc.Diid = List_GC[i].Diid.ToString();
  6934. gc.DAY = List_GC[i].DAY;
  6935. string week = "";
  6936. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6937. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6938. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6939. gc.ITIN = List_GC[i].ITIN;
  6940. gc.CarType = List_GC[i].CarType;
  6941. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6942. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6943. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6944. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6945. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6946. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6947. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6948. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6949. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6950. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6951. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6952. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6953. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6954. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6955. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6956. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6957. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6958. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6959. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6960. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6961. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6962. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6963. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6964. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6965. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6966. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6967. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6968. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6969. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6970. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6971. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6972. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6973. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6974. List_GC1.Add(gc);
  6975. }
  6976. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6977. dt.TableName = "TB";
  6978. //报表标题等不用dt的值
  6979. designer.SetDataSource("TeamName", dto.title.TeamName);
  6980. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6981. designer.SetDataSource("Tax", dto.title.Tax);
  6982. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6983. designer.SetDataSource("Currency", dto.title.Currency);
  6984. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6985. designer.SetDataSource("Rate", dto.title.Rate);
  6986. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6987. var Aparams = hotels.Find(x => x.Type == "Default");
  6988. if (Aparams == null)
  6989. {
  6990. return Ok(jw);
  6991. }
  6992. //酒店数量
  6993. var txtSGRNumber = Aparams.SGR.ToString();
  6994. var txtTBRNumber = Aparams.TBR.ToString();
  6995. var txtJSESNumber = Aparams.JSES.ToString();
  6996. var txtSUITENumbe = Aparams.SUITE.ToString();
  6997. if (dto.costType == "B")
  6998. {
  6999. Aparams = hotels.Find(x => x.Type == "A");
  7000. var Bparams = hotels.Find(x => x.Type == "B");
  7001. if (Aparams == null || Bparams == null)
  7002. {
  7003. return Ok(jw);
  7004. }
  7005. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  7006. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  7007. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  7008. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  7009. }
  7010. designer.SetDataSource("SGRNumber", txtSGRNumber);
  7011. designer.SetDataSource("TBRNumber", txtTBRNumber);
  7012. designer.SetDataSource("JSESNumber", txtJSESNumber);
  7013. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  7014. var ws = designer.Workbook.Worksheets[0];
  7015. int Row = List_GC.Count;
  7016. int startIndex = 11;
  7017. int HideRows = 0;
  7018. List<int> hideRowsList = new List<int>();
  7019. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  7020. #region A段left数据
  7021. var left = dto.leftInfo.Find(x => x.Type == "A");
  7022. if (left == null)
  7023. {
  7024. return Ok(jw);
  7025. }
  7026. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  7027. if (leftBindData != null)
  7028. {
  7029. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  7030. designer.SetDataSource("VisaRS", leftBindData.rs);
  7031. designer.SetDataSource("VisaXS", leftBindData.xs);
  7032. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7033. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7034. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7035. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7036. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7037. }
  7038. else
  7039. {
  7040. hideRowsList.Add(Row + startIndex + HideRows);
  7041. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7042. }
  7043. HideRows += 2;
  7044. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  7045. if (leftBindData != null)
  7046. {
  7047. designer.SetDataSource("BXDRCB", leftBindData.cb);
  7048. designer.SetDataSource("BXRS", leftBindData.rs);
  7049. designer.SetDataSource("BXXS", leftBindData.xs);
  7050. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7051. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7052. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7053. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7054. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7055. }
  7056. else
  7057. {
  7058. hideRowsList.Add(Row + startIndex + HideRows);
  7059. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7060. }
  7061. HideRows += 2;
  7062. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7063. if (leftBindData != null)
  7064. {
  7065. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7066. designer.SetDataSource("HSRS", leftBindData.rs);
  7067. designer.SetDataSource("HSXS", leftBindData.xs);
  7068. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7069. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7070. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7071. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7072. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7073. }
  7074. else
  7075. {
  7076. hideRowsList.Add(Row + startIndex + HideRows);
  7077. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7078. }
  7079. HideRows += 2;
  7080. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7081. if (leftBindData != null)
  7082. {
  7083. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7084. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7085. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7086. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7087. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7088. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7089. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7090. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7091. }
  7092. else
  7093. {
  7094. hideRowsList.Add(Row + startIndex + HideRows);
  7095. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7096. }
  7097. HideRows += 2;
  7098. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7099. if (leftBindData != null)
  7100. {
  7101. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7102. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7103. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7104. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7105. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7106. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7107. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7108. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7109. }
  7110. else
  7111. {
  7112. hideRowsList.Add(Row + startIndex + HideRows);
  7113. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7114. }
  7115. HideRows += 2;
  7116. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7117. if (leftBindData != null)
  7118. {
  7119. ////TBR
  7120. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7121. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7122. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7123. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7124. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7125. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7126. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7127. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7128. }
  7129. else
  7130. {
  7131. hideRowsList.Add(Row + startIndex + HideRows);
  7132. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7133. }
  7134. HideRows += 2;
  7135. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7136. if (leftBindData != null)
  7137. {
  7138. ////SGR
  7139. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7140. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7141. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7142. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7143. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7144. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7145. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7146. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7147. }
  7148. else
  7149. {
  7150. hideRowsList.Add(Row + startIndex + HideRows);
  7151. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7152. }
  7153. HideRows += 2;
  7154. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7155. if (leftBindData != null)
  7156. {
  7157. ////JS/ES
  7158. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7159. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7160. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7161. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7162. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7163. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7164. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7165. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7166. }
  7167. else
  7168. {
  7169. hideRowsList.Add(Row + startIndex + HideRows);
  7170. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7171. }
  7172. HideRows += 2;
  7173. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7174. if (leftBindData != null)
  7175. {
  7176. ////SUITE
  7177. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7178. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7179. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7180. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7181. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7182. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7183. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7184. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7185. }
  7186. else
  7187. {
  7188. hideRowsList.Add(Row + startIndex + HideRows);
  7189. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7190. }
  7191. HideRows += 2;
  7192. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7193. if (leftBindData != null)
  7194. {
  7195. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7196. designer.SetDataSource("DJRS", leftBindData.rs);
  7197. designer.SetDataSource("DJXS", leftBindData.xs);
  7198. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7199. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7200. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7201. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7202. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7203. }
  7204. else
  7205. {
  7206. hideRowsList.Add(Row + startIndex + HideRows);
  7207. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7208. }
  7209. HideRows += 2;
  7210. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7211. if (leftBindData != null)
  7212. {
  7213. designer.SetDataSource("HCPCB", leftBindData.cb);
  7214. designer.SetDataSource("HCPRS", leftBindData.rs);
  7215. designer.SetDataSource("HCPXS", leftBindData.xs);
  7216. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7217. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7218. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7219. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7220. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7221. }
  7222. else
  7223. {
  7224. hideRowsList.Add(Row + startIndex + HideRows);
  7225. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7226. }
  7227. HideRows += 2;
  7228. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7229. if (leftBindData != null)
  7230. {
  7231. designer.SetDataSource("CPCB", leftBindData.cb);
  7232. designer.SetDataSource("CPRS", leftBindData.rs);
  7233. designer.SetDataSource("CPXS", leftBindData.xs);
  7234. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7235. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7236. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7237. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7238. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7239. }
  7240. else
  7241. {
  7242. hideRowsList.Add(Row + startIndex + HideRows);
  7243. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7244. }
  7245. HideRows += 2;
  7246. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7247. if (leftBindData != null)
  7248. {
  7249. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7250. designer.SetDataSource("GWRS", leftBindData.rs);
  7251. designer.SetDataSource("GWXS", leftBindData.xs);
  7252. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7253. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7254. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7255. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7256. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7257. }
  7258. else
  7259. {
  7260. hideRowsList.Add(Row + startIndex + HideRows);
  7261. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7262. }
  7263. HideRows += 2;
  7264. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7265. if (leftBindData != null)
  7266. {
  7267. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7268. designer.SetDataSource("LYJRS", leftBindData.rs);
  7269. designer.SetDataSource("LYJXS", leftBindData.xs);
  7270. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7271. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7272. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7273. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7274. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7275. }
  7276. else
  7277. {
  7278. hideRowsList.Add(Row + startIndex + HideRows);
  7279. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7280. }
  7281. #endregion
  7282. #region A段Right信息
  7283. var right = dto.rightInfo.Find(x => x.Type == "A");
  7284. if (right == null)
  7285. {
  7286. return Ok(jw);
  7287. }
  7288. HideRows += 4;
  7289. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7290. if (rightBindData != null)
  7291. {
  7292. //经济舱 + 双人间 TBR
  7293. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7294. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7295. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7296. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7297. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7298. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7299. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7300. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7301. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7302. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7303. }
  7304. else
  7305. {
  7306. hideRowsList.Add(Row + startIndex + HideRows);
  7307. }
  7308. HideRows += 2;
  7309. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7310. if (rightBindData != null)
  7311. {
  7312. //经济舱 + 单人间 SGR
  7313. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7314. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7315. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7316. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7317. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7318. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7319. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7320. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7321. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7322. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7323. }
  7324. else
  7325. {
  7326. hideRowsList.Add(Row + startIndex + HideRows);
  7327. }
  7328. HideRows += 2;
  7329. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7330. if (rightBindData != null)
  7331. {
  7332. //公务舱 + 单人间 SGR
  7333. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7334. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7335. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7336. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7337. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7338. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7339. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7340. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7341. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7342. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7343. }
  7344. else
  7345. {
  7346. hideRowsList.Add(Row + startIndex + HideRows);
  7347. }
  7348. HideRows += 2;
  7349. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7350. if (rightBindData != null)
  7351. {
  7352. //公务舱 + 小套房 JSES
  7353. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7354. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7355. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7356. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7357. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7358. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7359. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7360. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7361. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7362. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7363. }
  7364. else
  7365. {
  7366. hideRowsList.Add(Row + startIndex + HideRows);
  7367. }
  7368. HideRows += 2;
  7369. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7370. if (rightBindData != null)
  7371. {
  7372. //公务舱 + 小套房 JSES
  7373. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7374. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7375. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7376. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7377. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7378. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7379. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7380. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7381. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7382. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7383. }
  7384. else
  7385. {
  7386. hideRowsList.Add(Row + startIndex + HideRows);
  7387. }
  7388. HideRows += 2;
  7389. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7390. if (rightBindData != null)
  7391. {
  7392. //经济舱 + 大套房
  7393. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7394. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7395. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7396. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7397. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7398. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7399. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7400. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7401. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7402. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7403. }
  7404. else
  7405. {
  7406. hideRowsList.Add(Row + startIndex + HideRows);
  7407. }
  7408. #endregion
  7409. #region B段标题清空
  7410. designer.SetDataSource("CostBDRCB", "");
  7411. designer.SetDataSource("CostBRS", "");
  7412. designer.SetDataSource("CostBXS", "");
  7413. designer.SetDataSource("CostBZCB", "");
  7414. designer.SetDataSource("CostBDRBJ", "");
  7415. designer.SetDataSource("CostBZBJ", "");
  7416. designer.SetDataSource("CostBDRLR", "");
  7417. designer.SetDataSource("CostBZLR", "");
  7418. designer.SetDataSource("CostBDRCBOM", "");
  7419. designer.SetDataSource("CostBRSOM", "");
  7420. designer.SetDataSource("CostBZCBOM", "");
  7421. designer.SetDataSource("CostBDRBJOM", "");
  7422. designer.SetDataSource("CostBZBJOM", "");
  7423. designer.SetDataSource("CostBDRLROM", "");
  7424. designer.SetDataSource("CostBZLROM", "");
  7425. #endregion
  7426. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7427. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7428. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7429. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7430. designer.SetDataSource("DJName", "地接(CNY)");
  7431. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7432. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7433. designer.SetDataSource("GWName", "公务(CNY)");
  7434. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7435. designer.SetDataSource("LYJName", "零用金(CNY)");
  7436. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7437. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7438. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7439. designer.SetDataSource("BXName", "保险(CNY)");
  7440. designer.SetDataSource("VisaName", "签证(CNY)");
  7441. #region B段基本数据
  7442. if (dto.costType == "B")
  7443. {
  7444. left = dto.leftInfo.Find(x => x.Type == "B");
  7445. if (left == null)
  7446. {
  7447. return Ok(jw);
  7448. }
  7449. #region B段left数据
  7450. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7451. if (leftBindData != null)
  7452. {
  7453. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7454. designer.SetDataSource("BHSRS", leftBindData.rs);
  7455. designer.SetDataSource("BHSXS", leftBindData.xs);
  7456. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7457. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7458. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7459. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7460. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7461. }
  7462. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7463. if (leftBindData != null)
  7464. {
  7465. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7466. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7467. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7468. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7469. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7470. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7471. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7472. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7473. }
  7474. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7475. if (leftBindData != null)
  7476. {
  7477. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7478. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7479. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7480. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7481. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7482. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7483. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7484. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7485. }
  7486. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7487. if (leftBindData != null)
  7488. {
  7489. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7490. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7491. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7492. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7493. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7494. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7495. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7496. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7497. }
  7498. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7499. if (leftBindData != null)
  7500. {
  7501. designer.SetDataSource("BCPCB", leftBindData.cb);
  7502. designer.SetDataSource("BCPRS", leftBindData.rs);
  7503. designer.SetDataSource("BCPXS", leftBindData.xs);
  7504. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7505. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7506. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7507. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7508. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7509. }
  7510. //TBR
  7511. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7512. if (leftBindData != null)
  7513. {
  7514. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7515. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7516. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7517. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7518. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7519. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7520. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7521. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7522. }
  7523. //SGR
  7524. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7525. if (leftBindData != null)
  7526. {
  7527. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7528. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7529. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7530. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7531. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7532. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7533. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7534. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7535. }
  7536. //JS/ES
  7537. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7538. if (leftBindData != null)
  7539. {
  7540. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7541. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7542. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7543. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7544. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7545. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7546. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7547. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7548. }
  7549. //SUITE
  7550. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7551. if (leftBindData != null)
  7552. {
  7553. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7554. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7555. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7556. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7557. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7558. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7559. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7560. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7561. }
  7562. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7563. if (leftBindData != null)
  7564. {
  7565. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7566. designer.SetDataSource("BDJRS", leftBindData.rs);
  7567. designer.SetDataSource("BDJXS", leftBindData.xs);
  7568. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7569. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7570. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7571. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7572. designer.SetDataSource("BDJZLR", ((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("BGWDRCD", leftBindData.cb);
  7578. designer.SetDataSource("BGWRS", leftBindData.rs);
  7579. designer.SetDataSource("BGWXS", leftBindData.xs);
  7580. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7581. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7582. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7583. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7584. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7585. }
  7586. #region 优化方案
  7587. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7588. //excelBind.Add("零用金", new {
  7589. //cb="",
  7590. //rs="",
  7591. //xs ="",
  7592. //zcb = "",
  7593. //});
  7594. #endregion
  7595. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7596. if (leftBindData != null)
  7597. {
  7598. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7599. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7600. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7601. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7602. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7603. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7604. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7605. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7606. }
  7607. #endregion
  7608. #region B段Right信息
  7609. right = dto.rightInfo.Find(x => x.Type == "B");
  7610. if (right == null)
  7611. {
  7612. return Ok(jw);
  7613. }
  7614. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7615. if (rightBindData != null)
  7616. {
  7617. //经济舱 + 双人间 TBR
  7618. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7619. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7620. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7621. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7622. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7623. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7624. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7625. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7626. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7627. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7628. }
  7629. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7630. if (rightBindData != null)
  7631. {
  7632. //经济舱 + 单人间 SGR
  7633. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7634. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7635. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7636. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7637. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7638. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7639. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7640. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7641. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7642. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7643. }
  7644. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7645. if (rightBindData != null)
  7646. {
  7647. //公务舱 + 单人间 SGR
  7648. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7649. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7650. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7651. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7652. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7653. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7654. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7655. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7656. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7657. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7658. }
  7659. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7660. if (rightBindData != null)
  7661. {
  7662. //公务舱 + 小套房 JSES
  7663. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7664. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7665. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7666. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7667. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7668. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7669. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7670. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7671. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7672. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7673. }
  7674. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7675. if (rightBindData != null)
  7676. {
  7677. //公务舱 + 小套房 JSES
  7678. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7679. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7680. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7681. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7682. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7683. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7684. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7685. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7686. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7687. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7688. }
  7689. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7690. if (rightBindData != null)
  7691. {
  7692. //经济舱 + 大套房
  7693. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7694. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7695. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7696. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7697. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7698. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7699. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7700. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7701. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7702. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7703. }
  7704. #endregion
  7705. #region 标题
  7706. designer.SetDataSource("CostBDRCB", "单人成本");
  7707. designer.SetDataSource("CostBRS", "人数");
  7708. designer.SetDataSource("CostBXS", "系数");
  7709. designer.SetDataSource("CostBZCB", "总成本");
  7710. designer.SetDataSource("CostBDRBJ", "单人报价");
  7711. designer.SetDataSource("CostBZBJ", "总报价");
  7712. designer.SetDataSource("CostBDRLR", "单人利润");
  7713. designer.SetDataSource("CostBZLR", "总利润");
  7714. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7715. designer.SetDataSource("CostBRSOM", "人数");
  7716. designer.SetDataSource("CostBZCBOM", "总成本");
  7717. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7718. designer.SetDataSource("CostBZBJOM", "总报价");
  7719. designer.SetDataSource("CostBDRLROM", "单人利润");
  7720. designer.SetDataSource("CostBZLROM", "总利润");
  7721. #endregion
  7722. }
  7723. #endregion
  7724. designer.SetDataSource("TzZCB2", TzZCB2);
  7725. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7726. designer.SetDataSource("TzZLR2", TzZLR2);
  7727. string[] dataSourceKeys = new string[]
  7728. {
  7729. "VF",
  7730. "TGS",
  7731. "TGOF",
  7732. "TGM",
  7733. "TGA",
  7734. "TGTF",
  7735. "TGEF",
  7736. "CFM",
  7737. "CFOF",
  7738. "B",
  7739. "L",
  7740. "D",
  7741. "TBR",
  7742. "SGR",
  7743. "JSES",
  7744. "Suite",
  7745. "TV",
  7746. "1L",
  7747. "IF",
  7748. "EF",
  7749. "BRF",
  7750. "TE",
  7751. "TGT",
  7752. "DRVT",
  7753. "PC",
  7754. "TLF",
  7755. "ECT"
  7756. };
  7757. foreach (var item in dataSourceKeys)
  7758. {
  7759. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7760. if (find != null)
  7761. {
  7762. designer.SetDataSource(item, find.text);
  7763. }
  7764. else
  7765. {
  7766. designer.SetDataSource(item, 0);
  7767. }
  7768. }
  7769. designer.SetDataSource(dt);
  7770. //根据数据源处理生成报表内容
  7771. designer.Process();
  7772. designer.Workbook.Worksheets[0].Name = "清单";
  7773. Worksheet sheet = designer.Workbook.Worksheets[0];
  7774. foreach (var Rowindex in hideRowsList)
  7775. {
  7776. ws.Cells.HideRows(Rowindex, 2);
  7777. }
  7778. byte[] bytes = null;
  7779. string strFileName = di.TeamName + "-团组-成本.xls";
  7780. using (MemoryStream stream = new MemoryStream())
  7781. {
  7782. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7783. bytes = stream.ToArray();
  7784. }
  7785. return Ok(JsonView(true, "", new
  7786. {
  7787. Data = bytes,
  7788. strFileName,
  7789. }));
  7790. }
  7791. /// <summary>
  7792. /// 导出客户报表
  7793. /// </summary>
  7794. /// <returns></returns>
  7795. [HttpPost]
  7796. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7797. {
  7798. var jw = JsonView(false);
  7799. if (dto.Diid == 0)
  7800. {
  7801. return Ok(JsonView(false, "请传递团组id"));
  7802. }
  7803. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7804. if (deleInfo.Code != 0)
  7805. {
  7806. return Ok(JsonView(false, "团组信息查询失败!"));
  7807. }
  7808. var di = deleInfo.Data as DelegationInfoWebView;
  7809. if (di == null)
  7810. {
  7811. return Ok(JsonView(false, "团组信息查询失败!"));
  7812. }
  7813. //文件名
  7814. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7815. //获取模板
  7816. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7817. //载入模板
  7818. Document doc = new Document(tmppath);
  7819. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7820. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7821. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7822. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7823. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7824. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7825. if (AParameter == null)
  7826. {
  7827. return Ok(JsonView(false, "系数不存在!"));
  7828. }
  7829. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7830. , TzAirDesc, TzZCost;
  7831. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7832. = TzAirDesc = TzZCost = string.Empty;
  7833. TzNumber = AParameter.CostTypenumber.ToString();
  7834. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7835. CarGuides1 = dto.CarGuides1;
  7836. Meal = dto.Meal;
  7837. SubsidizedMeals = dto.SubsidizedMeals;
  7838. NightRepair = dto.NightRepair;
  7839. AttractionsTickets = dto.AttractionsTickets;
  7840. MiscellaneousFees = dto.MiscellaneousFees;
  7841. ATip = dto.ATip;
  7842. TzHotelDesc = "";
  7843. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7844. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7845. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7846. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7847. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7848. TzAirDesc = "";
  7849. TzZCost = dto.TzZCost;
  7850. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7851. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7852. var index = 1;
  7853. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7854. foreach (var item in TzHotelDescArr)
  7855. {
  7856. if (AinfoArr != null)
  7857. {
  7858. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7859. if (Ainfo != null)
  7860. {
  7861. if (int.Parse(Ainfo.rs) <= 0)
  7862. {
  7863. continue;
  7864. }
  7865. var hotelText = string.Empty;
  7866. switch (item)
  7867. {
  7868. case "SGR":
  7869. hotelText = "单人间";
  7870. break;
  7871. case "JSES":
  7872. hotelText = "小套房";
  7873. break;
  7874. case "SUITE":
  7875. hotelText = "套房";
  7876. break;
  7877. case "TBR":
  7878. hotelText = "双人间";
  7879. break;
  7880. }
  7881. if (item != "TBR")
  7882. {
  7883. 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";
  7884. }
  7885. else
  7886. {
  7887. 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";
  7888. }
  7889. index++;
  7890. }
  7891. }
  7892. }
  7893. index = 1;
  7894. foreach (var item in TzAirDescArr)
  7895. {
  7896. if (AinfoArr != null)
  7897. {
  7898. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7899. if (Ainfo != null)
  7900. {
  7901. if (int.Parse(Ainfo.rs) <= 0)
  7902. {
  7903. continue;
  7904. }
  7905. 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";
  7906. index++;
  7907. }
  7908. }
  7909. }
  7910. if (dto.costType == "B")
  7911. {
  7912. if (BParameter == null)
  7913. {
  7914. return Ok(JsonView(false, "B段系数不存在!"));
  7915. }
  7916. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7917. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7918. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7919. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7920. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7921. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7922. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7923. foreach (var item in TzHotelDescArr)
  7924. {
  7925. if (AinfoArr != null)
  7926. {
  7927. TzHotelDesc += "B段信息 \r\n";
  7928. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7929. if (Ainfo != null)
  7930. {
  7931. if (int.Parse(Ainfo.rs) <= 0)
  7932. {
  7933. continue;
  7934. }
  7935. var hotelText = string.Empty;
  7936. switch (item)
  7937. {
  7938. case "SGR":
  7939. hotelText = "单人间";
  7940. break;
  7941. case "JSES":
  7942. hotelText = "小套房";
  7943. break;
  7944. case "SUITE":
  7945. hotelText = "套房";
  7946. break;
  7947. case "TBR":
  7948. hotelText = "双人间";
  7949. break;
  7950. }
  7951. if (item != "TBR")
  7952. {
  7953. 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";
  7954. }
  7955. else
  7956. {
  7957. 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";
  7958. }
  7959. index++;
  7960. }
  7961. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7962. }
  7963. }
  7964. index = 1;
  7965. foreach (var item in TzAirDescArr)
  7966. {
  7967. if (AinfoArr != null)
  7968. {
  7969. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7970. if (Ainfo != null)
  7971. {
  7972. if (int.Parse(Ainfo.rs) <= 0)
  7973. {
  7974. continue;
  7975. }
  7976. 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";
  7977. index++;
  7978. }
  7979. }
  7980. }
  7981. }
  7982. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7983. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7984. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7985. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7986. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7987. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7988. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7989. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7990. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7991. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7992. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7993. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7994. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7995. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7996. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7997. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7998. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7999. DickeyValue.Add("TzZCost", TzZCost);
  8000. foreach (var key in DickeyValue.Keys)
  8001. {
  8002. if (doc.Range.Bookmarks[key] != null)
  8003. {
  8004. Bookmark mark = doc.Range.Bookmarks[key];
  8005. mark.Text = DickeyValue[key];
  8006. }
  8007. }
  8008. byte[] bytes = null;
  8009. string strFileName = di.TeamName + "-客户报价.doc";
  8010. using (MemoryStream stream = new MemoryStream())
  8011. {
  8012. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  8013. bytes = stream.ToArray();
  8014. }
  8015. return Ok(JsonView(true, "", new
  8016. {
  8017. Data = bytes,
  8018. strFileName,
  8019. }));
  8020. }
  8021. /// <summary>
  8022. /// 团组成本 各模块(酒店,地接,机票)成本提示
  8023. /// </summary>
  8024. /// <param name="dto"></param>
  8025. /// <returns></returns>
  8026. [HttpPost]
  8027. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8028. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  8029. {
  8030. try
  8031. {
  8032. #region 参数验证
  8033. if (dto.DiId < 0)
  8034. {
  8035. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  8036. }
  8037. List<int> cTableIds = new List<int>() {
  8038. 76 ,//酒店预订
  8039. 77 ,//行程
  8040. 79 ,//车/导游地接
  8041. 80 ,//签证
  8042. 81 ,//邀请/公务活
  8043. 82 ,//团组客户保险
  8044. 85 ,//机票预订
  8045. 98 ,//其他款项
  8046. 285 ,//收款退还
  8047. 751 ,//酒店早餐
  8048. 1015 // 超支费用
  8049. };
  8050. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  8051. {
  8052. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  8053. }
  8054. #endregion
  8055. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  8056. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  8057. if (_GroupCostParameters.Count <= 0)
  8058. {
  8059. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  8060. }
  8061. if (_GroupCostParameters[0].IsShare == 0)
  8062. {
  8063. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  8064. }
  8065. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8066. //处理date为空问题
  8067. if (_GroupCosts.Count > 0)
  8068. {
  8069. for (int i = 0; i < _GroupCosts.Count; i++)
  8070. {
  8071. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8072. {
  8073. if (i > 0)
  8074. {
  8075. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8076. }
  8077. }
  8078. }
  8079. }
  8080. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8081. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8082. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8083. string currCode = "";
  8084. #region currCode 验证
  8085. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8086. if (isInt)
  8087. {
  8088. var currData = currDatas.Find(it => it.Id == intCurrency);
  8089. if (currData != null)
  8090. {
  8091. currCode = currData.Name;
  8092. }
  8093. }
  8094. else
  8095. {
  8096. currCode = _GroupCostParameters[0].Currency.Trim();
  8097. }
  8098. #endregion
  8099. //op,酒店单段模式存储
  8100. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8101. {
  8102. CurrencyCode = currCode,
  8103. Rate = _GroupCostParameters[0].Rate,
  8104. CostType = _GroupCostParameters[0].CostType,
  8105. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8106. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8107. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8108. };
  8109. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8110. if (_GroupCostParameters.Count == 2)
  8111. {
  8112. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8113. }
  8114. foreach (var item in _GroupCostParameters)
  8115. {
  8116. decimal _rate = 1;
  8117. decimal _rate1 = item.Rate;
  8118. decimal _scale = 1;
  8119. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8120. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8121. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8122. //if (userInfo != null)
  8123. //{
  8124. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8125. // {
  8126. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8127. // {
  8128. // _scale = 1.00M;
  8129. // }
  8130. // }
  8131. //}
  8132. #endregion
  8133. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8134. {
  8135. CurrencyCode = currCode,
  8136. Rate = _rate1,
  8137. CostType = item.CostType,
  8138. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8139. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8140. CostTypeNumber = item.CostTypenumber
  8141. };
  8142. if (_GroupCostParameters.Count > 1)
  8143. {
  8144. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8145. }
  8146. else
  8147. {
  8148. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8149. }
  8150. if (dto.CTable == 79)//
  8151. {
  8152. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8153. modulePromptInfo.TotalCost = item.DJCB;
  8154. }
  8155. List<string> costTypes = new List<string>() { "A", "B" };
  8156. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8157. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8158. if (_GroupCostsDuplicates.Count() == 1)
  8159. {
  8160. _GroupCostsTypeData = _GroupCosts;
  8161. }
  8162. else
  8163. {
  8164. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8165. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8166. }
  8167. /*
  8168. * 76 酒店预订
  8169. * 77 行程
  8170. * 79 车/导游地接
  8171. * 80 签证
  8172. * 81 邀请/公务活动
  8173. * 82 团组客户保险
  8174. * 85 机票预订
  8175. * 98 其他款项
  8176. * 285 收款退还
  8177. * 751 酒店早餐
  8178. * 1015 超支费用
  8179. */
  8180. switch (dto.CTable)
  8181. {
  8182. case 76: // 酒店预订
  8183. _ModuleSubPromptInfo.AddRange(
  8184. _GroupCostsTypeData.Select(it => new
  8185. {
  8186. it.DAY,
  8187. it.Date,
  8188. it.ACCON,
  8189. it.ITIN,
  8190. it.SGR,
  8191. it.TBR,
  8192. it.JS_ES,
  8193. it.Suite
  8194. })
  8195. );
  8196. break;
  8197. case 79: // 车/导游地接
  8198. _ModuleSubPromptInfo.AddRange(
  8199. _GroupCostsTypeData.Select(it => new
  8200. {
  8201. Date = it.Date, //日期
  8202. CarFee = it.CarCost * _rate * _scale, //车费用
  8203. CarType = it.CarType, //车型
  8204. DriverFee = it.CFS * _rate * _scale, //司机工资
  8205. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8206. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8207. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8208. GuideFee = it.TGS * _rate * _scale, //导游费用
  8209. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8210. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8211. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8212. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8213. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8214. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8215. Breakfast = it.B * _rate * _scale, //早餐费
  8216. Lunch = it.L * _rate * _scale, //午餐费
  8217. Dinner = it.D * _rate * _scale, //晚餐费
  8218. TicketFee = it.EF * _rate * _scale, //门票费
  8219. SpentCash = it.PC * _rate * _scale, //零用金
  8220. LeadersFee = it.TLF * _rate * _scale, //领队费
  8221. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8222. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8223. })
  8224. );
  8225. break;
  8226. case 85: // 机票
  8227. List<dynamic> datas = new List<dynamic>();
  8228. datas.Add(
  8229. new
  8230. {
  8231. AirType = "经济舱",
  8232. AirNum = item.JJCRS,
  8233. AirDRCB = item.JJCCB,
  8234. AirZCB = (item.JJCRS * item.JJCCB)
  8235. }
  8236. );
  8237. datas.Add(
  8238. new
  8239. {
  8240. AirType = "公务舱",
  8241. AirNum = item.GWCRS,
  8242. AirDRCB = item.GWCCB,
  8243. AirZCB = (item.GWCRS * item.GWCCB)
  8244. }
  8245. );
  8246. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8247. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8248. modulePromptInfo.Data = new
  8249. {
  8250. airFeeData = datas,
  8251. airInitData = initDatas
  8252. };
  8253. _ModulePromptInfos.Add(modulePromptInfo);
  8254. break;
  8255. default:
  8256. break;
  8257. }
  8258. }
  8259. if (dto.CTable != 85)
  8260. {
  8261. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8262. _ModulePromptInfos.Add(_ModulePromptInfo);
  8263. }
  8264. _view.ModulePromptInfos = _ModulePromptInfos;
  8265. return Ok(JsonView(true, "操作成功!", _view));
  8266. }
  8267. catch (Exception ex)
  8268. {
  8269. return Ok(JsonView(false, ex.Message));
  8270. }
  8271. }
  8272. /// <summary>
  8273. /// 根据黑屏代码重新生成行程
  8274. /// </summary>
  8275. /// <param name="dto"></param>
  8276. /// <returns></returns>
  8277. [HttpPost]
  8278. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8279. {
  8280. var jw = JsonView(false);
  8281. var Create = _GroupCostRepository.
  8282. CreateGroupCostByBlackCode(dto.Diid);
  8283. jw.Msg = Create.Msg;
  8284. if (Create.Code == 0)
  8285. {
  8286. jw.Code = 200;
  8287. jw.Data = new
  8288. {
  8289. groupCost = Create.Data,
  8290. blackCodeIsTrue = true
  8291. };
  8292. }
  8293. else
  8294. {
  8295. jw.Code = 400;
  8296. jw.Data = new
  8297. {
  8298. groupCost = Create.Data,
  8299. blackCodeIsTrue = false,
  8300. };
  8301. }
  8302. return Ok(jw);
  8303. }
  8304. /// <summary>
  8305. /// 成本获取OP历史车费用
  8306. /// </summary>
  8307. /// <param name="dto"></param>
  8308. /// <returns></returns>
  8309. [HttpPost]
  8310. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8311. {
  8312. var jw = JsonView(false);
  8313. try
  8314. {
  8315. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8316. //获取现有所有车的数据
  8317. if (!dto.Param.IsNullOrWhiteSpace())
  8318. {
  8319. string sql = $@"
  8320. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8321. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8322. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8323. 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
  8324. AND gctggr.ServiceEndTime is not NULL
  8325. ORDER by gctggrc.id DESC
  8326. ";
  8327. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8328. var numeberResult = await Task.Run(() =>
  8329. {
  8330. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8331. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8332. return numberArr;
  8333. });
  8334. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8335. foreach (var item in numeberResult)
  8336. {
  8337. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8338. {
  8339. Country = "数据异常!",
  8340. City = string.Empty,
  8341. };
  8342. item.Area = find.Country + " " + find.City;
  8343. }
  8344. dbResult.AddRange(numeberResult);
  8345. if (dto.Param.Contains("、"))
  8346. {
  8347. var sp = dto.Param.Split("、");
  8348. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8349. .Where(x =>
  8350. {
  8351. return System.Array.Exists(sp, e =>
  8352. {
  8353. bool where = false;
  8354. if (x.Area != null)
  8355. {
  8356. where = x.Area.Contains(e);
  8357. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8358. {
  8359. return false;
  8360. }
  8361. }
  8362. if (x.PriceName != null && !where)
  8363. {
  8364. where = x.PriceName.Contains(e);
  8365. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8366. {
  8367. return false;
  8368. }
  8369. }
  8370. return where;
  8371. });
  8372. }).ToList();
  8373. }
  8374. else
  8375. {
  8376. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8377. .Where(x =>
  8378. {
  8379. bool where = false;
  8380. if (x.Area != null)
  8381. {
  8382. where = x.Area.Contains(dto.Param);
  8383. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8384. {
  8385. return false;
  8386. }
  8387. }
  8388. if (x.PriceName != null && !where)
  8389. {
  8390. where = x.PriceName.Contains(dto.Param);
  8391. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8392. {
  8393. return false;
  8394. }
  8395. }
  8396. return where;
  8397. }
  8398. )
  8399. .ToList();
  8400. }
  8401. }
  8402. var view = dbResult.Select(x =>
  8403. {
  8404. decimal dp = 0.00M;
  8405. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8406. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8407. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8408. {
  8409. if (startB && endB)
  8410. {
  8411. var timesp = endD.Subtract(startD);
  8412. if ((timesp.Days + 1) != 0)
  8413. {
  8414. dp = x.Price / (timesp.Days + 1);
  8415. }
  8416. }
  8417. }
  8418. else
  8419. {
  8420. dp = x.Price;
  8421. }
  8422. return new
  8423. {
  8424. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8425. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8426. x.Area,
  8427. x.id,
  8428. price = x.Price.ToString("F2"),
  8429. x.PriceName,
  8430. x.PriceContent,
  8431. x.TeamName,
  8432. x.DatePrice,
  8433. dayPrice = dp.ToString("F2"),
  8434. };
  8435. }).OrderByDescending(x => x.id).ToList();
  8436. jw = JsonView(true, "获取成功!", view);
  8437. }
  8438. catch (Exception e)
  8439. {
  8440. jw = JsonView(false, e.Message);
  8441. }
  8442. return Ok(jw);
  8443. }
  8444. #endregion
  8445. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8446. /// <summary>
  8447. /// 酒店预订
  8448. /// 酒店费用列表 根据团组Id查询
  8449. /// </summary>
  8450. /// <param name="_dto"></param>
  8451. /// <returns></returns>
  8452. [HttpPost]
  8453. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8454. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8455. {
  8456. #region 参数验证
  8457. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8458. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8459. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8460. #region 团组操作权限验证 76 酒店预定模块
  8461. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8462. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8463. #endregion
  8464. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8465. #region 页面操作权限验证
  8466. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8467. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8468. #endregion
  8469. #endregion
  8470. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8471. }
  8472. /// <summary>
  8473. /// 酒店预订
  8474. /// 基础数据
  8475. /// </summary>
  8476. /// <param name="_dto"></param>
  8477. /// <returns></returns>
  8478. [HttpPost]
  8479. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8480. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8481. {
  8482. #region 参数验证
  8483. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8484. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8485. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8486. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8487. #region 页面操作权限验证
  8488. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8489. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8490. #endregion
  8491. #region 团组操作权限验证 76 酒店预定模块
  8492. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8493. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8494. #endregion
  8495. #endregion
  8496. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8497. }
  8498. /// <summary>
  8499. /// 酒店预订
  8500. /// 创建 入住卷号码
  8501. /// </summary>
  8502. /// <param name="_dto"></param>
  8503. /// <returns></returns>
  8504. [HttpPost]
  8505. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8506. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8507. {
  8508. try
  8509. {
  8510. #region 参数验证
  8511. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8512. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8513. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8514. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8515. #region 页面操作权限验证
  8516. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8517. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8518. #endregion
  8519. #region 团组操作权限验证 76 酒店预定模块
  8520. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8521. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8522. #endregion
  8523. #endregion
  8524. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8525. if (data.Code != 0)
  8526. {
  8527. return Ok(JsonView(false, data.Msg));
  8528. }
  8529. return Ok(JsonView(true, data.Msg, data.Data));
  8530. }
  8531. catch (Exception ex)
  8532. {
  8533. return Ok(JsonView(false, ex.Message));
  8534. }
  8535. }
  8536. /// <summary>
  8537. /// 酒店预订
  8538. /// 详情
  8539. /// </summary>
  8540. /// <param name="_dto"></param>
  8541. /// <returns></returns>
  8542. [HttpPost]
  8543. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8544. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8545. {
  8546. #region 参数验证
  8547. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8548. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8549. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8550. #region 团组操作权限验证 76 酒店预定模块
  8551. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8552. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8553. #endregion
  8554. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8555. #region 页面操作权限验证
  8556. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8557. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8558. #endregion
  8559. #endregion
  8560. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8561. }
  8562. /// <summary>
  8563. /// 酒店预订
  8564. /// Add Or Edit
  8565. /// </summary>
  8566. /// <param name="_dto"></param>
  8567. /// <returns></returns>
  8568. [HttpPost]
  8569. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8570. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8571. {
  8572. #region 参数验证
  8573. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8574. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8575. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8576. #region 团组操作权限验证 76 酒店预定模块
  8577. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8578. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8579. #endregion
  8580. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8581. #region 页面操作权限验证
  8582. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8583. if (_dto.Id == 0) // Add
  8584. {
  8585. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8586. }
  8587. else if (_dto.Id > 1) // Edit
  8588. {
  8589. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8590. }
  8591. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8592. #endregion
  8593. #endregion
  8594. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8595. if (_view.Code != 200)
  8596. {
  8597. return Ok(_view);
  8598. }
  8599. #region 应用推送
  8600. try
  8601. {
  8602. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8603. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8604. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8605. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8606. //自动审核
  8607. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8608. }
  8609. catch (Exception ex)
  8610. {
  8611. }
  8612. #endregion
  8613. return Ok(_view);
  8614. }
  8615. /// <summary>
  8616. /// 酒店预订
  8617. /// Del
  8618. /// </summary>
  8619. /// <param name="_dto"></param>
  8620. /// <returns></returns>
  8621. [HttpPost]
  8622. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8623. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8624. {
  8625. #region 参数验证
  8626. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8627. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8628. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8629. #region 团组操作权限验证 76 酒店预定模块
  8630. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8631. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8632. #endregion
  8633. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8634. #region 页面操作权限验证
  8635. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8636. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8637. #endregion
  8638. #endregion
  8639. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8640. }
  8641. /// <summary>
  8642. /// 酒店预订
  8643. /// 生成VOUCHER
  8644. /// 2024.05.06 之前版本
  8645. /// </summary>
  8646. /// <param name="_dto"></param>
  8647. /// <returns></returns>
  8648. [HttpPost]
  8649. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8650. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8651. {
  8652. try
  8653. {
  8654. #region 参数验证
  8655. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8656. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8657. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8658. #region 团组操作权限验证 76 酒店预定模块
  8659. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8660. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8661. #endregion
  8662. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8663. #region 页面操作权限验证
  8664. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8665. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8666. #endregion
  8667. #endregion
  8668. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8669. //判断数据是否完整
  8670. if (hr != null)
  8671. {
  8672. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8673. {
  8674. string strFileName = "HotelStatement/";
  8675. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8676. if (dele != null)
  8677. strFileName += dele.TourCode;
  8678. //载入模板
  8679. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8680. Document doc = new Document(sss);
  8681. DocumentBuilder builder = new DocumentBuilder(doc);
  8682. #region 替换Word模板书签内容
  8683. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8684. //入住卷预定号码
  8685. if (doc.Range.Bookmarks["VNO"] != null)
  8686. {
  8687. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8688. mark.Text = hr.CheckNumber;
  8689. }
  8690. //酒店时间
  8691. if (doc.Range.Bookmarks["Date"] != null)
  8692. {
  8693. Bookmark mark = doc.Range.Bookmarks["Date"];
  8694. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8695. }
  8696. //团号
  8697. if (doc.Range.Bookmarks["TNo"] != null)
  8698. {
  8699. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8700. mark.Text = dele.TourCode;
  8701. }
  8702. //预定号码
  8703. if (doc.Range.Bookmarks["BookingId"] != null)
  8704. {
  8705. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8706. mark.Text = hr.ReservationsNo;
  8707. }
  8708. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8709. {
  8710. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8711. mark.Text = hr.DetermineNo;
  8712. }
  8713. //酒店城市
  8714. if (doc.Range.Bookmarks["City"] != null)
  8715. {
  8716. Bookmark mark = doc.Range.Bookmarks["City"];
  8717. mark.Text = hr.City;
  8718. }
  8719. //酒店名称
  8720. if (doc.Range.Bookmarks["HName"] != null)
  8721. {
  8722. Bookmark mark = doc.Range.Bookmarks["HName"];
  8723. mark.Text = hr.HotelName;
  8724. }
  8725. //酒店地址
  8726. if (doc.Range.Bookmarks["Address"] != null)
  8727. {
  8728. Bookmark mark = doc.Range.Bookmarks["Address"];
  8729. mark.Text = hr.HotelAddress;
  8730. }
  8731. //酒店电话
  8732. if (doc.Range.Bookmarks["Tel"] != null)
  8733. {
  8734. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8735. mark.Text = hr.HotelTel;
  8736. }
  8737. //酒店传真
  8738. if (doc.Range.Bookmarks["Fax"] != null)
  8739. {
  8740. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8741. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8742. {
  8743. mark.Text = hr.HotelFax;
  8744. }
  8745. }
  8746. //入住时间
  8747. if (doc.Range.Bookmarks["CIn"] != null)
  8748. {
  8749. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8750. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8751. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8752. }
  8753. //退房时间
  8754. if (doc.Range.Bookmarks["COut"] != null)
  8755. {
  8756. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8757. Bookmark mark = doc.Range.Bookmarks["COut"];
  8758. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8759. }
  8760. //客户名称
  8761. if (doc.Range.Bookmarks["GName"] != null)
  8762. {
  8763. string guestName = "";
  8764. string[] clients = new string[] { };
  8765. if (hr.GuestName.Contains(","))
  8766. {
  8767. clients = hr.GuestName.Split(",");
  8768. }
  8769. else
  8770. {
  8771. clients = new string[] { hr.GuestName };
  8772. }
  8773. List<int> clientIds_int = new List<int>();
  8774. if (clients.Length > 0)
  8775. {
  8776. foreach (var item in clients)
  8777. {
  8778. if (item.IsNumeric())
  8779. {
  8780. clientIds_int.Add(int.Parse(item));
  8781. }
  8782. }
  8783. }
  8784. if (clientIds_int.Count > 0)
  8785. {
  8786. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8787. foreach (var client in _clientDatas)
  8788. {
  8789. //男
  8790. if (client.Sex == 0) guestName += $"Mr.";
  8791. //女
  8792. else if (client.Sex == 1) guestName += $"Ms.";
  8793. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8794. {
  8795. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8796. }
  8797. //guestName += $"{client.Pinyin},";
  8798. }
  8799. if (guestName.Length > 0)
  8800. {
  8801. guestName = guestName.Substring(0, guestName.Length - 1);
  8802. }
  8803. }
  8804. else
  8805. {
  8806. guestName = hr.GuestName;
  8807. }
  8808. Bookmark mark = doc.Range.Bookmarks["GName"];
  8809. mark.Text = guestName;
  8810. }
  8811. //房间介绍
  8812. if (doc.Range.Bookmarks["ROOM"] != null)
  8813. {
  8814. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8815. mark.Text = hr.RoomExplanation;
  8816. }
  8817. //报价描述
  8818. if (doc.Range.Bookmarks["NOTE"] != null)
  8819. {
  8820. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8821. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8822. if (ss != null)
  8823. mark.Text = ss.Name;
  8824. }
  8825. //入住时间
  8826. if (doc.Range.Bookmarks["CheckIn"] != null)
  8827. {
  8828. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8829. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8830. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8831. }
  8832. //退房时间
  8833. if (doc.Range.Bookmarks["CheckOut"] != null)
  8834. {
  8835. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8836. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8837. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8838. }
  8839. //日期
  8840. if (doc.Range.Bookmarks["DT"] != null)
  8841. {
  8842. Bookmark mark = doc.Range.Bookmarks["DT"];
  8843. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8844. }
  8845. //名称
  8846. if (doc.Range.Bookmarks["VName"] != null)
  8847. {
  8848. Bookmark mark = doc.Range.Bookmarks["VName"];
  8849. mark.Text = hr.HotelName;
  8850. }
  8851. //号码
  8852. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8853. {
  8854. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8855. mark.Text = hr.CheckNumber;
  8856. }
  8857. #endregion
  8858. strFileName += "VOUCHER.doc";
  8859. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8860. doc.Save(fileDir);
  8861. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8862. return Ok(JsonView(true, "操作成功!", Url));
  8863. }
  8864. else
  8865. {
  8866. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8867. }
  8868. }
  8869. else
  8870. {
  8871. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8872. }
  8873. }
  8874. catch (Exception ex)
  8875. {
  8876. return Ok(JsonView(false, ex.Message));
  8877. }
  8878. }
  8879. /// <summary>
  8880. /// 酒店预订
  8881. /// 生成VOUCHER
  8882. /// 2024.05.06 之后版本
  8883. /// </summary>
  8884. /// <param name="_dto"></param>
  8885. /// <returns></returns>
  8886. [HttpPost]
  8887. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8888. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8889. {
  8890. #region 参数验证
  8891. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8892. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8893. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8894. #region 团组操作权限验证 76 酒店预定模块
  8895. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8896. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8897. #endregion
  8898. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8899. #region 页面操作权限验证
  8900. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8901. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8902. #endregion
  8903. #endregion
  8904. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8905. //判断数据是否完整
  8906. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8907. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8908. string strFileName = "HotelStatement/";
  8909. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8910. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8911. #region 数据处理
  8912. List<int> guestIds = new List<int>();
  8913. int index = 0;
  8914. foreach (var item in hrDtas)
  8915. {
  8916. if (item.GuestName.Contains(","))
  8917. {
  8918. string[] guestIdArr = item.GuestName.Split(',');
  8919. foreach (var guestIdStr in guestIdArr)
  8920. {
  8921. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8922. if (guestBool)
  8923. {
  8924. guestIds.Add(guestId);
  8925. }
  8926. }
  8927. }
  8928. else guestNames += item.GuestName;
  8929. var voucherInfo = new HotelVoucherInfoView()
  8930. {
  8931. HotelName = item.HotelName,
  8932. CheckInDate = item.CheckInDate,
  8933. CheckOutDate = item.CheckOutDate,
  8934. ConfirmationNumber = item.DetermineNo.Trim(),
  8935. RoomType = item.RoomExplanation
  8936. };
  8937. vouchers.Add(voucherInfo);
  8938. }
  8939. if (guestIds.Count > 0)
  8940. {
  8941. guestIds = guestIds.Distinct().ToList();
  8942. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8943. if (guestDatas.Count > 0)
  8944. {
  8945. guestNames = "";
  8946. foreach (var guest in guestDatas)
  8947. {
  8948. string guestName = "";
  8949. if (guest.Sex == 0) guestName += @"MR.";
  8950. else if (guest.Sex == 1) guestName += @"MS.";
  8951. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8952. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8953. guestNames += @$"{guestName.Trim()}、";
  8954. }
  8955. if (guestNames.Length > 0)
  8956. {
  8957. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8958. }
  8959. }
  8960. }
  8961. #endregion
  8962. //载入模板
  8963. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8964. Document doc = new Document(sss);
  8965. DocumentBuilder builder = new DocumentBuilder(doc);
  8966. if (doc.Range.Bookmarks["GuestName"] != null)
  8967. {
  8968. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  8969. mark.Text = guestNames;
  8970. }
  8971. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8972. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  8973. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  8974. for (int i = 1; i <= vouchers.Count; i++)
  8975. {
  8976. HotelVoucherInfoView hviv = vouchers[i - 1];
  8977. builder.MoveToCell(0, i, 0, 0);
  8978. builder.Write(hviv.HotelName);
  8979. builder.MoveToCell(0, i, 1, 0);
  8980. builder.Write(hviv.CheckInDate);
  8981. builder.MoveToCell(0, i, 2, 0);
  8982. builder.Write(hviv.CheckOutDate);
  8983. builder.MoveToCell(0, i, 3, 0);
  8984. builder.Write(hviv.RoomType);
  8985. builder.MoveToCell(0, i, 4, 0);
  8986. builder.Write(hviv.ConfirmationNumber);
  8987. }
  8988. //删除多余行
  8989. int currRowIndex = vouchers.Count + 1;
  8990. int delRows = 21 - currRowIndex;
  8991. if (delRows > 0)
  8992. {
  8993. for (int i = 0; i < delRows; i++)
  8994. {
  8995. table.Rows.RemoveAt(currRowIndex);
  8996. //cultivateRowIndex++;
  8997. }
  8998. }
  8999. strFileName += "VOUCHER.docx";
  9000. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9001. doc.Save(fileDir);
  9002. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9003. return Ok(JsonView(true, "操作成功!", Url));
  9004. }
  9005. /// <summary>
  9006. /// 酒店预订
  9007. /// 生成 预定成本 Excel
  9008. /// </summary>
  9009. /// <param name="_dto"></param>
  9010. /// <returns></returns>
  9011. [HttpPost]
  9012. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9013. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9014. {
  9015. #region 参数验证
  9016. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9017. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9018. if (!vadalitorRes.IsValid)
  9019. {
  9020. var errors = new StringBuilder();
  9021. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9022. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  9023. }
  9024. #region 团组操作权限验证 76 酒店预定模块
  9025. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9026. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9027. #endregion
  9028. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9029. #region 页面操作权限验证
  9030. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9031. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9032. #endregion
  9033. #endregion
  9034. decimal _rate = 1.00M;
  9035. string _currency = "";
  9036. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9037. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9038. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  9039. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9040. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  9041. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9042. {
  9043. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  9044. }
  9045. _currency = _GroupCostParameter.Currency;
  9046. bool isIntType = int.TryParse(_currency, out int currId);
  9047. if (isIntType)
  9048. {
  9049. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9050. }
  9051. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9052. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9053. if (currInfo == null)
  9054. {
  9055. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  9056. }
  9057. if (!_currency.ToUpper().Equals("CNY"))
  9058. {
  9059. _rate = _GroupCostParameter.Rate;
  9060. }
  9061. _rate = currInfo.Rate;
  9062. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9063. string strFileName = "HotelStatement/";
  9064. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9065. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9066. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  9067. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  9068. #region 数据处理
  9069. foreach (var item in hrDtas)
  9070. {
  9071. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9072. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  9073. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  9074. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  9075. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  9076. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  9077. string singleRoomFeeStr = string.Empty,
  9078. doubleRoomFeeStr = string.Empty,
  9079. suiteRoomFeeStr = string.Empty,
  9080. otherRoomFeeStr = string.Empty,
  9081. payMoneyStr = string.Empty,
  9082. cardPriceStr = string.Empty;
  9083. if (roomCurr.Equals(_currency))
  9084. {
  9085. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9086. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9087. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9088. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9089. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9090. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9091. }
  9092. else
  9093. {
  9094. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9095. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9096. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9097. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9098. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9099. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9100. }
  9101. string breakfastPriceStr = string.Empty,
  9102. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9103. governmentRentStr = string.Empty,
  9104. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9105. cityTaxStrStr = string.Empty,
  9106. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9107. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  9108. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  9109. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  9110. pcfds.Add(new HotelReservations_PCFD_View()
  9111. {
  9112. City = item.City,
  9113. HotelName = item.HotelName,
  9114. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9115. // SingleRoomCount = item.SingleRoomCount,
  9116. SingleRoomPrice = singleRoomFeeStr,
  9117. // DoubleRoomCount = item.DoubleRoomCount,
  9118. DoubleRoomPrice = doubleRoomFeeStr,
  9119. //SuiteRoomCount = item.SuiteRoomCount,
  9120. SuiteRoomPrice = suiteRoomFeeStr,
  9121. OtherRoomPrice = otherRoomFeeStr,
  9122. //OtherRoomCount = item.OtherRoomCount,
  9123. BreakfastPrice = breakfastPriceStr,
  9124. GovernmentRent = governmentRentStr,
  9125. CityTax = cityTaxStrStr,
  9126. RoomExplanation = item.RoomExplanation,
  9127. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  9128. PayTime = roomInfo.ConsumptionDate,
  9129. BankNo = roomInfo.BankNo,
  9130. PayMoney = payMoneyStr,
  9131. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9132. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  9133. CardPrice = cardPriceStr,
  9134. Remark = ccpInfo.Remark
  9135. });
  9136. }
  9137. #endregion
  9138. //载入模板
  9139. WorkbookDesigner designer = new WorkbookDesigner();
  9140. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9141. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9142. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9143. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9144. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9145. designer.SetDataSource("Opertor", userInfo.CnName);
  9146. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9147. dt.TableName = "ViewMyHotelReservations";
  9148. designer.SetDataSource(dt);
  9149. designer.Process();
  9150. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  9151. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9152. designer.Workbook.Save(serverPath);
  9153. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9154. #region 删除指定行
  9155. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  9156. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9157. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9158. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9159. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9160. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9161. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9162. cssIndex = dt.Columns["CityTax"].Ordinal,
  9163. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9164. remarkIndex = dt.Columns["Remark"].Ordinal;
  9165. //删除指定列
  9166. foreach (DataRow item in dt.Rows)
  9167. {
  9168. string singleStr = item["SingleRoomPrice"].ToString();
  9169. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9170. if (containsDigitButNotZero1) singleDel = false;
  9171. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9172. string doubleStr = item["DoubleRoomPrice"].ToString();
  9173. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9174. if (containsDigitButNotZero2) doubleDel = false;
  9175. string suiteStr = item["SuiteRoomPrice"].ToString();
  9176. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9177. if (containsDigitButNotZero3) suiteDel = false;
  9178. string otherStr = item["OtherRoomPrice"].ToString();
  9179. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9180. if (containsDigitButNotZero4) otherDel = false;
  9181. string zcStr = item["BreakfastPrice"].ToString();
  9182. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9183. if (containsDigitButNotZero5) zcDel = false;
  9184. string dsStr = item["GovernmentRent"].ToString();
  9185. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9186. if (containsDigitButNotZero6) dsDel = false;
  9187. string cssStr = item["CityTax"].ToString();
  9188. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9189. if (containsDigitButNotZero7) cssDel = false;
  9190. string cpStr = item["ConsumptionPatterns"].ToString();
  9191. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9192. string remarkStr = item["Remark"].ToString();
  9193. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9194. }
  9195. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9196. DeleteColumn(serverPath, cpIndex, cpDel);
  9197. DeleteColumn(serverPath, dsIndex, dsDel);
  9198. DeleteColumn(serverPath, cssIndex, cssDel);
  9199. DeleteColumn(serverPath, zcIndex, zcDel);
  9200. DeleteColumn(serverPath, otherIndex, otherDel);
  9201. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9202. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9203. DeleteColumn(serverPath, singleIndex, singleDel);
  9204. #endregion
  9205. //只保留第一个表格
  9206. DeleteSheet(serverPath);
  9207. return Ok(JsonView(true, "操作成功", url = rst));
  9208. }
  9209. /// <summary>
  9210. /// 删除指定列
  9211. /// </summary>
  9212. /// <param name="file"></param>
  9213. /// <param name="columnIndex"></param>
  9214. /// <param name="isDel"></param>
  9215. private void DeleteColumn(string file, int columnIndex, bool isDel)
  9216. {
  9217. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9218. //wb.Save(file);
  9219. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9220. if (sheet1 != null)
  9221. {
  9222. if (isDel)
  9223. {
  9224. Cells cells = sheet1.Cells;
  9225. cells.DeleteColumn(columnIndex);
  9226. }
  9227. }
  9228. wb.Save(file);
  9229. }
  9230. /// <summary>
  9231. /// 删除sheet
  9232. /// </summary>
  9233. /// <param name="file"></param>
  9234. /// <param name="sheetName"></param>
  9235. private void DeleteSheet(string file, string sheetName = "")
  9236. {
  9237. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9238. //wb.Save(file);
  9239. List<string> sheets = new List<string>();
  9240. foreach (var item in wb.Worksheets)
  9241. {
  9242. sheets.Add(item.Name);
  9243. }
  9244. if (sheets.Count > 0)
  9245. {
  9246. sheets.RemoveAt(0);//不删除第一个sheet
  9247. foreach (var item in sheets)
  9248. {
  9249. wb.Worksheets.RemoveAt(item);
  9250. }
  9251. }
  9252. wb.Save(file);
  9253. }
  9254. /// <summary>
  9255. /// 酒店预订
  9256. /// 确认单
  9257. /// </summary>
  9258. /// <param name="_dto"></param>
  9259. /// <returns></returns>
  9260. [HttpPost]
  9261. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9262. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9263. {
  9264. try
  9265. {
  9266. #region 参数验证
  9267. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9268. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9269. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9270. #region 团组操作权限验证 76 酒店预定模块
  9271. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9272. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9273. #endregion
  9274. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9275. #region 页面操作权限验证
  9276. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9277. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9278. #endregion
  9279. #endregion
  9280. //团组信息
  9281. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9282. //酒店数据
  9283. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9284. if (listhoteldata.Count < 0)
  9285. {
  9286. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9287. }
  9288. //利datatable存储
  9289. DataTable dt = new DataTable();
  9290. dt.Columns.Add("CheckInDate", typeof(string));
  9291. dt.Columns.Add("City", typeof(string));
  9292. dt.Columns.Add("Hotel", typeof(string));
  9293. dt.Columns.Add("Room", typeof(string));
  9294. for (int i = 0; i < listhoteldata.Count; i++)
  9295. {
  9296. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9297. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9298. while (dayStart < dayEnd)
  9299. {
  9300. string temp = "";
  9301. DataRow row = dt.NewRow();
  9302. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9303. row["City"] = listhoteldata[i].City;
  9304. row["Hotel"] = listhoteldata[i].HotelName;
  9305. if (listhoteldata[i].SingleRoomCount > 0)
  9306. {
  9307. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9308. }
  9309. if (listhoteldata[i].DoubleRoomCount > 0)
  9310. {
  9311. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9312. }
  9313. if (listhoteldata[i].SuiteRoomCount > 0)
  9314. {
  9315. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9316. }
  9317. if (listhoteldata[i].OtherRoomCount > 0)
  9318. {
  9319. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9320. }
  9321. row["Room"] = temp;
  9322. dt.Rows.Add(row);
  9323. dayStart = dayStart.AddDays(1);
  9324. }
  9325. }
  9326. Dictionary<string, string> dic = new Dictionary<string, string>();
  9327. dic.Add("Dele", di.TeamName);
  9328. dic.Add("City", di.VisitCountry);
  9329. //模板路径
  9330. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9331. //载入模板
  9332. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9333. DocumentBuilder builder = new DocumentBuilder(doc);
  9334. foreach (var key in dic.Keys)
  9335. {
  9336. builder.MoveToBookmark(key);
  9337. builder.Write(dic[key]);
  9338. }
  9339. //获取word里所有表格
  9340. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9341. //获取所填表格的序数
  9342. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9343. var rowStart = tableOne.Rows[0]; //获取第1行
  9344. //循环赋值
  9345. for (int i = 0; i < dt.Rows.Count; i++)
  9346. {
  9347. builder.MoveToCell(0, i + 1, 0, 0);
  9348. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9349. builder.MoveToCell(0, i + 1, 1, 0);
  9350. builder.Write(dt.Rows[i]["City"].ToString());
  9351. builder.MoveToCell(0, i + 1, 2, 0);
  9352. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9353. builder.MoveToCell(0, i + 1, 3, 0);
  9354. builder.Write(dt.Rows[i]["Room"].ToString());
  9355. }
  9356. //删除多余行
  9357. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9358. {
  9359. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9360. }
  9361. string strFileName = di.TeamName + "酒店确认单.doc";
  9362. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9363. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9364. return Ok(JsonView(true, "成功", url));
  9365. }
  9366. catch (Exception ex)
  9367. {
  9368. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9369. }
  9370. }
  9371. #endregion
  9372. #region 团组状态
  9373. /// <summary>
  9374. /// 团组状态列表 Page
  9375. /// </summary>
  9376. /// <param name="dto">团组列表请求dto</param>
  9377. /// <returns></returns>
  9378. [HttpPost]
  9379. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9380. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9381. {
  9382. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9383. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9384. {
  9385. string sqlWhere = string.Empty;
  9386. if (dto.IsSure == 0) //未完成
  9387. {
  9388. sqlWhere += string.Format(@" And IsSure = 0");
  9389. }
  9390. else if (dto.IsSure == 1) //已完成
  9391. {
  9392. sqlWhere += string.Format(@" And IsSure = 1");
  9393. }
  9394. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9395. {
  9396. string tj = dto.SearchCriteria;
  9397. 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}%')",
  9398. tj, tj, tj, tj, tj);
  9399. }
  9400. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9401. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9402. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9403. From (
  9404. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9405. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9406. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9407. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9408. From Grp_DelegationInfo gdi
  9409. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9410. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9411. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9412. Where gdi.IsDel = 0 {0}
  9413. ) temp ", sqlWhere);
  9414. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9415. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9416. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9417. }
  9418. else
  9419. {
  9420. return Ok(JsonView(false, "查询失败"));
  9421. }
  9422. }
  9423. /// <summary>
  9424. /// 团组状态
  9425. /// 设置操作完成
  9426. /// </summary>
  9427. /// <param name="dto">团组列表请求dto</param>
  9428. /// <returns></returns>
  9429. [HttpPost]
  9430. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9431. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9432. {
  9433. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9434. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9435. {
  9436. Id = dto.Id,
  9437. IsSure = 1
  9438. };
  9439. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9440. .UpdateColumns(it => new { it.IsSure })
  9441. .WhereColumns(it => new { it.Id })
  9442. .ExecuteCommandAsync();
  9443. if (result > 0)
  9444. {
  9445. return Ok(JsonView(true, "操作完成!"));
  9446. }
  9447. return Ok(JsonView(false, "操作失败!"));
  9448. }
  9449. #endregion
  9450. #region 保险费用录入
  9451. /// <summary>
  9452. /// 根据团组Id查询保险费用列表
  9453. /// </summary>
  9454. /// <param name="dto"></param>
  9455. /// <returns></returns>
  9456. [HttpPost]
  9457. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9458. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9459. {
  9460. try
  9461. {
  9462. Result groupData = await _customersRep.CustomersByDiId(dto);
  9463. if (groupData.Code != 0)
  9464. {
  9465. return Ok(JsonView(false, groupData.Msg));
  9466. }
  9467. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9468. }
  9469. catch (Exception ex)
  9470. {
  9471. return Ok(JsonView(false, ex.Message));
  9472. }
  9473. }
  9474. /// <summary>
  9475. /// 根据保险费用Id查询保险费用详细
  9476. /// </summary>
  9477. /// <param name="dto"></param>
  9478. /// <returns></returns>
  9479. [HttpPost]
  9480. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9481. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9482. {
  9483. try
  9484. {
  9485. Result groupData = await _customersRep.CustomersById(dto);
  9486. if (groupData.Code != 0)
  9487. {
  9488. return Ok(JsonView(false, groupData.Msg));
  9489. }
  9490. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9491. }
  9492. catch (Exception ex)
  9493. {
  9494. return Ok(JsonView(false, ex.Message));
  9495. }
  9496. }
  9497. /// <summary>
  9498. /// 保险费用录入页面初始化绑定
  9499. /// </summary>
  9500. /// <param name="dto"></param>
  9501. /// <returns></returns>
  9502. [HttpPost]
  9503. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9504. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9505. {
  9506. try
  9507. {
  9508. Result groupData = await _customersRep.CustomersInitialize(dto);
  9509. if (groupData.Code != 0)
  9510. {
  9511. return Ok(JsonView(false, groupData.Msg));
  9512. }
  9513. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9514. }
  9515. catch (Exception ex)
  9516. {
  9517. return Ok(JsonView(false, ex.Message));
  9518. }
  9519. }
  9520. /// <summary>
  9521. /// 保险费用操作(Status:1.新增,2.修改)
  9522. /// </summary>
  9523. /// <param name="dto"></param>
  9524. /// <returns></returns>
  9525. [HttpPost]
  9526. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9527. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9528. {
  9529. try
  9530. {
  9531. Result groupData = await _customersRep.OpCustomers(dto);
  9532. if (groupData.Code != 0)
  9533. {
  9534. return Ok(JsonView(false, groupData.Msg));
  9535. }
  9536. #region 应用推送
  9537. try
  9538. {
  9539. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9540. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9541. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9542. }
  9543. catch (Exception ex)
  9544. {
  9545. }
  9546. #endregion
  9547. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9548. }
  9549. catch (Exception ex)
  9550. {
  9551. return Ok(JsonView(false, ex.Message));
  9552. }
  9553. }
  9554. /// <summary>
  9555. /// 保险文件上传
  9556. /// </summary>
  9557. /// <param name="file"></param>
  9558. /// <returns></returns>
  9559. [HttpPost]
  9560. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9561. public async Task<IActionResult> UploadCus(IFormFile file)
  9562. {
  9563. try
  9564. {
  9565. if (file != null)
  9566. {
  9567. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9568. //文件名称
  9569. string projectFileName = file.FileName;
  9570. //上传的文件的路径
  9571. string filePath = "";
  9572. if (!Directory.Exists(fileDir))
  9573. {
  9574. Directory.CreateDirectory(fileDir);
  9575. }
  9576. //上传的文件的路径
  9577. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9578. using (FileStream fs = System.IO.File.Create(filePath))
  9579. {
  9580. file.CopyTo(fs);
  9581. fs.Flush();
  9582. }
  9583. return Ok(JsonView(true, "上传成功!", projectFileName));
  9584. }
  9585. else
  9586. {
  9587. return Ok(JsonView(false, "上传失败!"));
  9588. }
  9589. }
  9590. catch (Exception ex)
  9591. {
  9592. return Ok(JsonView(false, "程序错误!"));
  9593. throw;
  9594. }
  9595. }
  9596. /// <summary>
  9597. /// 保险删除指定文件
  9598. /// </summary>
  9599. /// <param name="dto"></param>
  9600. /// <returns></returns>
  9601. [HttpPost]
  9602. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9603. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9604. {
  9605. try
  9606. {
  9607. string filePath = "";
  9608. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9609. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9610. //int id = 0;
  9611. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9612. // 删除该文件
  9613. try
  9614. {
  9615. System.IO.File.Delete(filePath);
  9616. 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()
  9617. {
  9618. Attachment = "",
  9619. }).ExecuteCommandAsync();
  9620. if (result != 0)
  9621. {
  9622. return Ok(JsonView(true, "成功!"));
  9623. }
  9624. else
  9625. {
  9626. return Ok(JsonView(false, "失败!"));
  9627. }
  9628. }
  9629. catch (Exception)
  9630. {
  9631. 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()
  9632. {
  9633. Attachment = "",
  9634. }).ExecuteCommandAsync();
  9635. if (result != 0)
  9636. {
  9637. return Ok(JsonView(true, "成功!"));
  9638. }
  9639. else
  9640. {
  9641. return Ok(JsonView(false, "失败!"));
  9642. }
  9643. }
  9644. }
  9645. catch (Exception ex)
  9646. {
  9647. return Ok(JsonView(false, "程序错误!"));
  9648. throw;
  9649. }
  9650. }
  9651. /// <summary>
  9652. /// 保险费用操作(删除)
  9653. /// </summary>
  9654. /// <param name="dto"></param>
  9655. /// <returns></returns>
  9656. [HttpPost]
  9657. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9658. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9659. {
  9660. try
  9661. {
  9662. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9663. if (!res)
  9664. {
  9665. return Ok(JsonView(false, "删除失败"));
  9666. }
  9667. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9668. {
  9669. IsDel = 1,
  9670. DeleteUserId = dto.DeleteUserId,
  9671. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9672. }).ExecuteCommandAsync();
  9673. return Ok(JsonView(true, "删除成功!"));
  9674. }
  9675. catch (Exception ex)
  9676. {
  9677. return Ok(JsonView(false, "程序错误!"));
  9678. throw;
  9679. }
  9680. }
  9681. #endregion
  9682. #region 接团客户名单 PageId 104
  9683. /// <summary>
  9684. /// 接团客户名单
  9685. /// 迁移数据(慎用!)
  9686. /// </summary>
  9687. /// <param name="dto"></param>
  9688. /// <returns></returns>
  9689. [HttpPost]
  9690. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9691. public async Task<IActionResult> PostTourClientListChange()
  9692. {
  9693. try
  9694. {
  9695. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9696. //var groupClinetData1
  9697. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9698. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9699. int updateCount = 0;
  9700. if (oldOAClientList.Count > 0)
  9701. {
  9702. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9703. _sqlSugar.BeginTran();
  9704. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9705. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9706. foreach (var item in oldOAClientList)
  9707. {
  9708. int comId = 0;
  9709. string format = "yyyy-MM-dd HH:mm:ss";
  9710. string data11 = "1990-01-01 00:00";
  9711. var data1 = IsValidDate(item.OPdate, format);
  9712. if (data1) data11 = item.OPdate;
  9713. //客户公司验证
  9714. if (!string.IsNullOrEmpty(item.Company))
  9715. {
  9716. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9717. if (clientComInfo == null) // add
  9718. {
  9719. var addInfo = new Crm_CustomerCompany()
  9720. {
  9721. CompanyAbbreviation = "",
  9722. CompanyFullName = item.Company,
  9723. Address = "",
  9724. PostCodes = "",
  9725. LastedOpUserId = item.OPer,
  9726. LastedOpDt = Convert.ToDateTime(data11),
  9727. CreateUserId = item.OPer,
  9728. CreateTime = Convert.ToDateTime(data11),
  9729. IsDel = 0
  9730. };
  9731. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9732. if (comId1 > 0) comId = comId1;
  9733. }
  9734. else comId = clientComInfo.Id;
  9735. }
  9736. //客户人员验证
  9737. int clientId = 0;
  9738. string name = item.LastName + item.Name;
  9739. if (!string.IsNullOrEmpty(name))
  9740. {
  9741. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9742. if (clientInfo == null)
  9743. {
  9744. DateTime? dateTime = null;
  9745. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9746. if (isDt) dateTime = birthDayDt;
  9747. var addInfo1 = new Crm_DeleClient()
  9748. {
  9749. CrmCompanyId = comId,
  9750. DiId = -1,
  9751. LastName = item.LastName,
  9752. FirstName = item.Name,
  9753. OldName = "",
  9754. Pinyin = item.Pinyin,
  9755. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9756. Marriage = 0,
  9757. Phone = item.Phone,
  9758. Job = item.Job,
  9759. BirthDay = dateTime
  9760. };
  9761. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9762. if (clientId1 > 0) clientId = clientId1;
  9763. }
  9764. else clientId = clientInfo.Id;
  9765. }
  9766. if (clientId < 1)
  9767. {
  9768. continue;
  9769. }
  9770. int airType = 0;
  9771. if (item.AirType == "超经舱") airType = 459;
  9772. else if (item.AirType == "公务舱") airType = 458;
  9773. else if (item.AirType == "经济舱") airType = 460;
  9774. else if (item.AirType == "其他") airType = 565;
  9775. else if (item.AirType == "头等舱") airType = 457;
  9776. var _TourClientListEntity = new Grp_TourClientList()
  9777. {
  9778. DiId = item.Diid,
  9779. ClientId = clientId,
  9780. CreateUserId = item.OPer,
  9781. CreateTime = Convert.ToDateTime(data11),
  9782. Remark = item.Remark,
  9783. IsDel = item.Isdel,
  9784. ShippingSpaceTypeId = airType,
  9785. ShippingSpaceSpecialNeeds = item.AirRemark,
  9786. HotelSpecialNeeds = item.RoomType
  9787. };
  9788. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9789. if (_TourClientList > 0)
  9790. {
  9791. updateCount++;
  9792. }
  9793. }
  9794. _sqlSugar.CommitTran();
  9795. }
  9796. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9797. }
  9798. catch (Exception ex)
  9799. {
  9800. _sqlSugar.RollbackTran();
  9801. return Ok(JsonView(false, ex.Message));
  9802. }
  9803. return Ok(JsonView(true));
  9804. }
  9805. private bool IsValidDate(string dateString, string format)
  9806. {
  9807. DateTime dateValue;
  9808. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9809. return valid;
  9810. }
  9811. /// <summary>
  9812. /// 接团客户名单
  9813. /// 根据团组Id查询List
  9814. /// </summary>
  9815. /// <param name="dto"></param>
  9816. /// <returns></returns>
  9817. [HttpPost]
  9818. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9819. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9820. {
  9821. #region 参数验证
  9822. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9823. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9824. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9825. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9826. #region 页面操作权限验证
  9827. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9828. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9829. #endregion
  9830. #endregion
  9831. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9832. if (viewData.Code != 0)
  9833. {
  9834. return Ok(JsonView(false, viewData.Msg));
  9835. }
  9836. return Ok(JsonView(viewData.Data));
  9837. }
  9838. /// <summary>
  9839. /// 接团客户名单
  9840. /// 基础数据 Init
  9841. /// </summary>
  9842. /// <param name="_dto"></param>
  9843. /// <returns></returns>
  9844. [HttpPost]
  9845. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9846. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9847. {
  9848. #region 参数验证
  9849. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9850. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9851. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9852. #region 页面操作权限验证
  9853. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9854. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9855. #endregion
  9856. #endregion
  9857. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9858. if (viewData.Code != 0)
  9859. {
  9860. return Ok(JsonView(false, viewData.Msg));
  9861. }
  9862. return Ok(JsonView(viewData.Data));
  9863. }
  9864. /// <summary>
  9865. /// 接团客户名单
  9866. /// 根据 Id查询 Details
  9867. /// </summary>
  9868. /// <param name="_dto"></param>
  9869. /// <returns></returns>
  9870. [HttpPost]
  9871. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9872. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9873. {
  9874. #region 参数验证
  9875. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9876. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9877. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9878. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9879. #region 页面操作权限验证
  9880. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9881. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9882. #endregion
  9883. #endregion
  9884. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9885. if (viewData.Code != 0)
  9886. {
  9887. return Ok(JsonView(false, viewData.Msg));
  9888. }
  9889. return Ok(JsonView(viewData.Data));
  9890. }
  9891. /// <summary>
  9892. /// 接团客户名单
  9893. /// Add Or Edit
  9894. /// </summary>
  9895. /// <param name="_dto"></param>
  9896. /// <returns></returns>
  9897. [HttpPost]
  9898. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9899. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9900. {
  9901. #region 参数验证
  9902. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9903. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9904. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9905. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9906. #region 页面操作权限验证
  9907. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9908. if (_dto.Id == 0) //添加
  9909. {
  9910. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9911. }
  9912. else if (_dto.Id >= 0) //修改
  9913. {
  9914. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9915. }
  9916. #endregion
  9917. #endregion
  9918. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9919. if (viewData.Code != 0)
  9920. {
  9921. return Ok(JsonView(false, viewData.Msg));
  9922. }
  9923. return Ok(JsonView(true));
  9924. }
  9925. /// <summary>
  9926. /// 接团客户名单
  9927. /// AddMultiple(添加多个)
  9928. /// </summary>
  9929. /// <param name="_dto"></param>
  9930. /// <returns></returns>
  9931. [HttpPost]
  9932. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9933. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9934. {
  9935. #region 参数验证
  9936. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9937. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9938. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9939. #region 页面操作权限验证
  9940. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9941. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9942. #endregion
  9943. #endregion
  9944. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9945. if (viewData.Code != 0)
  9946. {
  9947. return Ok(JsonView(false, viewData.Msg));
  9948. }
  9949. return Ok(JsonView(true));
  9950. }
  9951. /// <summary>
  9952. /// 接团客户名单
  9953. /// Del
  9954. /// </summary>
  9955. /// <param name="_dto"></param>
  9956. /// <returns></returns>
  9957. [HttpPost]
  9958. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9959. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9960. {
  9961. #region 参数验证
  9962. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9963. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9964. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9965. #region 页面操作权限验证
  9966. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9967. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9968. #endregion
  9969. #endregion
  9970. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  9971. if (viewData.Code != 0)
  9972. {
  9973. return Ok(JsonView(false, viewData.Msg));
  9974. }
  9975. return Ok(JsonView(true));
  9976. }
  9977. /// <summary>
  9978. /// 接团客户名单
  9979. /// 文件下载 客户名单
  9980. /// </summary>
  9981. /// <param name="_dto"></param>
  9982. /// <returns></returns>
  9983. [HttpPost]
  9984. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9985. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  9986. {
  9987. #region 参数验证
  9988. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9989. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9990. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  9991. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9992. #region 页面操作权限验证
  9993. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9994. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9995. #endregion
  9996. #endregion
  9997. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  9998. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  9999. From Grp_TourClientList tcl
  10000. Left Join
  10001. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10002. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10003. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10004. From Crm_DeleClient dc
  10005. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10006. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10007. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10008. Where dc.IsDel = 0) temp
  10009. On temp.DcId =tcl.ClientId
  10010. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10011. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10012. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10013. //载入模板
  10014. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10015. if (_dto.Language == 1)
  10016. {
  10017. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10018. }
  10019. //载入模板
  10020. var doc = new Document(tempPath);
  10021. DocumentBuilder builder = new DocumentBuilder(doc);
  10022. //获取word里所有表格
  10023. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10024. //获取所填表格的序数
  10025. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10026. var rowStart = tableOne.Rows[0]; //获取第1行
  10027. if (_dto.Language == 0)
  10028. {
  10029. //循环赋值
  10030. for (int i = 0; i < DcList.Count; i++)
  10031. {
  10032. builder.MoveToCell(0, i + 1, 0, 0);
  10033. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10034. builder.MoveToCell(0, i + 1, 1, 0);
  10035. int sex = DcList[i].Sex;
  10036. string sexStr = string.Empty;
  10037. if (sex == 0) sexStr = "男";
  10038. else if (sex == 1) sexStr = "女";
  10039. else sexStr = "未设置";
  10040. builder.Write(sexStr);
  10041. builder.MoveToCell(0, i + 1, 2, 0);
  10042. string birthDay = DcList[i].BirthDay;
  10043. string birthDayStr = string.Empty;
  10044. if (!string.IsNullOrEmpty(birthDay))
  10045. {
  10046. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10047. }
  10048. builder.Write(birthDayStr);
  10049. builder.MoveToCell(0, i + 1, 3, 0);
  10050. string company = "";
  10051. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10052. {
  10053. company = DcList[i].CompanyFullName.ToString();
  10054. }
  10055. builder.Write(company);
  10056. builder.MoveToCell(0, i + 1, 4, 0);
  10057. builder.Write(DcList[i].Job);
  10058. }
  10059. }
  10060. else if (_dto.Language == 1)
  10061. {
  10062. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10063. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10064. List<string> transArrayStr = new List<string>();
  10065. string transStrRes1 = "";
  10066. for (int i = 0; i < DcList.Count; i++)
  10067. {
  10068. var dc = DcList[i];
  10069. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  10070. if (dc.Job.Equals("暂无")) dc.Job = "-";
  10071. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  10072. if (DcList.Count - 1 == i) transStrRes1 += str1;
  10073. else transStrRes1 += $"{str1}|";
  10074. }
  10075. //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";
  10076. string transStrRes = "";
  10077. if (transStrRes1.Length > 0 )
  10078. {
  10079. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  10080. }
  10081. //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
  10082. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  10083. //List<string> transArray = new List<string> { };
  10084. List<TranslateInfo> transArray = new List<TranslateInfo>();
  10085. if (transStrRes.Contains("|"))
  10086. {
  10087. string[] transArray1 = transStrRes.Split('|');
  10088. if (transArray1.Length > 0)
  10089. {
  10090. foreach (var item in transArray1)
  10091. {
  10092. if (item.Contains("&"))
  10093. {
  10094. string[] transArray2 = item.Split('&');
  10095. int index = 0;
  10096. string companyName = "", job = "";
  10097. if (transArray2.Length > 0)
  10098. {
  10099. bool success = int.TryParse(transArray2[0].Trim(), out index);
  10100. if (1 < transArray2.Length) companyName = transArray2[1];
  10101. if (2 < transArray2.Length) job = transArray2[2];
  10102. }
  10103. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  10104. }
  10105. }
  10106. }
  10107. }
  10108. //循环赋值
  10109. for (int i = 0; i < DcList.Count; i++)
  10110. {
  10111. string PYName = "";
  10112. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10113. {
  10114. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10115. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10116. PYName = PY_First + " " + PY_Last;
  10117. }
  10118. else
  10119. {
  10120. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10121. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10122. PYName = PY_First + " " + PY_Last;
  10123. }
  10124. builder.MoveToCell(0, i + 1, 0, 0);
  10125. builder.Write(PYName);
  10126. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10127. builder.MoveToCell(0, i + 1, 1, 0);
  10128. builder.Write(sex);
  10129. DateTime birthDt;
  10130. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10131. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  10132. builder.MoveToCell(0, i + 1, 2, 0);
  10133. builder.Write(birthday);
  10134. string company = string.Empty,job = string.Empty;
  10135. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  10136. if (dcTransInfo != null)
  10137. {
  10138. company = dcTransInfo.CompanyName;
  10139. job = dcTransInfo.Job;
  10140. }
  10141. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10142. {
  10143. //查询对照表
  10144. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10145. if (tempCec != null)
  10146. {
  10147. company = tempCec.enName;
  10148. }
  10149. //翻译
  10150. else
  10151. {
  10152. }
  10153. }
  10154. builder.MoveToCell(0, i + 1, 3, 0);
  10155. builder.Write(company);
  10156. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10157. {
  10158. //查询对照表
  10159. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10160. if (tempPec != null)
  10161. {
  10162. job = tempPec.enName;
  10163. }
  10164. //翻译
  10165. else
  10166. {
  10167. }
  10168. }
  10169. builder.MoveToCell(0, i + 1, 4, 0);
  10170. builder.Write(job);
  10171. }
  10172. }
  10173. //删除多余行
  10174. while (tableOne.Rows.Count > DcList.Count + 1)
  10175. {
  10176. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10177. }
  10178. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10179. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10180. doc.Save(fileDir);
  10181. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10182. return Ok(JsonView(true, "操作成功!", Url));
  10183. }
  10184. private class TranslateInfo
  10185. {
  10186. public int Index { get; set; }
  10187. public string CompanyName { get; set; }
  10188. public string Job { get; set; }
  10189. }
  10190. #endregion
  10191. #region 团组倒推表
  10192. /// <summary>
  10193. /// 倒推表基础数据
  10194. /// Init
  10195. /// </summary>
  10196. /// <param name="dto"></param>
  10197. /// <returns></returns>
  10198. [HttpPost]
  10199. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10200. public async Task<IActionResult> PostInvertedListInit()
  10201. {
  10202. var viewData = await _invertedListRep._Init();
  10203. if (viewData.Code != 0)
  10204. {
  10205. return Ok(JsonView(false, viewData.Msg));
  10206. }
  10207. return Ok(JsonView(viewData.Data));
  10208. }
  10209. /// <summary>
  10210. /// 倒推表
  10211. /// Info
  10212. /// </summary>
  10213. /// <param name="dto"></param>
  10214. /// <returns></returns>
  10215. [HttpPost]
  10216. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10217. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10218. {
  10219. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10220. if (viewData.Code != 0)
  10221. {
  10222. return Ok(JsonView(false, viewData.Msg));
  10223. }
  10224. return Ok(JsonView(viewData.Data));
  10225. }
  10226. /// <summary>
  10227. /// 倒推表
  10228. /// Create
  10229. /// </summary>
  10230. /// <param name="dto"></param>
  10231. /// <returns></returns>
  10232. [HttpPost]
  10233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10234. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10235. {
  10236. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10237. if (viewData.Code != 0)
  10238. {
  10239. return Ok(JsonView(false, viewData.Msg));
  10240. }
  10241. return Ok(JsonView(viewData.Data));
  10242. }
  10243. /// <summary>
  10244. /// 倒推表
  10245. /// Update
  10246. /// </summary>
  10247. /// <param name="dto"></param>
  10248. /// <returns></returns>
  10249. [HttpPost]
  10250. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10251. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10252. {
  10253. var viewData = await _invertedListRep._Update(dto);
  10254. if (viewData.Code != 0)
  10255. {
  10256. return Ok(JsonView(false, viewData.Msg));
  10257. }
  10258. return Ok(JsonView(viewData.Data));
  10259. }
  10260. /// <summary>
  10261. /// 倒推表
  10262. /// File Download
  10263. /// </summary>
  10264. /// <param name="dto"></param>
  10265. /// <returns></returns>
  10266. [HttpPost]
  10267. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10268. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10269. {
  10270. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10271. if (info2.Code != 0)
  10272. {
  10273. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10274. }
  10275. var info1 = info2.Data as InvertedListInfoView;
  10276. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10277. string teamName = "";
  10278. if (info != null) teamName = info.TeamName;
  10279. //载入模板
  10280. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10281. DocumentBuilder builder = new DocumentBuilder(doc);
  10282. //利用键值对存放数据
  10283. Dictionary<string, string> dic = new Dictionary<string, string>();
  10284. dic.Add("TeamName", teamName);
  10285. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10286. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10287. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10288. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10289. dic.Add("SQRemark", info1.ApprovalRemark);
  10290. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10291. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10292. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10293. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10294. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10295. dic.Add("QZRemark", info1.VisaInformationRemark);
  10296. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10297. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10298. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10299. dic.Add("CQRemark", info1.IssueVisaRemark);
  10300. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10301. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10302. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10303. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10304. #region 填充word模板书签内容
  10305. foreach (var key in dic.Keys)
  10306. {
  10307. builder.MoveToBookmark(key);
  10308. builder.Write(dic[key]);
  10309. }
  10310. #endregion
  10311. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10312. string fileName = $"{teamName}团出行准备流程表.doc";
  10313. string filePath = fileDir + $@"InvertedList/{fileName}";
  10314. doc.Save(filePath);
  10315. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10316. return Ok(JsonView(true, "操作成功!", Url));
  10317. }
  10318. #endregion
  10319. #region 三公签证费用(签证费、代办费)
  10320. /// <summary>
  10321. /// 三公签证费用(签证费、代办费)
  10322. /// List
  10323. /// </summary>
  10324. /// <returns></returns>
  10325. [HttpPost]
  10326. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10327. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10328. {
  10329. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10330. if (_view.Code != 0)
  10331. {
  10332. return Ok(JsonView(false, _view.Msg));
  10333. }
  10334. return Ok(JsonView(true, "操作成功!", _view.Data));
  10335. }
  10336. /// <summary>
  10337. /// 三公签证费用(签证费、代办费)
  10338. /// Add Or Update
  10339. /// </summary>
  10340. /// <returns></returns>
  10341. [HttpPost]
  10342. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10343. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10344. {
  10345. var _view = await _visaFeeInfoRep._Update(_dto);
  10346. if (_view.Code != 0)
  10347. {
  10348. return Ok(JsonView(false, _view.Msg));
  10349. }
  10350. return Ok(JsonView(true, _view.Msg));
  10351. }
  10352. #endregion
  10353. #region 酒店询价
  10354. /// <summary>
  10355. /// 酒店询价
  10356. /// Init
  10357. /// </summary>
  10358. /// <param name="dto"></param>
  10359. /// <returns></returns>
  10360. [HttpPost]
  10361. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10362. public async Task<IActionResult> PostHotelInquiryInit()
  10363. {
  10364. var res = await _hotelInquiryRep._Init();
  10365. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10366. return Ok(JsonView(true, res.Msg, res.Data));
  10367. }
  10368. /// <summary>
  10369. /// 酒店询价
  10370. /// page Item
  10371. /// </summary>
  10372. /// <param name="_dto"></param>
  10373. /// <returns></returns>
  10374. [HttpPost]
  10375. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10376. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10377. {
  10378. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10379. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10380. var view = res.Data as PageDataViewBase;
  10381. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10382. }
  10383. /// <summary>
  10384. /// 酒店询价
  10385. /// info
  10386. /// </summary>
  10387. /// <param name="_dto"></param>
  10388. /// <returns></returns>
  10389. [HttpPost]
  10390. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10391. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10392. {
  10393. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10394. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10395. return Ok(JsonView(true, res.Msg, res.Data));
  10396. }
  10397. /// <summary>
  10398. /// 酒店询价
  10399. /// Add Or Edit
  10400. /// </summary>
  10401. /// <param name="_dto"></param>
  10402. /// <returns></returns>
  10403. [HttpPost]
  10404. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10405. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10406. {
  10407. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10408. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10409. return Ok(JsonView(true, res.Msg, res.Data));
  10410. }
  10411. /// <summary>
  10412. /// 酒店询价
  10413. /// Del
  10414. /// </summary>
  10415. /// <param name="_dto"></param>
  10416. /// <returns></returns>
  10417. [HttpPost]
  10418. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10419. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10420. {
  10421. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10422. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10423. return Ok(JsonView(true, res.Msg, res.Data));
  10424. }
  10425. #endregion
  10426. #region 下载匹配op行程单
  10427. /// <summary>
  10428. /// 匹配op行程单
  10429. /// Init
  10430. /// </summary>
  10431. /// <param name="dto">团组列表请求dto</param>
  10432. /// <returns></returns>
  10433. [HttpPost]
  10434. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10435. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10436. {
  10437. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10438. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10439. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10440. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10441. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10442. .Where(it => it.IsDel == 0)
  10443. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10444. .OrderByDescending(it => it.CreateUserId)
  10445. .ToList();
  10446. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10447. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10448. var diids = groupInfos.Select(it => it.Id).ToList();
  10449. List<string> countrys = new List<string>();
  10450. foreach (var item in country)
  10451. {
  10452. var data = _groupRepository.FormartTeamName(item);
  10453. var dataArray = _groupRepository.GroupSplitCountry(data);
  10454. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10455. }
  10456. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10457. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10458. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10459. foreach (var item in areaItem)
  10460. {
  10461. string areaStr = item.Value;
  10462. if (!string.IsNullOrEmpty(areaStr))
  10463. {
  10464. string[] str1 = areaStr.Split("-");
  10465. if (str1.Length > 0)
  10466. {
  10467. areaArray.AddRange(str1);
  10468. }
  10469. }
  10470. }
  10471. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10472. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10473. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10474. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10475. .ToList();
  10476. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10477. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10478. .Where(it => countriesIds.Contains(it.Id))
  10479. .Select(it => new { it.Id, Name = it.Name_CN })
  10480. .ToList();
  10481. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10482. .Select(it => it.TeamName).ToList();
  10483. stopwatch.Stop();
  10484. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10485. }
  10486. ///// <summary>
  10487. ///// 匹配op行程单
  10488. ///// Init 查询区域数据
  10489. ///// </summary>
  10490. ///// <param name="dto">团组列表请求dto</param>
  10491. ///// <returns></returns>
  10492. //[HttpPost]
  10493. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10494. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10495. //{
  10496. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10497. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10498. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10499. // if (string.IsNullOrEmpty(countriesDataStr))
  10500. // {
  10501. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10502. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10503. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10504. // }
  10505. // else
  10506. // {
  10507. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10508. // }
  10509. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10510. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10511. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10512. // List<dynamic> childList = new List<dynamic>();
  10513. // int parentId = dto.CountriesId;
  10514. // if (provinceData.Count > 1)
  10515. // {
  10516. // foreach (var item1 in provinceData)
  10517. // {
  10518. // List<dynamic> childList1 = new List<dynamic>();
  10519. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10520. // foreach (var item2 in citiesData1)
  10521. // {
  10522. // List<dynamic> childList2 = new List<dynamic>();
  10523. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10524. // foreach (var item3 in countiesData1)
  10525. // {
  10526. // childList2.Add(new
  10527. // {
  10528. // id = item3.Id,
  10529. // parentId = item2.Id,
  10530. // level = "district",
  10531. // name = item3.Name_CN,
  10532. // });
  10533. // }
  10534. // childList1.Add(new
  10535. // {
  10536. // id = item2.Id,
  10537. // parentId = item1.Id,
  10538. // level = "city",
  10539. // name = item2.Name_CN,
  10540. // childList = childList2
  10541. // });
  10542. // }
  10543. // childList.Add(new
  10544. // {
  10545. // id = item1.Id,
  10546. // parentId = parentId,
  10547. // level = "province",
  10548. // name = item1.Name_CN,
  10549. // childList = childList1
  10550. // });
  10551. // }
  10552. // //城市
  10553. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10554. // foreach (var item2 in citiesData2)
  10555. // {
  10556. // List<dynamic> childList22 = new List<dynamic>();
  10557. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10558. // foreach (var item3 in countiesData1)
  10559. // {
  10560. // childList22.Add(new
  10561. // {
  10562. // id = item3.Id,
  10563. // parentId = item2.Id,
  10564. // level = "district",
  10565. // name = item3.Name_CN,
  10566. // });
  10567. // }
  10568. // childList.Add(new
  10569. // {
  10570. // id = item2.Id,
  10571. // parentId = parentId,
  10572. // level = "city",
  10573. // name = item2.Name_CN,
  10574. // childList = childList22
  10575. // });
  10576. // }
  10577. // }
  10578. // else
  10579. // {
  10580. // foreach (var item2 in citiesData)
  10581. // {
  10582. // string cname = item2.Name_CN;
  10583. // List<dynamic> childList1 = new List<dynamic>();
  10584. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10585. // foreach (var item3 in countiesData1)
  10586. // {
  10587. // childList1.Add(new
  10588. // {
  10589. // Id = item3.Id,
  10590. // parentId = item2.Id,
  10591. // level = "district",
  10592. // name = item3.Name_CN
  10593. // });
  10594. // }
  10595. // childList.Add(new
  10596. // {
  10597. // id = item2.Id,
  10598. // parentId = parentId,
  10599. // level = "city",
  10600. // name = item2.Name_CN,
  10601. // childList = childList1
  10602. // });
  10603. // }
  10604. // }
  10605. // stopwatch.Stop();
  10606. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10607. //}
  10608. /// <summary>
  10609. /// 匹配op行程单
  10610. /// 接团信息列表 Page
  10611. /// </summary>
  10612. /// <param name="dto">团组列表请求dto</param>
  10613. /// <returns></returns>
  10614. [HttpPost]
  10615. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10616. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10617. {
  10618. var swatch = new Stopwatch();
  10619. swatch.Start();
  10620. #region 参数验证
  10621. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10622. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10623. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10624. #region 页面操作权限验证
  10625. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10626. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10627. #endregion
  10628. #endregion
  10629. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10630. {
  10631. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10632. string sqlWhere = "";
  10633. if (!string.IsNullOrEmpty(dto.Country))
  10634. {
  10635. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10636. }
  10637. if (!string.IsNullOrEmpty(dto.Area))
  10638. {
  10639. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10640. }
  10641. if (!string.IsNullOrEmpty(dto.TeamName))
  10642. {
  10643. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10644. }
  10645. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10646. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10647. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10648. swatch.Stop();
  10649. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10650. }
  10651. else
  10652. {
  10653. return Ok(JsonView(false, "查询失败"));
  10654. }
  10655. }
  10656. /// <summary>
  10657. /// 匹配op行程单
  10658. /// 行程单下载
  10659. /// </summary>
  10660. /// <param name="dto">团组列表请求dto</param>
  10661. /// <returns></returns>
  10662. [HttpPost]
  10663. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10664. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10665. {
  10666. #region 参数验证
  10667. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10668. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10669. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10670. #region 页面操作权限验证
  10671. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10672. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10673. #endregion
  10674. #endregion
  10675. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10676. {
  10677. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10678. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10679. }
  10680. else
  10681. {
  10682. return Ok(JsonView(false, "下载失败!"));
  10683. }
  10684. }
  10685. #endregion
  10686. #region 国家信息 数据 注释
  10687. //[HttpPost]
  10688. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10689. //{
  10690. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10691. // foreach (var item in dto)
  10692. // {
  10693. // infos.Add(new Grp_GroupsTaskAssignment()
  10694. // {
  10695. // DIId = item,
  10696. // CTId = 82,
  10697. // UId = 248,
  10698. // IsEnable = 1,
  10699. // CreateUserId = 233,
  10700. // CreateTime = DateTime.Now,
  10701. // IsDel = 0
  10702. // });
  10703. // infos.Add(new Grp_GroupsTaskAssignment()
  10704. // {
  10705. // DIId = item,
  10706. // CTId = 82,
  10707. // UId = 286,
  10708. // IsEnable = 1,
  10709. // CreateUserId = 233,
  10710. // CreateTime = DateTime.Now,
  10711. // IsDel = 0
  10712. // });
  10713. // }
  10714. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10715. // return Ok("操作成功");
  10716. //}
  10717. //public class paramJsonDto
  10718. //{
  10719. // public List<CountriesInfo> str { get; set; }
  10720. //}
  10721. //[HttpPost]
  10722. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10723. //{
  10724. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10725. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10726. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10727. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10728. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10729. // _sqlSugar.BeginTran();
  10730. // int countitiesIndex = 0;
  10731. // foreach (var item in dto.str)
  10732. // {
  10733. // dynamic data = item.c;
  10734. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10735. // if (data != null)
  10736. // {
  10737. // countitiesIndex++;
  10738. // foreach (var item1 in data)
  10739. // {
  10740. // string cnname = item1.cn;
  10741. // string enname = item1.en;
  10742. // Sys_Cities provinceInfo = new Sys_Cities()
  10743. // {
  10744. // CountriesId = countriesId,
  10745. // Name_CN = cnname,
  10746. // Name_EN = enname,
  10747. // ParentId = 0,
  10748. // IsCapital = 1,
  10749. // CreateUserId = 208,
  10750. // CreateTime = DateTime.Now,
  10751. // IsDel = 0
  10752. // };
  10753. // if (item1.lv == "province") //省份
  10754. // {
  10755. // provinceInfo.Level = 1;
  10756. // int provinceId = 0;
  10757. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10758. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10759. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10760. // var data1 = item1.c;
  10761. // foreach (var item2 in data1)
  10762. // {
  10763. // if (item2.lv == "city")
  10764. // {
  10765. // string citycnname = item2.cn;
  10766. // string cityenname = item2.en;
  10767. // Sys_Cities cityInfo = new Sys_Cities()
  10768. // {
  10769. // CountriesId = countriesId,
  10770. // ParentId = provinceId,
  10771. // Level = 2,
  10772. // Name_CN = citycnname,
  10773. // Name_EN = cityenname,
  10774. // IsCapital = 1,
  10775. // CreateUserId = 208,
  10776. // CreateTime = DateTime.Now,
  10777. // IsDel = 0
  10778. // };
  10779. // if (item2.c != null)
  10780. // {
  10781. // int cityId = 0;
  10782. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10783. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10784. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10785. // foreach (var item3 in item2.c)
  10786. // {
  10787. // if (item3.lv == "district")
  10788. // {
  10789. // var districtInfo = new Sys_Cities()
  10790. // {
  10791. // CountriesId = countriesId,
  10792. // Name_CN = item3.cn,
  10793. // Name_EN = item3.en,
  10794. // Level = 3,
  10795. // ParentId = cityId,
  10796. // IsCapital = 1,
  10797. // CreateUserId = 208,
  10798. // CreateTime = DateTime.Now,
  10799. // IsDel = 0
  10800. // };
  10801. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10802. // //{
  10803. // districts.Add(districtInfo);
  10804. // //}
  10805. // }
  10806. // }
  10807. // }
  10808. // else
  10809. // {
  10810. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10811. // //{
  10812. // cities.Add(cityInfo);
  10813. // //}
  10814. // }
  10815. // }
  10816. // }
  10817. // }
  10818. // else if (item1.lv == "city")//城市
  10819. // {
  10820. // provinceInfo.Level = 2;
  10821. // if (item1.c != null)
  10822. // {
  10823. // int cityId = 0;
  10824. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10825. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10826. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10827. // foreach (var item3 in item1.c)
  10828. // {
  10829. // if (item3.lv == "district")
  10830. // {
  10831. // var districtInfo = new Sys_Cities()
  10832. // {
  10833. // CountriesId = countriesId,
  10834. // Name_CN = item3.cn,
  10835. // Name_EN = item3.en,
  10836. // Level = 3,
  10837. // ParentId = cityId,
  10838. // IsCapital = 1,
  10839. // CreateUserId = 208,
  10840. // CreateTime = DateTime.Now,
  10841. // IsDel = 0
  10842. // };
  10843. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10844. // //{
  10845. // districts.Add(districtInfo);
  10846. // //}
  10847. // }
  10848. // }
  10849. // }
  10850. // else
  10851. // {
  10852. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10853. // //{
  10854. // cities.Add(provinceInfo);
  10855. // //}
  10856. // }
  10857. // }
  10858. // }
  10859. // }
  10860. // }
  10861. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10862. // cities = cities.Distinct().ToList();
  10863. // districts = districts.Distinct().ToList();
  10864. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10865. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10866. // cities.AddRange(districts);
  10867. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10868. // //_sqlSugar.RollbackTran();
  10869. // _sqlSugar.CommitTran();
  10870. // return Ok(JsonView(false, "操作成功!"));
  10871. //}
  10872. //[HttpPost]
  10873. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10874. //{
  10875. // List<CountitiesInfo> infos = dto.MyProperty;
  10876. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10877. // _sqlSugar.BeginTran();
  10878. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10879. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10880. // foreach (var item in infos)
  10881. // {
  10882. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10883. // if (countryInfo != null)
  10884. // {
  10885. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10886. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10887. // if (cityInfo1 != null)
  10888. // {
  10889. // cityInfo1.IsCapital = 0;
  10890. // cityInfos.Add(cityInfo1);
  10891. // }
  10892. // }
  10893. // }
  10894. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10895. // .UpdateColumns(it => it.IsCapital)
  10896. // .WhereColumns(it => it.Id)
  10897. // .ExecuteCommand();
  10898. // //_sqlSugar.RollbackTran();
  10899. // _sqlSugar.CommitTran();
  10900. // return Ok(JsonView(false, "操作成功!"));
  10901. //}
  10902. //public class CounrtiesDto
  10903. //{
  10904. // public List<CountitiesInfo> MyProperty { get; set; }
  10905. //}
  10906. //public class CountitiesInfo
  10907. //{
  10908. // /// <summary>
  10909. // /// 圣约翰
  10910. // /// </summary>
  10911. // public string capital_name_chinese { get; set; }
  10912. // /// <summary>
  10913. // ///
  10914. // /// </summary>
  10915. // public string capital_name { get; set; }
  10916. // /// <summary>
  10917. // ///
  10918. // /// </summary>
  10919. // public string country_type { get; set; }
  10920. // /// <summary>
  10921. // /// 安提瓜和巴布达
  10922. // /// </summary>
  10923. // public string country_name_chinese { get; set; }
  10924. // /// <summary>
  10925. // /// 安提瓜和巴布达
  10926. // /// </summary>
  10927. // public string country_name_chinese_short { get; set; }
  10928. // /// <summary>
  10929. // /// 安提瓜和巴布达
  10930. // /// </summary>
  10931. // public string country_name_chinese_UN { get; set; }
  10932. // /// <summary>
  10933. // ///
  10934. // /// </summary>
  10935. // public string country_name_english_abbreviation { get; set; }
  10936. // /// <summary>
  10937. // ///
  10938. // /// </summary>
  10939. // public string country_name_english_formal { get; set; }
  10940. // /// <summary>
  10941. // ///
  10942. // /// </summary>
  10943. // public string country_name_english_UN { get; set; }
  10944. // /// <summary>
  10945. // ///
  10946. // /// </summary>
  10947. // public string continent_name { get; set; }
  10948. // /// <summary>
  10949. // ///
  10950. // /// </summary>
  10951. // public string subregion_name { get; set; }
  10952. // /// <summary>
  10953. // ///
  10954. // /// </summary>
  10955. // public string country_code2 { get; set; }
  10956. // /// <summary>
  10957. // ///
  10958. // /// </summary>
  10959. // public string country_code3 { get; set; }
  10960. // /// <summary>
  10961. // ///
  10962. // /// </summary>
  10963. // public string phone_code { get; set; }
  10964. //}
  10965. //public class CountriesInfo : BasicInfo
  10966. //{
  10967. // public List<CitiesInfo> c { get; set; }
  10968. //}
  10969. //public class CitiesInfo : BasicInfo
  10970. //{
  10971. // public List<AreaInfo> c { get; set; }
  10972. //}
  10973. //public class AreaInfo : BasicInfo
  10974. //{
  10975. // public List<AreaInfo> c { get; set; }
  10976. //}
  10977. //public class BasicInfo
  10978. //{
  10979. // public string code { get; set; }
  10980. // public string cn { get; set; }
  10981. // public string lv { get; set; }
  10982. // public string en { get; set; }
  10983. //}
  10984. #endregion
  10985. #region 查看邀请方
  10986. /// <summary>
  10987. /// 查看邀请方
  10988. /// 邀请方信息 Init
  10989. /// </summary>
  10990. /// <param name="dto"></param>
  10991. /// <returns></returns>
  10992. [HttpPost]
  10993. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10994. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  10995. {
  10996. string sqlWhere = string.Empty;
  10997. if (!string.IsNullOrEmpty(dto.Search))
  10998. {
  10999. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  11000. }
  11001. string sql = string.Format($@"Select
  11002. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  11003. Id,
  11004. UnitName
  11005. From Res_InvitationOfficialActivityData
  11006. Where IsDel = 0
  11007. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  11008. RefAsync<int> total = 0;
  11009. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11010. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  11011. }
  11012. /// <summary>
  11013. /// 查看邀请方
  11014. /// 国家信息 Init
  11015. /// </summary>
  11016. /// <param name="dto"></param>
  11017. /// <returns></returns>
  11018. [HttpPost]
  11019. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11020. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  11021. {
  11022. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  11023. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11024. var diids = groupInfos.Select(it => it.Id).ToList();
  11025. List<string> countrys = new List<string>();
  11026. foreach (var item in country)
  11027. {
  11028. var data = _groupRepository.FormartTeamName(item);
  11029. var dataArray = _groupRepository.GroupSplitCountry(data);
  11030. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11031. }
  11032. countrys = countrys.Distinct().ToList();
  11033. for (int i = 0; i < countrys.Count; i++)
  11034. {
  11035. string item = countrys[i];
  11036. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  11037. {
  11038. countrys.Remove(item);
  11039. i--;
  11040. }
  11041. }
  11042. RefAsync<int> total = 0;
  11043. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  11044. .Where(it => countrys.Contains(it.Name_CN))
  11045. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11046. .Select(it => new { id = it.Id, name = it.Name_CN })
  11047. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11048. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11049. }
  11050. /// <summary>
  11051. /// 查看邀请方
  11052. /// 城市信息 Init
  11053. /// </summary>
  11054. /// <param name="dto"></param>
  11055. /// <returns></returns>
  11056. [HttpPost]
  11057. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11058. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  11059. {
  11060. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  11061. RefAsync<int> total = 0;
  11062. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  11063. .Where(it => it.CountriesId == dto.CountiesId)
  11064. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11065. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  11066. .Select(it => new { id = it.Id, name = it.Name_CN })
  11067. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11068. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11069. }
  11070. /// <summary>
  11071. /// 查看邀请方
  11072. /// 团组名称 Init
  11073. /// </summary>
  11074. /// <param name="dto"></param>
  11075. /// <returns></returns>
  11076. [HttpPost]
  11077. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11078. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  11079. {
  11080. var watch = new Stopwatch();
  11081. watch.Start();
  11082. RefAsync<int> total = 0;
  11083. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  11084. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  11085. .Where((oa, di) => oa.IsDel == 0)
  11086. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  11087. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  11088. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  11089. .Distinct()
  11090. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11091. watch.Stop();
  11092. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  11093. }
  11094. /// <summary>
  11095. /// 查看邀请方
  11096. /// 团组 & 邀请方信息
  11097. /// </summary>
  11098. /// <param name="dto"></param>
  11099. /// <returns></returns>
  11100. [HttpPost]
  11101. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11102. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  11103. {
  11104. var watch = new Stopwatch();
  11105. watch.Start();
  11106. RefAsync<int> total = 0;
  11107. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  11108. .AS("Grp_DelegationInfo")
  11109. .Includes(x => x.InvitingInfos)
  11110. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  11111. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  11112. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  11113. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  11114. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  11115. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  11116. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11117. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  11118. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  11119. infos.ForEach(x =>
  11120. {
  11121. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  11122. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  11123. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  11124. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  11125. });
  11126. watch.Stop();
  11127. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  11128. }
  11129. #endregion
  11130. #region 报批行程
  11131. /// <summary>
  11132. /// 报批行程初始化
  11133. /// </summary>
  11134. /// <param name="dto"></param>
  11135. /// <returns></returns>
  11136. [HttpPost]
  11137. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  11138. {
  11139. const int chiNumber = 5;
  11140. var jw = JsonView(false);
  11141. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  11142. var group = groupList.First();
  11143. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  11144. group = groupList.First(x => x.Id == diid);
  11145. if (group == null)
  11146. {
  11147. jw.Msg = "暂无团组!";
  11148. return Ok(jw);
  11149. }
  11150. var data = new
  11151. {
  11152. groupList = groupList.Select(x => new
  11153. {
  11154. x.TeamName,
  11155. x.Id
  11156. }),
  11157. content = new ArrayList(),
  11158. groupInfo = new
  11159. {
  11160. group.VisitDays,
  11161. group.TourCode,
  11162. group.VisitPNumber,
  11163. group.TeamName,
  11164. group.Id,
  11165. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  11166. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  11167. },
  11168. };
  11169. var resultArr = new ArrayList();
  11170. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  11171. if (content.Count == 0)
  11172. {
  11173. var stay = "-";
  11174. var cityPath = "-";
  11175. //添加城市路径以及住宿地
  11176. //黑屏代码数据
  11177. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11178. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11179. {
  11180. jw = JsonView(true, "黑屏代码有误!", data);
  11181. return Ok(jw);
  11182. }
  11183. foreach (DataRow row in dtBlack.Rows)
  11184. {
  11185. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11186. {
  11187. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  11188. return Ok(jw);
  11189. }
  11190. }
  11191. //黑屏代码获取时间区间
  11192. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11193. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11194. _sqlSugar.BeginTran();
  11195. for (int i = 0; i < timeArr.Count; i++)
  11196. {
  11197. stay = "-";
  11198. cityPath = "-";
  11199. DateTime NewData = DateTime.Parse(timeArr[i]);
  11200. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11201. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11202. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11203. if (tbSelect.Length > 0)
  11204. {
  11205. List<string> threeCodeStr = new List<string>();
  11206. foreach (var item in tbSelect)
  11207. {
  11208. var threeCode = item["Three"].ToString() ?? "";
  11209. if (threeCode.Length == 6)
  11210. {
  11211. var start = threeCode.Substring(0, 3);
  11212. var end = threeCode.Substring(3, 3);
  11213. if (threeCodeStr.Count == 0)
  11214. {
  11215. threeCodeStr.Add(start);
  11216. threeCodeStr.Add(end);
  11217. }
  11218. else
  11219. {
  11220. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11221. {
  11222. threeCodeStr.Add(end);
  11223. }
  11224. else
  11225. {
  11226. threeCodeStr.Add(start);
  11227. threeCodeStr.Add(end);
  11228. }
  11229. }
  11230. }
  11231. }
  11232. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11233. var last = threeCodeStr.Last();
  11234. foreach (var item in threeCodeStr)
  11235. {
  11236. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11237. if (item.Equals(last))
  11238. {
  11239. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11240. }
  11241. }
  11242. cityPath = cityPath.Trim('-');
  11243. }
  11244. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11245. appro.Diid = diid ?? -1;
  11246. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11247. appro.Id = thisId;
  11248. appro.CreateUserId = dto.UserId;
  11249. appro.CreateTime = DateTime.Now;
  11250. content.Add(appro);
  11251. }
  11252. _sqlSugar.CommitTran();
  11253. }
  11254. foreach (var x in content)
  11255. {
  11256. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  11257. if (chiList.Count < chiNumber)
  11258. {
  11259. for (int i = chiList.Count; i < chiNumber; i++)
  11260. {
  11261. chiList.Add(new Grp_ApprovalTravelDetails());
  11262. }
  11263. }
  11264. resultArr.Add(new
  11265. {
  11266. x.Id,
  11267. x.Date,
  11268. x.Diid,
  11269. chiList = chiList.Select(x1 => new
  11270. {
  11271. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11272. x1.Details,
  11273. x1.ParentId,
  11274. x1.Id
  11275. })
  11276. });
  11277. }
  11278. data = data with
  11279. {
  11280. content = resultArr,
  11281. };
  11282. jw = JsonView(true, "获取成功!", data);
  11283. return Ok(jw);
  11284. }
  11285. /// <summary>
  11286. /// 报批行程删除
  11287. /// </summary>
  11288. /// <param name="dto"></param>
  11289. /// <returns></returns>
  11290. [HttpPost]
  11291. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11292. {
  11293. var jw = JsonView(false);
  11294. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11295. if (group == null)
  11296. {
  11297. jw.Msg = "团组参数有误!";
  11298. return Ok(jw);
  11299. }
  11300. try
  11301. {
  11302. _sqlSugar.BeginTran();
  11303. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11304. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11305. {
  11306. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11307. DeleteUserId = dto.uesrId,
  11308. IsDel = 1
  11309. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11310. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11311. {
  11312. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11313. DeleteUserId = dto.uesrId,
  11314. IsDel = 1
  11315. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11316. _sqlSugar.CommitTran();
  11317. jw = JsonView(true, "删除成功");
  11318. }
  11319. catch (Exception ex)
  11320. {
  11321. jw = JsonView(false, ex.Message);
  11322. }
  11323. return Ok(jw);
  11324. }
  11325. /// <summary>
  11326. /// 报批行程保存
  11327. /// </summary>
  11328. /// <param name="dto"></param>
  11329. /// <returns></returns>
  11330. [HttpPost]
  11331. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11332. {
  11333. var jw = JsonView(false);
  11334. var Find = dto.Arr.Find(x => x.id == 0);
  11335. if (Find != null)
  11336. {
  11337. jw.Msg = "生成的ID为0!";
  11338. return Ok(jw);
  11339. }
  11340. foreach (var item in dto.Arr)
  11341. {
  11342. foreach (var chi in item.chiList)
  11343. {
  11344. if (chi.parentId == 0)
  11345. {
  11346. chi.parentId = item.id;
  11347. }
  11348. }
  11349. }
  11350. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11351. _sqlSugar.BeginTran();
  11352. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11353. {
  11354. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11355. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11356. {
  11357. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11358. DeleteUserId = dto.UserId,
  11359. IsDel = 1
  11360. }).ExecuteCommand();
  11361. }
  11362. try
  11363. {
  11364. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11365. {
  11366. CreateTime = DateTime.Now,
  11367. CreateUserId = dto.UserId,
  11368. Details = x.details,
  11369. ParentId = x.parentId,
  11370. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11371. Remark = "",
  11372. IsDel = 0
  11373. }).ToList()).ExecuteCommand();
  11374. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11375. {
  11376. Id = x.id,
  11377. Details = x.details,
  11378. ParentId = x.parentId,
  11379. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11380. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11381. {
  11382. Details = x.Details,
  11383. ParentId = x.ParentId,
  11384. Time = x.Time
  11385. }).ExecuteCommand();
  11386. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11387. {
  11388. Id = x.id,
  11389. Date = x.date,
  11390. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11391. {
  11392. Date = x.Date
  11393. }).ExecuteCommand();
  11394. _sqlSugar.CommitTran();
  11395. jw = JsonView(true, "保存成功!");
  11396. }
  11397. catch (Exception ex)
  11398. {
  11399. _sqlSugar.RollbackTran();
  11400. jw = JsonView(false, "保存失败!" + ex.Message);
  11401. }
  11402. return Ok(jw);
  11403. }
  11404. /// <summary>
  11405. /// 报批行程生成
  11406. /// </summary>
  11407. /// <param name="dto"></param>
  11408. /// <returns></returns>
  11409. [HttpPost]
  11410. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11411. {
  11412. var jw = JsonView(false);
  11413. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11414. if (group == null)
  11415. {
  11416. jw.Msg = "暂无该团组!";
  11417. return Ok(jw);
  11418. }
  11419. //黑屏代码数据
  11420. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11421. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11422. {
  11423. jw.Msg = "黑屏代码有误!";
  11424. return Ok(jw);
  11425. }
  11426. foreach (DataRow row in dtBlack.Rows)
  11427. {
  11428. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11429. {
  11430. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11431. return Ok(jw);
  11432. }
  11433. }
  11434. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11435. var resultArr = new ArrayList();
  11436. if (officialActivitiesArr.Count == 0)
  11437. {
  11438. jw.Msg = "暂无公务出访信息!";
  11439. return Ok(jw);
  11440. }
  11441. try
  11442. {
  11443. _sqlSugar.BeginTran();
  11444. DeleteApprovalJourney(new
  11445. Domain.Dtos.Groups.DeleteApprovalJourney
  11446. {
  11447. Diid = dto.Diid,
  11448. uesrId = dto.Userid
  11449. });
  11450. var stay = "-";
  11451. var cityPath = "-";
  11452. //添加城市路径以及住宿地
  11453. //黑屏代码获取时间区间
  11454. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11455. var empty = "【未收入该三字码!请机票同事录入】";
  11456. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11457. for (int i = 0; i < timeArr.Count; i++)
  11458. {
  11459. stay = "-";
  11460. cityPath = "-";
  11461. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11462. DateTime NewData = DateTime.Parse(timeArr[i]);
  11463. 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();
  11464. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11465. if (tbSelect.Length > 0)
  11466. {
  11467. List<string> threeCodeStr = new List<string>();
  11468. bool isTrade = false;
  11469. string trip = string.Empty;
  11470. var rowLast = tbSelect.Last();
  11471. var rowFirst = tbSelect.First();
  11472. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11473. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11474. var takeOffTime = DateTime.Parse(timeArr[i]);
  11475. var fallToTime = DateTime.Parse(timeArr[i]);
  11476. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11477. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11478. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11479. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11480. foreach (var item in tbSelect)
  11481. {
  11482. var start = string.Empty;
  11483. var end = string.Empty;
  11484. var threeCode = item["Three"].ToString() ?? "";
  11485. if (threeCode.Length == 6)
  11486. {
  11487. start = threeCode.Substring(0, 3);
  11488. end = threeCode.Substring(3, 3);
  11489. if (threeCodeStr.Count == 0)
  11490. {
  11491. threeCodeStr.Add(start);
  11492. threeCodeStr.Add(end);
  11493. }
  11494. else
  11495. {
  11496. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11497. {
  11498. threeCodeStr.Add(end);
  11499. }
  11500. else
  11501. {
  11502. threeCodeStr.Add(start);
  11503. threeCodeStr.Add(end);
  11504. }
  11505. }
  11506. }
  11507. //处理机票信息
  11508. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11509. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11510. if (start_Object == null)
  11511. {
  11512. start_Object = new Res_ThreeCode()
  11513. {
  11514. AirPort = empty,
  11515. AirPort_En = empty,
  11516. City = empty,
  11517. Country = empty,
  11518. Four = empty,
  11519. Three = empty,
  11520. };
  11521. }
  11522. if (end_Object == null)
  11523. {
  11524. end_Object = new Res_ThreeCode()
  11525. {
  11526. AirPort = empty,
  11527. AirPort_En = empty,
  11528. City = empty,
  11529. Country = empty,
  11530. Four = empty,
  11531. Three = empty,
  11532. };
  11533. }
  11534. //机型判断
  11535. string airModel = item["AirModel"].ToString();
  11536. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11537. string flightTime = item["FlightTime"].ToString();
  11538. if (flightTime!.Contains(":"))
  11539. {
  11540. flightTime = flightTime.Replace(":", "小时");
  11541. flightTime += "分钟";
  11542. }
  11543. if (flightTime.Contains("H"))
  11544. {
  11545. flightTime = flightTime.Replace("H", "小时");
  11546. }
  11547. if (flightTime.Contains("M"))
  11548. {
  11549. flightTime = flightTime.Replace("M", "分钟");
  11550. }
  11551. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11552. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11553. {
  11554. flightTime = flightDataTime.Hour > 0
  11555. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11556. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11557. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11558. }
  11559. //航班号
  11560. string flightcode = item["Fliagtcode"].ToString();
  11561. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11562. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11563. if (aircompany == null)
  11564. {
  11565. aircompany = new Res_AirCompany
  11566. {
  11567. CnName = hsEmpty,
  11568. EnName = hsEmpty,
  11569. ShortCode = hsEmpty,
  11570. };
  11571. }
  11572. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11573. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11574. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11575. if (isTrade)
  11576. {
  11577. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11578. }
  11579. else
  11580. {
  11581. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11582. }
  11583. }
  11584. chiarr.Add(new Grp_ApprovalTravelDetails
  11585. {
  11586. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11587. CreateTime = DateTime.Now,
  11588. CreateUserId = dto.Userid,
  11589. ParentId = 0,
  11590. Details = trip
  11591. });
  11592. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11593. var last = threeCodeStr.Last();
  11594. foreach (var item in threeCodeStr)
  11595. {
  11596. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11597. if (item.Equals(last))
  11598. {
  11599. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11600. }
  11601. }
  11602. cityPath = cityPath.Trim('-');
  11603. }
  11604. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11605. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11606. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11607. appro.Diid = dto.Diid;
  11608. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11609. appro.Id = thisId;
  11610. appro.CreateUserId = dto.Userid;
  11611. appro.CreateTime = DateTime.Now;
  11612. foreach (var item in gwinfo)
  11613. {
  11614. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11615. chi.Details = "拜访" + item.Client;
  11616. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11617. {
  11618. chi.Details += "," + item.ReqSample;
  11619. }
  11620. chi.ParentId = thisId;
  11621. chi.Time = item.Time;
  11622. chiarr.Add(chi);
  11623. }
  11624. if (chiarr.Count < 5)
  11625. {
  11626. for (int j = chiarr.Count; j < 5; j++)
  11627. {
  11628. chiarr.Add(new
  11629. Grp_ApprovalTravelDetails());
  11630. }
  11631. }
  11632. resultArr.Add(new
  11633. {
  11634. appro.Id,
  11635. appro.Date,
  11636. appro.Diid,
  11637. chiList = chiarr.Select(x1 => new
  11638. {
  11639. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11640. x1.Details,
  11641. x1.ParentId,
  11642. x1.Id
  11643. })
  11644. });
  11645. }
  11646. _sqlSugar.CommitTran();
  11647. jw = JsonView(true, "生成成功!", resultArr);
  11648. }
  11649. catch (Exception ex)
  11650. {
  11651. jw.Code = 400;
  11652. jw.Msg = "生成失败!" + ex.Message;
  11653. }
  11654. return Ok(jw);
  11655. }
  11656. /// <summary>
  11657. /// 报批行程word导出
  11658. /// </summary>
  11659. /// <param name="dto"></param>
  11660. /// <returns></returns>
  11661. [HttpPost]
  11662. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11663. {
  11664. var jw = JsonView(false);
  11665. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11666. if (group == null)
  11667. {
  11668. jw.Msg = "暂无该团组!";
  11669. return Ok(jw);
  11670. }
  11671. //模板路径
  11672. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11673. //载入模板
  11674. Document doc = new Document(tempPath);
  11675. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11676. //获取所填表格的序数
  11677. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11678. Aspose.Words.Tables.Row titleRowClone = null;
  11679. Aspose.Words.Tables.Row CenterRowClone = null;
  11680. int index = 0;
  11681. int indexChi = 0;
  11682. int SetIndex = 0;
  11683. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11684. //获取数据,放到datatable
  11685. foreach (var item in ApprovalTravelArr)
  11686. {
  11687. if (index > 0)
  11688. {
  11689. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11690. tableOne.AppendChild(titleRowClone);
  11691. }
  11692. var textTime = item.Date;
  11693. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11694. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11695. SetIndex++;
  11696. if (ChiRep.Count > 0)
  11697. {
  11698. foreach (var itemChi in ChiRep)
  11699. {
  11700. var txtTime = itemChi.Time;
  11701. var txtDetail = itemChi.Details;
  11702. if (indexChi > 0)
  11703. {
  11704. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11705. tableOne.AppendChild(CenterRowClone);
  11706. }
  11707. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11708. {
  11709. SetCells(tableOne, doc, SetIndex, 0, "");
  11710. SetCells(tableOne, doc, SetIndex, 1, "");
  11711. indexChi++;
  11712. SetIndex++;
  11713. break;
  11714. }
  11715. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11716. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11717. indexChi++;
  11718. SetIndex++;
  11719. }
  11720. }
  11721. else
  11722. {
  11723. if (indexChi > 0)
  11724. {
  11725. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11726. tableOne.AppendChild(CenterRowClone);
  11727. }
  11728. SetCells(tableOne, doc, SetIndex, 0, "");
  11729. SetCells(tableOne, doc, SetIndex, 1, "");
  11730. indexChi++;
  11731. SetIndex++;
  11732. }
  11733. index++;
  11734. }
  11735. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11736. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11737. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11738. jw.Code = 200;
  11739. jw.Msg = "";
  11740. return Ok(jw);
  11741. }
  11742. private string intToString(int numberVal)
  11743. {
  11744. string numberval = numberVal.ToString();
  11745. Dictionary<char, string> Number = new Dictionary<char, string>();
  11746. Number.Add('1', "一");
  11747. Number.Add('2', "二");
  11748. Number.Add('3', "三");
  11749. Number.Add('4', "四");
  11750. Number.Add('5', "五");
  11751. Number.Add('6', "六");
  11752. Number.Add('7', "七");
  11753. Number.Add('8', "八");
  11754. Number.Add('9', "九");
  11755. string stringNumberVal = string.Empty;
  11756. for (int i = 0; i < numberval.Length; i++)
  11757. {
  11758. if (i == 0)
  11759. {
  11760. stringNumberVal += Number[numberval[i]];
  11761. }
  11762. else if (i >= 1)
  11763. {
  11764. if (numberval[i] == '0')
  11765. {
  11766. stringNumberVal = "十";
  11767. }
  11768. else
  11769. {
  11770. stringNumberVal += "十" + Number[numberval[i]];
  11771. }
  11772. }
  11773. }
  11774. return stringNumberVal;
  11775. }
  11776. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11777. {
  11778. //获取table中的某个单元格,从0开始
  11779. Cell lshCell = table.Rows[rows].Cells[cells];
  11780. //将单元格中段落移除
  11781. foreach (Node item in lshCell.Paragraphs)
  11782. {
  11783. lshCell.Paragraphs.Remove(item);
  11784. }
  11785. if (val.Contains("\r\n"))
  11786. {
  11787. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11788. foreach (var item in spArr)
  11789. {
  11790. //新建一个段落
  11791. Paragraph p = new Paragraph(doc);
  11792. var r = new Run(doc, item);
  11793. //把设置的值赋给之前新建的段落
  11794. p.AppendChild(r);
  11795. //将此段落加到单元格内
  11796. lshCell.AppendChild(p);
  11797. }
  11798. }
  11799. else
  11800. {
  11801. //新建一个段落
  11802. Paragraph p = new Paragraph(doc);
  11803. var r = new Run(doc, val);
  11804. //把设置的值赋给之前新建的段落
  11805. p.AppendChild(r);
  11806. //将此段落加到单元格内
  11807. lshCell.AppendChild(p);
  11808. }
  11809. }
  11810. [HttpPost]
  11811. public async Task<IActionResult> ServerHttp(string paramStr)
  11812. {
  11813. paramStr = paramStr.TrimEnd('\'');
  11814. paramStr = paramStr.TrimStart('\'');
  11815. JsonView jw = JsonView(false);
  11816. JObject param = JObject.Parse(paramStr);
  11817. if (!param.ContainsKey("url"))
  11818. {
  11819. jw.Msg = "url null";
  11820. return Ok(jw);
  11821. }
  11822. string url = param["url"]!.ToString();
  11823. var methon = "get";
  11824. Dictionary<string, string> bodyValues = null;
  11825. Dictionary<string, string> headValues = null;
  11826. if (param.ContainsKey("methon"))
  11827. {
  11828. methon = param["methon"]!.ToString();
  11829. }
  11830. if (param.ContainsKey("header"))
  11831. {
  11832. var header = param["header"]!.ToString();
  11833. JObject headerJobject = JObject.Parse(header);
  11834. headValues = new Dictionary<string, string>();
  11835. foreach (JProperty item in headerJobject.Properties())
  11836. {
  11837. var value = item.Value.ToString();
  11838. var head = item.Path;
  11839. headValues.Add(head, value);
  11840. }
  11841. }
  11842. if (param.ContainsKey("body"))
  11843. {
  11844. var body = param["body"]!.ToString();
  11845. bodyValues = new Dictionary<string, string>();
  11846. JObject bodyJobject = JObject.Parse(body);
  11847. foreach (JProperty item in bodyJobject.Properties())
  11848. {
  11849. var value = item.Value.ToString();
  11850. var head = item.Path;
  11851. bodyValues.Add(head, value);
  11852. }
  11853. }
  11854. HttpClient client = new HttpClient();
  11855. string responseString = string.Empty;
  11856. if (param.ContainsKey("isJson"))
  11857. {
  11858. }
  11859. if (headValues != null)
  11860. {
  11861. foreach (var item in headValues.Keys)
  11862. {
  11863. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11864. }
  11865. }
  11866. try
  11867. {
  11868. if (methon == "get")
  11869. {
  11870. responseString = await client.GetStringAsync(url);
  11871. }
  11872. else if (methon == "post")
  11873. {
  11874. if (bodyValues == null)
  11875. {
  11876. jw.Msg = "methon post body null";
  11877. return Ok(jw);
  11878. }
  11879. // 数据转化为 key=val 格式
  11880. var content = new FormUrlEncodedContent(bodyValues);
  11881. var response = await client.PostAsync(url, content);
  11882. // 获取数据
  11883. responseString = await response.Content.ReadAsStringAsync();
  11884. }
  11885. else
  11886. {
  11887. jw.Msg = "methon error";
  11888. }
  11889. jw = JsonView(true, "success", responseString);
  11890. }
  11891. catch (Exception ex)
  11892. {
  11893. jw.Msg = "error " + ex.Message;
  11894. jw.Data = ex.StackTrace;
  11895. }
  11896. finally
  11897. {
  11898. client.Dispose();
  11899. }
  11900. return Ok(jw);
  11901. }
  11902. #endregion
  11903. // /// <summary>
  11904. // ///
  11905. // /// </summary>
  11906. // /// <param name="_dto"></param>
  11907. // /// <returns></returns>
  11908. // [HttpPost]
  11909. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11910. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11911. // {
  11912. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11913. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11914. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11915. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11916. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11917. // dic_psg.Add("客人", 974);
  11918. // dic_psg.Add("司机", 975);
  11919. // dic_psg.Add("导游", 976);
  11920. // dic_psg.Add("公司内部人员", 977);
  11921. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11922. // foreach (var item in list_visa)
  11923. // {
  11924. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11925. // temp.Id = item.Id;
  11926. // temp.DIId = item.DIId;
  11927. // temp.VisaClient = item.VisaClient;
  11928. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  11929. // temp.VisaCurrency = item.VisaCurrency;
  11930. // temp.IsThird = item.IsThird;
  11931. // if (dic_psg.ContainsKey(item.PassengerType))
  11932. // {
  11933. // temp.PassengerType = dic_psg[item.PassengerType];
  11934. // }
  11935. // else {
  11936. // temp.PassengerType = -1;
  11937. // }
  11938. // temp.VisaNumber = item.VisaNumber;
  11939. // temp.VisaFreeNumber = item.VisaFreeNumber;
  11940. // temp.CreateUserId = item.Operators;
  11941. // DateTime dt_ct;
  11942. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  11943. // if (b_ct)
  11944. // {
  11945. // temp.CreateTime = dt_ct;
  11946. // }
  11947. // else
  11948. // {
  11949. // temp.CreateTime = DateTime.Now;
  11950. // }
  11951. // temp.DeleteTime = "";
  11952. // temp.DeleteUserId = 0;
  11953. // temp.Remark = item.Remark;
  11954. // if (string.IsNullOrEmpty(temp.Remark)) {
  11955. // temp.Remark = "";
  11956. // }
  11957. // temp.IsDel = item.IsDel;
  11958. // temp.VisaDescription = item.VisaAttachment;
  11959. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  11960. //([Id]
  11961. // ,[DIId]
  11962. // ,[VisaClient]
  11963. // ,[VisaPrice]
  11964. // ,[VisaCurrency]
  11965. // ,[IsThird]
  11966. // ,[PassengerType]
  11967. // ,[VisaNumber]
  11968. // ,[VisaFreeNumber]
  11969. // ,[CreateUserId]
  11970. // ,[CreateTime]
  11971. // ,[DeleteTime]
  11972. // ,[DeleteUserId]
  11973. // ,[Remark]
  11974. // ,[IsDel]
  11975. // ,[visaDescription])
  11976. // VALUES
  11977. // ({0},{1},'{2}',{3},{4}
  11978. //,{5},{6},{7},{8},{9}
  11979. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  11980. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  11981. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  11982. //);
  11983. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  11984. // }
  11985. // return Ok(JsonView(true, "操作成功!"));
  11986. // }
  11987. /// <summary>
  11988. /// 123132123
  11989. /// </summary>
  11990. /// <param name="_dto"></param>
  11991. /// <returns></returns>
  11992. [HttpPost]
  11993. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11994. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11995. {
  11996. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11997. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  11998. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  11999. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12000. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  12001. dicDetail.Add(789, 1034);
  12002. dicDetail.Add(790, 1035);
  12003. dicDetail.Add(791, 1036);
  12004. dicDetail.Add(792, 1037);
  12005. dicDetail.Add(793, 1038);
  12006. dicDetail.Add(794, 1039);
  12007. dicDetail.Add(795, 1040);
  12008. dicDetail.Add(796, 1041);
  12009. dicDetail.Add(797, 1042);
  12010. dicDetail.Add(798, 1043);
  12011. dicDetail.Add(801, 1044);
  12012. dicDetail.Add(802, 1045);
  12013. dicDetail.Add(803, 1046);
  12014. Dictionary<int, int> dic = new Dictionary<int, int>();
  12015. dic.Add(806, 1027);
  12016. dic.Add(807, 1028);
  12017. dic.Add(808, 1029);
  12018. dic.Add(809, 1030);
  12019. dic.Add(810, 1031);
  12020. dic.Add(811, 1032);
  12021. dic.Add(812, 1033);
  12022. foreach (var item in list_visa)
  12023. {
  12024. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  12025. temp.Coefficient = item.coefficient;
  12026. DateTime dtCrt;
  12027. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  12028. if (b1)
  12029. {
  12030. temp.CreateTime = dtCrt;
  12031. }
  12032. else
  12033. {
  12034. temp.CreateTime = DateTime.Now;
  12035. }
  12036. temp.CreateUserId = item.Operators;
  12037. temp.DeleteTime = "";
  12038. temp.DeleteUserId = 0;
  12039. temp.DiId = int.Parse(item.DIID);
  12040. temp.FilePath = item.FilePath;
  12041. temp.IsDel = item.IsDel;
  12042. temp.Price = item.Price;
  12043. temp.PriceCount = 1;
  12044. temp.PriceCurrency = item.Currency;
  12045. int detailId = 0;
  12046. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  12047. {
  12048. detailId = dicDetail[item.PriceTypeDetail];
  12049. }
  12050. temp.PriceDetailType = detailId;
  12051. temp.PriceDt = DateTime.Now;
  12052. temp.PriceName = item.PriceName;
  12053. temp.PriceSum = item.Price;
  12054. int tid = 0;
  12055. if (dic.ContainsKey(item.PriceType))
  12056. {
  12057. tid = dic[item.PriceType];
  12058. }
  12059. temp.PriceType = tid;
  12060. temp.Remark = item.Remark;
  12061. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  12062. }
  12063. return Ok(JsonView(true, "操作成功!"));
  12064. }
  12065. }
  12066. }