GroupsController.cs 629 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. using NPOI.HSSF.Util;
  78. using NPOI.HSSF.UserModel;
  79. using NPOI.SS.UserModel;
  80. using NPOI.XSSF.UserModel;
  81. using MySqlX.XDevAPI.Relational;
  82. using SqlSugar.Extensions;
  83. using Table = Aspose.Words.Tables.Table;
  84. using Aspose.Cells.Tables;
  85. using NPOI.SS.Util;
  86. using RestSharp.Extensions;
  87. using Microsoft.AspNetCore.WebUtilities;
  88. using K4os.Compression.LZ4.Internal;
  89. using static Pipelines.Sockets.Unofficial.SocketConnection;
  90. using System.Diagnostics.PerformanceData;
  91. using System.Drawing.Printing;
  92. using OASystem.Domain.Dtos.FileDto;
  93. using Microsoft.VisualBasic;
  94. using Microsoft.EntityFrameworkCore.Query.Internal;
  95. namespace OASystem.API.Controllers
  96. {
  97. /// <summary>
  98. /// 团组相关
  99. /// </summary>
  100. //[Authorize]
  101. [Route("api/[controller]/[action]")]
  102. public class GroupsController : ControllerBase
  103. {
  104. private readonly GrpScheduleRepository _grpScheduleRep;
  105. private readonly IMapper _mapper;
  106. private readonly DelegationInfoRepository _groupRepository;
  107. private readonly TaskAssignmentRepository _taskAssignmentRep;
  108. private readonly AirTicketResRepository _airTicketResRep;
  109. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  110. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  111. private readonly DelegationEnDataRepository _delegationEnDataRep;
  112. private readonly DelegationVisaRepository _delegationVisaRep;
  113. private readonly VisaPriceRepository _visaPriceRep;
  114. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  115. private readonly HotelPriceRepository _hotelPriceRep;
  116. private readonly CustomersRepository _customersRep;
  117. private readonly MessageRepository _message;
  118. private readonly SqlSugarClient _sqlSugar;
  119. private readonly TourClientListRepository _tourClientListRep;
  120. private readonly TeamRateRepository _teamRateRep;
  121. #region 成本相关
  122. private readonly CheckBoxsRepository _checkBoxs;
  123. private readonly GroupCostRepository _GroupCostRepository;
  124. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  125. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  126. #endregion
  127. private readonly SetDataRepository _setDataRep;
  128. private string url;
  129. private string path;
  130. private readonly EnterExitCostRepository _enterExitCostRep;
  131. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  132. private readonly UsersRepository _usersRep;
  133. private readonly IJuHeApiService _juHeApi;
  134. private readonly InvertedListRepository _invertedListRep;
  135. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  136. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  137. private readonly ThreeCodeRepository _threeCodeRepository;
  138. private readonly HotelInquiryRepository _hotelInquiryRep;
  139. private readonly FeeAuditRepository _feeAuditRep;
  140. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  141. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  142. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  143. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  144. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  145. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  146. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  147. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  148. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  149. {
  150. _mapper = mapper;
  151. _grpScheduleRep = grpScheduleRep;
  152. _groupRepository = groupRepository;
  153. _taskAssignmentRep = taskAssignmentRep;
  154. _airTicketResRep = airTicketResRep;
  155. _sqlSugar = sqlSugar;
  156. url = AppSettingsHelper.Get("ExcelBaseUrl");
  157. path = AppSettingsHelper.Get("ExcelBasePath");
  158. if (!System.IO.Directory.Exists(path))
  159. {
  160. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  161. }
  162. _decreasePaymentsRep = decreasePaymentsRep;
  163. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  164. _delegationEnDataRep = delegationEnDataRep;
  165. _enterExitCostRep = enterExitCostRep;
  166. _delegationVisaRep = delegationVisaRep;
  167. _message = message;
  168. _visaPriceRep = visaPriceRep;
  169. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  170. _checkBoxs = checkBoxs;
  171. _GroupCostRepository = GroupCostRepository;
  172. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  173. _GroupCostParameterRepository = GroupCostParameterRepository;
  174. _hotelPriceRep = hotelPriceRep;
  175. _customersRep = customersRep;
  176. _setDataRep = setDataRep;
  177. _tourClientListRep = tourClientListRep;
  178. _teamRateRep = teamRateRep;
  179. _hubContext = hubContext;
  180. _usersRep = usersRep;
  181. _juHeApi = juHeApi;
  182. _invertedListRep = invertedListRep;
  183. _visaFeeInfoRep = visaFeeInfoRep;
  184. _ticketBlackCodeRep = ticketBlackCodeRep;
  185. _hotelInquiryRep = hotelInquiryRep;
  186. _threeCodeRepository = threeCodeRepository;
  187. _feeAuditRep = feeAuditRep;
  188. }
  189. #region 流程管控
  190. /// <summary>
  191. /// 获取团组流程管控信息
  192. /// </summary>
  193. /// <param name="paras">参数Json字符串</param>
  194. /// <returns></returns>
  195. [HttpPost]
  196. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  197. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  198. {
  199. if (string.IsNullOrEmpty(_jsonDto.Paras))
  200. {
  201. return Ok(JsonView(false, "参数为空"));
  202. }
  203. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  204. if (_ScheduleDto != null)
  205. {
  206. if (_ScheduleDto.SearchType == 2)//获取列表
  207. {
  208. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  209. return Ok(JsonView(_grpScheduleViewList));
  210. }
  211. else//获取对象
  212. {
  213. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  214. if (_grpScheduleView != null)
  215. {
  216. return Ok(JsonView(_grpScheduleView));
  217. }
  218. }
  219. }
  220. else
  221. {
  222. return Ok(JsonView(false, "参数反序列化失败"));
  223. }
  224. return Ok(JsonView(false, "暂无数据!"));
  225. }
  226. /// <summary>
  227. /// 修改团组流程管控详细表数据
  228. /// </summary>
  229. /// <param name="paras"></param>
  230. /// <returns></returns>
  231. [HttpPost]
  232. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  233. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  234. {
  235. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  236. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  237. .SetColumns(it => it.Duty == _detail.Duty)
  238. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  239. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  240. .SetColumns(it => it.JobContent == _detail.JobContent)
  241. .SetColumns(it => it.Remark == _detail.Remark)
  242. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  243. .Where(s => s.Id == dto.Id)
  244. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  245. .ExecuteCommandAsync();
  246. if (result > 0)
  247. {
  248. return Ok(JsonView(true, "保存成功!"));
  249. }
  250. return Ok(JsonView(false, "保存失败!"));
  251. }
  252. /// <summary>
  253. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  254. /// </summary>
  255. /// <param name="dto"></param>
  256. /// <returns></returns>
  257. [HttpPost]
  258. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  259. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  260. {
  261. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  262. _detail.IsDel = 1;
  263. _detail.DeleteUserId = dto.Duty;
  264. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  265. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  266. .SetColumns(it => it.IsDel == _detail.IsDel)
  267. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  268. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  269. .Where(it => it.Id == dto.Id)
  270. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  271. //.WhereColumns(s => s.Id == dto.Id)
  272. .ExecuteCommandAsync();
  273. if (result > 0)
  274. {
  275. return Ok(JsonView(true, "删除成功!"));
  276. }
  277. return Ok(JsonView(false, "删除失败!"));
  278. }
  279. /// <summary>
  280. /// 增加团组流程管控详细表数据
  281. /// </summary>
  282. /// <param name="dto"></param>
  283. /// <returns></returns>
  284. [HttpPost]
  285. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  286. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  287. {
  288. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  289. if (DateTime.Now < _detail.ExpectBeginDt)
  290. {
  291. _detail.StepStatus = 0;
  292. }
  293. else
  294. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  295. _detail.StepStatus = 1;
  296. }
  297. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  298. if (result > 0)
  299. {
  300. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  301. return Ok(JsonView(true, "添加成功!", _result));
  302. }
  303. return Ok(JsonView(false, "添加失败!"));
  304. }
  305. #endregion
  306. #region 团组基本信息
  307. /// <summary>
  308. /// 接团信息列表
  309. /// </summary>
  310. /// <param name="dto">团组列表请求dto</param>
  311. /// <returns></returns>
  312. [HttpPost]
  313. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  314. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  315. {
  316. var groupData = await _groupRepository.GetGroupList(dto);
  317. if (groupData.Code != 0)
  318. {
  319. return Ok(JsonView(false, groupData.Msg));
  320. }
  321. return Ok(JsonView(groupData.Data));
  322. }
  323. /// <summary>
  324. /// 接团信息列表 Page
  325. /// </summary>
  326. /// <param name="dto">团组列表请求dto</param>
  327. /// <returns></returns>
  328. [HttpPost]
  329. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  330. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  331. {
  332. #region 参数验证
  333. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  334. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  335. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  336. #region 页面操作权限验证
  337. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  338. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  339. #endregion
  340. #endregion
  341. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  342. {
  343. string sqlWhere = string.Empty;
  344. if (dto.IsSure == 0) //未完成
  345. {
  346. sqlWhere += string.Format(@" And IsSure = 0");
  347. }
  348. else if (dto.IsSure == 1) //已完成
  349. {
  350. sqlWhere += string.Format(@" And IsSure = 1");
  351. }
  352. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  353. {
  354. string tj = dto.SearchCriteria;
  355. sqlWhere += string.Format(@"And (ssd.Name Like '%{0}%' Or TeamName Like '%{1}%' Or ClientName Like '%{2}%' Or ClientName Like '%{3}%' Or su.CnName Like '%{4}%')",
  356. tj, tj, tj, tj, tj);
  357. }
  358. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  359. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  360. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  361. JietuanOperator,IsSure,CreateTime
  362. From (
  363. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  364. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  365. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  366. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  367. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  368. From Grp_DelegationInfo gdi
  369. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  370. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  371. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  372. Where gdi.IsDel = 0 {0}
  373. ) temp", sqlWhere);
  374. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  375. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  376. #region 处理所属部门
  377. /*
  378. * 1.sq 和 gyy 等显示 市场部
  379. * 2.王鸽和主管及张总还有管理员号统一国交部
  380. * 2-1. 4 管理员 ,21 张海麟
  381. */
  382. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  383. List<int> userIds1 = new List<int>() { 4, 21 };
  384. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  385. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  386. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  387. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  388. .ToList();
  389. foreach (var item in _DelegationList)
  390. {
  391. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  392. }
  393. #endregion
  394. var _view = new
  395. {
  396. PageFuncAuth = pageFunAuthView,
  397. Data = _DelegationList
  398. };
  399. return Ok(JsonView(true, "查询成功!", _view, total));
  400. }
  401. else
  402. {
  403. return Ok(JsonView(false, "查询失败"));
  404. }
  405. }
  406. /// <summary>
  407. /// 团组列表
  408. /// </summary>
  409. /// <returns></returns>
  410. [HttpPost]
  411. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  412. {
  413. #region 参数验证
  414. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  415. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  416. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  417. #region 页面操作权限验证
  418. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  419. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  420. #endregion
  421. #endregion
  422. if (dto.PortType != 1 && dto.PortType != 2)
  423. {
  424. return Ok(JsonView(false, "查询失败!"));
  425. }
  426. string orderbyStr = "order by gdi.CreateTime Desc";
  427. string sqlWhere = string.Empty;
  428. if (dto.IsSure == 0) //未完成
  429. {
  430. sqlWhere += string.Format(@" And IsSure = 0");
  431. }
  432. else if (dto.IsSure == 1) //已完成
  433. {
  434. sqlWhere += string.Format(@" And IsSure = 1");
  435. }
  436. //团组类型
  437. if (dto.TeamDid > 0)
  438. {
  439. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  440. }
  441. //团组名称
  442. if (!string.IsNullOrEmpty(dto.TeamName))
  443. {
  444. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  445. }
  446. //客户名称
  447. if (!string.IsNullOrEmpty(dto.ClientName))
  448. {
  449. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  450. }
  451. //客户单位
  452. if (!string.IsNullOrEmpty(dto.ClientUnit))
  453. {
  454. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  455. }
  456. //出访时间
  457. if (!string.IsNullOrEmpty(dto.visitDataTime))
  458. {
  459. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  460. orderbyStr = "order by gdi.VisitDate";
  461. }
  462. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  463. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  464. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  465. JietuanOperator,IsSure,CreateTime
  466. From (
  467. Select row_number() over({0}) as Row_Number,
  468. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  469. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  470. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  471. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  472. From Grp_DelegationInfo gdi
  473. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  474. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  475. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  476. Where gdi.IsDel = 0 {1}
  477. ) temp ", orderbyStr, sqlWhere);
  478. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  479. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  480. #region 处理所属部门
  481. /*
  482. * 1.sq 和 gyy 等显示 市场部
  483. * 2.王鸽和主管及张总还有管理员号统一国交部
  484. * 2-1. 4 管理员 ,21 张海麟
  485. */
  486. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  487. List<int> userIds1 = new List<int>() { 4, 21 };
  488. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  489. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  490. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  491. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  492. .ToList();
  493. foreach (var item in _DelegationList)
  494. {
  495. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  496. }
  497. #endregion
  498. var _view = new
  499. {
  500. PageFuncAuth = pageFunAuthView,
  501. Data = _DelegationList
  502. };
  503. return Ok(JsonView(true, "查询成功!", _view, total));
  504. }
  505. /// <summary>
  506. /// 接团信息详情
  507. /// </summary>
  508. /// <param name="dto">团组info请求dto</param>
  509. /// <returns></returns>
  510. [HttpPost]
  511. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  512. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  513. {
  514. var groupData = await _groupRepository.GetGroupInfo(dto);
  515. if (groupData.Code != 0)
  516. {
  517. return Ok(JsonView(false, groupData.Msg));
  518. }
  519. return Ok(JsonView(groupData.Data));
  520. }
  521. /// <summary>
  522. /// 接团信息 编辑添加
  523. /// 基础信息数据源
  524. /// </summary>
  525. /// <param name="dto"></param>
  526. /// <returns></returns>
  527. [HttpPost]
  528. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  529. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  530. {
  531. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  532. if (groupData.Code != 0)
  533. {
  534. return Ok(JsonView(false, groupData.Msg));
  535. }
  536. return Ok(JsonView(groupData.Data));
  537. }
  538. /// <summary>
  539. /// 接团信息 操作(增改)
  540. /// </summary>
  541. /// <param name="dto"></param>
  542. /// <returns></returns>
  543. [HttpPost]
  544. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  545. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  546. {
  547. try
  548. {
  549. var groupData = await _groupRepository.GroupOperation(dto);
  550. if (groupData.Code != 0)
  551. {
  552. return Ok(JsonView(false, groupData.Msg));
  553. }
  554. int diId = 0;
  555. //添加时 默认加入团组汇率
  556. if (dto.Status == 1) //添加
  557. {
  558. diId = groupData.Data;
  559. //添加默认币种
  560. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  561. //默认分配权限
  562. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  563. //消息提示 王鸽 主管号
  564. List<int> _managerIds = new List<int>() { 22, 32 };
  565. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  566. if (userIds.Count > 0)
  567. {
  568. userIds.Add(208);
  569. //创建团组管控
  570. GroupStepForDelegation.CreateWorkStep(diId);
  571. //发送消息
  572. string groupName = dto.TeamName;
  573. string createGroupUser = string.Empty;
  574. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  575. if (userInfo != null) createGroupUser = userInfo.CnName;
  576. string title = $"系统通知";
  577. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  578. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  579. }
  580. //默认创建倒推表
  581. await _invertedListRep._Create(dto.UserId, diId);
  582. }
  583. else if (dto.Status == 2)
  584. {
  585. diId = dto.Id;
  586. }
  587. return Ok(JsonView(true, "操作成功!", diId));
  588. }
  589. catch (Exception ex)
  590. {
  591. Logs("[response]" + JsonConvert.SerializeObject(dto));
  592. Logs(ex.Message);
  593. return Ok(JsonView(false, ex.Message));
  594. }
  595. }
  596. /// <summary>
  597. /// 接团流程操作(增改)
  598. /// 安卓端使用 建团时添加客户名单
  599. /// </summary>
  600. /// <param name="dto"></param>
  601. /// <returns></returns>
  602. [HttpPost]
  603. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  604. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  605. {
  606. try
  607. {
  608. #region 参数验证
  609. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  610. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  611. #region 页面操作权限验证
  612. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  613. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  614. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  615. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  616. #endregion
  617. #endregion
  618. _sqlSugar.BeginTran();
  619. var _dto = new GroupOperationDto();
  620. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  621. var groupData = await _groupRepository.GroupOperation(_dto);
  622. if (groupData.Code != 0)
  623. {
  624. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  625. }
  626. int diId = 0;
  627. //添加时 默认加入团组汇率
  628. if (dto.Status == 1) //添加
  629. {
  630. diId = groupData.Data;
  631. //添加默认币种
  632. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  633. //默认分配权限
  634. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  635. //消息提示 王鸽 主管号
  636. List<int> _managerIds = new List<int>() { 22, 32 };
  637. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  638. if (userIds.Count > 0)
  639. {
  640. userIds.Add(208);
  641. //创建团组管控
  642. GroupStepForDelegation.CreateWorkStep(diId);
  643. //发送消息
  644. string groupName = dto.TeamName;
  645. string createGroupUser = string.Empty;
  646. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  647. if (userInfo != null) createGroupUser = userInfo.CnName;
  648. string title = $"系统通知";
  649. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  650. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  651. }
  652. }
  653. if (dto.Status == 2)
  654. {
  655. diId = dto.Id;
  656. if (diId == 0)
  657. {
  658. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  659. }
  660. }
  661. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  662. if (viewData.Code != 0)
  663. {
  664. _sqlSugar.RollbackTran();
  665. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  666. }
  667. _sqlSugar.CommitTran();
  668. return Ok(JsonView(true, "添加成功"));
  669. }
  670. catch (Exception ex)
  671. {
  672. _sqlSugar.RollbackTran();
  673. return Ok(JsonView(false, ex.Message));
  674. }
  675. }
  676. /// <summary>
  677. /// 接团信息 操作(删除)
  678. /// </summary>
  679. /// <param name="dto"></param>
  680. /// <returns></returns>
  681. [HttpPost]
  682. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  683. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  684. {
  685. try
  686. {
  687. var groupData = await _groupRepository.GroupDel(dto);
  688. if (groupData.Code != 0)
  689. {
  690. return Ok(JsonView(false, groupData.Msg));
  691. }
  692. return Ok(JsonView(true));
  693. }
  694. catch (Exception ex)
  695. {
  696. Logs("[response]" + JsonConvert.SerializeObject(dto));
  697. Logs(ex.Message);
  698. return Ok(JsonView(false, ex.Message));
  699. }
  700. }
  701. /// <summary>
  702. /// 获取团组销售报价号
  703. /// 团组添加时 使用
  704. /// </summary>
  705. /// <returns></returns>
  706. [HttpPost]
  707. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  708. public async Task<IActionResult> GetGroupSalesQuoteNo()
  709. {
  710. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  711. if (groupData.Code != 0)
  712. {
  713. return Ok(JsonView(false, groupData.Msg));
  714. }
  715. object salesQuoteNo = new
  716. {
  717. SalesQuoteNo = groupData.Data
  718. };
  719. return Ok(JsonView(salesQuoteNo));
  720. }
  721. /// <summary>
  722. /// 设置确认出团
  723. /// </summary>
  724. /// <param name="dto"></param>
  725. /// <returns></returns>
  726. [HttpPost]
  727. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  728. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  729. {
  730. var groupData = await _groupRepository.ConfirmationGroup(dto);
  731. if (groupData.Code != 0)
  732. {
  733. return Ok(JsonView(false, groupData.Msg));
  734. }
  735. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  736. #region OA消息推送
  737. try
  738. {
  739. string groupName = groupInfo.TeamName;
  740. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  741. List<int> userIds = new List<int>();
  742. listUser.ForEach(s => userIds.Add(s.Id));
  743. string title = $"系统通知";
  744. string content = $"团组[{groupName}]已确认出团!";
  745. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  746. }
  747. catch (Exception ex)
  748. {
  749. }
  750. #endregion
  751. #region 应用推送
  752. try
  753. {
  754. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  755. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  756. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  757. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  758. {
  759. List<string> userList = new List<string>() { users.QiyeChatUserId };
  760. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  761. }
  762. }
  763. catch (Exception ex)
  764. {
  765. }
  766. #endregion
  767. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  768. return Ok(JsonView(true, "操作成功!", groupData.Data));
  769. }
  770. /// <summary>
  771. /// 获取团组名称data And 签证国别Data
  772. /// </summary>
  773. /// <param name="dto"></param>
  774. /// <returns></returns>
  775. [HttpPost]
  776. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  777. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  778. {
  779. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  780. if (groupData.Code != 0)
  781. {
  782. return Ok(JsonView(false, groupData.Msg));
  783. }
  784. return Ok(JsonView(groupData.Data));
  785. }
  786. /// <summary>
  787. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  788. /// </summary>
  789. /// <returns></returns>
  790. [HttpPost]
  791. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  792. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  793. {
  794. try
  795. {
  796. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  797. if (groupData.Code != 0)
  798. {
  799. return Ok(JsonView(false, groupData.Msg));
  800. }
  801. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  802. }
  803. catch (Exception ex)
  804. {
  805. return Ok(JsonView(false, "程序错误!"));
  806. throw;
  807. }
  808. }
  809. #endregion
  810. #region 团组&签证
  811. /// <summary>
  812. /// 根据团组Id获取签证客户信息List
  813. /// </summary>
  814. /// <param name="dto">请求dto</param>
  815. /// <returns></returns>
  816. [HttpPost]
  817. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  818. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  819. {
  820. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  821. if (groupData.Code != 0)
  822. {
  823. return Ok(JsonView(false, groupData.Msg));
  824. }
  825. return Ok(JsonView(groupData.Data));
  826. }
  827. /// <summary>
  828. /// IOS获取团组签证拍照上传进度01(团组列表)
  829. /// </summary>
  830. /// <param name="dto">请求dto</param>
  831. /// <returns></returns>
  832. [HttpPost]
  833. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  834. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  835. {
  836. if (dto == null)
  837. {
  838. return Ok(JsonView(false, "参数为空"));
  839. }
  840. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  841. return Ok(JsonView(visaList));
  842. }
  843. /// <summary>
  844. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  845. /// </summary>
  846. /// <returns></returns>
  847. [HttpPost]
  848. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  849. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  850. {
  851. if (dto == null)
  852. {
  853. return Ok(JsonView(false, "请求错误:"));
  854. }
  855. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  856. return Ok(JsonView(list));
  857. }
  858. /// <summary>
  859. /// IOS获取团组签证拍照上传进度03(相册)
  860. /// </summary>
  861. /// <returns></returns>
  862. [HttpPost]
  863. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  864. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  865. {
  866. if (dto == null)
  867. {
  868. return Ok(JsonView(false, "请求错误:"));
  869. }
  870. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  871. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  872. list.ForEach(s => s.url = url);
  873. return Ok(JsonView(list));
  874. }
  875. /// <summary>
  876. /// IOS获取团组签证拍照上传进度04(图片上传)
  877. /// </summary>
  878. /// <param name="dto"></param>
  879. /// <returns></returns>
  880. [HttpPost]
  881. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  882. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  883. {
  884. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  885. //if (!string.IsNullOrEmpty(result))
  886. //{
  887. //}
  888. //else {
  889. // return Ok(JsonView(false, "上传失败"));
  890. //}
  891. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  892. int sucNum = 0;
  893. try
  894. {
  895. foreach (var item in dto.base64DataList)
  896. {
  897. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  898. string result = decodeBase64ToImage(item, imageName);
  899. if (!string.IsNullOrEmpty(result))
  900. {
  901. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  902. pic.CreateUserId = dto.CreateUserId;
  903. pic.PicName = imageName;
  904. pic.PicPath = result;
  905. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  906. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  907. if (insertResult > 0)
  908. {
  909. sucNum++;
  910. }
  911. }
  912. }
  913. }
  914. catch (Exception ex)
  915. {
  916. return Ok(JsonView(false, ex.Message));
  917. }
  918. string msg = string.Format(@"成功上传{0}张", sucNum);
  919. return Ok(JsonView(true, msg));
  920. }
  921. private string decodeBase64ToImage(string base64DataURL, string imgName)
  922. {
  923. string filename = "";//声明一个string类型的相对路径
  924. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  925. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  926. try//会有异常抛出,try,catch一下
  927. {
  928. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  929. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  930. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  931. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  932. //文件名称
  933. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  934. //上传的文件的路径
  935. string filePath = "";
  936. if (!Directory.Exists(fileDir))
  937. {
  938. Directory.CreateDirectory(fileDir);
  939. }
  940. //上传的文件的路径
  941. filePath = fileDir + filename;
  942. //string url = HttpRuntime.AppDomainAppPath.ToString();
  943. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  944. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  945. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  946. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  947. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  948. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  949. ms.Close();//关闭当前流,并释放所有与之关联的资源
  950. bitmap.Dispose();
  951. }
  952. catch (Exception e)
  953. {
  954. string massage = e.Message;
  955. Logs("IOS图片上传Error:" + massage);
  956. //filename = e.Message;
  957. }
  958. return filename;//返回相对路径
  959. }
  960. /// <summary>
  961. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  962. /// </summary>
  963. /// <param name="dto"></param>
  964. /// <returns></returns>
  965. [HttpPost]
  966. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  967. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  968. {
  969. if (dto == null)
  970. {
  971. return Ok(JsonView(false, "请求错误:"));
  972. }
  973. string msg = "参数错误";
  974. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  975. {
  976. try
  977. {
  978. //_delegationVisaRep.BeginTran();
  979. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  980. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  981. .Where(s => s.Id == dto.visaProgressCustomerId)
  982. .ExecuteCommandAsync();
  983. if (updCount > 0 && dto.publishCode == 1)
  984. {
  985. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  986. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  987. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  988. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  989. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  990. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  991. if (groupData == null)
  992. {
  993. _delegationVisaRep.RollbackTran();
  994. }
  995. string title = string.Format(@"[签证进度更新]");
  996. string content = string.Format(@"测试文本");
  997. bool rst = await _message.AddMsg(new MessageDto()
  998. {
  999. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  1000. IssuerId = dto.publisher,
  1001. Title = title,
  1002. Content = content,
  1003. ReleaseTime = DateTime.Now,
  1004. UIdList = new List<int> {
  1005. 234
  1006. }
  1007. });
  1008. if (rst)
  1009. {
  1010. return Ok(JsonView(true, "发送通知成功"));
  1011. }
  1012. }
  1013. //_delegationVisaRep.CommitTran();
  1014. }
  1015. catch (Exception)
  1016. {
  1017. //_delegationVisaRep.RollbackTran();
  1018. }
  1019. }
  1020. return Ok(JsonView(true, msg));
  1021. }
  1022. #endregion
  1023. #region 团组任务分配
  1024. /// <summary>
  1025. /// 团组任务分配初始化
  1026. /// </summary>
  1027. /// <param name="dto"></param>
  1028. /// <returns></returns>
  1029. [HttpPost]
  1030. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1031. public async Task<IActionResult> GetTaskAssignmen()
  1032. {
  1033. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1034. if (groupData.Code != 0)
  1035. {
  1036. return Ok(JsonView(false, groupData.Msg));
  1037. }
  1038. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1039. }
  1040. /// <summary>
  1041. /// 团组任务分配查询
  1042. /// </summary>
  1043. /// <param name="dto"></param>
  1044. /// <returns></returns>
  1045. [HttpPost]
  1046. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1047. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1048. {
  1049. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1050. if (groupData.Code != 0)
  1051. {
  1052. return Ok(JsonView(false, groupData.Msg));
  1053. }
  1054. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1055. }
  1056. /// <summary>
  1057. /// 团组任务分配操作
  1058. /// </summary>
  1059. /// <param name="dto"></param>
  1060. /// <returns></returns>
  1061. [HttpPost]
  1062. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1063. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1064. {
  1065. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1066. if (groupData.Code != 0)
  1067. {
  1068. return Ok(JsonView(false, groupData.Msg));
  1069. }
  1070. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1071. }
  1072. #endregion
  1073. #region 团组费用审核
  1074. /// <summary>
  1075. /// 费用审核
  1076. /// 团组列表 Page
  1077. /// </summary>
  1078. /// <param name="_dto">团组列表请求dto</param>
  1079. /// <returns></returns>
  1080. [HttpPost]
  1081. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1082. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1083. {
  1084. #region 参数验证
  1085. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1086. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1087. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1088. #region 页面操作权限验证
  1089. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1090. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1091. #endregion
  1092. #endregion
  1093. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1094. {
  1095. string sqlWhere = string.Empty;
  1096. if (_dto.IsSure == 0) //未完成
  1097. {
  1098. sqlWhere += string.Format(@" And IsSure = 0");
  1099. }
  1100. else if (_dto.IsSure == 1) //已完成
  1101. {
  1102. sqlWhere += string.Format(@" And IsSure = 1");
  1103. }
  1104. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1105. {
  1106. string tj = _dto.SearchCriteria;
  1107. sqlWhere += string.Format(@"And (ssd.Name Like '%{0}%' Or TeamName Like '%{1}%' Or ClientName Like '%{2}%' Or ClientName Like '%{3}%' Or su.CnName Like '%{4}%')",
  1108. tj, tj, tj, tj, tj);
  1109. }
  1110. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1111. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1112. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1113. From (
  1114. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1115. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1116. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1117. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1118. From Grp_DelegationInfo gdi
  1119. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1120. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1121. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1122. Where gdi.IsDel = 0 {0}
  1123. ) temp ", sqlWhere);
  1124. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1125. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1126. var _view = new
  1127. {
  1128. PageFuncAuth = pageFunAuthView,
  1129. Data = _DelegationList
  1130. };
  1131. return Ok(JsonView(true, "查询成功!", _view, total));
  1132. }
  1133. else
  1134. {
  1135. return Ok(JsonView(false, "查询失败"));
  1136. }
  1137. }
  1138. /// <summary>
  1139. /// 获取团组费用审核
  1140. /// </summary>
  1141. /// <param name="paras">参数Json字符串</param>
  1142. /// <returns></returns>
  1143. [HttpPost]
  1144. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1145. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1146. {
  1147. try
  1148. {
  1149. #region 参数验证
  1150. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1151. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1152. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1153. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1154. #region 页面操作权限验证
  1155. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1156. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1157. #endregion
  1158. #endregion
  1159. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1160. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1161. #region 费用清单
  1162. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1163. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1164. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1165. List<Grp_CreditCardPayment> entityList = _groupRepository
  1166. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1167. .Where(exp.ToExpression())
  1168. .ToList();
  1169. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1170. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1171. /*
  1172. * 76://酒店预订
  1173. */
  1174. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1175. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1176. .ToListAsync();
  1177. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1178. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1179. .ToListAsync();
  1180. /*
  1181. * 79://车/导游地接
  1182. */
  1183. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1184. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1185. .ToListAsync();
  1186. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1187. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1188. .ToListAsync();
  1189. /*
  1190. * 80: //签证
  1191. */
  1192. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1193. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1194. .ToListAsync();
  1195. /*
  1196. *81: //邀请/公务活动
  1197. */
  1198. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1199. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1200. .ToListAsync();
  1201. /*
  1202. * 82: //团组客户保险
  1203. */
  1204. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1205. /*
  1206. * Lable = 85 机票预订
  1207. */
  1208. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1209. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1210. .ToListAsync();
  1211. /*
  1212. * 85 机票预定
  1213. */
  1214. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1215. /*
  1216. * 98 其他款项
  1217. */
  1218. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1219. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1220. .ToListAsync();
  1221. /*
  1222. * 285:收款退还
  1223. */
  1224. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1225. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1226. .ToListAsync();
  1227. /*
  1228. * 1015: //超支费用
  1229. */
  1230. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1231. /*
  1232. * 币种信息
  1233. */
  1234. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1235. /*
  1236. * 车/导游地接 费用类型
  1237. */
  1238. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1239. /*
  1240. * 车/导游地接 费用类型
  1241. */
  1242. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1243. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1244. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1245. /*
  1246. * 用户信息
  1247. */
  1248. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1249. /*
  1250. * 费用模块
  1251. */
  1252. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1253. string priceModule = string.Empty;
  1254. if (sdPriceName != null)
  1255. {
  1256. priceModule = sdPriceName.Name;
  1257. }
  1258. /*
  1259. * 成本信息
  1260. */
  1261. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1262. decimal _groupRate = 0.0000M;
  1263. string _groupCurrencyCode = "-";
  1264. if (groupCost != null)
  1265. {
  1266. _groupRate = groupCost.Rate;
  1267. if (int.TryParse(groupCost.Currency, out int _currency))
  1268. {
  1269. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1270. }
  1271. else _groupCurrencyCode = groupCost.Currency;
  1272. }
  1273. string costContentSql = $"Select * From Grp_GroupCost";
  1274. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1275. //处理日期为空的天数
  1276. for (int i = 0; i < groupCostDetails.Count; i++)
  1277. if (i != 0)
  1278. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1279. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1280. /*
  1281. * 处理详情数据
  1282. */
  1283. foreach (var entity in entityList)
  1284. {
  1285. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1286. _detail.Id = entity.Id;
  1287. _detail.PriceName = priceModule;
  1288. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1289. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1290. /*
  1291. * 应付款金额
  1292. */
  1293. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1294. string PaymentCurrency_WaitPay = "Unknown";
  1295. string hotelCurrncyCode = "Unknown";
  1296. string hotelCurrncyName = "Unknown";
  1297. if (sdPaymentCurrency_WaitPay != null)
  1298. {
  1299. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1300. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1301. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1302. if (hotelCurrncyCode.Equals("CNY"))
  1303. {
  1304. entity.DayRate = 1.0000M;
  1305. }
  1306. }
  1307. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1308. /*
  1309. * 此次付款金额
  1310. */
  1311. decimal CurrPayStr = 0;
  1312. if (entity.PayPercentage == 0)
  1313. {
  1314. if (entity.PayThenMoney != 0)
  1315. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1316. }
  1317. else
  1318. {
  1319. if (entity.PayMoney != 0)
  1320. {
  1321. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1322. }
  1323. }
  1324. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1325. /*
  1326. * 剩余尾款
  1327. */
  1328. decimal BalanceStr = 0;
  1329. if (CurrPayStr != 0)
  1330. {
  1331. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1332. BalanceStr = 0;
  1333. else
  1334. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1335. }
  1336. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1337. /*
  1338. * Bus名称
  1339. */
  1340. _detail.BusName = "待增加";
  1341. /*
  1342. *费用所属
  1343. */
  1344. switch (entity.CTable)
  1345. {
  1346. case 76://酒店预订
  1347. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1348. if (hotelReservations != null)
  1349. {
  1350. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1351. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1352. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1353. string roomFeeStr = "", roomFeestr1 = "";
  1354. //是否比较房型价格
  1355. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1356. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1357. if (hotelReservations.SingleRoomPrice > 0)
  1358. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1359. if (hotelReservations.DoubleRoomPrice > 0)
  1360. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1361. if (hotelReservations.SuiteRoomPrice > 0)
  1362. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1363. if (hotelReservations.OtherRoomPrice > 0)
  1364. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1365. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1366. else roomFeeStr += " 0.00 * 0";
  1367. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1368. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1369. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1370. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1371. /*
  1372. * 费用类型
  1373. * 1:房费
  1374. * 2:早餐
  1375. * 3:地税
  1376. * 4:城市税
  1377. * </summary>
  1378. */
  1379. //地税
  1380. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1381. if (governmentRentData != null)
  1382. {
  1383. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1384. governmentRentFee = governmentRentData.Price;
  1385. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1386. if (governmentRentCurrData != null)
  1387. {
  1388. governmentRentCode = governmentRentCurrData.Name;
  1389. governmentRentName = $"({governmentRentCurrData.Remark})";
  1390. }
  1391. }
  1392. //城市税
  1393. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1394. if (cityTaxData != null)
  1395. {
  1396. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1397. cityTaxFee = cityTaxData.Price;
  1398. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1399. if (cityTaxCurrData != null)
  1400. {
  1401. cityTaxCode = cityTaxCurrData.Name;
  1402. cityTaxName = $"({cityTaxCurrData.Remark})";
  1403. }
  1404. }
  1405. //酒店早餐
  1406. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1407. if (breakfastData != null)
  1408. {
  1409. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1410. breakfastFee = breakfastData.Price;
  1411. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1412. if (breakfastCurrData != null)
  1413. {
  1414. breakfastCode = breakfastCurrData.Name;
  1415. breakfastName = $"({breakfastCurrData.Remark})";
  1416. }
  1417. }
  1418. //房间费用
  1419. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1420. if (roomData != null)
  1421. {
  1422. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1423. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1424. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1425. roomFee = roomData.Price;
  1426. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1427. if (roomCurrData != null)
  1428. {
  1429. roomCode = roomCurrData.Name;
  1430. roomName = $"({roomCurrData.Remark})";
  1431. }
  1432. }
  1433. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1434. string hotelCostStr = "";
  1435. decimal hotelCsotTotal = 0.00M;
  1436. if (groupCost != null)
  1437. {
  1438. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1439. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1440. }
  1441. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1442. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1443. string hotelCost_day = "";
  1444. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1445. foreach (var item in hotelCostDetails1)
  1446. {
  1447. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1448. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1449. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1450. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1451. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1452. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1453. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1454. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1455. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1456. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1457. hotelCost_day += @$"</br>";
  1458. }
  1459. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1460. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1461. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1462. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1463. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1464. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1465. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1466. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1467. $"房间说明: {hotelReservations.Remark} <br/>" +
  1468. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1469. $"{hotelBreakfastStr}" +
  1470. $"{hotelGovernmentRentStr}" +
  1471. $"{hotelCityTaxStr}";
  1472. _detail.PriceNameContent = hotelReservations.HotelName;
  1473. }
  1474. break;
  1475. case 79://车/导游地接
  1476. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1477. if (touristGuideGroundReservations != null)
  1478. {
  1479. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1480. {
  1481. _detail.BusName = touristGuideGroundReservations.BusName;
  1482. }
  1483. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1484. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1485. //if (isInt)
  1486. //{
  1487. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1488. // if (cityInfo != null)
  1489. // {
  1490. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1491. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1492. // if (carFeeItem != null)
  1493. // {
  1494. // nameContent += $@"({carFeeItem.Name})";
  1495. // }
  1496. // _detail.PriceNameContent = nameContent;
  1497. // }
  1498. //}
  1499. //else
  1500. //{
  1501. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1502. //}
  1503. var touristGuideGroundReservationsContents =
  1504. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1505. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1506. foreach (var item in touristGuideGroundReservationsContents)
  1507. {
  1508. string typeName = "Unknown";
  1509. string carCurrencyCode = "Unknown";
  1510. string carCurrencyName = "Unknown";
  1511. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1512. if (carTypeData != null) typeName = carTypeData.Name;
  1513. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1514. if (currencyData != null)
  1515. {
  1516. carCurrencyCode = currencyData.Name;
  1517. carCurrencyName = currencyData.Remark;
  1518. }
  1519. string opCostStr = string.Empty;
  1520. decimal opCostTypePrice = 0.00M;
  1521. #region 处理成本各项费用
  1522. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1523. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1524. if (opCost.Count > 0)
  1525. {
  1526. switch (item.SId)
  1527. {
  1528. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1529. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1530. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1531. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1532. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1533. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1534. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1535. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1536. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1537. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1538. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1539. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1540. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1541. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1542. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1543. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1544. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1545. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1546. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1547. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1548. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1549. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1550. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1551. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1552. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1553. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1554. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1555. }
  1556. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1557. }
  1558. #endregion
  1559. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1560. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1561. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1562. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1563. }
  1564. _detail.PriceMsgContent = priceMsg;
  1565. }
  1566. break;
  1567. case 80: //签证
  1568. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1569. if (visaInfo != null)
  1570. {
  1571. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1572. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1573. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1574. }
  1575. break;
  1576. case 81: //邀请/公务活动
  1577. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1578. if (_ioa != null)
  1579. {
  1580. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1581. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1582. sendCurrName = "Unknown", //快递费用币种 Name
  1583. sendCurrCode = "Unknown", //快递费用币种 Code
  1584. eventsCurrName = "Unknown", //公务活动费币种 Name
  1585. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1586. translateCurrName = "Unknown", //公务翻译费 Name
  1587. translateCurrCode = "Unknown"; //公务翻译费 Code
  1588. #region 处理费用币种
  1589. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1590. if (inviteCurrData != null)
  1591. {
  1592. inviteCurrName = inviteCurrData.Remark;
  1593. inviteCurrCode = inviteCurrData.Name;
  1594. }
  1595. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1596. if (sendCurrData != null)
  1597. {
  1598. sendCurrName = sendCurrData.Remark;
  1599. sendCurrCode = sendCurrData.Name;
  1600. }
  1601. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1602. if (eventsCurrData != null)
  1603. {
  1604. eventsCurrName = eventsCurrData.Remark;
  1605. eventsCurrCode = eventsCurrData.Name;
  1606. }
  1607. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1608. if (translateCurrData != null)
  1609. {
  1610. translateCurrName = translateCurrData.Remark;
  1611. translateCurrCode = translateCurrData.Name;
  1612. }
  1613. #endregion
  1614. _detail.PriceNameContent = _ioa.InviterArea;
  1615. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1616. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1617. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1618. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1619. $@"备注:" + _ioa.Remark + "<br/>";
  1620. }
  1621. break;
  1622. case 82: //团组客户保险
  1623. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1624. if (customers != null)
  1625. {
  1626. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1627. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1628. }
  1629. break;
  1630. case 85: //机票预订
  1631. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1632. if (jpRes != null)
  1633. {
  1634. string FlightsDescription = jpRes.FlightsDescription;
  1635. string PriceDescription = jpRes.PriceDescription;
  1636. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1637. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1638. }
  1639. break;
  1640. case 98://其他款项
  1641. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1642. if (gdpRes != null)
  1643. {
  1644. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1645. _detail.PriceNameContent = gdpRes.PriceName;
  1646. }
  1647. break;
  1648. case 285://收款退还
  1649. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1650. if (refundAndOtherMoney != null)
  1651. {
  1652. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1653. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1654. }
  1655. break;
  1656. case 751://酒店早餐
  1657. break;
  1658. case 1015://超支费用
  1659. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1660. if (groupExtraCost != null)
  1661. {
  1662. _detail.PriceNameContent = groupExtraCost.PriceName;
  1663. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1664. }
  1665. break;
  1666. default:
  1667. break;
  1668. }
  1669. /*
  1670. * 申请人
  1671. */
  1672. string operatorName = " - ";
  1673. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1674. if (_opUser != null)
  1675. {
  1676. operatorName = _opUser.CnName;
  1677. }
  1678. _detail.OperatorName = operatorName;
  1679. /*
  1680. * 审核人
  1681. */
  1682. string auditOperatorName = "Unknown";
  1683. if (entity.AuditGMOperate == 0)
  1684. auditOperatorName = " - ";
  1685. else if (entity.AuditGMOperate == 4)
  1686. auditOperatorName = "自动审核";
  1687. else
  1688. {
  1689. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1690. if (_adUser != null)
  1691. {
  1692. auditOperatorName = _adUser.CnName;
  1693. }
  1694. }
  1695. _detail.AuditOperatorName = auditOperatorName;
  1696. /*
  1697. * 超预算比例
  1698. */
  1699. string overBudgetStr = "";
  1700. if (entity.ExceedBudget == -1)
  1701. overBudgetStr = sdPriceName.Name + "尚无预算";
  1702. else if (entity.ExceedBudget == 0)
  1703. {
  1704. if (entity.CTable == 76 || entity.CTable == 79)
  1705. {
  1706. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1707. else overBudgetStr = "超预算";
  1708. }
  1709. else
  1710. {
  1711. overBudgetStr = "未超预算";
  1712. }
  1713. }
  1714. else
  1715. overBudgetStr = entity.ExceedBudget.ToString("P");
  1716. _detail.OverBudget = overBudgetStr;
  1717. /*
  1718. * 费用总计
  1719. */
  1720. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1721. {
  1722. CurrencyId = entity.PaymentCurrency,
  1723. CurrencyName = PaymentCurrency_WaitPay,
  1724. AmountPayable = entity.PayMoney,
  1725. ThisPayment = CurrPayStr,
  1726. BalancePayment = BalanceStr,
  1727. AuditedFunds = CurrPayStr
  1728. });
  1729. _detail.IsAuditGM = entity.IsAuditGM;
  1730. detailList.Add(_detail);
  1731. }
  1732. #endregion
  1733. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1734. /*
  1735. * 下方描述处理
  1736. */
  1737. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1738. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1739. if (ccpCurrencyPrice != null)
  1740. {
  1741. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1742. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1743. }
  1744. else
  1745. {
  1746. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1747. }
  1748. string amountPayableStr = string.Format(@"应付款总金额: ");
  1749. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1750. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1751. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1752. foreach (var item in nonDuplicat)
  1753. {
  1754. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1755. if (strs.Count > 0)
  1756. {
  1757. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1758. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1759. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1760. //单独处理此次付款金额
  1761. if (item.CurrencyId == 836) //人民币
  1762. {
  1763. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1764. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1765. }
  1766. else
  1767. {
  1768. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1769. }
  1770. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1771. //单独处理已审核费用
  1772. if (item.CurrencyId == 836) //人民币
  1773. {
  1774. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1775. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1776. }
  1777. else
  1778. {
  1779. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1780. }
  1781. }
  1782. }
  1783. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1784. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1785. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1786. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1787. var _view1 = new
  1788. {
  1789. PageFuncAuth = pageFunAuthView,
  1790. Data = _view
  1791. };
  1792. return Ok(JsonView(_view1));
  1793. }
  1794. catch (Exception ex)
  1795. {
  1796. return Ok(JsonView(false, ex.Message));
  1797. }
  1798. }
  1799. /// <summary>
  1800. /// 费用审核
  1801. /// 修改团组费用审核状态
  1802. /// </summary>
  1803. /// <param name="_dto">参数Json字符串</param>
  1804. /// <returns></returns>
  1805. [HttpPost]
  1806. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1807. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1808. {
  1809. #region 参数验证
  1810. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1811. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1812. #endregion
  1813. #region 页面操作权限验证
  1814. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1815. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1816. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1817. #endregion
  1818. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1819. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1820. DateTime dtNow = DateTime.Now;
  1821. _groupRepository.BeginTran();
  1822. int rst = 0;
  1823. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1824. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1825. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1826. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1827. List<dynamic> msgDatas = new List<dynamic>();
  1828. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1829. foreach (var item in idList)
  1830. {
  1831. int CreditId = int.Parse(item);
  1832. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1833. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1834. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1835. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1836. .Where(s => s.Id == CreditId)
  1837. .ExecuteCommandAsync();
  1838. if (result < 1)
  1839. {
  1840. rst = -1;
  1841. _groupRepository.RollbackTran();
  1842. return Ok(JsonView(false, "操作失败并回滚!"));
  1843. }
  1844. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1845. if (creditData != null)
  1846. {
  1847. #region 应用通知配置
  1848. try
  1849. {
  1850. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1851. }
  1852. catch (Exception ex)
  1853. {
  1854. }
  1855. #endregion
  1856. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1857. string groupNameStr = string.Empty;
  1858. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1859. if (groupData != null) groupNameStr = groupData.TeamName;
  1860. string creditTypeStr = string.Empty;
  1861. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1862. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1863. string creditCurrency = string.Empty;
  1864. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1865. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1866. if (creditCurrency.Equals("CNY"))
  1867. {
  1868. creditData.DayRate = 1.0000M;
  1869. }
  1870. if (creditData.PayPercentage == 0.00M)
  1871. {
  1872. creditData.PayPercentage = 100M;
  1873. }
  1874. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1875. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1876. string msgContent = "";
  1877. if (creditCurrency.Equals("CNY"))
  1878. {
  1879. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1880. }
  1881. else
  1882. {
  1883. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1884. }
  1885. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1886. }
  1887. }
  1888. if (rst == 0)
  1889. {
  1890. _groupRepository.CommitTran();
  1891. foreach (var item in msgDatas)
  1892. {
  1893. //发送消息
  1894. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1895. }
  1896. #region 应用推送
  1897. try
  1898. {
  1899. foreach (var ccpId in dic_ccp_user.Keys)
  1900. {
  1901. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1902. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1903. }
  1904. }
  1905. catch (Exception)
  1906. {
  1907. }
  1908. #endregion
  1909. return Ok(JsonView(true, "操作成功!"));
  1910. }
  1911. return Ok(JsonView(false, "操作失败!"));
  1912. }
  1913. #endregion
  1914. #region 机票费用录入
  1915. /// <summary>
  1916. /// 机票录入当前登录人可操作团组
  1917. /// </summary>
  1918. /// <param name="dto"></param>
  1919. /// <returns></returns>
  1920. [HttpPost]
  1921. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1922. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1923. {
  1924. try
  1925. {
  1926. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1927. if (groupData.Code != 0)
  1928. {
  1929. return Ok(JsonView(false, groupData.Msg));
  1930. }
  1931. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1932. }
  1933. catch (Exception ex)
  1934. {
  1935. return Ok(JsonView(false, "程序错误!"));
  1936. throw;
  1937. }
  1938. }
  1939. /// <summary>
  1940. /// 机票费用录入列表
  1941. /// </summary>
  1942. /// <param name="dto"></param>
  1943. /// <returns></returns>
  1944. [HttpPost]
  1945. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1946. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1947. {
  1948. try
  1949. {
  1950. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1951. if (groupData.Code != 0)
  1952. {
  1953. return Ok(JsonView(false, groupData.Msg));
  1954. }
  1955. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1956. }
  1957. catch (Exception ex)
  1958. {
  1959. return Ok(JsonView(false, ex.Message));
  1960. throw;
  1961. }
  1962. }
  1963. /// <summary>
  1964. /// 根据id查询费用录入信息
  1965. /// </summary>
  1966. /// <param name="dto"></param>
  1967. /// <returns></returns>
  1968. [HttpPost]
  1969. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1970. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1971. {
  1972. try
  1973. {
  1974. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1975. if (groupData.Code != 0)
  1976. {
  1977. return Ok(JsonView(false, groupData.Msg));
  1978. }
  1979. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1980. }
  1981. catch (Exception ex)
  1982. {
  1983. return Ok(JsonView(false, "程序错误!"));
  1984. throw;
  1985. }
  1986. }
  1987. /// <summary>
  1988. /// 机票费用录入操作(Status:1.新增,2.修改)
  1989. /// </summary>
  1990. /// <param name="dto"></param>
  1991. /// <returns></returns>
  1992. [HttpPost]
  1993. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1994. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1995. {
  1996. try
  1997. {
  1998. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1999. if (groupData.Code != 0)
  2000. {
  2001. return Ok(JsonView(false, groupData.Msg));
  2002. }
  2003. #region 应用推送
  2004. try
  2005. {
  2006. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2007. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2008. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2009. }
  2010. catch (Exception ex)
  2011. {
  2012. }
  2013. #endregion
  2014. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2015. }
  2016. catch (Exception ex)
  2017. {
  2018. return Ok(JsonView(false, "程序错误!"));
  2019. throw;
  2020. }
  2021. }
  2022. /// <summary>
  2023. /// 根据舱位类型查询接团客户名单信息
  2024. /// </summary>
  2025. /// <param name="dto"></param>
  2026. /// <returns></returns>
  2027. [HttpPost]
  2028. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2029. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2030. {
  2031. try
  2032. {
  2033. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2034. if (crm_Groups.Count != 0)
  2035. {
  2036. List<dynamic> Customer = new List<dynamic>();
  2037. foreach (var item in crm_Groups)
  2038. {
  2039. var data = new
  2040. {
  2041. Id = item.Id,
  2042. Pinyin = item.Pinyin,
  2043. Name = item.LastName + item.FirstName
  2044. };
  2045. Customer.Add(data);
  2046. }
  2047. return Ok(JsonView(true, "查询成功!", Customer));
  2048. }
  2049. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2050. }
  2051. catch (Exception ex)
  2052. {
  2053. return Ok(JsonView(false, "程序错误!"));
  2054. throw;
  2055. }
  2056. }
  2057. /// <summary>
  2058. /// 根据团号获取客户信息
  2059. /// </summary>
  2060. /// <param name="dto"></param>
  2061. /// <returns></returns>
  2062. [HttpPost]
  2063. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2064. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2065. {
  2066. var jw = JsonView(false);
  2067. if (dto.DIID < 1)
  2068. {
  2069. jw.Msg += "请输入正确的diid";
  2070. return Ok(jw);
  2071. }
  2072. var arr = getSimplClientList(dto.DIID);
  2073. jw = JsonView(true, "获取成功!", arr);
  2074. return Ok(jw);
  2075. }
  2076. private List<SimplClientInfo> getSimplClientList(int diId)
  2077. {
  2078. 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);
  2079. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2080. return arr;
  2081. }
  2082. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2083. {
  2084. string result = origin;
  2085. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2086. {
  2087. string[] temparr = origin.Split(',');
  2088. string fistrStr = temparr[0];
  2089. int count = temparr.Count();
  2090. int tempId;
  2091. bool success = int.TryParse(fistrStr, out tempId);
  2092. if (success)
  2093. {
  2094. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2095. if (tempInfo != null)
  2096. {
  2097. if (count > 1)
  2098. {
  2099. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2100. }
  2101. else
  2102. {
  2103. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2104. }
  2105. }
  2106. }
  2107. }
  2108. return result;
  2109. }
  2110. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2111. {
  2112. string result = origin;
  2113. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2114. {
  2115. string[] temparr = origin.Split(',');
  2116. result = "";
  2117. foreach (var item in temparr)
  2118. {
  2119. int tempId;
  2120. bool success = int.TryParse(item, out tempId);
  2121. if (success)
  2122. {
  2123. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2124. if (tempInfo != null)
  2125. {
  2126. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2127. }
  2128. }
  2129. }
  2130. }
  2131. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2132. return result;
  2133. }
  2134. /// <summary>
  2135. /// 机票费用录入,删除
  2136. /// </summary>
  2137. /// <param name="dto"></param>
  2138. /// <returns></returns>
  2139. [HttpPost]
  2140. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2141. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2142. {
  2143. try
  2144. {
  2145. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2146. if (res)
  2147. {
  2148. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2149. {
  2150. IsDel = 1,
  2151. DeleteUserId = dto.DeleteUserId,
  2152. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2153. }).ExecuteCommandAsync();
  2154. return Ok(JsonView(true, "删除成功!"));
  2155. }
  2156. return Ok(JsonView(false, "删除失败!"));
  2157. }
  2158. catch (Exception ex)
  2159. {
  2160. return Ok(JsonView(false, "程序错误!"));
  2161. throw;
  2162. }
  2163. }
  2164. /// <summary>
  2165. /// 导出机票录入报表
  2166. /// </summary>
  2167. /// <param name="dto"></param>
  2168. /// <returns></returns>
  2169. [HttpPost]
  2170. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2171. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2172. {
  2173. try
  2174. {
  2175. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2176. if (groupData.Code != 0)
  2177. {
  2178. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2179. }
  2180. else
  2181. {
  2182. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2183. if (AirTicketReservations.Count != 0)
  2184. {
  2185. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2186. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2187. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2188. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2189. WorkbookDesigner designer = new WorkbookDesigner();
  2190. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2191. decimal countCost = 0;
  2192. foreach (var item in AirTicketReservations)
  2193. {
  2194. #region 处理客人姓名
  2195. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2196. item.ClientName = clientNames;
  2197. #endregion
  2198. if (item.BankType == "其他")
  2199. {
  2200. item.BankNo = "--";
  2201. }
  2202. else
  2203. {
  2204. if (!string.IsNullOrEmpty(item.BankType))
  2205. {
  2206. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2207. }
  2208. }
  2209. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2210. item.Price = System.Decimal.Round(item.Price, 2);
  2211. countCost += Convert.ToDecimal(item.Price);
  2212. }
  2213. designer.SetDataSource("Export", AirTicketReservations);
  2214. designer.SetDataSource("ExportDiCode", diCode);
  2215. designer.SetDataSource("ExportDiName", diName);
  2216. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2217. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2218. designer.Process();
  2219. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2220. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2221. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2222. return Ok(JsonView(true, "成功", url = rst));
  2223. }
  2224. else
  2225. {
  2226. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2227. }
  2228. }
  2229. }
  2230. catch (Exception ex)
  2231. {
  2232. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2233. throw;
  2234. }
  2235. }
  2236. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2237. /// <summary>
  2238. /// 行程单导出
  2239. /// </summary>
  2240. /// <param name="dto"></param>
  2241. /// <returns></returns>
  2242. [HttpPost]
  2243. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2244. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2245. {
  2246. try
  2247. {
  2248. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2249. if (groupData.Code != 0)
  2250. {
  2251. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2252. }
  2253. else
  2254. {
  2255. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2256. if (dto.Language == "CN")
  2257. {
  2258. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2259. DocumentBuilder builder = new DocumentBuilder(doc);
  2260. int tableIndex = 0;//表格索引
  2261. //得到文档中的第一个表格
  2262. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2263. foreach (var item in _AirTicketReservations)
  2264. {
  2265. #region 处理固定数据
  2266. string[] FlightsCode = item.FlightsCode.Split('/');
  2267. if (FlightsCode.Length != 0)
  2268. {
  2269. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2270. if (_AirCompany != null)
  2271. {
  2272. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2273. }
  2274. else
  2275. {
  2276. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2277. }
  2278. }
  2279. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2280. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2281. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2282. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2283. string name = "";
  2284. foreach (string clientName in nameArray)
  2285. {
  2286. if (!name.Contains(clientName))
  2287. {
  2288. name += clientName + ",";
  2289. }
  2290. }
  2291. if (!string.IsNullOrWhiteSpace(name))
  2292. {
  2293. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2294. }
  2295. else
  2296. {
  2297. table.Range.Bookmarks["ClientName"].Text = "--";
  2298. }
  2299. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2300. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2301. table.Range.Bookmarks["JointTicket"].Text = "--";
  2302. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2303. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2304. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2305. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2306. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2307. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2308. #endregion
  2309. #region 循环数据处理
  2310. List<AirInfo> airs = new List<AirInfo>();
  2311. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2312. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2313. for (int i = 0; i < FlightsCode.Length; i++)
  2314. {
  2315. AirInfo air = new AirInfo();
  2316. string[] tempstr = DayArray[i]
  2317. .Replace("\r\n", string.Empty)
  2318. .Replace("\\r\\n", string.Empty)
  2319. .TrimStart().TrimEnd()
  2320. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2321. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2322. string starCity = "";
  2323. if (star_Three != null)
  2324. {
  2325. starCity = star_Three.AirPort;
  2326. }
  2327. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2328. string EndCity = "";
  2329. if (End_Three != null)
  2330. {
  2331. EndCity = End_Three.AirPort;
  2332. }
  2333. air.Destination = starCity + "/" + EndCity;
  2334. air.Flight = FlightsCode[i];
  2335. air.SeatingClass = item.CTypeName;
  2336. string dateTime = tempstr[2];
  2337. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2338. air.FlightDate = DateTemp;
  2339. air.DepartureTime = tempstr[5];
  2340. air.LandingTime = tempstr[6];
  2341. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2342. air.TicketStatus = "--";
  2343. air.Luggage = "--";
  2344. air.DepartureTerminal = "--";
  2345. air.LandingTerminal = "--";
  2346. airs.Add(air);
  2347. }
  2348. int row = 13;
  2349. for (int i = 0; i < airs.Count; i++)
  2350. {
  2351. if (airs.Count > 2)
  2352. {
  2353. for (int j = 0; j < airs.Count - 2; j++)
  2354. {
  2355. var CopyRow = table.Rows[12].Clone(true);
  2356. table.Rows.Add(CopyRow);
  2357. }
  2358. }
  2359. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2360. int index = 0;
  2361. foreach (PropertyInfo property in properties)
  2362. {
  2363. string value = property.GetValue(airs[i]).ToString();
  2364. Cell ishcel0 = table.Rows[row].Cells[index];
  2365. Paragraph p = new Paragraph(doc);
  2366. string s = value;
  2367. p.AppendChild(new Run(doc, s));
  2368. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2369. ishcel0.AppendChild(p);
  2370. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2371. index++;
  2372. }
  2373. row++;
  2374. }
  2375. #endregion
  2376. Paragraph lastParagraph = new Paragraph(doc);
  2377. //第一个表格末尾加段落
  2378. table.ParentNode.InsertAfter(lastParagraph, table);
  2379. //复制第一个表格
  2380. Table cloneTable = (Table)table.Clone(true);
  2381. //在文档末尾段落后面加入复制的表格
  2382. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2383. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2384. {
  2385. int rownewsIndex = 13;
  2386. for (int i = 0; i < 2; i++)
  2387. {
  2388. var CopyRow = table.Rows[12].Clone(true);
  2389. table.Rows.RemoveAt(13);
  2390. table.Rows.Add(CopyRow);
  2391. rownewsIndex++;
  2392. }
  2393. }
  2394. else
  2395. {
  2396. table.Rows.RemoveAt(12);
  2397. }
  2398. cloneTable.Rows.RemoveAt(12);
  2399. }
  2400. if (_AirTicketReservations.Count != 0)
  2401. {
  2402. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2403. if (FlightsCode.Length != 0)
  2404. {
  2405. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2406. if (_AirCompany != null)
  2407. {
  2408. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2409. }
  2410. else
  2411. {
  2412. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2413. }
  2414. }
  2415. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2416. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2417. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2418. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2419. string name = "";
  2420. foreach (string clientName in nameArray)
  2421. {
  2422. if (!name.Contains(clientName))
  2423. {
  2424. name += clientName + ",";
  2425. }
  2426. }
  2427. if (!string.IsNullOrWhiteSpace(name))
  2428. {
  2429. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2430. }
  2431. else
  2432. {
  2433. table.Range.Bookmarks["ClientName"].Text = "--";
  2434. }
  2435. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2436. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2437. table.Range.Bookmarks["JointTicket"].Text = "--";
  2438. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2439. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2440. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2441. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2442. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2443. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2444. }
  2445. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2446. //保存合并后的文档
  2447. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2448. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2449. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2450. return Ok(JsonView(true, "成功!", rst));
  2451. }
  2452. else
  2453. {
  2454. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2455. DocumentBuilder builder = new DocumentBuilder(doc);
  2456. int tableIndex = 0;//表格索引
  2457. //得到文档中的第一个表格
  2458. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2459. List<string> texts = new List<string>();
  2460. foreach (var item in _AirTicketReservations)
  2461. {
  2462. string[] FlightsCode = item.FlightsCode.Split('/');
  2463. if (FlightsCode.Length != 0)
  2464. {
  2465. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2466. if (_AirCompany != null)
  2467. {
  2468. if (!transDic.ContainsKey(_AirCompany.CnName))
  2469. {
  2470. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2471. }
  2472. }
  2473. else
  2474. {
  2475. if (!transDic.ContainsKey("--"))
  2476. {
  2477. transDic.Add("--", "--");
  2478. }
  2479. }
  2480. }
  2481. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2482. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2483. string name = "";
  2484. foreach (string clientName in nameArray)
  2485. {
  2486. name += clientName + ",";
  2487. }
  2488. if (!texts.Contains(name))
  2489. {
  2490. texts.Add(name);
  2491. }
  2492. List<AirInfo> airs = new List<AirInfo>();
  2493. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2494. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2495. for (int i = 0; i < FlightsCode.Length; i++)
  2496. {
  2497. AirInfo air = new AirInfo();
  2498. string[] tempstr = DayArray[i]
  2499. .Replace("\r\n", string.Empty)
  2500. .Replace("\\r\\n", string.Empty)
  2501. .TrimStart().TrimEnd()
  2502. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2503. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2504. if (star_Three != null)
  2505. {
  2506. if (!transDic.ContainsKey(star_Three.AirPort))
  2507. {
  2508. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2509. }
  2510. }
  2511. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2512. if (End_Three != null)
  2513. {
  2514. if (!transDic.ContainsKey(End_Three.AirPort))
  2515. {
  2516. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2517. }
  2518. }
  2519. if (!texts.Contains(item.CTypeName))
  2520. {
  2521. texts.Add(item.CTypeName);
  2522. }
  2523. }
  2524. }
  2525. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2526. if (transData.Count > 0)
  2527. {
  2528. foreach (TranslateResult item in transData)
  2529. {
  2530. if (!transDic.ContainsKey(item.Query))
  2531. {
  2532. transDic.Add(item.Query, item.Translation);
  2533. }
  2534. }
  2535. }
  2536. foreach (var item in _AirTicketReservations)
  2537. {
  2538. #region 处理固定数据
  2539. string[] FlightsCode = item.FlightsCode.Split('/');
  2540. if (FlightsCode.Length != 0)
  2541. {
  2542. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2543. if (_AirCompany != null)
  2544. {
  2545. string str = "--";
  2546. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2547. if (!string.IsNullOrEmpty(translateResult))
  2548. {
  2549. str = translateResult;
  2550. str = _airTicketResRep.Processing(str);
  2551. }
  2552. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2553. }
  2554. else
  2555. {
  2556. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2557. }
  2558. }
  2559. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2560. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2561. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2562. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2563. string names = "";
  2564. foreach (string clientName in nameArray)
  2565. {
  2566. names += clientName + ",";
  2567. }
  2568. if (!string.IsNullOrWhiteSpace(names))
  2569. {
  2570. string str = "--";
  2571. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2572. if (!string.IsNullOrEmpty(translateResult))
  2573. {
  2574. str = translateResult;
  2575. str = _airTicketResRep.Processing(str);
  2576. }
  2577. table.Range.Bookmarks["ClientName"].Text = str;
  2578. }
  2579. else
  2580. {
  2581. table.Range.Bookmarks["ClientName"].Text = "--";
  2582. }
  2583. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2584. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2585. table.Range.Bookmarks["JointTicket"].Text = "--";
  2586. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2587. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2588. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2589. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2590. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2591. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2592. #endregion
  2593. #region 循环数据处理
  2594. List<AirInfo> airs = new List<AirInfo>();
  2595. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2596. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2597. for (int i = 0; i < FlightsCode.Length; i++)
  2598. {
  2599. AirInfo air = new AirInfo();
  2600. string[] tempstr = DayArray[i]
  2601. .Replace("\r\n", string.Empty)
  2602. .Replace("\\r\\n", string.Empty)
  2603. .TrimStart().TrimEnd()
  2604. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2605. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2606. string starCity = "";
  2607. if (star_Three != null)
  2608. {
  2609. string str2 = "--";
  2610. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2611. if (!string.IsNullOrEmpty(translateResult2))
  2612. {
  2613. str2 = translateResult2;
  2614. str2 = _airTicketResRep.Processing(str2);
  2615. }
  2616. starCity = str2;
  2617. }
  2618. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2619. string EndCity = "";
  2620. if (End_Three != null)
  2621. {
  2622. string str1 = "--";
  2623. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2624. if (!string.IsNullOrEmpty(translateResult1))
  2625. {
  2626. str1 = translateResult1;
  2627. str1 = _airTicketResRep.Processing(str1);
  2628. }
  2629. EndCity = str1;
  2630. }
  2631. air.Destination = starCity + "/" + EndCity;
  2632. air.Flight = FlightsCode[i];
  2633. string str = "--";
  2634. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2635. if (!string.IsNullOrEmpty(translateResult))
  2636. {
  2637. str = translateResult;
  2638. str = _airTicketResRep.Processing(str);
  2639. }
  2640. air.SeatingClass = str;
  2641. string dateTime = tempstr[2];
  2642. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2643. air.FlightDate = DateTemp;
  2644. air.DepartureTime = tempstr[5];
  2645. air.LandingTime = tempstr[6];
  2646. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2647. air.TicketStatus = "--";
  2648. air.Luggage = "--";
  2649. air.DepartureTerminal = "--";
  2650. air.LandingTerminal = "--";
  2651. airs.Add(air);
  2652. }
  2653. int row = 13;
  2654. for (int i = 0; i < airs.Count; i++)
  2655. {
  2656. if (airs.Count > 2)
  2657. {
  2658. for (int j = 0; j < airs.Count - 2; j++)
  2659. {
  2660. var CopyRow = table.Rows[12].Clone(true);
  2661. table.Rows.Add(CopyRow);
  2662. }
  2663. }
  2664. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2665. int index = 0;
  2666. foreach (PropertyInfo property in properties)
  2667. {
  2668. string value = property.GetValue(airs[i]).ToString();
  2669. Cell ishcel0 = table.Rows[row].Cells[index];
  2670. Paragraph p = new Paragraph(doc);
  2671. string s = value;
  2672. p.AppendChild(new Run(doc, s));
  2673. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2674. ishcel0.AppendChild(p);
  2675. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2676. //ishcel0.CellFormat.VerticalAlignment=
  2677. index++;
  2678. }
  2679. row++;
  2680. }
  2681. #endregion
  2682. Paragraph lastParagraph = new Paragraph(doc);
  2683. //第一个表格末尾加段落
  2684. table.ParentNode.InsertAfter(lastParagraph, table);
  2685. //复制第一个表格
  2686. Table cloneTable = (Table)table.Clone(true);
  2687. //在文档末尾段落后面加入复制的表格
  2688. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2689. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2690. {
  2691. int rownewsIndex = 13;
  2692. for (int i = 0; i < 2; i++)
  2693. {
  2694. var CopyRow = table.Rows[12].Clone(true);
  2695. table.Rows.RemoveAt(13);
  2696. table.Rows.Add(CopyRow);
  2697. rownewsIndex++;
  2698. }
  2699. }
  2700. else
  2701. {
  2702. table.Rows.RemoveAt(12);
  2703. }
  2704. cloneTable.Rows.RemoveAt(12);
  2705. }
  2706. if (_AirTicketReservations.Count != 0)
  2707. {
  2708. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2709. if (FlightsCode.Length != 0)
  2710. {
  2711. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2712. if (_AirCompany != null)
  2713. {
  2714. string str = "--";
  2715. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2716. if (!string.IsNullOrEmpty(translateResult))
  2717. {
  2718. str = translateResult;
  2719. str = _airTicketResRep.Processing(str);
  2720. }
  2721. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2722. }
  2723. else
  2724. {
  2725. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2726. }
  2727. }
  2728. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2729. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2730. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2731. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2732. string names = "";
  2733. foreach (string clientName in nameArray)
  2734. {
  2735. names += clientName + ",";
  2736. }
  2737. if (!string.IsNullOrWhiteSpace(names))
  2738. {
  2739. string str = "--";
  2740. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2741. if (!string.IsNullOrEmpty(translateResult))
  2742. {
  2743. str = translateResult;
  2744. str = _airTicketResRep.Processing(str);
  2745. }
  2746. table.Range.Bookmarks["ClientName"].Text = str;
  2747. }
  2748. else
  2749. {
  2750. table.Range.Bookmarks["ClientName"].Text = "--";
  2751. }
  2752. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2753. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2754. table.Range.Bookmarks["JointTicket"].Text = "--";
  2755. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2756. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2757. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2758. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2759. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2760. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2761. }
  2762. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2763. //保存合并后的文档
  2764. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2765. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2766. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2767. return Ok(JsonView(true, "成功!", rst));
  2768. }
  2769. }
  2770. }
  2771. catch (Exception ex)
  2772. {
  2773. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2774. throw;
  2775. }
  2776. }
  2777. #endregion
  2778. #region 团组增减款项 --> 其他款项
  2779. /// <summary>
  2780. /// 团组增减款项下拉框绑定
  2781. /// </summary>
  2782. /// <param name="dto"></param>
  2783. /// <returns></returns>
  2784. [HttpPost]
  2785. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2786. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2787. {
  2788. #region 参数验证
  2789. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2790. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2791. #endregion
  2792. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2793. }
  2794. /// <summary>
  2795. /// 根据团组Id查询团组增减款项
  2796. /// </summary>
  2797. /// <param name="dto"></param>
  2798. /// <returns></returns>
  2799. [HttpPost]
  2800. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2801. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2802. {
  2803. #region 参数验证
  2804. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2805. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2806. #endregion
  2807. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2808. }
  2809. /// <summary>
  2810. /// 团组增减款项操作(Status:1.新增,2.修改)
  2811. /// </summary>
  2812. /// <param name="dto"></param>
  2813. /// <returns></returns>
  2814. [HttpPost]
  2815. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2816. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2817. {
  2818. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2819. if (groupData.Code != 200)
  2820. {
  2821. return Ok(JsonView(false, groupData.Msg));
  2822. }
  2823. #region 应用推送
  2824. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2825. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2826. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2827. #endregion
  2828. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2829. }
  2830. /// <summary>
  2831. /// 团组增减款项操作 删除
  2832. /// </summary>
  2833. /// <param name="dto"></param>
  2834. /// <returns></returns>
  2835. [HttpPost]
  2836. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2837. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2838. {
  2839. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2840. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2841. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2842. if (res.Code == 0)
  2843. {
  2844. return Ok(JsonView(true, "删除成功!"));
  2845. }
  2846. return Ok(JsonView(false, "删除失败!"));
  2847. }
  2848. /// <summary>
  2849. /// 根据团组增减款项Id查询
  2850. /// </summary>
  2851. /// <param name="dto"></param>
  2852. /// <returns></returns>
  2853. [HttpPost]
  2854. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2855. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2856. {
  2857. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2858. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2859. }
  2860. /// <summary>
  2861. /// 查询供应商名称
  2862. /// </summary>
  2863. /// <param name="dto"></param>
  2864. /// <returns></returns>
  2865. [HttpPost]
  2866. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2867. {
  2868. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2869. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2870. ?? new List<Grp_DecreasePayments>();
  2871. dbResult = dbResult.Distinct(new
  2872. ProductComparer()).ToList();
  2873. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2874. {
  2875. x.Id,
  2876. x.SupplierAddress,
  2877. x.SupplierArea,
  2878. x.SupplierContact,
  2879. x.SupplierContactNumber,
  2880. x.SupplierEmail,
  2881. x.SupplierName,
  2882. x.SupplierSocialAccount,
  2883. x.SupplierTypeId,
  2884. }).ToList());
  2885. return Ok(jw);
  2886. }
  2887. #endregion
  2888. #region 文件上传、删除
  2889. /// <summary>
  2890. /// region 文件上传 可以带参数
  2891. /// </summary>
  2892. /// <param name="file"></param>
  2893. /// <returns></returns>
  2894. [HttpPost]
  2895. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2896. public async Task<IActionResult> UploadProject(IFormFile file)
  2897. {
  2898. try
  2899. {
  2900. var TypeName = Request.Headers["TypeName"].ToString();
  2901. if (file != null)
  2902. {
  2903. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2904. //文件名称
  2905. string projectFileName = file.FileName;
  2906. //上传的文件的路径
  2907. string filePath = "";
  2908. if (TypeName == "A")//A代表团组增减款项
  2909. {
  2910. if (!Directory.Exists(fileDir))
  2911. {
  2912. Directory.CreateDirectory(fileDir);
  2913. }
  2914. //上传的文件的路径
  2915. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2916. }
  2917. else if (TypeName == "B")//B代表商邀相关文件
  2918. {
  2919. if (!Directory.Exists(fileDir))
  2920. {
  2921. Directory.CreateDirectory(fileDir);
  2922. }
  2923. //上传的文件的路径
  2924. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2925. }
  2926. using (FileStream fs = System.IO.File.Create(filePath))
  2927. {
  2928. file.CopyTo(fs);
  2929. fs.Flush();
  2930. }
  2931. return Ok(JsonView(true, "上传成功!", projectFileName));
  2932. }
  2933. else
  2934. {
  2935. return Ok(JsonView(false, "上传失败!"));
  2936. }
  2937. }
  2938. catch (Exception ex)
  2939. {
  2940. return Ok(JsonView(false, "程序错误!"));
  2941. throw;
  2942. }
  2943. }
  2944. /// <summary>
  2945. /// 删除指定文件
  2946. /// </summary>
  2947. /// <param name="dto"></param>
  2948. /// <returns></returns>
  2949. [HttpPost]
  2950. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2951. public async Task<IActionResult> DelFile(DelFileDto dto)
  2952. {
  2953. try
  2954. {
  2955. var TypeName = Request.Headers["TypeName"].ToString();
  2956. string filePath = "";
  2957. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2958. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2959. int id = 0;
  2960. if (TypeName == "A")
  2961. {
  2962. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2963. // 删除该文件
  2964. System.IO.File.Delete(filePath);
  2965. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2966. }
  2967. else if (TypeName == "B")
  2968. {
  2969. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2970. // 删除该文件
  2971. System.IO.File.Delete(filePath);
  2972. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2973. }
  2974. if (id != 0)
  2975. {
  2976. return Ok(JsonView(true, "成功!"));
  2977. }
  2978. else
  2979. {
  2980. return Ok(JsonView(false, "失败!"));
  2981. }
  2982. }
  2983. catch (Exception ex)
  2984. {
  2985. return Ok(JsonView(false, "程序错误!"));
  2986. throw;
  2987. }
  2988. }
  2989. #endregion
  2990. #region 商邀费用录入
  2991. /// <summary>
  2992. /// 根据团组Id查询商邀费用列表
  2993. /// </summary>
  2994. /// <param name="dto"></param>
  2995. /// <returns></returns>
  2996. [HttpPost]
  2997. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2998. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2999. {
  3000. try
  3001. {
  3002. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3003. if (groupData.Code != 0)
  3004. {
  3005. return Ok(JsonView(false, groupData.Msg));
  3006. }
  3007. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3008. }
  3009. catch (Exception ex)
  3010. {
  3011. return Ok(JsonView(false, "程序错误!"));
  3012. throw;
  3013. }
  3014. }
  3015. //
  3016. /// <summary>
  3017. /// 商邀费用 Info Page 基础数据源
  3018. /// </summary>
  3019. /// <param name="dto"></param>
  3020. /// <returns></returns>
  3021. [HttpPost]
  3022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3023. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3024. {
  3025. try
  3026. {
  3027. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3028. if (groupData.Code != 0)
  3029. {
  3030. return Ok(JsonView(false, groupData.Msg));
  3031. }
  3032. return Ok(JsonView(true, "操作成功", groupData.Data));
  3033. }
  3034. catch (Exception ex)
  3035. {
  3036. return Ok(JsonView(false, ex.Message));
  3037. throw;
  3038. }
  3039. }
  3040. /// <summary>
  3041. /// 根据商邀费用ID查询C表和商邀费用数据
  3042. /// </summary>
  3043. /// <param name="dto"></param>
  3044. /// <returns></returns>
  3045. [HttpPost]
  3046. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3047. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3048. {
  3049. try
  3050. {
  3051. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3052. if (groupData.Code != 0)
  3053. {
  3054. return Ok(JsonView(false, groupData.Msg));
  3055. }
  3056. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3057. }
  3058. catch (Exception ex)
  3059. {
  3060. return Ok(JsonView(false, ex.Message));
  3061. throw;
  3062. }
  3063. }
  3064. /// <summary>
  3065. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3066. /// </summary>
  3067. /// <param name="dto"></param>
  3068. /// <returns></returns>
  3069. [HttpPost]
  3070. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3071. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3072. {
  3073. try
  3074. {
  3075. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3076. if (groupData.Code != 0)
  3077. {
  3078. return Ok(JsonView(false, groupData.Msg));
  3079. }
  3080. #region 应用推送
  3081. try
  3082. {
  3083. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3084. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3085. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3086. }
  3087. catch (Exception ex)
  3088. {
  3089. }
  3090. #endregion
  3091. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3092. }
  3093. catch (Exception ex)
  3094. {
  3095. return Ok(JsonView(false, "程序错误!"));
  3096. throw;
  3097. }
  3098. }
  3099. /// <summary>
  3100. /// 商邀删除
  3101. /// </summary>
  3102. /// <param name="dto"></param>
  3103. /// <returns></returns>
  3104. [HttpPost]
  3105. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3106. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3107. {
  3108. try
  3109. {
  3110. _sqlSugar.BeginTran();
  3111. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3112. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3113. {
  3114. IsDel = 1,
  3115. DeleteUserId = dto.DeleteUserId,
  3116. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3117. })
  3118. .Where(it => it.Id == dto.Id)
  3119. .ExecuteCommand();
  3120. if (res1 > 0)
  3121. {
  3122. int _diId = 0;
  3123. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3124. if (_ioaInfo != null)
  3125. {
  3126. _diId = _ioaInfo.DiId;
  3127. }
  3128. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3129. .SetColumns(a => new Grp_CreditCardPayment()
  3130. {
  3131. IsDel = 1,
  3132. DeleteUserId = dto.DeleteUserId,
  3133. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3134. })
  3135. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3136. .ExecuteCommand();
  3137. if (res2 > 0)
  3138. {
  3139. _sqlSugar.CommitTran();
  3140. return Ok(JsonView(true, "删除成功!"));
  3141. }
  3142. }
  3143. _sqlSugar.RollbackTran();
  3144. return Ok(JsonView(false, "删除失败"));
  3145. }
  3146. catch (Exception ex)
  3147. {
  3148. _sqlSugar.RollbackTran();
  3149. return Ok(JsonView(false, ex.Message));
  3150. }
  3151. }
  3152. /// <summary>
  3153. /// 团组模块文件上传
  3154. /// </summary>
  3155. /// <param name="dto"></param>
  3156. /// <returns></returns>
  3157. [HttpPost]
  3158. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3159. {
  3160. var jw = JsonView(false);
  3161. long M = 1024 * 1024;
  3162. if (dto.Files == null || dto.Files.Count == 0)
  3163. {
  3164. jw.Msg = "无文件信息!";
  3165. return Ok(jw);
  3166. }
  3167. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3168. {
  3169. jw.Msg = "文件大小超过20M!";
  3170. return Ok(jw);
  3171. }
  3172. //var nameSp = dto.File.FileName.Split(".");
  3173. //if (nameSp.Length < 2)
  3174. //{
  3175. // jw.Msg = "拓展名称有误!";
  3176. // return Ok(jw);
  3177. //}
  3178. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3179. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3180. //{
  3181. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3182. // return Ok(jw);
  3183. //}
  3184. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3185. if (Ctable == null)
  3186. {
  3187. jw.Msg = "Ctable指向有误!";
  3188. return Ok(jw);
  3189. }
  3190. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3191. if (groupInfo == null)
  3192. {
  3193. jw.Msg = "团组信息不存在!";
  3194. return Ok(jw);
  3195. }
  3196. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3197. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3198. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3199. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3200. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3201. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3202. try
  3203. {
  3204. if (!Directory.Exists(fileBase))
  3205. {
  3206. Directory.CreateDirectory(fileBase);
  3207. }
  3208. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3209. foreach (var fileStream in dto.Files)
  3210. {
  3211. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3212. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3213. {
  3214. Cid = dto.Cid,
  3215. CreateTime = DateTime.Now,
  3216. CreateUserId = dto.Userid,
  3217. Ctable = dto.Ctable,
  3218. Diid = dto.Diid,
  3219. IsDel = 0,
  3220. FilePath = saveFilePath,
  3221. FileName = fileStream.FileName
  3222. };
  3223. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3224. {
  3225. fileStream.CopyTo(fs);
  3226. fs.Flush();
  3227. }
  3228. saveArr.Add(file);
  3229. }
  3230. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3231. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3232. jw = JsonView(true, "保存成功!", new
  3233. {
  3234. count = addResult,
  3235. filesName = saveArr.Select(x => x.FileName)
  3236. }) ;
  3237. }
  3238. catch (Exception ex)
  3239. {
  3240. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3241. {
  3242. count = 0,
  3243. filesName = new string[0],
  3244. }) ;
  3245. }
  3246. return Ok(jw);
  3247. }
  3248. /// <summary>
  3249. /// 查询各模块已保存文件
  3250. /// </summary>
  3251. /// <param name="dto"></param>
  3252. /// <returns></returns>
  3253. [HttpPost]
  3254. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3255. {
  3256. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3257. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3258. .WhereIF(dto.UserId != -1,x=>x.CreateUserId == dto.UserId)
  3259. .ToList();
  3260. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3261. {
  3262. x.FileName,
  3263. x.Id
  3264. })));
  3265. }
  3266. /// <summary>
  3267. /// 下载该团组下的所有文件
  3268. /// </summary>
  3269. /// <param name="dto"></param>
  3270. /// <returns></returns>
  3271. [HttpPost]
  3272. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3273. {
  3274. var jw = JsonView(false);
  3275. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3276. if (groupInfo == null)
  3277. {
  3278. jw.Msg = "团组信息不存在!";
  3279. return Ok(jw);
  3280. }
  3281. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3282. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3283. foreach (var item in dbQuery)
  3284. {
  3285. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3286. {
  3287. byte[] bytes = new byte[fileStream.Length];
  3288. fileStream.Read(bytes, 0, bytes.Length);
  3289. fileStream.Close();
  3290. Stream stream = new MemoryStream(bytes);
  3291. Zips.Add(item.FileName, stream);
  3292. }
  3293. }
  3294. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3295. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3296. if (Zips.Count > 0)
  3297. {
  3298. IOOperatorHelper io = new IOOperatorHelper();
  3299. var byts = io.ConvertZipStream(Zips);
  3300. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3301. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3302. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3303. }
  3304. else
  3305. {
  3306. jw.Msg = "暂无生成文件!";
  3307. }
  3308. return Ok(jw);
  3309. }
  3310. /// <summary>
  3311. /// 删除该团组下的指定文件
  3312. /// </summary>
  3313. /// <param name="dto"></param>
  3314. /// <returns></returns>
  3315. [HttpPost]
  3316. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3317. {
  3318. var jw = JsonView(false);
  3319. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3320. if (sing == null)
  3321. {
  3322. jw.Msg = "暂无";
  3323. return Ok(jw);
  3324. }
  3325. if (System.IO.File.Exists(sing.FilePath))
  3326. {
  3327. try
  3328. {
  3329. System.IO.File.Delete(sing.FilePath);
  3330. }
  3331. catch (Exception ex)
  3332. {
  3333. jw.Msg = "删除失败!" + ex.Message;
  3334. return Ok(jw);
  3335. }
  3336. }
  3337. sing.IsDel = 1;
  3338. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3339. sing.DeleteUserId = dto.UserId;
  3340. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3341. jw = JsonView(true, "删除成功!");
  3342. return Ok(jw);
  3343. }
  3344. #endregion
  3345. #region 团组英文资料
  3346. /// <summary>
  3347. /// 查询团组英文所有资料
  3348. /// </summary>
  3349. /// <param name="dto"></param>
  3350. /// <returns></returns>
  3351. [HttpPost]
  3352. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3353. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3354. {
  3355. try
  3356. {
  3357. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3358. if (groupData.Code != 0)
  3359. {
  3360. return Ok(JsonView(false, groupData.Msg));
  3361. }
  3362. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3363. }
  3364. catch (Exception ex)
  3365. {
  3366. return Ok(JsonView(false, "程序错误!"));
  3367. throw;
  3368. }
  3369. }
  3370. /// <summary>
  3371. /// 团组英文资料操作(Status:1.新增,2.修改)
  3372. /// </summary>
  3373. /// <param name="dto"></param>
  3374. /// <returns></returns>
  3375. [HttpPost]
  3376. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3377. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3378. {
  3379. try
  3380. {
  3381. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3382. if (groupData.Code != 0)
  3383. {
  3384. return Ok(JsonView(false, groupData.Msg));
  3385. }
  3386. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3387. }
  3388. catch (Exception ex)
  3389. {
  3390. return Ok(JsonView(false, "程序错误!"));
  3391. throw;
  3392. }
  3393. }
  3394. /// <summary>
  3395. /// 团组英文资料Id查询数据
  3396. /// </summary>
  3397. /// <param name="dto"></param>
  3398. /// <returns></returns>
  3399. [HttpPost]
  3400. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3401. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3402. {
  3403. try
  3404. {
  3405. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3406. if (_DelegationEnData != null)
  3407. {
  3408. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3409. }
  3410. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3411. }
  3412. catch (Exception ex)
  3413. {
  3414. return Ok(JsonView(false, "程序错误!"));
  3415. throw;
  3416. }
  3417. }
  3418. /// <summary>
  3419. /// 团组英文资料删除
  3420. /// </summary>
  3421. /// <param name="dto"></param>
  3422. /// <returns></returns>
  3423. [HttpPost]
  3424. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3425. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3426. {
  3427. try
  3428. {
  3429. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3430. if (!res)
  3431. {
  3432. return Ok(JsonView(false, "删除失败"));
  3433. }
  3434. return Ok(JsonView(true, "删除成功!"));
  3435. }
  3436. catch (Exception ex)
  3437. {
  3438. return Ok(JsonView(false, "程序错误!"));
  3439. throw;
  3440. }
  3441. }
  3442. #endregion
  3443. #region 导出邀请函
  3444. /// <summary>
  3445. /// 导出邀请函页面初始化
  3446. /// </summary>
  3447. /// <param name="dto"></param>
  3448. /// <returns></returns>
  3449. [HttpPost]
  3450. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3451. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3452. {
  3453. try
  3454. {
  3455. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3456. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3457. if (dto.DiId == 0)
  3458. {
  3459. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3460. }
  3461. else
  3462. {
  3463. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3464. }
  3465. return Ok(JsonView(true, "查询成功!", new
  3466. {
  3467. deleClient = crm_Deles,
  3468. delegations = grp_Delegations
  3469. }));
  3470. }
  3471. catch (Exception ex)
  3472. {
  3473. return Ok(JsonView(false, "程序错误!"));
  3474. throw;
  3475. }
  3476. }
  3477. /// <summary>
  3478. /// 导出邀请函
  3479. /// </summary>
  3480. /// <param name="dto"></param>
  3481. /// <returns></returns>
  3482. [HttpPost]
  3483. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3484. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3485. {
  3486. #region 参数验证
  3487. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3488. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3489. #endregion
  3490. try
  3491. {
  3492. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3493. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3494. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3495. From Grp_TourClientList tcl
  3496. Left Join
  3497. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3498. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3499. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3500. From Crm_DeleClient dc
  3501. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3502. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3503. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3504. Where dc.IsDel = 0) temp
  3505. On temp.DcId =tcl.ClientId
  3506. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3507. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3508. List<string> texts = new List<string>();
  3509. if (datas.Count != 0)
  3510. {
  3511. foreach (TourClientListDetailsView item in datas)
  3512. {
  3513. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3514. {
  3515. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3516. }
  3517. else
  3518. {
  3519. string name = item.LastName + item.FirstName;
  3520. texts.Add(name);
  3521. }
  3522. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3523. {
  3524. if (!transDic.ContainsKey(item.Job))
  3525. {
  3526. texts.Add(item.Job);
  3527. }
  3528. }
  3529. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3530. {
  3531. texts.Add(item.CompanyFullName);
  3532. }
  3533. }
  3534. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3535. if (transData.Count > 0)
  3536. {
  3537. foreach (TranslateResult item in transData)
  3538. {
  3539. if (!transDic.ContainsKey(item.Query))
  3540. {
  3541. transDic.Add(item.Query, item.Translation);
  3542. }
  3543. }
  3544. }
  3545. List<GuestList> list = new List<GuestList>();
  3546. foreach (TourClientListDetailsView dele in datas)
  3547. {
  3548. GuestList guestList = new GuestList();
  3549. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3550. {
  3551. guestList.Name = dele.Pinyin;
  3552. }
  3553. else
  3554. {
  3555. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3556. guestList.Name = Name;
  3557. }
  3558. if (dele.Sex == 0)
  3559. {
  3560. guestList.Sex = "Male";
  3561. }
  3562. else if (dele.Sex == 1)
  3563. {
  3564. guestList.Sex = "Female";
  3565. }
  3566. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3567. if (!string.IsNullOrEmpty(dele.Job))
  3568. {
  3569. guestList.Job = dele.Job;
  3570. }
  3571. list.Add(guestList);
  3572. }
  3573. //载入模板
  3574. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3575. DocumentBuilder builder = new DocumentBuilder(doc);
  3576. //获取word里所有表格
  3577. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3578. //获取所填表格的序数
  3579. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3580. var rowStart = tableOne.Rows[0]; //获取第1行
  3581. //循环赋值
  3582. for (int i = 0; i < list.Count; i++)
  3583. {
  3584. builder.MoveToCell(0, i + 1, 0, 0);
  3585. builder.Write(list[i].Name.ToString());
  3586. builder.MoveToCell(0, i + 1, 1, 0);
  3587. builder.Write(list[i].Sex.ToString());
  3588. builder.MoveToCell(0, i + 1, 2, 0);
  3589. builder.Write(list[i].DOB.ToString());
  3590. builder.MoveToCell(0, i + 1, 3, 0);
  3591. builder.Write(list[i].Job.ToString());
  3592. }
  3593. //删除多余行
  3594. while (tableOne.Rows.Count > list.Count + 1)
  3595. {
  3596. tableOne.Rows.RemoveAt(list.Count + 1);
  3597. }
  3598. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3599. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3600. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3601. doc.Save(filePath);
  3602. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3603. return Ok(JsonView(true, "操作成功!", Url));
  3604. }
  3605. else
  3606. {
  3607. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3608. }
  3609. }
  3610. catch (Exception ex)
  3611. {
  3612. return Ok(JsonView(false, ex.Message));
  3613. throw;
  3614. }
  3615. }
  3616. #endregion
  3617. #region 团组经理模块 出入境费用
  3618. ///// <summary>
  3619. ///// 团组模块 - 出入境费用
  3620. ///// </summary>
  3621. ///// <returns></returns>
  3622. //[HttpPost]
  3623. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3624. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3625. //{
  3626. // try
  3627. // {
  3628. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3629. // if (data.Code != 0)
  3630. // {
  3631. // return Ok(JsonView(false, data.Msg));
  3632. // }
  3633. // return Ok(JsonView(true, "查询成功!"));
  3634. // }
  3635. // catch (Exception ex)
  3636. // {
  3637. // return Ok(JsonView(false, ex.Message));
  3638. // throw;
  3639. // }
  3640. //}
  3641. /// <summary>
  3642. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3643. /// </summary>
  3644. /// <returns></returns>
  3645. [HttpPost]
  3646. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3647. public async Task<IActionResult> SetDayAndCostAreaChange()
  3648. {
  3649. try
  3650. {
  3651. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3652. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3653. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3654. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3655. foreach (var item in unite) //处理交集数据
  3656. {
  3657. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3658. }
  3659. foreach (var item in merge) //处理差集数据
  3660. {
  3661. int nationalTravelFeeId = 0;
  3662. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3663. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3664. else
  3665. {
  3666. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3667. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3668. }
  3669. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3670. }
  3671. //只更新dayAndCost 的 nationalTravelFeeId;
  3672. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3673. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3674. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3675. }
  3676. catch (Exception ex)
  3677. {
  3678. return Ok(JsonView(false, ex.Message));
  3679. throw;
  3680. }
  3681. }
  3682. /// <summary>
  3683. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3684. /// </summary>
  3685. /// <returns></returns>
  3686. [HttpPost]
  3687. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3688. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3689. {
  3690. try
  3691. {
  3692. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3693. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3694. //SetDataInfoView
  3695. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3696. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3697. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3698. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3699. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3700. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3701. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3702. //默认币种显示
  3703. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3704. {
  3705. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3706. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3707. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3708. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3709. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3710. };
  3711. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3712. if (_currencyRate.Count > 0)
  3713. {
  3714. foreach (var item in _currencyInfos)
  3715. {
  3716. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3717. if (rateInfo != null)
  3718. {
  3719. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3720. rate1 *= 1.035M;
  3721. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3722. }
  3723. }
  3724. }
  3725. return Ok(JsonView(true, "查询成功!", new
  3726. {
  3727. GroupNameData = groupNameData.Data,
  3728. CurrencyData = _CurrencyData,
  3729. WordTypeData = _WordTypeData,
  3730. ExcelTypeData = _ExcelTypeData,
  3731. CurrencyInit = _currencyInfos
  3732. }));
  3733. }
  3734. catch (Exception ex)
  3735. {
  3736. return Ok(JsonView(false, ex.Message));
  3737. throw;
  3738. }
  3739. }
  3740. /// <summary>
  3741. /// 团组模块 - 出入境费用
  3742. /// 实时汇率 tips
  3743. /// 签证费用 tips
  3744. /// </summary>
  3745. /// <returns></returns>
  3746. [HttpPost]
  3747. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3748. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3749. {
  3750. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3751. //默认币种显示
  3752. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3753. {
  3754. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3755. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3756. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3757. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3758. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3759. };
  3760. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3761. List<dynamic> reteInfos = new List<dynamic>();
  3762. if (_currencyRate.Count > 0)
  3763. {
  3764. foreach (var item in _currencyInfos)
  3765. {
  3766. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3767. if (rateInfo != null)
  3768. {
  3769. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3770. decimal rate1 = item.Rate;
  3771. rate1 *= 1.03M;
  3772. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3773. reteInfos.Add(new
  3774. {
  3775. currCode = item.CurrencyCode,
  3776. currName = item.CurrencyName,
  3777. rate = rate2,
  3778. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3779. });
  3780. }
  3781. }
  3782. }
  3783. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3784. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3785. return Ok(JsonView(true, "查询成功!", new
  3786. {
  3787. //GroupNameData = groupNameData.Data,
  3788. visaData = visaData.Data,
  3789. airData = airData.Data,
  3790. reteInfos = reteInfos
  3791. }));
  3792. }
  3793. /// <summary>
  3794. /// 团组模块 - 出入境费用 - Info
  3795. /// </summary>
  3796. /// <returns></returns>
  3797. [HttpPost]
  3798. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3799. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3800. {
  3801. try
  3802. {
  3803. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3804. if (data.Code != 0)
  3805. {
  3806. return Ok(JsonView(false, data.Msg));
  3807. }
  3808. return Ok(JsonView(true, "查询成功!", data.Data));
  3809. }
  3810. catch (Exception ex)
  3811. {
  3812. return Ok(JsonView(false, ex.Message));
  3813. }
  3814. }
  3815. /// <summary>
  3816. /// 团组模块 - 出入境费用 - Add And Update
  3817. /// </summary>
  3818. /// <returns></returns>
  3819. [HttpPost]
  3820. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3821. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3822. {
  3823. try
  3824. {
  3825. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3826. if (data.Code != 0)
  3827. {
  3828. return Ok(JsonView(false, data.Msg));
  3829. }
  3830. //生成默认文件pdf并且通知人员
  3831. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3832. {
  3833. DiId = dto.DiId,
  3834. ExportType = 1,
  3835. SubTypeId = 1005
  3836. }, "pdf");
  3837. //发送通知
  3838. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3839. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3840. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3841. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3842. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3843. return Ok(JsonView(true, data.Msg, data.Data));
  3844. }
  3845. catch (Exception ex)
  3846. {
  3847. return Ok(JsonView(false, ex.Message));
  3848. }
  3849. }
  3850. /// <summary>
  3851. /// 团组模块 - 出入境费用 - Confirm 费用
  3852. /// </summary>
  3853. /// <returns></returns>
  3854. [HttpPost]
  3855. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3856. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3857. {
  3858. //TODO:测试完毕需把对应的用户ID更改
  3859. //1、数据表添加字段
  3860. //2、更改字段接口()
  3861. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3862. //3、确认成功 给财务发送消息
  3863. if (_view.Code == 200)
  3864. {
  3865. if (dto.Type == 1)
  3866. {
  3867. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  3868. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  3869. }
  3870. }
  3871. return Ok(_view);
  3872. }
  3873. /// <summary>
  3874. /// 团组模块 - 出入境费用 - File downlaod
  3875. /// </summary>
  3876. /// <param name="dto"></param>
  3877. /// <returns></returns>
  3878. [HttpPost]
  3879. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3880. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3881. {
  3882. try
  3883. {
  3884. if (dto.DiId < 1)
  3885. {
  3886. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3887. }
  3888. if (dto.ExportType < 1)
  3889. {
  3890. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3891. }
  3892. if (dto.SubTypeId < 1)
  3893. {
  3894. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3895. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3896. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3897. 3 团组成员名单 1 团组成员名单"));
  3898. }
  3899. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3900. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3901. if (_EnterExitCosts == null)
  3902. {
  3903. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3904. }
  3905. //数据源
  3906. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3907. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3908. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3909. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3910. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3911. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3912. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3913. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3914. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3915. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3916. .Select((tcl, dc, cc) => new
  3917. {
  3918. Name = dc.LastName + dc.FirstName,
  3919. Sex = dc.Sex,
  3920. Birthday = dc.BirthDay,
  3921. Company = cc.CompanyFullName,
  3922. Job = dc.Job
  3923. })
  3924. .ToList();
  3925. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3926. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3927. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3928. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3929. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3930. if (dto.ExportType == 1) //明细表
  3931. {
  3932. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3933. {
  3934. //获取模板
  3935. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3936. //载入模板
  3937. Document doc = new Document(tempPath);
  3938. DocumentBuilder builder = new DocumentBuilder(doc);
  3939. //利用键值对存放数据
  3940. Dictionary<string, string> dic = new Dictionary<string, string>();
  3941. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3942. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3943. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3944. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3945. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3946. string row1_1 = "";
  3947. if (_EnterExitCosts.Visa > 0)
  3948. {
  3949. //insidePayTotal += _EnterExitCosts.Visa;
  3950. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3951. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3952. {
  3953. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3954. }
  3955. }
  3956. string row1_2 = "";
  3957. if (_EnterExitCosts.YiMiao > 0)
  3958. {
  3959. //insidePayTotal += _EnterExitCosts.YiMiao;
  3960. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3961. }
  3962. if (_EnterExitCosts.HeSuan > 0)
  3963. {
  3964. //insidePayTotal += _EnterExitCosts.HeSuan;
  3965. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  3966. }
  3967. if (_EnterExitCosts.Service > 0)
  3968. {
  3969. //insidePayTotal += _EnterExitCosts.Service;
  3970. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  3971. }
  3972. string row1_3 = "";
  3973. if (_EnterExitCosts.Safe > 0)
  3974. {
  3975. //insidePayTotal += _EnterExitCosts.Safe;
  3976. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  3977. }
  3978. if (_EnterExitCosts.Ticket > 0)
  3979. {
  3980. //insidePayTotal += _EnterExitCosts.Ticket;
  3981. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  3982. }
  3983. string row1 = "";
  3984. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  3985. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  3986. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  3987. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  3988. dic.Add("Row1Str", row1);
  3989. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  3990. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  3991. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3992. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  3993. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3994. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  3995. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  3996. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  3997. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  3998. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  3999. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  4000. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  4001. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4002. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4003. #region 填充word模板书签内容
  4004. foreach (var key in dic.Keys)
  4005. {
  4006. builder.MoveToBookmark(key);
  4007. builder.Write(dic[key]);
  4008. }
  4009. #endregion
  4010. #region 填充word表格内容
  4011. ////获读取指定表格方法二
  4012. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4013. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4014. for (int i = 0; i < dac1.Count; i++)
  4015. {
  4016. Grp_DayAndCost dac = dac1[i];
  4017. if (dac == null) continue;
  4018. builder.MoveToCell(0, i, 0, 0);
  4019. builder.Write("第" + dac.Days.ToString() + "晚:");
  4020. builder.MoveToCell(0, i, 1, 0);
  4021. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4022. //builder.Write(dac.Place == null ? "" : dac.Place);
  4023. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4024. builder.MoveToCell(0, i, 2, 0);
  4025. builder.Write("费用标准:");
  4026. string curr = "";
  4027. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4028. if (currData != null)
  4029. {
  4030. curr = currData.Name;
  4031. }
  4032. builder.MoveToCell(0, i, 3, 0);
  4033. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4034. builder.MoveToCell(0, i, 4, 0);
  4035. builder.Write("费用小计:");
  4036. builder.MoveToCell(0, i, 5, 0);
  4037. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4038. }
  4039. //删除多余行
  4040. while (table1.Rows.Count > dac1.Count)
  4041. {
  4042. table1.Rows.RemoveAt(dac1.Count);
  4043. }
  4044. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4045. for (int i = 0; i < dac2.Count; i++)
  4046. {
  4047. Grp_DayAndCost dac = dac2[i];
  4048. if (dac == null) continue;
  4049. builder.MoveToCell(1, i, 0, 0);
  4050. builder.Write("第" + dac.Days.ToString() + "天:");
  4051. builder.MoveToCell(1, i, 1, 0);
  4052. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4053. builder.MoveToCell(1, i, 2, 0);
  4054. builder.Write("费用标准:");
  4055. string curr = "";
  4056. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4057. if (currData != null)
  4058. {
  4059. curr = currData.Name;
  4060. }
  4061. builder.MoveToCell(1, i, 3, 0);
  4062. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4063. builder.MoveToCell(1, i, 4, 0);
  4064. builder.Write("费用小计:");
  4065. builder.MoveToCell(1, i, 5, 0);
  4066. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4067. }
  4068. //删除多余行
  4069. while (table2.Rows.Count > dac2.Count)
  4070. {
  4071. table2.Rows.RemoveAt(dac2.Count);
  4072. }
  4073. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4074. for (int i = 0; i < dac3.Count; i++)
  4075. {
  4076. Grp_DayAndCost dac = dac3[i];
  4077. if (dac == null) continue;
  4078. builder.MoveToCell(2, i, 0, 0);
  4079. builder.Write("第" + dac.Days.ToString() + "天:");
  4080. builder.MoveToCell(2, i, 1, 0);
  4081. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4082. builder.MoveToCell(2, i, 2, 0);
  4083. builder.Write("费用标准:");
  4084. string curr = "";
  4085. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4086. if (currData != null)
  4087. {
  4088. curr = currData.Name;
  4089. }
  4090. builder.MoveToCell(2, i, 3, 0);
  4091. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4092. builder.MoveToCell(2, i, 4, 0);
  4093. builder.Write("费用小计:");
  4094. builder.MoveToCell(2, i, 5, 0);
  4095. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4096. }
  4097. //删除多余行
  4098. while (table3.Rows.Count > dac3.Count)
  4099. {
  4100. table3.Rows.RemoveAt(dac3.Count);
  4101. }
  4102. #endregion
  4103. //文件名
  4104. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4105. AsposeHelper.removewatermark_v2180();
  4106. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4107. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4108. return Ok(JsonView(true, "成功", new { Url = url }));
  4109. }
  4110. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4111. {
  4112. //获取模板
  4113. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4114. //载入模板
  4115. Document doc = new Document(tempPath);
  4116. DocumentBuilder builder = new DocumentBuilder(doc);
  4117. Dictionary<string, string> dic = new Dictionary<string, string>();
  4118. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4119. {
  4120. List<string> list = new List<string>();
  4121. try
  4122. {
  4123. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4124. foreach (var item in spilitArr)
  4125. {
  4126. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4127. var depCode = spDotandEmpty[2].Substring(0, 3);
  4128. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4129. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4130. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4131. list.Add(depName);
  4132. list.Add(arrName);
  4133. }
  4134. list = list.Distinct().ToList();
  4135. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4136. }
  4137. catch (Exception)
  4138. {
  4139. dic.Add("ReturnCode", "行程录入不正确!");
  4140. }
  4141. }
  4142. else
  4143. {
  4144. dic.Add("ReturnCode", "未录入行程!");
  4145. }
  4146. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4147. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4148. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4149. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4150. {
  4151. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4152. dic.Add("Day", sp.Days.ToString());
  4153. }
  4154. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4155. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4156. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4157. //dic.Add("Names", Names);
  4158. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4159. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4160. decimal dac1totalPrice = 0.00M;
  4161. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4162. foreach (var dac in dac1)
  4163. {
  4164. if (dac.SubTotal == 0.00M)
  4165. {
  4166. continue;
  4167. }
  4168. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4169. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4170. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4171. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4172. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4173. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4174. builder.Write(currency);//币种
  4175. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4176. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4177. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4178. builder.Write("");//人数
  4179. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4180. builder.Write("");//天数
  4181. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4182. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4183. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4184. decimal rate = 0.00M;
  4185. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4186. builder.Write(rate.ToString("#0.0000"));//汇率
  4187. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4188. decimal rbmPrice = dac.SubTotal;
  4189. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4190. accommodationStartIndex++;
  4191. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4192. }
  4193. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4194. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4195. {
  4196. table1.Rows.RemoveAt(i - 1);
  4197. foodandotherStartIndex--;
  4198. }
  4199. if (dac2.Count == dac3.Count)//国家 币种 金额
  4200. {
  4201. for (int i = 0; i < dac2.Count; i++)
  4202. {
  4203. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4204. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4205. }
  4206. }
  4207. decimal dac2totalPrice = 0.00M;
  4208. foreach (var dac in dac2)
  4209. {
  4210. if (dac.SubTotal == 0)
  4211. {
  4212. continue;
  4213. }
  4214. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4215. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4216. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4217. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4218. builder.Write(currency);//币种
  4219. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4220. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4221. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4222. builder.Write("");//人数
  4223. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4224. builder.Write("");//天数
  4225. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4226. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4227. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4228. decimal rate = 0.00M;
  4229. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4230. builder.Write(rate.ToString("#0.0000"));//汇率
  4231. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4232. decimal rbmPrice = dac.SubTotal;
  4233. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4234. foodandotherStartIndex++;
  4235. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4236. }
  4237. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4238. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4239. {
  4240. table1.Rows.RemoveAt(i - 1);
  4241. }
  4242. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4243. string otherFeeStr = "";
  4244. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4245. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4246. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4247. if (otherFeeStr.Length > 0)
  4248. {
  4249. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4250. otherFeeStr = $"({otherFeeStr})";
  4251. dic.Add("OtherFeeStr", otherFeeStr);
  4252. }
  4253. //总计
  4254. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4255. //国际旅费
  4256. string outsideJJ = "";
  4257. string allPriceJJ = "";
  4258. if (_EnterExitCosts.SumJJC == 1)
  4259. {
  4260. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4261. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4262. }
  4263. string outsideGW = "";
  4264. string allPriceGW = "";
  4265. if (_EnterExitCosts.SumGWC == 1)
  4266. {
  4267. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4268. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4269. }
  4270. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4271. {
  4272. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4273. dic.Add("InTravelPrice", InTravelPriceStr);
  4274. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4275. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4276. }
  4277. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4278. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4279. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4280. foreach (var key in dic.Keys)
  4281. {
  4282. builder.MoveToBookmark(key);
  4283. builder.Write(dic[key]);
  4284. }
  4285. //模板文件名
  4286. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4287. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4288. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4289. return Ok(JsonView(true, "成功", new { Url = url }));
  4290. }
  4291. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4292. {
  4293. //获取模板
  4294. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4295. //载入模板
  4296. WorkbookDesigner designer = new WorkbookDesigner();
  4297. designer.Workbook = new Workbook(tempPath);
  4298. Dictionary<string, string> dic = new Dictionary<string, string>();
  4299. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4300. {
  4301. List<string> list = new List<string>();
  4302. try
  4303. {
  4304. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4305. foreach (var item in spilitArr)
  4306. {
  4307. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4308. var depCode = spDotandEmpty[2].Substring(0, 3);
  4309. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4310. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4311. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4312. list.Add(depName);
  4313. list.Add(arrName);
  4314. }
  4315. list = list.Distinct().ToList();
  4316. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4317. }
  4318. catch (Exception)
  4319. {
  4320. dic.Add("ReturnCode", "行程录入不正确!");
  4321. }
  4322. }
  4323. else
  4324. {
  4325. dic.Add("ReturnCode", "未录入行程!");
  4326. }
  4327. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4328. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4329. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4330. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4331. {
  4332. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4333. dic.Add("Day", sp.Days.ToString());
  4334. }
  4335. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4336. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4337. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4338. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4339. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4340. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4341. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4342. designer.SetDataSource("Name", Names);
  4343. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4344. designer.SetDataSource("Day", dic["Day"] + "天");
  4345. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4346. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4347. int startIndex = 10;
  4348. const int startIndexcopy = 10;
  4349. if (dac2.Count == dac3.Count)//国家 币种 金额
  4350. {
  4351. for (int i = 0; i < dac2.Count; i++)
  4352. {
  4353. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4354. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4355. }
  4356. }
  4357. DataTable dtdac1 = new DataTable();
  4358. List<string> place = new List<string>();
  4359. dtdac1.Columns.AddRange(new DataColumn[] {
  4360. new DataColumn(){ ColumnName = "city"},
  4361. new DataColumn(){ ColumnName = "curr"},
  4362. new DataColumn(){ ColumnName = "criterion"},
  4363. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4364. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4365. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4366. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4367. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4368. });
  4369. DataTable dtdac2 = new DataTable();
  4370. dtdac2.Columns.AddRange(new DataColumn[] {
  4371. new DataColumn(){ ColumnName = "city"},
  4372. new DataColumn(){ ColumnName = "curr"},
  4373. new DataColumn(){ ColumnName = "criterion"},
  4374. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4375. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4376. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4377. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4378. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4379. });
  4380. dtdac1.TableName = "tb1";
  4381. dtdac2.TableName = "tb2";
  4382. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4383. foreach (var item in dac1)
  4384. {
  4385. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4386. if (place.Contains(item.Place))
  4387. {
  4388. continue;
  4389. }
  4390. DataRow row = dtdac1.NewRow();
  4391. row["city"] = item.Place;
  4392. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4393. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4394. row["curr"] = currency;
  4395. row["rate"] = rate.ToString("#0.0000");
  4396. row["criterion"] = item.Cost.ToString("#0.00");
  4397. row["number"] = 1;
  4398. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4399. //row["costRMB"] = rbmPrice;
  4400. dtdac1.Rows.Add(row);
  4401. place.Add(item.Place);
  4402. }
  4403. place = new List<string>();
  4404. foreach (var item in dac2)
  4405. {
  4406. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4407. if (place.Contains(item.Place))
  4408. {
  4409. continue;
  4410. }
  4411. DataRow row = dtdac2.NewRow();
  4412. row["city"] = item.Place;
  4413. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4414. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4415. row["curr"] = currency;
  4416. row["rate"] = rate.ToString("#0.0000");
  4417. row["criterion"] = item.Cost.ToString("#0.00");
  4418. row["number"] = 1;
  4419. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4420. //row["cost"] = item.SubTotal;
  4421. //row["costRMB"] = rbmPrice;
  4422. dtdac2.Rows.Add(row);
  4423. place.Add(item.Place);
  4424. //dac2totalPrice += rbmPrice;
  4425. }
  4426. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4427. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4428. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4429. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4430. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4431. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4432. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4433. string cellStr = $" 5.其他费用(";
  4434. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4435. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4436. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4437. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4438. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4439. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4440. if (cellStr.Length > 8)
  4441. {
  4442. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4443. }
  4444. cellStr += ")";
  4445. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4446. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4447. decimal pxFee = dac4.Sum(it => it.Cost);
  4448. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4449. string celllastStr1 = "";
  4450. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4451. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4452. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4453. celllastStr1 += $",国际旅费 元";
  4454. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4455. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4456. designer.SetDataSource("cell4Str", cell4Str);
  4457. designer.SetDataSource("cellStr", cellStr);
  4458. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4459. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4460. designer.SetDataSource("celllastStr", celllastStr);
  4461. Workbook wb = designer.Workbook;
  4462. var sheet = wb.Worksheets[0];
  4463. //绑定datatable数据集
  4464. designer.SetDataSource(dtdac1);
  4465. designer.SetDataSource(dtdac2);
  4466. designer.Process();
  4467. var rowStart = dtdac1.Rows.Count;
  4468. while (rowStart > 0)
  4469. {
  4470. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4471. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4472. startIndex++;
  4473. rowStart--;
  4474. }
  4475. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4476. startIndex += 1; //总计行
  4477. rowStart = dtdac2.Rows.Count;
  4478. while (rowStart > 0)
  4479. {
  4480. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4481. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4482. startIndex++;
  4483. rowStart--;
  4484. }
  4485. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4486. wb.CalculateFormula(true);
  4487. //模板文件名
  4488. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4489. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4490. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4491. return Ok(JsonView(true, "成功", new { Url = url }));
  4492. }
  4493. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4494. {
  4495. //获取模板
  4496. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4497. //载入模板
  4498. Document doc = new Document(tempPath);
  4499. DocumentBuilder builder = new DocumentBuilder(doc);
  4500. Dictionary<string, string> dic = new Dictionary<string, string>();
  4501. dic.Add("GroupName", _DelegationInfo.TeamName);
  4502. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4503. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4504. string missionLeaderJob = "";//负责人job
  4505. int groupNumber = 0; //团人数
  4506. if (DeleClientList.Count > 0)
  4507. {
  4508. missionLeader = DeleClientList[0]?.Name ?? "";
  4509. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4510. }
  4511. dic.Add("MissionLeader", missionLeader); //团负责人
  4512. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4513. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4514. #region MyRegion
  4515. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4516. //{
  4517. // List<string> list = new List<string>();
  4518. // try
  4519. // {
  4520. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4521. // foreach (var item in spilitArr)
  4522. // {
  4523. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4524. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4525. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4526. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4527. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4528. // list.Add(depName);
  4529. // list.Add(arrName);
  4530. // }
  4531. // list = list.Distinct().ToList();
  4532. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4533. // }
  4534. // catch (Exception)
  4535. // {
  4536. // dic.Add("ReturnCode", "行程录入不正确!");
  4537. // }
  4538. //}
  4539. //else
  4540. //{
  4541. // dic.Add("ReturnCode", "未录入行程!");
  4542. //}
  4543. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4544. dic.Add("ReturnCode", string.Join("、", countrys));
  4545. #endregion
  4546. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4547. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4548. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4549. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4550. //{
  4551. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4552. // dic.Add("Day", sp.Days.ToString());
  4553. //}
  4554. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4555. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4556. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4557. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4558. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4559. //培训人员名单
  4560. int cultivateRowIndex = 7;
  4561. foreach (var item in DeleClientList)
  4562. {
  4563. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4564. builder.Write(item.Name);
  4565. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4566. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4567. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4568. string birthDay = "";
  4569. if (item.Birthday != null)
  4570. {
  4571. DateTime dt = Convert.ToDateTime(item.Birthday);
  4572. birthDay = $"{dt.Year}.{dt.Month}";
  4573. }
  4574. builder.Write(birthDay);
  4575. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4576. builder.Write(item.Company);
  4577. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4578. builder.Write(item.Job);
  4579. cultivateRowIndex++;
  4580. }
  4581. //删除多余行
  4582. //cultivateRowIndex -= 2;
  4583. int delRows = 10 + 7 - cultivateRowIndex;
  4584. if (delRows > 0)
  4585. {
  4586. for (int i = 0; i < delRows; i++)
  4587. {
  4588. table1.Rows.RemoveAt(cultivateRowIndex);
  4589. //cultivateRowIndex++;
  4590. }
  4591. }
  4592. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4593. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4594. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4595. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4596. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4597. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4598. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4599. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4600. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4601. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4602. //其他费用
  4603. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4604. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4605. //其他费用合计
  4606. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4607. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4608. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4609. //公务舱合计
  4610. //国际旅费
  4611. string outsideJJ = "";
  4612. string allPriceJJ = "";
  4613. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4614. {
  4615. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4616. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4617. }
  4618. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4619. {
  4620. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4621. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4622. }
  4623. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4624. {
  4625. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4626. dic.Add("AirFeeTotal", airFeeTotalStr);
  4627. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4628. dic.Add("FeeTotal", feeTotalStr);
  4629. }
  4630. foreach (var key in dic.Keys)
  4631. {
  4632. builder.MoveToBookmark(key);
  4633. builder.Write(dic[key]);
  4634. }
  4635. //模板文件名
  4636. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4637. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4638. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4639. return Ok(JsonView(true, "成功", new { Url = url }));
  4640. }
  4641. }
  4642. else if (dto.ExportType == 2) //表格
  4643. {
  4644. //利用键值对存放数据
  4645. Dictionary<string, string> dic = new Dictionary<string, string>();
  4646. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4647. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4648. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4649. dic.Add("Day", sp.Days.ToString());
  4650. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4651. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4652. {
  4653. //获取模板
  4654. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4655. //载入模板
  4656. Document doc = new Document(tempPath);
  4657. DocumentBuilder builder = new DocumentBuilder(doc);
  4658. dic.Add("TeamName", _DelegationInfo.TeamName);
  4659. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4660. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4661. string missionLeaderName = "",
  4662. missionLeaderJob = "";
  4663. if (DeleClientList.Count > 0)
  4664. {
  4665. missionLeaderName = DeleClientList[0].Name;
  4666. missionLeaderJob = DeleClientList[0].Job;
  4667. }
  4668. dic.Add("MissionLeaderName", missionLeaderName);
  4669. dic.Add("MissionLeaderJob", missionLeaderJob);
  4670. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4671. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4672. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4673. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4674. int rowCount = 10;//总人数行
  4675. int startRowIndex = 7; //起始行
  4676. for (int i = 0; i < DeleClientList.Count; i++)
  4677. {
  4678. builder.MoveToCell(0, startRowIndex, 0, 0);
  4679. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4680. builder.MoveToCell(0, startRowIndex, 1, 0);
  4681. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4682. builder.Write(sex);//性别
  4683. builder.MoveToCell(0, startRowIndex, 2, 0);
  4684. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4685. builder.MoveToCell(0, startRowIndex, 3, 0);
  4686. builder.Write(DeleClientList[i].Company);//工作单位
  4687. builder.MoveToCell(0, startRowIndex, 4, 0);
  4688. builder.Write(DeleClientList[i].Job);//职务及级别
  4689. builder.MoveToCell(0, startRowIndex, 5, 0);
  4690. builder.Write("");//人员属性
  4691. builder.MoveToCell(0, startRowIndex, 6, 0);
  4692. builder.Write("");//上次出国时间
  4693. startRowIndex++;
  4694. }
  4695. int nullRow = rowCount - DeleClientList.Count;//空行
  4696. for (int i = 0; i < nullRow; i++)
  4697. {
  4698. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4699. }
  4700. foreach (var key in dic.Keys)
  4701. {
  4702. builder.MoveToBookmark(key);
  4703. builder.Write(dic[key]);
  4704. }
  4705. //模板文件名
  4706. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4707. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4708. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4709. return Ok(JsonView(true, "成功", new { Url = url }));
  4710. }
  4711. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4712. {
  4713. //获取模板
  4714. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4715. //载入模板
  4716. Document doc = new Document(tempPath);
  4717. DocumentBuilder builder = new DocumentBuilder(doc);
  4718. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4719. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4720. dic.Add("Names", Names);
  4721. int accommodationRows = 12, foodandotherRows = 12;
  4722. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4723. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4724. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4725. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4726. int accommodationStartIndex = 6;
  4727. decimal dac1totalPrice = 0.00M;
  4728. foreach (var dac in dac1)
  4729. {
  4730. if (dac.SubTotal == 0)
  4731. {
  4732. continue;
  4733. }
  4734. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4735. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4736. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4737. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4738. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4739. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4740. builder.Write(currency);//币种
  4741. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4742. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4743. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4744. builder.Write("");//人数
  4745. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4746. builder.Write("");//天数
  4747. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4748. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4749. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4750. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4751. builder.Write(rate.ToString("#0.0000"));//汇率
  4752. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4753. decimal rbmPrice = rate * dac.SubTotal;
  4754. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4755. accommodationStartIndex++;
  4756. dac1totalPrice += rbmPrice;
  4757. }
  4758. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4759. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4760. builder.Write("小计");
  4761. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4762. builder.Write(dac1totalPrice.ToString("#0.00"));
  4763. accommodationStartIndex++;
  4764. int nullRow = accommodationRows - dac1.Count;
  4765. //删除空行
  4766. //if (nullRow > 0)
  4767. //{
  4768. // int rowIndex = accommodationStartIndex;
  4769. // for (int i = 0; i < nullRow; i++)
  4770. // {
  4771. // Row row = table1.Rows[rowIndex];
  4772. // row.Remove();
  4773. // rowIndex++;
  4774. // }
  4775. //}
  4776. if (dac2.Count == dac3.Count)//国家 币种 金额
  4777. {
  4778. for (int i = 0; i < dac2.Count; i++)
  4779. {
  4780. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4781. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4782. }
  4783. }
  4784. int foodandotherStartIndex = 19;//
  4785. decimal dac2totalPrice = 0.00M;
  4786. foreach (var dac in dac2)
  4787. {
  4788. if (dac.SubTotal == 0)
  4789. {
  4790. continue;
  4791. }
  4792. //foodandotherStartIndex = 12;
  4793. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4794. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4795. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4796. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4797. builder.Write(currency);//币种
  4798. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4799. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4800. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4801. builder.Write("");//人数
  4802. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4803. builder.Write("");//天数
  4804. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4805. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4806. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4807. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4808. builder.Write(rate.ToString("#0.0000"));//汇率
  4809. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4810. decimal rbmPrice = rate * dac.SubTotal;
  4811. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4812. foodandotherStartIndex++;
  4813. dac2totalPrice += rbmPrice;
  4814. }
  4815. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4816. //删除空行
  4817. if (dac2.Count < foodandotherRows)
  4818. {
  4819. //int nullRow = accommodationRows - dac2.Count;
  4820. //while (table2.Rows.Count > dac2.Count)
  4821. //{
  4822. // table2.Rows.RemoveAt(dac2.Count);
  4823. //}
  4824. }
  4825. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4826. string otherFeeStr = "";
  4827. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4828. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4829. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4830. if (otherFeeStr.Length > 0)
  4831. {
  4832. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4833. otherFeeStr = $"({otherFeeStr})";
  4834. dic.Add("OtherFeeStr", otherFeeStr);
  4835. }
  4836. foreach (var key in dic.Keys)
  4837. {
  4838. builder.MoveToBookmark(key);
  4839. builder.Write(dic[key]);
  4840. }
  4841. //模板文件名
  4842. string strFileName = $"省级单位出(境)经费报销单.docx";
  4843. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4844. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4845. return Ok(JsonView(true, "成功", new { Url = url }));
  4846. }
  4847. }
  4848. else if (dto.ExportType == 3)
  4849. {
  4850. if (dto.SubTypeId == 1) //团组成员名单
  4851. {
  4852. if (DeleClientList.Count < 1)
  4853. {
  4854. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4855. }
  4856. //获取模板
  4857. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4858. //载入模板
  4859. Document doc = new Document(tempPath);
  4860. DocumentBuilder builder = new DocumentBuilder(doc);
  4861. //获取word里所有表格
  4862. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4863. //获取所填表格的序数
  4864. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4865. var rowStart = tableOne.Rows[0]; //获取第1行
  4866. //循环赋值
  4867. for (int i = 0; i < DeleClientList.Count; i++)
  4868. {
  4869. builder.MoveToCell(0, i + 1, 0, 0);
  4870. builder.Write(DeleClientList[i].Name);
  4871. builder.MoveToCell(0, i + 1, 1, 0);
  4872. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4873. builder.Write(sex);
  4874. builder.MoveToCell(0, i + 1, 2, 0);
  4875. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4876. builder.MoveToCell(0, i + 1, 3, 0);
  4877. builder.Write(DeleClientList[i].Company);
  4878. builder.MoveToCell(0, i + 1, 4, 0);
  4879. builder.Write(DeleClientList[i].Job);
  4880. }
  4881. //删除多余行
  4882. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4883. {
  4884. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4885. }
  4886. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4887. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4888. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4889. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4890. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4891. return Ok(JsonView(true, "成功", new { Url = url }));
  4892. }
  4893. }
  4894. return Ok(JsonView(false, "操作失败!"));
  4895. }
  4896. catch (Exception ex)
  4897. {
  4898. return Ok(JsonView(false, ex.Message));
  4899. }
  4900. }
  4901. /// <summary>
  4902. /// 获取三公费用标准city
  4903. /// </summary>
  4904. /// <param name="placeData"></param>
  4905. /// <param name="nationalTravelFeeId"></param>
  4906. /// <returns></returns>
  4907. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4908. {
  4909. string _city = string.Empty;
  4910. if (placeData.Count < 1) return _city;
  4911. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4912. if (data == null) return _city;
  4913. string country = data.Country;
  4914. string city = data.City;
  4915. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4916. else _city = city;
  4917. return _city;
  4918. }
  4919. /// <summary>
  4920. /// 团组模块 - 出入境费用 - 明细表导出
  4921. /// </summary>
  4922. /// <returns></returns>
  4923. [HttpPost]
  4924. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4925. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4926. {
  4927. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4928. if (data.Code != 0)
  4929. {
  4930. return Ok(JsonView(false, data.Msg));
  4931. }
  4932. return Ok(JsonView(true, data.Msg, data.Data));
  4933. }
  4934. /// <summary>
  4935. /// 团组模块 - 出入境费用 - 一键清空
  4936. /// </summary>
  4937. /// <returns></returns>
  4938. [HttpPost]
  4939. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4940. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4941. {
  4942. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4943. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4944. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4945. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4946. if (_view.Code == 0)
  4947. {
  4948. return Ok(JsonView(true, "操作成功"));
  4949. }
  4950. return Ok(JsonView(false, "操作失败"));
  4951. }
  4952. /// <summary>
  4953. /// 团组模块 - 出入境费用 - 子项删除
  4954. /// </summary>
  4955. /// <returns></returns>
  4956. [HttpPost]
  4957. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4958. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4959. {
  4960. try
  4961. {
  4962. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4963. if (data.Code != 0)
  4964. {
  4965. return Ok(JsonView(false, data.Msg));
  4966. }
  4967. return Ok(JsonView(true, "操作成功!", data.Data));
  4968. }
  4969. catch (Exception ex)
  4970. {
  4971. return Ok(JsonView(false, ex.Message));
  4972. }
  4973. }
  4974. /// <summary>
  4975. /// 团组模块 - 出入境国家费用标准 List
  4976. /// </summary>
  4977. /// <returns></returns>
  4978. [HttpPost]
  4979. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4980. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  4981. {
  4982. try
  4983. {
  4984. Stopwatch sw = new Stopwatch();
  4985. sw.Start();
  4986. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  4987. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4988. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4989. Where gntf.Isdel = 0");
  4990. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  4991. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  4992. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  4993. //foreach (var item in nationalTravel)
  4994. //{
  4995. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  4996. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  4997. // if (otherData != null)
  4998. // {
  4999. // cityData.Remove(otherData);
  5000. // cityData.Add(otherData);
  5001. // }
  5002. // nationalTravelFeeData1.Add(new
  5003. // {
  5004. // Country = item.Country,
  5005. // CityData = cityData
  5006. // });
  5007. //}
  5008. sw.Stop();
  5009. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5010. }
  5011. catch (Exception ex)
  5012. {
  5013. return Ok(JsonView(false, ex.Message));
  5014. throw;
  5015. }
  5016. }
  5017. /// <summary>
  5018. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5019. /// </summary>
  5020. /// <returns></returns>
  5021. [HttpPost]
  5022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5023. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5024. {
  5025. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5026. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5027. List<string> countryData = new List<string>();
  5028. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5029. countryData = countryData.Distinct().ToList();
  5030. List<dynamic> dataSource = new List<dynamic>();
  5031. foreach (var item in countryData)
  5032. {
  5033. List<string> cityData1 = new List<string>();
  5034. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5035. var countryData2 = new
  5036. {
  5037. CountryName = item,
  5038. CityData = cityData1
  5039. };
  5040. dataSource.Add(countryData2);
  5041. }
  5042. return Ok(JsonView(true, "查询成功!", dataSource));
  5043. }
  5044. /// <summary>
  5045. /// 团组模块 - 出入境国家费用标准 Page List
  5046. /// </summary>
  5047. /// <returns></returns>
  5048. [HttpPost]
  5049. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5050. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5051. {
  5052. int portId = dto.PortType;
  5053. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5054. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5055. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5056. string whereSql = string.Empty;
  5057. if (!string.IsNullOrEmpty(dto.Country))
  5058. {
  5059. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5060. }
  5061. if (!string.IsNullOrEmpty(dto.City))
  5062. {
  5063. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5064. }
  5065. string pageSql = string.Format(@"Select * From (
  5066. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5067. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5068. From Grp_NationalTravelFee gntf
  5069. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5070. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5071. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5072. RefAsync<int> total = 0;
  5073. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5074. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5075. }
  5076. /// <summary>
  5077. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5078. /// </summary>
  5079. /// <returns></returns>
  5080. [HttpPost]
  5081. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5082. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5083. {
  5084. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5085. int portId = dto.PortType;
  5086. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5087. string whereSql = string.Empty;
  5088. if (!string.IsNullOrEmpty(dto.Country))
  5089. {
  5090. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5091. }
  5092. if (!string.IsNullOrEmpty(dto.City))
  5093. {
  5094. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5095. }
  5096. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5097. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5098. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5099. From Grp_NationalTravelFee gntf
  5100. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5101. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5102. Where gntf.Isdel = 0 {0} ", whereSql);
  5103. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5104. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5105. }
  5106. /// <summary>
  5107. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5108. /// </summary>
  5109. /// <returns></returns>
  5110. [HttpPost]
  5111. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5112. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5113. {
  5114. try
  5115. {
  5116. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5117. if (data.Code != 0)
  5118. {
  5119. return Ok(JsonView(false, data.Msg));
  5120. }
  5121. return Ok(JsonView(true, "操作成功!", data.Data));
  5122. }
  5123. catch (Exception ex)
  5124. {
  5125. return Ok(JsonView(false, ex.Message));
  5126. }
  5127. }
  5128. /// <summary>
  5129. /// 团组模块 - 出入境国家费用标准 - Del
  5130. /// </summary>
  5131. /// <returns></returns>
  5132. [HttpPost]
  5133. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5134. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5135. {
  5136. try
  5137. {
  5138. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5139. {
  5140. Id = dto.Id,
  5141. DeleteUserId = dto.DeleteUserId,
  5142. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5143. IsDel = 1
  5144. };
  5145. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5146. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5147. .WhereColumns(it => new { it.Id })
  5148. .ExecuteCommandAsync();
  5149. if (delStatus <= 0)
  5150. {
  5151. return Ok(JsonView(false, "删除失败!"));
  5152. }
  5153. return Ok(JsonView(true, "操作成功!"));
  5154. }
  5155. catch (Exception ex)
  5156. {
  5157. return Ok(JsonView(false, ex.Message));
  5158. }
  5159. }
  5160. #endregion
  5161. #region 签证费用录入
  5162. /// <summary>
  5163. /// 根据diid查询签证费用列表
  5164. /// </summary>
  5165. /// <param name="dto"></param>
  5166. /// <returns></returns>
  5167. [HttpPost]
  5168. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5169. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5170. {
  5171. try
  5172. {
  5173. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5174. if (groupData.Code != 0)
  5175. {
  5176. return Ok(JsonView(false, groupData.Msg));
  5177. }
  5178. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5179. }
  5180. catch (Exception ex)
  5181. {
  5182. return Ok(JsonView(false, ex.Message));
  5183. }
  5184. }
  5185. /// <summary>
  5186. /// 根据签证费用Id查询单条数据及c表数据
  5187. /// </summary>
  5188. /// <param name="dto"></param>
  5189. /// <returns></returns>
  5190. [HttpPost]
  5191. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5192. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5193. {
  5194. try
  5195. {
  5196. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5197. if (groupData.Code != 0)
  5198. {
  5199. return Ok(JsonView(false, groupData.Msg));
  5200. }
  5201. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5202. }
  5203. catch (Exception ex)
  5204. {
  5205. return Ok(JsonView(false, ex.Message));
  5206. }
  5207. }
  5208. /// <summary>
  5209. /// 签证费用删除
  5210. /// </summary>
  5211. /// <param name="dto"></param>
  5212. /// <returns></returns>
  5213. [HttpPost]
  5214. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5215. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5216. {
  5217. _sqlSugar.BeginTran();
  5218. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5219. if (!res)
  5220. {
  5221. _sqlSugar.RollbackTran();
  5222. return Ok(JsonView(false, "删除失败"));
  5223. }
  5224. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5225. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5226. .SetColumns(a => new Grp_CreditCardPayment()
  5227. {
  5228. IsDel = 1,
  5229. DeleteUserId = dto.DeleteUserId,
  5230. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5231. }).ExecuteCommand();
  5232. if (resSub < 1)
  5233. {
  5234. _sqlSugar.RollbackTran();
  5235. return Ok(JsonView(false, "删除失败"));
  5236. }
  5237. _sqlSugar.CommitTran();
  5238. return Ok(JsonView(true, "删除成功!"));
  5239. }
  5240. /// <summary>
  5241. /// 签证费用录入下拉框初始化
  5242. /// </summary>
  5243. /// <returns></returns>
  5244. [HttpPost]
  5245. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5246. public async Task<IActionResult> VisaPriceAddSelect()
  5247. {
  5248. try
  5249. {
  5250. //支付方式
  5251. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5252. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5253. //币种
  5254. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5255. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5256. //乘客类型
  5257. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5258. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5259. //卡类型
  5260. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5261. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5262. var data = new
  5263. {
  5264. Payment = _Payment,
  5265. CurrencyList = _CurrencyList,
  5266. PassengerType = _PassengerType,
  5267. BankCard = _BankCard
  5268. };
  5269. return Ok(JsonView(true, "查询成功!", data));
  5270. }
  5271. catch (Exception ex)
  5272. {
  5273. return Ok(JsonView(false, "程序错误!"));
  5274. throw;
  5275. }
  5276. }
  5277. /// <summary>
  5278. /// 签证费用录入操作(Status:1.新增,2.修改)
  5279. /// </summary>
  5280. /// <param name="dto"></param>
  5281. /// <returns></returns>
  5282. [HttpPost]
  5283. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5284. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5285. {
  5286. try
  5287. {
  5288. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5289. if (groupData.Code != 0)
  5290. {
  5291. return Ok(JsonView(false, groupData.Msg));
  5292. }
  5293. #region 应用推送
  5294. try
  5295. {
  5296. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5297. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5298. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5299. }
  5300. catch (Exception ex)
  5301. {
  5302. }
  5303. #endregion
  5304. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5305. }
  5306. catch (Exception ex)
  5307. {
  5308. return Ok(JsonView(false, ex.Message));
  5309. }
  5310. }
  5311. #endregion
  5312. #region op费用录入
  5313. /// <summary>
  5314. /// 根据diid查询op费用列表
  5315. /// </summary>
  5316. /// <param name="dto"></param>
  5317. /// <returns></returns>
  5318. [HttpPost]
  5319. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5320. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5321. {
  5322. try
  5323. {
  5324. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5325. if (groupData.Code != 0)
  5326. {
  5327. return Ok(JsonView(false, groupData.Msg));
  5328. }
  5329. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5330. }
  5331. catch (Exception ex)
  5332. {
  5333. return Ok(JsonView(false, ex.Message));
  5334. }
  5335. }
  5336. /// <summary>
  5337. /// 根据op费用Id查询单条数据及c表数据
  5338. /// </summary>
  5339. /// <param name="dto"></param>
  5340. /// <returns></returns>
  5341. [HttpPost]
  5342. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5343. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5344. {
  5345. try
  5346. {
  5347. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5348. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5349. var data = new
  5350. {
  5351. CarTouristGuideGround = _groupData,
  5352. CreditCardPayment = _creditCardPayment
  5353. };
  5354. return Ok(JsonView(true, "查询成功!", data));
  5355. }
  5356. catch (Exception ex)
  5357. {
  5358. return Ok(JsonView(false, "程序错误!"));
  5359. }
  5360. }
  5361. /// <summary>
  5362. /// op费用删除
  5363. /// </summary>
  5364. /// <param name="dto"></param>
  5365. /// <returns></returns>
  5366. [HttpPost]
  5367. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5368. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5369. {
  5370. try
  5371. {
  5372. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5373. if (!res)
  5374. {
  5375. return Ok(JsonView(false, "删除失败"));
  5376. }
  5377. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5378. {
  5379. IsDel = 1,
  5380. DeleteUserId = dto.DeleteUserId,
  5381. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5382. }).ExecuteCommandAsync();
  5383. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5384. {
  5385. IsDel = 1,
  5386. DeleteUserId = dto.DeleteUserId,
  5387. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5388. }).ExecuteCommandAsync();
  5389. return Ok(JsonView(true, "删除成功!"));
  5390. }
  5391. catch (Exception ex)
  5392. {
  5393. return Ok(JsonView(false, "程序错误!"));
  5394. throw;
  5395. }
  5396. }
  5397. /// <summary>
  5398. /// op费用录入操作(Status:1.新增,2.修改)
  5399. /// </summary>
  5400. /// <param name="dto"></param>
  5401. /// <returns></returns>
  5402. [HttpPost]
  5403. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5404. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5405. {
  5406. try
  5407. {
  5408. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5409. if (groupData.Code != 0)
  5410. {
  5411. return Ok(JsonView(false, groupData.Msg));
  5412. }
  5413. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5414. }
  5415. catch (Exception ex)
  5416. {
  5417. return Ok(JsonView(false, ex.Message));
  5418. }
  5419. }
  5420. /// <summary>
  5421. /// 填写费用详细页面初始化绑定
  5422. /// </summary>
  5423. /// <param name="dto"></param>
  5424. /// <returns></returns>
  5425. [HttpPost]
  5426. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5427. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5428. {
  5429. try
  5430. {
  5431. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5432. if (groupData.Code != 0)
  5433. {
  5434. return Ok(JsonView(false, groupData.Msg));
  5435. }
  5436. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5437. }
  5438. catch (Exception ex)
  5439. {
  5440. return Ok(JsonView(false, ex.Message));
  5441. }
  5442. }
  5443. /// <summary>
  5444. /// 根据op费用Id查询详细数据
  5445. /// </summary>
  5446. /// <param name="dto"></param>
  5447. /// <returns></returns>
  5448. [HttpPost]
  5449. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5450. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5451. {
  5452. try
  5453. {
  5454. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5455. if (groupData.Code != 0)
  5456. {
  5457. return Ok(JsonView(false, groupData.Msg));
  5458. }
  5459. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5460. }
  5461. catch (Exception ex)
  5462. {
  5463. return Ok(JsonView(false, ex.Message));
  5464. }
  5465. }
  5466. /// <summary>
  5467. /// OP费用录入填写详情
  5468. /// </summary>
  5469. /// <param name="dto"></param>
  5470. /// <returns></returns>
  5471. [HttpPost]
  5472. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5473. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5474. {
  5475. try
  5476. {
  5477. #region 参数校验
  5478. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5479. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5480. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5481. #endregion
  5482. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5483. if (groupData.Code != 0)
  5484. {
  5485. return Ok(JsonView(false, groupData.Msg));
  5486. }
  5487. //自动审核
  5488. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5489. #region 应用推送
  5490. try
  5491. {
  5492. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5493. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5494. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5495. }
  5496. catch (Exception ex)
  5497. {
  5498. }
  5499. #endregion
  5500. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5501. }
  5502. catch (Exception ex)
  5503. {
  5504. return Ok(JsonView(false, ex.Message));
  5505. }
  5506. }
  5507. /// <summary>
  5508. /// 获取三公详细所有城市
  5509. /// </summary>
  5510. /// <returns></returns>
  5511. [HttpGet]
  5512. public IActionResult OpCarCityResult()
  5513. {
  5514. var jw = JsonView(false);
  5515. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5516. {
  5517. x.Id,
  5518. x.Country,
  5519. x.City,
  5520. }).ToList();
  5521. if (data.Count > 0)
  5522. {
  5523. jw = JsonView(true, "获取成功!", data);
  5524. }
  5525. else
  5526. {
  5527. jw.Msg = "城市数据为空!";
  5528. jw.Data = new string[0];
  5529. }
  5530. return Ok(jw);
  5531. }
  5532. /// <summary>
  5533. /// 导出地接费用明细
  5534. /// </summary>
  5535. /// <param name="dto"></param>
  5536. /// <returns></returns>
  5537. [HttpPost]
  5538. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5539. {
  5540. var jw = JsonView(false);
  5541. if (dto.Diid < 1)
  5542. {
  5543. jw.Msg = "请输入正确的diid!";
  5544. return Ok(jw);
  5545. }
  5546. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5547. if (group == null)
  5548. {
  5549. jw.Msg = "未找到团组信息!";
  5550. return Ok(jw);
  5551. }
  5552. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5553. if (localGuideArr.Count == 0)
  5554. {
  5555. jw.Msg = "该团组暂无地接信息!";
  5556. return Ok(jw);
  5557. }
  5558. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5559. var overspendSoure = new Dictionary<int, int>
  5560. {
  5561. { 91, 982 }, //车
  5562. { 92 , 1059} ,//导游
  5563. { 994 , 1073}, //翻译
  5564. { 988 , 1074 }, //早餐
  5565. { 93 , 1075 }, //午餐
  5566. { 989 , 1076 }, //晚餐
  5567. };
  5568. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5569. foreach (var groupArr in localGroup)
  5570. {
  5571. var keyValue = groupArr.Key;
  5572. if (int.TryParse(keyValue, out int cityid))
  5573. {
  5574. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5575. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5576. }
  5577. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5578. foreach (var item in groupArr)
  5579. {
  5580. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5581. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5582. new Grp_CarTouristGuideGroundReservationsContentExtend
  5583. {
  5584. Count = a.Count,
  5585. CreateTime = a.CreateTime,
  5586. CreateUserId = a.CreateUserId,
  5587. CTGGRId = a.CTGGRId,
  5588. Currency = a.Currency,
  5589. DatePrice = a.DatePrice,
  5590. DeleteTime = a.DeleteTime,
  5591. DeleteUserId = a.DeleteUserId,
  5592. DiId = a.DiId,
  5593. Id = a.Id,
  5594. IsDel = a.IsDel,
  5595. Price = a.Price,
  5596. PriceContent = a.PriceContent,
  5597. Remark = a.Remark,
  5598. SId = a.SId,
  5599. SidName = b.Name,
  5600. Units = a.Units,
  5601. }
  5602. ).ToList();
  5603. if (content.Count > 0)
  5604. {
  5605. contentArr.Add(content);
  5606. }
  5607. }
  5608. //open excel
  5609. //set excel
  5610. //save excel
  5611. try
  5612. {
  5613. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5614. IWorkbook workbook;
  5615. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5616. {
  5617. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5618. }
  5619. else
  5620. {
  5621. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5622. }
  5623. ISheet sheet = workbook.GetSheetAt(0);
  5624. var rowStartIndex = 2;
  5625. var clounmCount = 10;
  5626. var initStyleRow = sheet.GetRow(2);
  5627. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5628. //var overspendArrDetail =
  5629. var existsId = new List<CarCompare>();
  5630. var lastElem = arr.Last();
  5631. var thisSid = -1;
  5632. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5633. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5634. {
  5635. Name = "未知币种!",
  5636. Remark = "未知币种!",
  5637. };
  5638. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5639. Action cloneRowFn = () =>
  5640. {
  5641. rowStartIndex++;
  5642. var cloneRow = sheet.CreateRow(rowStartIndex);
  5643. // 复制样式
  5644. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5645. {
  5646. ICell sourceCell = initStyleRow.GetCell(i);
  5647. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5648. // 确保单元格存在样式
  5649. if (sourceCell.CellStyle != null)
  5650. {
  5651. targetCell.CellStyle = sourceCell.CellStyle;
  5652. }
  5653. }
  5654. };
  5655. var mergeRow = () =>
  5656. {
  5657. for (int i = 2; i < sheet.LastRowNum; i++)
  5658. {
  5659. var row = sheet.GetRow(i);
  5660. var cellFirst = row.GetCell(0);
  5661. var thisIndex = i + 1;
  5662. while (thisIndex < sheet.LastRowNum)
  5663. {
  5664. var nextRow = sheet.GetRow(thisIndex);
  5665. var nextCellFirst = nextRow.GetCell(0);
  5666. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5667. {
  5668. thisIndex++;
  5669. }
  5670. else
  5671. {
  5672. break;
  5673. }
  5674. }
  5675. thisIndex--;
  5676. if (thisIndex != i)
  5677. {
  5678. //合并row
  5679. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5680. i, // 起始行索引(0-based)
  5681. thisIndex, // 结束行索引(0-based)
  5682. 0, // 起始列索引(0-based)
  5683. 0 // 结束列索引(0-based)
  5684. );
  5685. sheet.AddMergedRegion(cellRangeAddress);
  5686. i = thisIndex;
  5687. }
  5688. }
  5689. };
  5690. var chaoshiNumber = 0;
  5691. var totalNumber = 0.00M;
  5692. string lastStr = "";
  5693. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5694. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5695. {
  5696. b.IsAuditGM,
  5697. x.Id,
  5698. x.Area,
  5699. b.PayPercentage,
  5700. b.PayMoney,
  5701. }).ToList();
  5702. string yesPayment = "", noPayment = "";
  5703. foreach (var item in queryCarArrByCityAndDiid)
  5704. {
  5705. if (item.IsAuditGM == 1)
  5706. {
  5707. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5708. }
  5709. else
  5710. {
  5711. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5712. }
  5713. }
  5714. lastStr = yesPayment + noPayment;
  5715. foreach (var item in arr)
  5716. {
  5717. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5718. {
  5719. if (thisSid != item.SId)
  5720. {
  5721. if (thisSid == -1)
  5722. {
  5723. thisSid = item.SId;
  5724. }
  5725. else
  5726. {
  5727. //合并小计行
  5728. //创建合并区域的实例
  5729. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5730. rowStartIndex, // 起始行索引(0-based)
  5731. rowStartIndex, // 结束行索引(0-based)
  5732. 0, // 起始列索引(0-based)
  5733. 3 // 结束列索引(0-based)
  5734. );
  5735. sheet.AddMergedRegion(cellRangeAddress);
  5736. var CellStyle = workbook.CreateCellStyle();
  5737. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5738. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5739. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5740. for (int i = 0; i <= clounmCount; i++)
  5741. {
  5742. if (i > 6)
  5743. {
  5744. var CellStyle1 = workbook.CreateCellStyle();
  5745. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5746. IFont Font = workbook.CreateFont(); // 创建字体
  5747. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5748. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5749. CellStyle1.SetFont(Font);
  5750. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5751. }
  5752. else
  5753. {
  5754. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5755. }
  5756. }
  5757. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5758. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5759. //超时合计
  5760. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5761. //超时数
  5762. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5763. //超时合计费用
  5764. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5765. thisSid = item.SId;
  5766. cloneRowFn();
  5767. chaoshiNumber = 0;
  5768. totalNumber = 0;
  5769. }
  5770. }
  5771. IRow row = sheet.GetRow(rowStartIndex);
  5772. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5773. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5774. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5775. if (isOpenOverspendSoure)
  5776. {
  5777. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5778. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5779. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5780. }
  5781. for (int i = 0; i <= clounmCount; i++)
  5782. {
  5783. var cell = row.GetCell(i);
  5784. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5785. if (cell == null)
  5786. {
  5787. cell = row.CreateCell(i);
  5788. }
  5789. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5790. fontRed.CloneStyleFrom(cell.CellStyle);
  5791. IFont Font = workbook.CreateFont(); // 创建字体
  5792. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5793. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5794. fontRed.SetFont(Font);
  5795. byte[] rgb = new byte[3] { 255, 242, 204 };
  5796. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5797. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5798. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5799. if (workbook is XSSFWorkbook)
  5800. {
  5801. BackgroundColor255_242_204.FillForegroundColor = 0;
  5802. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5803. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5804. }
  5805. else
  5806. {
  5807. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5808. }
  5809. if (i == 1 || i > 6)
  5810. {
  5811. if (i > 6)
  5812. {
  5813. fontRed.FillForegroundColor = 0;
  5814. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5815. fontRed.FillPattern = FillPattern.SolidForeground;
  5816. }
  5817. cell.CellStyle = fontRed;
  5818. }
  5819. if (i > 2 && i < 7)
  5820. {
  5821. cell.CellStyle = BackgroundColor255_242_204;
  5822. }
  5823. cell.SetCellValue(setCellValue); //写入单元格
  5824. }
  5825. if (overspendSoure.ContainsKey(thisSid))
  5826. {
  5827. var overspendId = overspendSoure[thisSid];
  5828. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5829. }
  5830. cloneRowFn();
  5831. existsId.Add(new CarCompare
  5832. {
  5833. DataPrice = item.DatePrice.ObjToDate(),
  5834. Sid = item.SId
  5835. });
  5836. }
  5837. if (item.Equals(lastElem))
  5838. {
  5839. //合并小计行
  5840. //创建合并区域的实例
  5841. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5842. rowStartIndex, // 起始行索引(0-based)
  5843. rowStartIndex, // 结束行索引(0-based)
  5844. 0, // 起始列索引(0-based)
  5845. 3 // 结束列索引(0-based)
  5846. );
  5847. sheet.AddMergedRegion(cellRangeAddress);
  5848. var CellStyle = workbook.CreateCellStyle();
  5849. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5850. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5851. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5852. for (int i = 0; i <= clounmCount; i++)
  5853. {
  5854. if (i > 6)
  5855. {
  5856. var CellStyle1 = workbook.CreateCellStyle();
  5857. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5858. IFont Font = workbook.CreateFont(); // 创建字体
  5859. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5860. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5861. CellStyle1.SetFont(Font);
  5862. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5863. }
  5864. else
  5865. {
  5866. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5867. }
  5868. }
  5869. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5870. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5871. //超时合计
  5872. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5873. //超时数
  5874. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5875. //超时合计费用
  5876. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5877. cloneRowFn();
  5878. // 创建合并区域的实例
  5879. cellRangeAddress = new CellRangeAddress(
  5880. rowStartIndex, // 起始行索引(0-based)
  5881. rowStartIndex, // 结束行索引(0-based)
  5882. 0, // 起始列索引(0-based)
  5883. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  5884. );
  5885. // 添加合并区域
  5886. sheet.AddMergedRegion(cellRangeAddress);
  5887. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  5888. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  5889. }
  5890. }
  5891. mergeRow();
  5892. // 保存修改后的Excel文件到新文件
  5893. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  5894. // new FileStream(newFilePath, FileMode.CreateNew)
  5895. using (var stream = new MemoryStream())
  5896. {
  5897. workbook.Write(stream, true);
  5898. stream.Flush();
  5899. stream.Seek(0, SeekOrigin.Begin);
  5900. MemoryStream memoryStream = new MemoryStream();
  5901. stream.CopyTo(memoryStream);
  5902. memoryStream.Seek(0, SeekOrigin.Begin);
  5903. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  5904. }
  5905. workbook.Close();
  5906. workbook.Dispose();
  5907. }
  5908. catch (Exception ex)
  5909. {
  5910. jw.Msg = "出现异常!" + ex.Message;
  5911. return Ok(jw);
  5912. }
  5913. }
  5914. if (Zips.Count > 0)
  5915. {
  5916. IOOperatorHelper io = new IOOperatorHelper();
  5917. var byts = io.ConvertZipStream(Zips);
  5918. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  5919. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  5920. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  5921. }
  5922. else
  5923. {
  5924. jw.Msg = "暂无生成文件!";
  5925. }
  5926. return Ok(jw);
  5927. }
  5928. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  5929. {
  5930. string outStr = string.Empty;
  5931. switch (i)
  5932. {
  5933. case 0:
  5934. outStr = arr[0].SidName;
  5935. break;
  5936. case 1:
  5937. outStr = arr[0].DataPriceStr;
  5938. break;
  5939. case 2:
  5940. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  5941. break;
  5942. case 4:
  5943. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  5944. break;
  5945. case 7:
  5946. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5947. {
  5948. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  5949. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  5950. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  5951. }
  5952. break;
  5953. case 8:
  5954. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5955. {
  5956. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  5957. }
  5958. break;
  5959. case 9:
  5960. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5961. {
  5962. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  5963. }
  5964. break;
  5965. case 10:
  5966. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5967. {
  5968. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  5969. }
  5970. break;
  5971. }
  5972. return outStr;
  5973. }
  5974. #region OP行程单
  5975. /// <summary>
  5976. /// OP行程单初始化
  5977. /// </summary>
  5978. /// <param name="dto"></param>
  5979. /// <returns></returns>
  5980. [HttpPost]
  5981. public IActionResult InitOpTravel(InitOpTravelDto dto)
  5982. {
  5983. var jw = JsonView(false);
  5984. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  5985. var group = groupList.First();
  5986. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  5987. if (group == null)
  5988. {
  5989. jw.Msg = "暂无团组!";
  5990. return Ok(jw);
  5991. }
  5992. group = groupList.Find(x => x.Id == diid);
  5993. if (group == null)
  5994. {
  5995. jw.Msg = "请输入正确的团组ID!";
  5996. return Ok(jw);
  5997. }
  5998. string city = string.Empty;
  5999. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6000. if (blackCode.Count > 0)
  6001. {
  6002. var black = blackCode.First();
  6003. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6004. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6005. if (blackSp.Length > 0)
  6006. {
  6007. try
  6008. {
  6009. var cityArrCode = new List<string>(20);
  6010. foreach (var item in blackSp)
  6011. {
  6012. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6013. var IndexSelect = itemSp[2];
  6014. var cityArrCodeLength = cityArrCode.Count - 1;
  6015. var startCity = IndexSelect.Substring(0, 3);
  6016. if (cityArrCodeLength > 0)
  6017. {
  6018. var arrEndCity = cityArrCode[cityArrCodeLength];
  6019. if (arrEndCity != startCity)
  6020. {
  6021. cityArrCode.Add(startCity.ToUpper());
  6022. }
  6023. }
  6024. else
  6025. {
  6026. cityArrCode.Add(startCity.ToUpper());
  6027. }
  6028. var endCity = IndexSelect.Substring(3, 3);
  6029. cityArrCode.Add(endCity.ToUpper());
  6030. }
  6031. var cityThree = string.Empty;
  6032. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6033. cityThree = cityThree.TrimEnd(',');
  6034. if (string.IsNullOrWhiteSpace(cityThree))
  6035. {
  6036. throw new
  6037. Exception("error");
  6038. }
  6039. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6040. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6041. foreach (var item in cityArrCode)
  6042. {
  6043. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6044. if (find != null)
  6045. {
  6046. city += find.City + "/";
  6047. }
  6048. else
  6049. {
  6050. city += item + "三字码未收入/";
  6051. }
  6052. }
  6053. city = city.TrimEnd('/');
  6054. }
  6055. catch (Exception e)
  6056. {
  6057. city = "黑屏代码格式不正确!";
  6058. }
  6059. }
  6060. }
  6061. else
  6062. {
  6063. city = "未录入黑屏代码";
  6064. }
  6065. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6066. {
  6067. Date = x.Date,
  6068. Days = x.Days,
  6069. Diffgroup = x.Diffgroup,
  6070. Diid = x.Diid,
  6071. Traffic_First = x.Traffic_First,
  6072. Traffic_Second = x.Traffic_Second,
  6073. Trip = x.Trip,
  6074. WeekDay = x.WeekDay,
  6075. Id = x.Id
  6076. }).ToList();
  6077. jw.Data = new
  6078. {
  6079. groupList = groupList.Select(x => new
  6080. {
  6081. x.Id,
  6082. x.TeamName,
  6083. x.TourCode
  6084. }).ToList(),
  6085. groupInfo = new
  6086. {
  6087. group.VisitDays,
  6088. group.TourCode,
  6089. group.VisitPNumber,
  6090. group.TeamName,
  6091. city
  6092. },
  6093. OpTravelList
  6094. };
  6095. jw.Code = 200;
  6096. jw.Msg = "操作成功!";
  6097. return Ok(jw);
  6098. }
  6099. /// <summary>
  6100. /// 删除团组行程单
  6101. /// </summary>
  6102. /// <returns></returns>
  6103. [HttpPost]
  6104. public IActionResult DelTravel(DelOpTravelDto dto)
  6105. {
  6106. var jw = JsonView(false);
  6107. if (dto.UserId <= 0 || dto.Diid <= 0)
  6108. {
  6109. jw.Msg = "请输入正确的参数!";
  6110. return Ok(jw);
  6111. }
  6112. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6113. .SetColumns(x => new Grp_TravelList
  6114. {
  6115. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6116. DeleteUserId = dto.UserId,
  6117. IsDel = 1,
  6118. }).ExecuteCommand();
  6119. jw = JsonView(true);
  6120. return Ok(jw);
  6121. }
  6122. /// <summary>
  6123. /// 行程单保存
  6124. /// </summary>
  6125. /// <returns></returns>
  6126. [HttpPost]
  6127. public IActionResult TravelSave(TravelSaveDto dto)
  6128. {
  6129. var jw = JsonView(false);
  6130. if (dto.Arr.Count > 0)
  6131. {
  6132. try
  6133. {
  6134. _sqlSugar.BeginTran();
  6135. foreach (var item in dto.Arr)
  6136. {
  6137. if (item.Id == 0)
  6138. {
  6139. throw new Exception("请传入正确的Id");
  6140. }
  6141. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6142. .SetColumns(x => new Grp_TravelList
  6143. {
  6144. Trip = item.Trip
  6145. }).ExecuteCommand();
  6146. }
  6147. _sqlSugar.CommitTran();
  6148. jw = JsonView(true);
  6149. }
  6150. catch (Exception ex)
  6151. {
  6152. _sqlSugar.RollbackTran();
  6153. jw.Msg = "程序异常!" + ex.Message;
  6154. }
  6155. }
  6156. else
  6157. {
  6158. jw.Msg = "请传入正确的参数!";
  6159. }
  6160. return Ok(jw);
  6161. }
  6162. /// <summary>
  6163. /// 导出行程单
  6164. /// </summary>
  6165. /// <param name="dto"></param>
  6166. /// <returns></returns>
  6167. [HttpPost]
  6168. public IActionResult ExportTravel(ExportTravelDto dto)
  6169. {
  6170. var jw = JsonView(false);
  6171. jw.Data = "";
  6172. int diid = 0;
  6173. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6174. if (Find == null)
  6175. {
  6176. jw.Msg = "请选择正确的团组!";
  6177. return Ok(jw);
  6178. }
  6179. else
  6180. {
  6181. diid = Find.Id;
  6182. }
  6183. //数据源
  6184. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6185. DataTable dtBlack = null;
  6186. try
  6187. {
  6188. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6189. }
  6190. catch (Exception)
  6191. {
  6192. jw.Msg = "机票黑屏代码有误!";
  6193. return Ok(jw);
  6194. }
  6195. string CityStr = string.Empty;
  6196. if (dtBlack.Rows.Count == 0)
  6197. {
  6198. jw.Msg = "机票黑屏代码有误!";
  6199. return Ok(jw);
  6200. }
  6201. else
  6202. {
  6203. foreach (DataRow row in dtBlack.Rows)
  6204. {
  6205. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6206. {
  6207. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6208. return Ok(jw);
  6209. }
  6210. }
  6211. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6212. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6213. }
  6214. //创建数据源Table
  6215. DataTable dtSource = new DataTable();
  6216. dtSource.Columns.Add("Days", typeof(string));
  6217. dtSource.Columns.Add("Date", typeof(string));
  6218. dtSource.Columns.Add("Week", typeof(string));
  6219. dtSource.Columns.Add("Traffic", typeof(string));
  6220. dtSource.Columns.Add("Trip", typeof(string));
  6221. //获取数据,放到datatable
  6222. foreach (var item in _travelList)
  6223. {
  6224. DataRow dr = dtSource.NewRow();
  6225. dr["Days"] = item.Days;
  6226. dr["Date"] = item.Date;
  6227. dr["Week"] = item.WeekDay;
  6228. dr["Traffic"] = item.Traffic_First
  6229. + "\r\n"
  6230. + item.Traffic_Second;
  6231. dr["Trip"] = item.Trip;
  6232. dtSource.Rows.Add(dr);
  6233. }
  6234. Dictionary<string, string> dic = new Dictionary<string, string>();
  6235. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6236. dic.Add("City", CityStr);
  6237. dic.Add("Days", Find.VisitDays.ToString());
  6238. dic.Add("DeleCode", Find.TourCode);
  6239. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6240. //模板路径
  6241. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6242. //载入模板
  6243. Document doc = null;
  6244. DocumentBuilder builder = null;
  6245. try
  6246. {
  6247. //载入模板
  6248. doc = new Document(tempPath);
  6249. builder = new DocumentBuilder(doc);
  6250. }
  6251. catch (Exception)
  6252. {
  6253. jw.Msg = "模板位置不存在!";
  6254. return Ok(jw);
  6255. }
  6256. foreach (var key in dic.Keys)
  6257. {
  6258. Bookmark bookmark = doc.Range.Bookmarks[key];
  6259. if (bookmark != null)
  6260. {
  6261. builder.MoveToBookmark(key);
  6262. builder.Write(dic[key]);
  6263. }
  6264. }
  6265. //获取word里所有表格
  6266. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6267. //获取所填表格的序数
  6268. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6269. try
  6270. {
  6271. //循环赋值
  6272. for (int i = 0; i < dtSource.Rows.Count; i++)
  6273. {
  6274. builder.MoveToCell(0, i + 1, 0, 0);
  6275. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6276. builder.MoveToCell(0, i + 1, 1, 0);
  6277. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6278. builder.MoveToCell(0, i + 1, 2, 0);
  6279. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6280. var trip = dtSource.Rows[i]["Trip"].ToString();
  6281. builder.MoveToCell(0, i + 1, 3, 0);
  6282. builder.Write(trip);
  6283. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6284. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6285. // 获取特定索引的段落
  6286. Paragraph paragraph = (Paragraph)paragraphs[0];
  6287. Run run = paragraph.Runs[0];
  6288. Aspose.Words.Font font = run.Font;
  6289. font.Name = "黑体";
  6290. //设置双休红色
  6291. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6292. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6293. paragraph = (Paragraph)paragraphs[1];
  6294. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6295. {
  6296. run = paragraph.Runs[0];
  6297. font = run.Font;
  6298. font.Color = Color.Red;
  6299. }
  6300. }
  6301. }
  6302. catch (Exception ex)
  6303. {
  6304. }
  6305. //删除多余行
  6306. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6307. {
  6308. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6309. }
  6310. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6311. if (!Directory.Exists(savePath))
  6312. {
  6313. try
  6314. {
  6315. Directory.CreateDirectory(savePath);
  6316. }
  6317. catch
  6318. {
  6319. }
  6320. }
  6321. string path = savePath + Find.TeamName + "出访日程";
  6322. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6323. try
  6324. {
  6325. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6326. string postfix = ".docx";
  6327. if (dto.IsPDF == 1)
  6328. {
  6329. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6330. postfix = ".pdf";
  6331. }
  6332. doc.Save(path + postfix, saveFormat);
  6333. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6334. }
  6335. catch (Exception)
  6336. {
  6337. jw = JsonView(false);
  6338. }
  6339. return Ok(jw);
  6340. }
  6341. /// <summary>
  6342. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6343. /// </summary>
  6344. /// <param name="num"></param>
  6345. /// <returns></returns>
  6346. string GetNum(string num)
  6347. {
  6348. string str = "";
  6349. switch (num)
  6350. {
  6351. case "1":
  6352. str = "一";
  6353. break;
  6354. case "2":
  6355. str = "二";
  6356. break;
  6357. case "3":
  6358. str = "三";
  6359. break;
  6360. case "4":
  6361. str = "四";
  6362. break;
  6363. case "5":
  6364. str = "五";
  6365. break;
  6366. case "6":
  6367. str = "六";
  6368. break;
  6369. case "7":
  6370. str = "七";
  6371. break;
  6372. case "8":
  6373. str = "八";
  6374. break;
  6375. case "9":
  6376. str = "九";
  6377. break;
  6378. case "10":
  6379. str = "十";
  6380. break;
  6381. case "11":
  6382. str = "十一";
  6383. break;
  6384. case "12":
  6385. str = "十二";
  6386. break;
  6387. case "一":
  6388. str = "1";
  6389. break;
  6390. case "二":
  6391. str = "2";
  6392. break;
  6393. case "三":
  6394. str = "3";
  6395. break;
  6396. case "四":
  6397. str = "4";
  6398. break;
  6399. case "五":
  6400. str = "5";
  6401. break;
  6402. case "六":
  6403. str = "6";
  6404. break;
  6405. case "七":
  6406. str = "7";
  6407. break;
  6408. case "八":
  6409. str = "8";
  6410. break;
  6411. case "九":
  6412. str = "9";
  6413. break;
  6414. case "十":
  6415. str = "10";
  6416. break;
  6417. case "十一":
  6418. str = "11";
  6419. break;
  6420. case "十二":
  6421. str = "12";
  6422. break;
  6423. }
  6424. return str;
  6425. }
  6426. #endregion
  6427. #endregion
  6428. #region 团组成本
  6429. /// <summary>
  6430. /// 团组成本数据初始化
  6431. /// </summary>
  6432. /// <param name="dto"></param>
  6433. /// <returns></returns>
  6434. [HttpPost]
  6435. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6436. {
  6437. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6438. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6439. WHEN COUNT(*) >= 0 THEN 'True'
  6440. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6441. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6442. ").ToList(); //团组列表
  6443. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6444. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6445. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6446. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6447. if (groupinfoValue != null)
  6448. {
  6449. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6450. var spArr = new string[1] { countryArr };
  6451. if (countryArr.Contains("|"))
  6452. {
  6453. spArr = countryArr.Split("|");
  6454. }
  6455. else if (countryArr.Contains("、"))
  6456. {
  6457. spArr = countryArr.Split("、");
  6458. }
  6459. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6460. {
  6461. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6462. if (dbQueryCountry != null)
  6463. {
  6464. visaCountryInfoArr.Add(dbQueryCountry);
  6465. }
  6466. }
  6467. }
  6468. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6469. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6470. var create = _GroupCostRepository.
  6471. CreateGroupCostByBlackCode(dto.Diid);
  6472. if (groupCost.Count == 0 && create.Code == 0)
  6473. {
  6474. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6475. }
  6476. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6477. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6478. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6479. groupCostMap = groupCostMap.Select(x =>
  6480. {
  6481. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6482. {
  6483. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6484. }
  6485. return x;
  6486. }).ToList();
  6487. //GroupCostParameter.Add(new
  6488. // Grp_GroupCostParameter());
  6489. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6490. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6491. return Ok(JsonView(new
  6492. {
  6493. groupList,
  6494. groupInfo,
  6495. groupChecks,
  6496. groupCost = groupCostMap,
  6497. hotelNumber,
  6498. GroupCostParameter = GroupCostParameterMap,
  6499. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6500. {
  6501. x.VisaCountry,
  6502. x.VisaPrice,
  6503. x.Id,
  6504. }).ToList(),
  6505. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6506. blackCodeIsTrue = create.Code == 0 ? true : false,
  6507. hotelIsTrue = hotelIsTrue,
  6508. }));
  6509. }
  6510. /// <summary>
  6511. /// 团组成本信息保存
  6512. /// </summary>
  6513. /// <param name="dto"></param>
  6514. /// <returns></returns>
  6515. [HttpPost]
  6516. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6517. {
  6518. if (dto.Diid <= 0 || dto.Userid <= 0)
  6519. {
  6520. return Ok(JsonView(false));
  6521. }
  6522. JsonView jw = null;
  6523. bool isTrue = false;
  6524. #region 复制团组成本
  6525. //if (dto.Diid == 2581)
  6526. //{
  6527. // dto.Diid = 2599;
  6528. // dto.CheckBoxs.ForEach(x =>
  6529. // {
  6530. // x.Diid = 2599;
  6531. // });
  6532. // dto.GroupCosts.ForEach(x =>
  6533. // {
  6534. // x.Diid = 2599;
  6535. // });
  6536. // dto.CostTypeHotelNumbers.ForEach(x =>
  6537. // {
  6538. // x.Diid = 2599;
  6539. // });
  6540. // dto.GroupCostParameters.ForEach(x =>
  6541. // {
  6542. // x.DiId = 2599;
  6543. // });
  6544. //}
  6545. #endregion
  6546. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6547. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6548. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6549. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6550. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6551. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6552. try
  6553. {
  6554. _sqlSugar.BeginTran();
  6555. isTrue = await _GroupCostRepository.
  6556. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6557. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6558. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6559. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6560. _sqlSugar.CommitTran();
  6561. jw = JsonView(true, "保存成功!", isTrue);
  6562. }
  6563. catch (Exception)
  6564. {
  6565. _sqlSugar.RollbackTran();
  6566. jw = JsonView(false);
  6567. }
  6568. return Ok(jw);
  6569. }
  6570. /// <summary>
  6571. /// 司兼导数据
  6572. /// </summary>
  6573. /// <param name="dto"></param>
  6574. /// <returns></returns>
  6575. [HttpPost]
  6576. public IActionResult GetCarGuides(CarGuidesDto dto)
  6577. {
  6578. JsonView jw = null;
  6579. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6580. jw = JsonView(true, "获取成功!", Data);
  6581. return Ok(jw);
  6582. }
  6583. /// <summary>
  6584. /// 导游数据
  6585. /// </summary>
  6586. /// <param name="dto"></param>
  6587. /// <returns></returns>
  6588. [HttpPost]
  6589. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6590. {
  6591. JsonView jw = null;
  6592. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6593. // 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
  6594. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6595. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6596. jw = JsonView(true, "获取成功!", Data);
  6597. return Ok(jw);
  6598. }
  6599. /// <summary>
  6600. /// 成本车数据
  6601. /// </summary>
  6602. /// <param name="dto"></param>
  6603. /// <returns></returns>
  6604. [HttpPost]
  6605. public IActionResult GetCarInfo(CarGuidesDto dto)
  6606. {
  6607. JsonView jw = null;
  6608. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6609. jw = JsonView(true, "获取成功!", Data);
  6610. return Ok(jw);
  6611. }
  6612. /// <summary>
  6613. /// 景点数据
  6614. /// </summary>
  6615. /// <param name="dto"></param>
  6616. /// <returns></returns>
  6617. [HttpPost]
  6618. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6619. {
  6620. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6621. return Ok(JsonView(true, "获取成功!", Data));
  6622. }
  6623. /// <summary>
  6624. /// 成本通知
  6625. /// </summary>
  6626. /// <param name="dto"></param>
  6627. /// <returns></returns>
  6628. [HttpPost]
  6629. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6630. {
  6631. if (dto.Diid < 0)
  6632. {
  6633. return Ok(JsonView(false));
  6634. }
  6635. JsonView jw = null;
  6636. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6637. if (GroupCostParameter != null)
  6638. {
  6639. int IsShare = 0;
  6640. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6641. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6642. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6643. string msg = string.Empty;
  6644. if (isTrue)
  6645. {
  6646. if (IsShare == 0)
  6647. {
  6648. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6649. }
  6650. else
  6651. {
  6652. #region 企微通知对应岗位用户
  6653. try
  6654. {
  6655. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6656. }
  6657. catch (Exception ex)
  6658. {
  6659. }
  6660. #endregion
  6661. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6662. }
  6663. jw = JsonView(isTrue, msg, new { IsShare });
  6664. }
  6665. else
  6666. {
  6667. msg = "修改失败!";
  6668. jw = JsonView(isTrue, msg);
  6669. }
  6670. }
  6671. else
  6672. {
  6673. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6674. }
  6675. return Ok(jw);
  6676. }
  6677. /// <summary>
  6678. /// 导出报价单
  6679. /// </summary>
  6680. /// <param name="dto"></param>
  6681. /// <returns></returns>
  6682. [HttpPost]
  6683. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6684. {
  6685. if (dto.Diid == 0)
  6686. {
  6687. return Ok(JsonView(false, "请传递团组id"));
  6688. }
  6689. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6690. if (deleInfo.Code != 0)
  6691. {
  6692. return Ok(JsonView(false, "团组信息查询失败!"));
  6693. }
  6694. var di = deleInfo.Data as DelegationInfoWebView;
  6695. if (di != null)
  6696. {
  6697. //文件名
  6698. string strFileName = di.TeamName + "-收款账单.doc";
  6699. //获取模板
  6700. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6701. //载入模板
  6702. Document doc = new Document(tmppath);
  6703. decimal TotalPrice = 0.00M;
  6704. string itemStr = string.Empty;
  6705. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6706. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6707. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6708. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6709. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6710. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6711. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6712. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6713. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6714. foreach (var cost in groupCostType)
  6715. {
  6716. var List = cost.ToList();
  6717. if (cost.Key == "A")
  6718. {
  6719. foreach (var ListItem in List)
  6720. {
  6721. if (ListItem.number > 0)
  6722. {
  6723. if (ListItem.code.Contains("TBR"))
  6724. {
  6725. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6726. }
  6727. else
  6728. {
  6729. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6730. }
  6731. TotalPrice += (ListItem.number * ListItem.price);
  6732. }
  6733. }
  6734. }
  6735. else
  6736. {
  6737. itemStr = itemStr.Insert(0, "A段\r\n");
  6738. itemStr += "B段\r\n";
  6739. foreach (var ListItem in List)
  6740. {
  6741. if (ListItem.number > 0)
  6742. {
  6743. if (ListItem.code.Contains("TBR"))
  6744. {
  6745. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6746. }
  6747. else
  6748. {
  6749. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6750. }
  6751. TotalPrice += (ListItem.number * ListItem.price);
  6752. }
  6753. }
  6754. }
  6755. }
  6756. #region 替换Word模板书签内容
  6757. Dictionary<string, string> marks = new Dictionary<string, string>();
  6758. marks.Add("To", di.ClientUnit);//付款方
  6759. marks.Add("ToTel", di.TellPhone);//付款方电话
  6760. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6761. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6762. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6763. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6764. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6765. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6766. marks.Add("PayItemContent", itemStr);//详细信息
  6767. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6768. #endregion
  6769. ////注
  6770. //if (doc.Range.Bookmarks["Attention"] != null)
  6771. //{
  6772. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6773. // mark.Text = frList[0].Attention;
  6774. //}
  6775. foreach (var item in marks.Keys)
  6776. {
  6777. if (doc.Range.Bookmarks[item] != null)
  6778. {
  6779. Bookmark mark = doc.Range.Bookmarks[item];
  6780. mark.Text = marks[item];
  6781. }
  6782. }
  6783. byte[] bytes = null;
  6784. using (MemoryStream stream = new MemoryStream())
  6785. {
  6786. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6787. bytes = stream.ToArray();
  6788. }
  6789. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6790. return Ok(JsonView(true, "", new
  6791. {
  6792. Data = bytes,
  6793. strFileName,
  6794. }));
  6795. }
  6796. else
  6797. {
  6798. return Ok(JsonView(false, "团组信息不存在!"));
  6799. }
  6800. }
  6801. /// <summary>
  6802. /// 导出团组成本
  6803. /// </summary>
  6804. /// <param name="dto"></param>
  6805. /// <returns></returns>
  6806. [HttpPost]
  6807. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6808. {
  6809. var jw = JsonView(false);
  6810. if (dto.Diid == 0)
  6811. {
  6812. return Ok(JsonView(false, "请传递团组id"));
  6813. }
  6814. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6815. if (deleInfo.Code != 0)
  6816. {
  6817. return Ok(JsonView(false, "团组信息查询失败!"));
  6818. }
  6819. var di = deleInfo.Data as DelegationInfoWebView;
  6820. if (di == null)
  6821. {
  6822. return Ok(JsonView(false, "团组信息查询失败!"));
  6823. }
  6824. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6825. WorkbookDesigner designer = new WorkbookDesigner();
  6826. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6827. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6828. for (int i = 0; i < List_GC.Count; i++)
  6829. {
  6830. GroupCost_Excel gc = new GroupCost_Excel();
  6831. gc.Id = List_GC[i].Id;
  6832. gc.Diid = List_GC[i].Diid.ToString();
  6833. gc.DAY = List_GC[i].DAY;
  6834. string week = "";
  6835. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6836. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6837. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6838. gc.ITIN = List_GC[i].ITIN;
  6839. gc.CarType = List_GC[i].CarType;
  6840. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6841. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6842. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6843. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6844. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6845. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6846. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6847. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6848. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6849. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6850. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6851. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6852. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6853. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6854. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6855. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6856. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6857. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6858. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6859. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6860. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6861. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6862. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6863. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6864. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6865. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6866. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6867. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6868. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6869. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6870. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6871. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6872. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6873. List_GC1.Add(gc);
  6874. }
  6875. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6876. dt.TableName = "TB";
  6877. //报表标题等不用dt的值
  6878. designer.SetDataSource("TeamName", dto.title.TeamName);
  6879. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6880. designer.SetDataSource("Tax", dto.title.Tax);
  6881. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6882. designer.SetDataSource("Currency", dto.title.Currency);
  6883. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6884. designer.SetDataSource("Rate", dto.title.Rate);
  6885. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6886. var Aparams = hotels.Find(x => x.Type == "Default");
  6887. if (Aparams == null)
  6888. {
  6889. return Ok(jw);
  6890. }
  6891. //酒店数量
  6892. var txtSGRNumber = Aparams.SGR.ToString();
  6893. var txtTBRNumber = Aparams.TBR.ToString();
  6894. var txtJSESNumber = Aparams.JSES.ToString();
  6895. var txtSUITENumbe = Aparams.SUITE.ToString();
  6896. if (dto.costType == "B")
  6897. {
  6898. Aparams = hotels.Find(x => x.Type == "A");
  6899. var Bparams = hotels.Find(x => x.Type == "B");
  6900. if (Aparams == null || Bparams == null)
  6901. {
  6902. return Ok(jw);
  6903. }
  6904. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6905. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6906. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6907. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6908. }
  6909. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6910. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6911. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6912. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6913. var ws = designer.Workbook.Worksheets[0];
  6914. int Row = List_GC.Count;
  6915. int startIndex = 11;
  6916. int HideRows = 0;
  6917. List<int> hideRowsList = new List<int>();
  6918. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6919. #region A段left数据
  6920. var left = dto.leftInfo.Find(x => x.Type == "A");
  6921. if (left == null)
  6922. {
  6923. return Ok(jw);
  6924. }
  6925. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6926. if (leftBindData != null)
  6927. {
  6928. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6929. designer.SetDataSource("VisaRS", leftBindData.rs);
  6930. designer.SetDataSource("VisaXS", leftBindData.xs);
  6931. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6932. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6933. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6934. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6935. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6936. }
  6937. else
  6938. {
  6939. hideRowsList.Add(Row + startIndex + HideRows);
  6940. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6941. }
  6942. HideRows += 2;
  6943. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6944. if (leftBindData != null)
  6945. {
  6946. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6947. designer.SetDataSource("BXRS", leftBindData.rs);
  6948. designer.SetDataSource("BXXS", leftBindData.xs);
  6949. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6950. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6951. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6952. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6953. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6954. }
  6955. else
  6956. {
  6957. hideRowsList.Add(Row + startIndex + HideRows);
  6958. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6959. }
  6960. HideRows += 2;
  6961. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6962. if (leftBindData != null)
  6963. {
  6964. designer.SetDataSource("HSDRCB", leftBindData.cb);
  6965. designer.SetDataSource("HSRS", leftBindData.rs);
  6966. designer.SetDataSource("HSXS", leftBindData.xs);
  6967. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6968. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6969. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6970. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6971. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6972. }
  6973. else
  6974. {
  6975. hideRowsList.Add(Row + startIndex + HideRows);
  6976. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6977. }
  6978. HideRows += 2;
  6979. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  6980. if (leftBindData != null)
  6981. {
  6982. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  6983. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  6984. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  6985. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6986. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6987. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6988. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6989. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6990. }
  6991. else
  6992. {
  6993. hideRowsList.Add(Row + startIndex + HideRows);
  6994. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6995. }
  6996. HideRows += 2;
  6997. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  6998. if (leftBindData != null)
  6999. {
  7000. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7001. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7002. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7003. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7004. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7005. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7006. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7007. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7008. }
  7009. else
  7010. {
  7011. hideRowsList.Add(Row + startIndex + HideRows);
  7012. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7013. }
  7014. HideRows += 2;
  7015. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7016. if (leftBindData != null)
  7017. {
  7018. ////TBR
  7019. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7020. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7021. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7022. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7023. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7024. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7025. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7026. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7027. }
  7028. else
  7029. {
  7030. hideRowsList.Add(Row + startIndex + HideRows);
  7031. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7032. }
  7033. HideRows += 2;
  7034. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7035. if (leftBindData != null)
  7036. {
  7037. ////SGR
  7038. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7039. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7040. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7041. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7042. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7043. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7044. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7045. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7046. }
  7047. else
  7048. {
  7049. hideRowsList.Add(Row + startIndex + HideRows);
  7050. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7051. }
  7052. HideRows += 2;
  7053. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7054. if (leftBindData != null)
  7055. {
  7056. ////JS/ES
  7057. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7058. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7059. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7060. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7061. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7062. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7063. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7064. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7065. }
  7066. else
  7067. {
  7068. hideRowsList.Add(Row + startIndex + HideRows);
  7069. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7070. }
  7071. HideRows += 2;
  7072. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7073. if (leftBindData != null)
  7074. {
  7075. ////SUITE
  7076. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7077. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7078. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7079. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7080. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7081. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7082. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7083. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7084. }
  7085. else
  7086. {
  7087. hideRowsList.Add(Row + startIndex + HideRows);
  7088. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7089. }
  7090. HideRows += 2;
  7091. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7092. if (leftBindData != null)
  7093. {
  7094. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7095. designer.SetDataSource("DJRS", leftBindData.rs);
  7096. designer.SetDataSource("DJXS", leftBindData.xs);
  7097. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7098. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7099. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7100. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7101. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7102. }
  7103. else
  7104. {
  7105. hideRowsList.Add(Row + startIndex + HideRows);
  7106. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7107. }
  7108. HideRows += 2;
  7109. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7110. if (leftBindData != null)
  7111. {
  7112. designer.SetDataSource("HCPCB", leftBindData.cb);
  7113. designer.SetDataSource("HCPRS", leftBindData.rs);
  7114. designer.SetDataSource("HCPXS", leftBindData.xs);
  7115. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7116. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7117. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7118. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7119. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7120. }
  7121. else
  7122. {
  7123. hideRowsList.Add(Row + startIndex + HideRows);
  7124. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7125. }
  7126. HideRows += 2;
  7127. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7128. if (leftBindData != null)
  7129. {
  7130. designer.SetDataSource("CPCB", leftBindData.cb);
  7131. designer.SetDataSource("CPRS", leftBindData.rs);
  7132. designer.SetDataSource("CPXS", leftBindData.xs);
  7133. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7134. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7135. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7136. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7137. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7138. }
  7139. else
  7140. {
  7141. hideRowsList.Add(Row + startIndex + HideRows);
  7142. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7143. }
  7144. HideRows += 2;
  7145. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7146. if (leftBindData != null)
  7147. {
  7148. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7149. designer.SetDataSource("GWRS", leftBindData.rs);
  7150. designer.SetDataSource("GWXS", leftBindData.xs);
  7151. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7152. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7153. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7154. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7155. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7156. }
  7157. else
  7158. {
  7159. hideRowsList.Add(Row + startIndex + HideRows);
  7160. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7161. }
  7162. HideRows += 2;
  7163. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7164. if (leftBindData != null)
  7165. {
  7166. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7167. designer.SetDataSource("LYJRS", leftBindData.rs);
  7168. designer.SetDataSource("LYJXS", leftBindData.xs);
  7169. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7170. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7171. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7172. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7173. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7174. }
  7175. else
  7176. {
  7177. hideRowsList.Add(Row + startIndex + HideRows);
  7178. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7179. }
  7180. #endregion
  7181. #region A段Right信息
  7182. var right = dto.rightInfo.Find(x => x.Type == "A");
  7183. if (right == null)
  7184. {
  7185. return Ok(jw);
  7186. }
  7187. HideRows += 4;
  7188. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7189. if (rightBindData != null)
  7190. {
  7191. //经济舱 + 双人间 TBR
  7192. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7193. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7194. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7195. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7196. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7197. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7198. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7199. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7200. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7201. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7202. }
  7203. else
  7204. {
  7205. hideRowsList.Add(Row + startIndex + HideRows);
  7206. }
  7207. HideRows += 2;
  7208. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7209. if (rightBindData != null)
  7210. {
  7211. //经济舱 + 单人间 SGR
  7212. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7213. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7214. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7215. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7216. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7217. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7218. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7219. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7220. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7221. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7222. }
  7223. else
  7224. {
  7225. hideRowsList.Add(Row + startIndex + HideRows);
  7226. }
  7227. HideRows += 2;
  7228. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7229. if (rightBindData != null)
  7230. {
  7231. //公务舱 + 单人间 SGR
  7232. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7233. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7234. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7235. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7236. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7237. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7238. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7239. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7240. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7241. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7242. }
  7243. else
  7244. {
  7245. hideRowsList.Add(Row + startIndex + HideRows);
  7246. }
  7247. HideRows += 2;
  7248. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7249. if (rightBindData != null)
  7250. {
  7251. //公务舱 + 小套房 JSES
  7252. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7253. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7254. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7255. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7256. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7257. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7258. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7259. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7260. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7261. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7262. }
  7263. else
  7264. {
  7265. hideRowsList.Add(Row + startIndex + HideRows);
  7266. }
  7267. HideRows += 2;
  7268. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7269. if (rightBindData != null)
  7270. {
  7271. //公务舱 + 小套房 JSES
  7272. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7273. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7274. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7275. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7276. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7277. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7278. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7279. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7280. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7281. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7282. }
  7283. else
  7284. {
  7285. hideRowsList.Add(Row + startIndex + HideRows);
  7286. }
  7287. HideRows += 2;
  7288. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7289. if (rightBindData != null)
  7290. {
  7291. //经济舱 + 大套房
  7292. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7293. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7294. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7295. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7296. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7297. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7298. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7299. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7300. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7301. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7302. }
  7303. else
  7304. {
  7305. hideRowsList.Add(Row + startIndex + HideRows);
  7306. }
  7307. #endregion
  7308. #region B段标题清空
  7309. designer.SetDataSource("CostBDRCB", "");
  7310. designer.SetDataSource("CostBRS", "");
  7311. designer.SetDataSource("CostBXS", "");
  7312. designer.SetDataSource("CostBZCB", "");
  7313. designer.SetDataSource("CostBDRBJ", "");
  7314. designer.SetDataSource("CostBZBJ", "");
  7315. designer.SetDataSource("CostBDRLR", "");
  7316. designer.SetDataSource("CostBZLR", "");
  7317. designer.SetDataSource("CostBDRCBOM", "");
  7318. designer.SetDataSource("CostBRSOM", "");
  7319. designer.SetDataSource("CostBZCBOM", "");
  7320. designer.SetDataSource("CostBDRBJOM", "");
  7321. designer.SetDataSource("CostBZBJOM", "");
  7322. designer.SetDataSource("CostBDRLROM", "");
  7323. designer.SetDataSource("CostBZLROM", "");
  7324. #endregion
  7325. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7326. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7327. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7328. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7329. designer.SetDataSource("DJName", "地接(CNY)");
  7330. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7331. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7332. designer.SetDataSource("GWName", "公务(CNY)");
  7333. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7334. designer.SetDataSource("LYJName", "零用金(CNY)");
  7335. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7336. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7337. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7338. designer.SetDataSource("BXName", "保险(CNY)");
  7339. designer.SetDataSource("VisaName", "签证(CNY)");
  7340. #region B段基本数据
  7341. if (dto.costType == "B")
  7342. {
  7343. left = dto.leftInfo.Find(x => x.Type == "B");
  7344. if (left == null)
  7345. {
  7346. return Ok(jw);
  7347. }
  7348. #region B段left数据
  7349. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7350. if (leftBindData != null)
  7351. {
  7352. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7353. designer.SetDataSource("BHSRS", leftBindData.rs);
  7354. designer.SetDataSource("BHSXS", leftBindData.xs);
  7355. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7356. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7357. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7358. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7359. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7360. }
  7361. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7362. if (leftBindData != null)
  7363. {
  7364. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7365. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7366. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7367. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7368. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7369. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7370. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7371. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7372. }
  7373. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7374. if (leftBindData != null)
  7375. {
  7376. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7377. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7378. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7379. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7380. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7381. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7382. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7383. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7384. }
  7385. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7386. if (leftBindData != null)
  7387. {
  7388. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7389. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7390. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7391. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7392. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7393. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7394. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7395. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7396. }
  7397. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7398. if (leftBindData != null)
  7399. {
  7400. designer.SetDataSource("BCPCB", leftBindData.cb);
  7401. designer.SetDataSource("BCPRS", leftBindData.rs);
  7402. designer.SetDataSource("BCPXS", leftBindData.xs);
  7403. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7404. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7405. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7406. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7407. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7408. }
  7409. //TBR
  7410. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7411. if (leftBindData != null)
  7412. {
  7413. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7414. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7415. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7416. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7417. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7418. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7419. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7420. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7421. }
  7422. //SGR
  7423. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7424. if (leftBindData != null)
  7425. {
  7426. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7427. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7428. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7429. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7430. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7431. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7432. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7433. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7434. }
  7435. //JS/ES
  7436. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7437. if (leftBindData != null)
  7438. {
  7439. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7440. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7441. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7442. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7443. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7444. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7445. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7446. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7447. }
  7448. //SUITE
  7449. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7450. if (leftBindData != null)
  7451. {
  7452. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7453. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7454. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7455. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7456. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7457. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7458. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7459. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7460. }
  7461. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7462. if (leftBindData != null)
  7463. {
  7464. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7465. designer.SetDataSource("BDJRS", leftBindData.rs);
  7466. designer.SetDataSource("BDJXS", leftBindData.xs);
  7467. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7468. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7469. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7470. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7471. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7472. }
  7473. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7474. if (leftBindData != null)
  7475. {
  7476. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7477. designer.SetDataSource("BGWRS", leftBindData.rs);
  7478. designer.SetDataSource("BGWXS", leftBindData.xs);
  7479. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7480. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7481. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7482. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7483. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7484. }
  7485. #region 优化方案
  7486. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7487. //excelBind.Add("零用金", new {
  7488. //cb="",
  7489. //rs="",
  7490. //xs ="",
  7491. //zcb = "",
  7492. //});
  7493. #endregion
  7494. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7495. if (leftBindData != null)
  7496. {
  7497. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7498. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7499. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7500. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7501. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7502. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7503. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7504. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7505. }
  7506. #endregion
  7507. #region B段Right信息
  7508. right = dto.rightInfo.Find(x => x.Type == "B");
  7509. if (right == null)
  7510. {
  7511. return Ok(jw);
  7512. }
  7513. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7514. if (rightBindData != null)
  7515. {
  7516. //经济舱 + 双人间 TBR
  7517. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7518. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7519. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7520. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7521. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7522. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7523. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7524. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7525. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7526. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7527. }
  7528. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7529. if (rightBindData != null)
  7530. {
  7531. //经济舱 + 单人间 SGR
  7532. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7533. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7534. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7535. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7536. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7537. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7538. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7539. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7540. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7541. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7542. }
  7543. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7544. if (rightBindData != null)
  7545. {
  7546. //公务舱 + 单人间 SGR
  7547. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7548. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7549. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7550. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7551. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7552. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7553. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7554. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7555. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7556. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7557. }
  7558. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7559. if (rightBindData != null)
  7560. {
  7561. //公务舱 + 小套房 JSES
  7562. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7563. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7564. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7565. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7566. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7567. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7568. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7569. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7570. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7571. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7572. }
  7573. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7574. if (rightBindData != null)
  7575. {
  7576. //公务舱 + 小套房 JSES
  7577. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7578. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7579. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7580. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7581. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7582. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7583. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7584. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7585. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7586. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7587. }
  7588. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7589. if (rightBindData != null)
  7590. {
  7591. //经济舱 + 大套房
  7592. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7593. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7594. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7595. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7596. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7597. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7598. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7599. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7600. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7601. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7602. }
  7603. #endregion
  7604. #region 标题
  7605. designer.SetDataSource("CostBDRCB", "单人成本");
  7606. designer.SetDataSource("CostBRS", "人数");
  7607. designer.SetDataSource("CostBXS", "系数");
  7608. designer.SetDataSource("CostBZCB", "总成本");
  7609. designer.SetDataSource("CostBDRBJ", "单人报价");
  7610. designer.SetDataSource("CostBZBJ", "总报价");
  7611. designer.SetDataSource("CostBDRLR", "单人利润");
  7612. designer.SetDataSource("CostBZLR", "总利润");
  7613. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7614. designer.SetDataSource("CostBRSOM", "人数");
  7615. designer.SetDataSource("CostBZCBOM", "总成本");
  7616. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7617. designer.SetDataSource("CostBZBJOM", "总报价");
  7618. designer.SetDataSource("CostBDRLROM", "单人利润");
  7619. designer.SetDataSource("CostBZLROM", "总利润");
  7620. #endregion
  7621. }
  7622. #endregion
  7623. designer.SetDataSource("TzZCB2", TzZCB2);
  7624. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7625. designer.SetDataSource("TzZLR2", TzZLR2);
  7626. string[] dataSourceKeys = new string[]
  7627. {
  7628. "VF",
  7629. "TGS",
  7630. "TGOF",
  7631. "TGM",
  7632. "TGA",
  7633. "TGTF",
  7634. "TGEF",
  7635. "CFM",
  7636. "CFOF",
  7637. "B",
  7638. "L",
  7639. "D",
  7640. "TBR",
  7641. "SGR",
  7642. "JSES",
  7643. "Suite",
  7644. "TV",
  7645. "1L",
  7646. "IF",
  7647. "EF",
  7648. "BRF",
  7649. "TE",
  7650. "TGT",
  7651. "DRVT",
  7652. "PC",
  7653. "TLF",
  7654. "ECT"
  7655. };
  7656. foreach (var item in dataSourceKeys)
  7657. {
  7658. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7659. if (find != null)
  7660. {
  7661. designer.SetDataSource(item, find.text);
  7662. }
  7663. else
  7664. {
  7665. designer.SetDataSource(item, 0);
  7666. }
  7667. }
  7668. designer.SetDataSource(dt);
  7669. //根据数据源处理生成报表内容
  7670. designer.Process();
  7671. designer.Workbook.Worksheets[0].Name = "清单";
  7672. Worksheet sheet = designer.Workbook.Worksheets[0];
  7673. foreach (var Rowindex in hideRowsList)
  7674. {
  7675. ws.Cells.HideRows(Rowindex, 2);
  7676. }
  7677. byte[] bytes = null;
  7678. string strFileName = di.TeamName + "-团组-成本.xls";
  7679. using (MemoryStream stream = new MemoryStream())
  7680. {
  7681. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7682. bytes = stream.ToArray();
  7683. }
  7684. return Ok(JsonView(true, "", new
  7685. {
  7686. Data = bytes,
  7687. strFileName,
  7688. }));
  7689. }
  7690. /// <summary>
  7691. /// 导出客户报表
  7692. /// </summary>
  7693. /// <returns></returns>
  7694. [HttpPost]
  7695. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7696. {
  7697. var jw = JsonView(false);
  7698. if (dto.Diid == 0)
  7699. {
  7700. return Ok(JsonView(false, "请传递团组id"));
  7701. }
  7702. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7703. if (deleInfo.Code != 0)
  7704. {
  7705. return Ok(JsonView(false, "团组信息查询失败!"));
  7706. }
  7707. var di = deleInfo.Data as DelegationInfoWebView;
  7708. if (di == null)
  7709. {
  7710. return Ok(JsonView(false, "团组信息查询失败!"));
  7711. }
  7712. //文件名
  7713. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7714. //获取模板
  7715. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7716. //载入模板
  7717. Document doc = new Document(tmppath);
  7718. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7719. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7720. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7721. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7722. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7723. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7724. if (AParameter == null)
  7725. {
  7726. return Ok(JsonView(false, "系数不存在!"));
  7727. }
  7728. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7729. , TzAirDesc, TzZCost;
  7730. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7731. = TzAirDesc = TzZCost = string.Empty;
  7732. TzNumber = AParameter.CostTypenumber.ToString();
  7733. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7734. CarGuides1 = dto.CarGuides1;
  7735. Meal = dto.Meal;
  7736. SubsidizedMeals = dto.SubsidizedMeals;
  7737. NightRepair = dto.NightRepair;
  7738. AttractionsTickets = dto.AttractionsTickets;
  7739. MiscellaneousFees = dto.MiscellaneousFees;
  7740. ATip = dto.ATip;
  7741. TzHotelDesc = "";
  7742. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7743. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7744. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7745. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7746. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7747. TzAirDesc = "";
  7748. TzZCost = dto.TzZCost;
  7749. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7750. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7751. var index = 1;
  7752. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7753. foreach (var item in TzHotelDescArr)
  7754. {
  7755. if (AinfoArr != null)
  7756. {
  7757. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7758. if (Ainfo != null)
  7759. {
  7760. if (int.Parse(Ainfo.rs) <= 0)
  7761. {
  7762. continue;
  7763. }
  7764. var hotelText = string.Empty;
  7765. switch (item)
  7766. {
  7767. case "SGR":
  7768. hotelText = "单人间";
  7769. break;
  7770. case "JSES":
  7771. hotelText = "小套房";
  7772. break;
  7773. case "SUITE":
  7774. hotelText = "套房";
  7775. break;
  7776. case "TBR":
  7777. hotelText = "双人间";
  7778. break;
  7779. }
  7780. if (item != "TBR")
  7781. {
  7782. 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";
  7783. }
  7784. else
  7785. {
  7786. 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";
  7787. }
  7788. index++;
  7789. }
  7790. }
  7791. }
  7792. index = 1;
  7793. foreach (var item in TzAirDescArr)
  7794. {
  7795. if (AinfoArr != null)
  7796. {
  7797. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7798. if (Ainfo != null)
  7799. {
  7800. if (int.Parse(Ainfo.rs) <= 0)
  7801. {
  7802. continue;
  7803. }
  7804. 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";
  7805. index++;
  7806. }
  7807. }
  7808. }
  7809. if (dto.costType == "B")
  7810. {
  7811. if (BParameter == null)
  7812. {
  7813. return Ok(JsonView(false, "B段系数不存在!"));
  7814. }
  7815. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7816. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7817. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7818. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7819. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7820. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7821. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7822. foreach (var item in TzHotelDescArr)
  7823. {
  7824. if (AinfoArr != null)
  7825. {
  7826. TzHotelDesc += "B段信息 \r\n";
  7827. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7828. if (Ainfo != null)
  7829. {
  7830. if (int.Parse(Ainfo.rs) <= 0)
  7831. {
  7832. continue;
  7833. }
  7834. var hotelText = string.Empty;
  7835. switch (item)
  7836. {
  7837. case "SGR":
  7838. hotelText = "单人间";
  7839. break;
  7840. case "JSES":
  7841. hotelText = "小套房";
  7842. break;
  7843. case "SUITE":
  7844. hotelText = "套房";
  7845. break;
  7846. case "TBR":
  7847. hotelText = "双人间";
  7848. break;
  7849. }
  7850. if (item != "TBR")
  7851. {
  7852. 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";
  7853. }
  7854. else
  7855. {
  7856. 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";
  7857. }
  7858. index++;
  7859. }
  7860. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7861. }
  7862. }
  7863. index = 1;
  7864. foreach (var item in TzAirDescArr)
  7865. {
  7866. if (AinfoArr != null)
  7867. {
  7868. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7869. if (Ainfo != null)
  7870. {
  7871. if (int.Parse(Ainfo.rs) <= 0)
  7872. {
  7873. continue;
  7874. }
  7875. 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";
  7876. index++;
  7877. }
  7878. }
  7879. }
  7880. }
  7881. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7882. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7883. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7884. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7885. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7886. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7887. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7888. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7889. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7890. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7891. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7892. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7893. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7894. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7895. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7896. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7897. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7898. DickeyValue.Add("TzZCost", TzZCost);
  7899. foreach (var key in DickeyValue.Keys)
  7900. {
  7901. if (doc.Range.Bookmarks[key] != null)
  7902. {
  7903. Bookmark mark = doc.Range.Bookmarks[key];
  7904. mark.Text = DickeyValue[key];
  7905. }
  7906. }
  7907. byte[] bytes = null;
  7908. string strFileName = di.TeamName + "-客户报价.doc";
  7909. using (MemoryStream stream = new MemoryStream())
  7910. {
  7911. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7912. bytes = stream.ToArray();
  7913. }
  7914. return Ok(JsonView(true, "", new
  7915. {
  7916. Data = bytes,
  7917. strFileName,
  7918. }));
  7919. }
  7920. /// <summary>
  7921. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7922. /// </summary>
  7923. /// <param name="dto"></param>
  7924. /// <returns></returns>
  7925. [HttpPost]
  7926. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7927. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7928. {
  7929. try
  7930. {
  7931. #region 参数验证
  7932. if (dto.DiId < 0)
  7933. {
  7934. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7935. }
  7936. List<int> cTableIds = new List<int>() {
  7937. 76 ,//酒店预订
  7938. 77 ,//行程
  7939. 79 ,//车/导游地接
  7940. 80 ,//签证
  7941. 81 ,//邀请/公务活
  7942. 82 ,//团组客户保险
  7943. 85 ,//机票预订
  7944. 98 ,//其他款项
  7945. 285 ,//收款退还
  7946. 751 ,//酒店早餐
  7947. 1015 // 超支费用
  7948. };
  7949. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7950. {
  7951. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7952. }
  7953. #endregion
  7954. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7955. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7956. if (_GroupCostParameters.Count <= 0)
  7957. {
  7958. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7959. }
  7960. if (_GroupCostParameters[0].IsShare == 0)
  7961. {
  7962. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7963. }
  7964. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7965. //处理date为空问题
  7966. if (_GroupCosts.Count > 0)
  7967. {
  7968. for (int i = 0; i < _GroupCosts.Count; i++)
  7969. {
  7970. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  7971. {
  7972. if (i > 0)
  7973. {
  7974. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  7975. }
  7976. }
  7977. }
  7978. }
  7979. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  7980. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  7981. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  7982. string currCode = "";
  7983. #region currCode 验证
  7984. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  7985. if (isInt)
  7986. {
  7987. var currData = currDatas.Find(it => it.Id == intCurrency);
  7988. if (currData != null)
  7989. {
  7990. currCode = currData.Name;
  7991. }
  7992. }
  7993. else
  7994. {
  7995. currCode = _GroupCostParameters[0].Currency.Trim();
  7996. }
  7997. #endregion
  7998. //op,酒店单段模式存储
  7999. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8000. {
  8001. CurrencyCode = currCode,
  8002. Rate = _GroupCostParameters[0].Rate,
  8003. CostType = _GroupCostParameters[0].CostType,
  8004. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8005. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8006. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8007. };
  8008. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8009. if (_GroupCostParameters.Count == 2)
  8010. {
  8011. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8012. }
  8013. foreach (var item in _GroupCostParameters)
  8014. {
  8015. decimal _rate = 1;
  8016. decimal _rate1 = item.Rate;
  8017. decimal _scale = 1;
  8018. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8019. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8020. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8021. //if (userInfo != null)
  8022. //{
  8023. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8024. // {
  8025. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8026. // {
  8027. // _scale = 1.00M;
  8028. // }
  8029. // }
  8030. //}
  8031. #endregion
  8032. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8033. {
  8034. CurrencyCode = currCode,
  8035. Rate = _rate1,
  8036. CostType = item.CostType,
  8037. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8038. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8039. CostTypeNumber = item.CostTypenumber
  8040. };
  8041. if (_GroupCostParameters.Count > 1)
  8042. {
  8043. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8044. }
  8045. else
  8046. {
  8047. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8048. }
  8049. if (dto.CTable == 79)//
  8050. {
  8051. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8052. modulePromptInfo.TotalCost = item.DJCB;
  8053. }
  8054. List<string> costTypes = new List<string>() { "A", "B" };
  8055. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8056. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8057. if (_GroupCostsDuplicates.Count() == 1)
  8058. {
  8059. _GroupCostsTypeData = _GroupCosts;
  8060. }
  8061. else
  8062. {
  8063. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8064. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8065. }
  8066. /*
  8067. * 76 酒店预订
  8068. * 77 行程
  8069. * 79 车/导游地接
  8070. * 80 签证
  8071. * 81 邀请/公务活动
  8072. * 82 团组客户保险
  8073. * 85 机票预订
  8074. * 98 其他款项
  8075. * 285 收款退还
  8076. * 751 酒店早餐
  8077. * 1015 超支费用
  8078. */
  8079. switch (dto.CTable)
  8080. {
  8081. case 76: // 酒店预订
  8082. _ModuleSubPromptInfo.AddRange(
  8083. _GroupCostsTypeData.Select(it => new
  8084. {
  8085. it.DAY,
  8086. it.Date,
  8087. it.ACCON,
  8088. it.ITIN,
  8089. it.SGR,
  8090. it.TBR,
  8091. it.JS_ES,
  8092. it.Suite
  8093. })
  8094. );
  8095. break;
  8096. case 79: // 车/导游地接
  8097. _ModuleSubPromptInfo.AddRange(
  8098. _GroupCostsTypeData.Select(it => new
  8099. {
  8100. Date = it.Date, //日期
  8101. CarFee = it.CarCost * _rate * _scale, //车费用
  8102. CarType = it.CarType, //车型
  8103. DriverFee = it.CFS * _rate * _scale, //司机工资
  8104. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8105. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8106. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8107. GuideFee = it.TGS * _rate * _scale, //导游费用
  8108. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8109. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8110. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8111. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8112. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8113. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8114. Breakfast = it.B * _rate * _scale, //早餐费
  8115. Lunch = it.L * _rate * _scale, //午餐费
  8116. Dinner = it.D * _rate * _scale, //晚餐费
  8117. TicketFee = it.EF * _rate * _scale, //门票费
  8118. SpentCash = it.PC * _rate * _scale, //零用金
  8119. LeadersFee = it.TLF * _rate * _scale, //领队费
  8120. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8121. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8122. })
  8123. );
  8124. break;
  8125. case 85: // 机票
  8126. List<dynamic> datas = new List<dynamic>();
  8127. datas.Add(
  8128. new
  8129. {
  8130. AirType = "经济舱",
  8131. AirNum = item.JJCRS,
  8132. AirDRCB = item.JJCCB,
  8133. AirZCB = (item.JJCRS * item.JJCCB)
  8134. }
  8135. );
  8136. datas.Add(
  8137. new
  8138. {
  8139. AirType = "公务舱",
  8140. AirNum = item.GWCRS,
  8141. AirDRCB = item.GWCCB,
  8142. AirZCB = (item.GWCRS * item.GWCCB)
  8143. }
  8144. );
  8145. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8146. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8147. modulePromptInfo.Data = new
  8148. {
  8149. airFeeData = datas,
  8150. airInitData = initDatas
  8151. };
  8152. _ModulePromptInfos.Add(modulePromptInfo);
  8153. break;
  8154. default:
  8155. break;
  8156. }
  8157. }
  8158. if (dto.CTable != 85)
  8159. {
  8160. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8161. _ModulePromptInfos.Add(_ModulePromptInfo);
  8162. }
  8163. _view.ModulePromptInfos = _ModulePromptInfos;
  8164. return Ok(JsonView(true, "操作成功!", _view));
  8165. }
  8166. catch (Exception ex)
  8167. {
  8168. return Ok(JsonView(false, ex.Message));
  8169. }
  8170. }
  8171. /// <summary>
  8172. /// 根据黑屏代码重新生成行程
  8173. /// </summary>
  8174. /// <param name="dto"></param>
  8175. /// <returns></returns>
  8176. [HttpPost]
  8177. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8178. {
  8179. var jw = JsonView(false);
  8180. var Create = _GroupCostRepository.
  8181. CreateGroupCostByBlackCode(dto.Diid);
  8182. jw.Msg = Create.Msg;
  8183. if (Create.Code == 0)
  8184. {
  8185. jw.Code = 200;
  8186. jw.Data = new
  8187. {
  8188. groupCost = Create.Data,
  8189. blackCodeIsTrue = true
  8190. };
  8191. }
  8192. else
  8193. {
  8194. jw.Code = 400;
  8195. jw.Data = new
  8196. {
  8197. groupCost = Create.Data,
  8198. blackCodeIsTrue = false,
  8199. };
  8200. }
  8201. return Ok(jw);
  8202. }
  8203. /// <summary>
  8204. /// 成本获取OP历史车费用
  8205. /// </summary>
  8206. /// <param name="dto"></param>
  8207. /// <returns></returns>
  8208. [HttpPost]
  8209. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8210. {
  8211. var jw = JsonView(false);
  8212. try
  8213. {
  8214. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8215. //获取现有所有车的数据
  8216. if (!dto.Param.IsNullOrWhiteSpace())
  8217. {
  8218. string sql = $@"
  8219. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8220. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8221. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8222. 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
  8223. AND gctggr.ServiceEndTime is not NULL
  8224. ORDER by gctggrc.id DESC
  8225. ";
  8226. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8227. var numeberResult = await Task.Run(() =>
  8228. {
  8229. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8230. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8231. return numberArr;
  8232. });
  8233. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8234. foreach (var item in numeberResult)
  8235. {
  8236. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8237. {
  8238. Country = "数据异常!",
  8239. City = string.Empty,
  8240. };
  8241. item.Area = find.Country + " " + find.City;
  8242. }
  8243. dbResult.AddRange(numeberResult);
  8244. if (dto.Param.Contains("、"))
  8245. {
  8246. var sp = dto.Param.Split("、");
  8247. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8248. .Where(x =>
  8249. {
  8250. return System.Array.Exists(sp, e =>
  8251. {
  8252. bool where = false;
  8253. if (x.Area != null)
  8254. {
  8255. where = x.Area.Contains(e);
  8256. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8257. {
  8258. return false;
  8259. }
  8260. }
  8261. if (x.PriceName != null && !where)
  8262. {
  8263. where = x.PriceName.Contains(e);
  8264. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8265. {
  8266. return false;
  8267. }
  8268. }
  8269. return where;
  8270. });
  8271. }).ToList();
  8272. }
  8273. else
  8274. {
  8275. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8276. .Where(x =>
  8277. {
  8278. bool where = false;
  8279. if (x.Area != null)
  8280. {
  8281. where = x.Area.Contains(dto.Param);
  8282. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8283. {
  8284. return false;
  8285. }
  8286. }
  8287. if (x.PriceName != null && !where)
  8288. {
  8289. where = x.PriceName.Contains(dto.Param);
  8290. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8291. {
  8292. return false;
  8293. }
  8294. }
  8295. return where;
  8296. }
  8297. )
  8298. .ToList();
  8299. }
  8300. }
  8301. var view = dbResult.Select(x =>
  8302. {
  8303. decimal dp = 0.00M;
  8304. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8305. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8306. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8307. {
  8308. if (startB && endB)
  8309. {
  8310. var timesp = endD.Subtract(startD);
  8311. if ((timesp.Days + 1) != 0)
  8312. {
  8313. dp = x.Price / (timesp.Days + 1);
  8314. }
  8315. }
  8316. }
  8317. else
  8318. {
  8319. dp = x.Price;
  8320. }
  8321. return new
  8322. {
  8323. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8324. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8325. x.Area,
  8326. x.id,
  8327. price = x.Price.ToString("F2"),
  8328. x.PriceName,
  8329. x.PriceContent,
  8330. x.TeamName,
  8331. x.DatePrice,
  8332. dayPrice = dp.ToString("F2"),
  8333. };
  8334. }).OrderByDescending(x => x.id).ToList();
  8335. jw = JsonView(true, "获取成功!", view);
  8336. }
  8337. catch (Exception e)
  8338. {
  8339. jw = JsonView(false, e.Message);
  8340. }
  8341. return Ok(jw);
  8342. }
  8343. #endregion
  8344. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8345. /// <summary>
  8346. /// 酒店预订
  8347. /// 酒店费用列表 根据团组Id查询
  8348. /// </summary>
  8349. /// <param name="_dto"></param>
  8350. /// <returns></returns>
  8351. [HttpPost]
  8352. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8353. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8354. {
  8355. #region 参数验证
  8356. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8357. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8358. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8359. #region 团组操作权限验证 76 酒店预定模块
  8360. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8361. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8362. #endregion
  8363. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8364. #region 页面操作权限验证
  8365. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8366. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8367. #endregion
  8368. #endregion
  8369. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8370. }
  8371. /// <summary>
  8372. /// 酒店预订
  8373. /// 基础数据
  8374. /// </summary>
  8375. /// <param name="_dto"></param>
  8376. /// <returns></returns>
  8377. [HttpPost]
  8378. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8379. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8380. {
  8381. #region 参数验证
  8382. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8383. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8384. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8385. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8386. #region 页面操作权限验证
  8387. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8388. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8389. #endregion
  8390. #region 团组操作权限验证 76 酒店预定模块
  8391. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8392. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8393. #endregion
  8394. #endregion
  8395. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8396. }
  8397. /// <summary>
  8398. /// 酒店预订
  8399. /// 创建 入住卷号码
  8400. /// </summary>
  8401. /// <param name="_dto"></param>
  8402. /// <returns></returns>
  8403. [HttpPost]
  8404. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8405. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8406. {
  8407. try
  8408. {
  8409. #region 参数验证
  8410. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8411. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8412. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8413. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8414. #region 页面操作权限验证
  8415. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8416. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8417. #endregion
  8418. #region 团组操作权限验证 76 酒店预定模块
  8419. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8420. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8421. #endregion
  8422. #endregion
  8423. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8424. if (data.Code != 0)
  8425. {
  8426. return Ok(JsonView(false, data.Msg));
  8427. }
  8428. return Ok(JsonView(true, data.Msg, data.Data));
  8429. }
  8430. catch (Exception ex)
  8431. {
  8432. return Ok(JsonView(false, ex.Message));
  8433. }
  8434. }
  8435. /// <summary>
  8436. /// 酒店预订
  8437. /// 详情
  8438. /// </summary>
  8439. /// <param name="_dto"></param>
  8440. /// <returns></returns>
  8441. [HttpPost]
  8442. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8443. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8444. {
  8445. #region 参数验证
  8446. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8447. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8448. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8449. #region 团组操作权限验证 76 酒店预定模块
  8450. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8451. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8452. #endregion
  8453. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8454. #region 页面操作权限验证
  8455. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8456. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8457. #endregion
  8458. #endregion
  8459. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8460. }
  8461. /// <summary>
  8462. /// 酒店预订
  8463. /// Add Or Edit
  8464. /// </summary>
  8465. /// <param name="_dto"></param>
  8466. /// <returns></returns>
  8467. [HttpPost]
  8468. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8469. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8470. {
  8471. #region 参数验证
  8472. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8473. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8474. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8475. #region 团组操作权限验证 76 酒店预定模块
  8476. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8477. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8478. #endregion
  8479. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8480. #region 页面操作权限验证
  8481. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8482. if (_dto.Id == 0) // Add
  8483. {
  8484. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8485. }
  8486. else if (_dto.Id > 1) // Edit
  8487. {
  8488. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8489. }
  8490. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8491. #endregion
  8492. #endregion
  8493. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8494. if (_view.Code != 200)
  8495. {
  8496. return Ok(_view);
  8497. }
  8498. #region 应用推送
  8499. try
  8500. {
  8501. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8502. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8503. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8504. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8505. //自动审核
  8506. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8507. }
  8508. catch (Exception ex)
  8509. {
  8510. }
  8511. #endregion
  8512. return Ok(_view);
  8513. }
  8514. /// <summary>
  8515. /// 酒店预订
  8516. /// Del
  8517. /// </summary>
  8518. /// <param name="_dto"></param>
  8519. /// <returns></returns>
  8520. [HttpPost]
  8521. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8522. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8523. {
  8524. #region 参数验证
  8525. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8526. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8527. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8528. #region 团组操作权限验证 76 酒店预定模块
  8529. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8530. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8531. #endregion
  8532. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8533. #region 页面操作权限验证
  8534. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8535. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8536. #endregion
  8537. #endregion
  8538. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8539. }
  8540. /// <summary>
  8541. /// 酒店预订
  8542. /// 生成VOUCHER
  8543. /// 2024.05.06 之前版本
  8544. /// </summary>
  8545. /// <param name="_dto"></param>
  8546. /// <returns></returns>
  8547. [HttpPost]
  8548. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8549. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8550. {
  8551. try
  8552. {
  8553. #region 参数验证
  8554. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8555. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8556. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8557. #region 团组操作权限验证 76 酒店预定模块
  8558. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8559. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8560. #endregion
  8561. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8562. #region 页面操作权限验证
  8563. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8564. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8565. #endregion
  8566. #endregion
  8567. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8568. //判断数据是否完整
  8569. if (hr != null)
  8570. {
  8571. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8572. {
  8573. string strFileName = "HotelStatement/";
  8574. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8575. if (dele != null)
  8576. strFileName += dele.TourCode;
  8577. //载入模板
  8578. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8579. Document doc = new Document(sss);
  8580. DocumentBuilder builder = new DocumentBuilder(doc);
  8581. #region 替换Word模板书签内容
  8582. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8583. //入住卷预定号码
  8584. if (doc.Range.Bookmarks["VNO"] != null)
  8585. {
  8586. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8587. mark.Text = hr.CheckNumber;
  8588. }
  8589. //酒店时间
  8590. if (doc.Range.Bookmarks["Date"] != null)
  8591. {
  8592. Bookmark mark = doc.Range.Bookmarks["Date"];
  8593. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8594. }
  8595. //团号
  8596. if (doc.Range.Bookmarks["TNo"] != null)
  8597. {
  8598. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8599. mark.Text = dele.TourCode;
  8600. }
  8601. //预定号码
  8602. if (doc.Range.Bookmarks["BookingId"] != null)
  8603. {
  8604. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8605. mark.Text = hr.ReservationsNo;
  8606. }
  8607. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8608. {
  8609. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8610. mark.Text = hr.DetermineNo;
  8611. }
  8612. //酒店城市
  8613. if (doc.Range.Bookmarks["City"] != null)
  8614. {
  8615. Bookmark mark = doc.Range.Bookmarks["City"];
  8616. mark.Text = hr.City;
  8617. }
  8618. //酒店名称
  8619. if (doc.Range.Bookmarks["HName"] != null)
  8620. {
  8621. Bookmark mark = doc.Range.Bookmarks["HName"];
  8622. mark.Text = hr.HotelName;
  8623. }
  8624. //酒店地址
  8625. if (doc.Range.Bookmarks["Address"] != null)
  8626. {
  8627. Bookmark mark = doc.Range.Bookmarks["Address"];
  8628. mark.Text = hr.HotelAddress;
  8629. }
  8630. //酒店电话
  8631. if (doc.Range.Bookmarks["Tel"] != null)
  8632. {
  8633. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8634. mark.Text = hr.HotelTel;
  8635. }
  8636. //酒店传真
  8637. if (doc.Range.Bookmarks["Fax"] != null)
  8638. {
  8639. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8640. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8641. {
  8642. mark.Text = hr.HotelFax;
  8643. }
  8644. }
  8645. //入住时间
  8646. if (doc.Range.Bookmarks["CIn"] != null)
  8647. {
  8648. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8649. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8650. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8651. }
  8652. //退房时间
  8653. if (doc.Range.Bookmarks["COut"] != null)
  8654. {
  8655. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8656. Bookmark mark = doc.Range.Bookmarks["COut"];
  8657. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8658. }
  8659. //客户名称
  8660. if (doc.Range.Bookmarks["GName"] != null)
  8661. {
  8662. string guestName = "";
  8663. string[] clients = new string[] { };
  8664. if (hr.GuestName.Contains(","))
  8665. {
  8666. clients = hr.GuestName.Split(",");
  8667. }
  8668. else
  8669. {
  8670. clients = new string[] { hr.GuestName };
  8671. }
  8672. List<int> clientIds_int = new List<int>();
  8673. if (clients.Length > 0)
  8674. {
  8675. foreach (var item in clients)
  8676. {
  8677. if (item.IsNumeric())
  8678. {
  8679. clientIds_int.Add(int.Parse(item));
  8680. }
  8681. }
  8682. }
  8683. if (clientIds_int.Count > 0)
  8684. {
  8685. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8686. foreach (var client in _clientDatas)
  8687. {
  8688. //男
  8689. if (client.Sex == 0) guestName += $"Mr.";
  8690. //女
  8691. else if (client.Sex == 1) guestName += $"Ms.";
  8692. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8693. {
  8694. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8695. }
  8696. //guestName += $"{client.Pinyin},";
  8697. }
  8698. if (guestName.Length > 0)
  8699. {
  8700. guestName = guestName.Substring(0, guestName.Length - 1);
  8701. }
  8702. }
  8703. else
  8704. {
  8705. guestName = hr.GuestName;
  8706. }
  8707. Bookmark mark = doc.Range.Bookmarks["GName"];
  8708. mark.Text = guestName;
  8709. }
  8710. //房间介绍
  8711. if (doc.Range.Bookmarks["ROOM"] != null)
  8712. {
  8713. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8714. mark.Text = hr.RoomExplanation;
  8715. }
  8716. //报价描述
  8717. if (doc.Range.Bookmarks["NOTE"] != null)
  8718. {
  8719. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8720. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8721. if (ss != null)
  8722. mark.Text = ss.Name;
  8723. }
  8724. //入住时间
  8725. if (doc.Range.Bookmarks["CheckIn"] != null)
  8726. {
  8727. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8728. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8729. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8730. }
  8731. //退房时间
  8732. if (doc.Range.Bookmarks["CheckOut"] != null)
  8733. {
  8734. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8735. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8736. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8737. }
  8738. //日期
  8739. if (doc.Range.Bookmarks["DT"] != null)
  8740. {
  8741. Bookmark mark = doc.Range.Bookmarks["DT"];
  8742. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8743. }
  8744. //名称
  8745. if (doc.Range.Bookmarks["VName"] != null)
  8746. {
  8747. Bookmark mark = doc.Range.Bookmarks["VName"];
  8748. mark.Text = hr.HotelName;
  8749. }
  8750. //号码
  8751. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8752. {
  8753. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8754. mark.Text = hr.CheckNumber;
  8755. }
  8756. #endregion
  8757. strFileName += "VOUCHER.doc";
  8758. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8759. doc.Save(fileDir);
  8760. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8761. return Ok(JsonView(true, "操作成功!", Url));
  8762. }
  8763. else
  8764. {
  8765. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8766. }
  8767. }
  8768. else
  8769. {
  8770. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8771. }
  8772. }
  8773. catch (Exception ex)
  8774. {
  8775. return Ok(JsonView(false, ex.Message));
  8776. }
  8777. }
  8778. /// <summary>
  8779. /// 酒店预订
  8780. /// 生成VOUCHER
  8781. /// 2024.05.06 之后版本
  8782. /// </summary>
  8783. /// <param name="_dto"></param>
  8784. /// <returns></returns>
  8785. [HttpPost]
  8786. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8787. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8788. {
  8789. #region 参数验证
  8790. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8791. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8792. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8793. #region 团组操作权限验证 76 酒店预定模块
  8794. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8795. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8796. #endregion
  8797. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8798. #region 页面操作权限验证
  8799. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8800. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8801. #endregion
  8802. #endregion
  8803. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8804. //判断数据是否完整
  8805. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8806. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8807. string strFileName = "HotelStatement/";
  8808. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8809. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8810. #region 数据处理
  8811. List<int> guestIds = new List<int>();
  8812. int index = 0;
  8813. foreach (var item in hrDtas)
  8814. {
  8815. if (item.GuestName.Contains(","))
  8816. {
  8817. string[] guestIdArr = item.GuestName.Split(',');
  8818. foreach (var guestIdStr in guestIdArr)
  8819. {
  8820. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8821. if (guestBool)
  8822. {
  8823. guestIds.Add(guestId);
  8824. }
  8825. }
  8826. }
  8827. else guestNames += item.GuestName;
  8828. var voucherInfo = new HotelVoucherInfoView()
  8829. {
  8830. HotelName = item.HotelName,
  8831. CheckInDate = item.CheckInDate,
  8832. CheckOutDate = item.CheckOutDate,
  8833. ConfirmationNumber = item.DetermineNo.Trim(),
  8834. RoomType = item.RoomExplanation
  8835. };
  8836. vouchers.Add(voucherInfo);
  8837. }
  8838. if (guestIds.Count > 0)
  8839. {
  8840. guestIds = guestIds.Distinct().ToList();
  8841. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8842. if (guestDatas.Count > 0)
  8843. {
  8844. guestNames = "";
  8845. foreach (var guest in guestDatas)
  8846. {
  8847. string guestName = "";
  8848. if (guest.Sex == 0) guestName += @"MR.";
  8849. else if (guest.Sex == 1) guestName += @"MS.";
  8850. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8851. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8852. guestNames += @$"{guestName.Trim()}、";
  8853. }
  8854. if (guestNames.Length > 0)
  8855. {
  8856. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8857. }
  8858. }
  8859. }
  8860. #endregion
  8861. //载入模板
  8862. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8863. Document doc = new Document(sss);
  8864. DocumentBuilder builder = new DocumentBuilder(doc);
  8865. if (doc.Range.Bookmarks["GuestName"] != null)
  8866. {
  8867. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  8868. mark.Text = guestNames;
  8869. }
  8870. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8871. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  8872. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  8873. for (int i = 1; i <= vouchers.Count; i++)
  8874. {
  8875. HotelVoucherInfoView hviv = vouchers[i - 1];
  8876. builder.MoveToCell(0, i, 0, 0);
  8877. builder.Write(hviv.HotelName);
  8878. builder.MoveToCell(0, i, 1, 0);
  8879. builder.Write(hviv.CheckInDate);
  8880. builder.MoveToCell(0, i, 2, 0);
  8881. builder.Write(hviv.CheckOutDate);
  8882. builder.MoveToCell(0, i, 3, 0);
  8883. builder.Write(hviv.RoomType);
  8884. builder.MoveToCell(0, i, 4, 0);
  8885. builder.Write(hviv.ConfirmationNumber);
  8886. }
  8887. //删除多余行
  8888. int currRowIndex = vouchers.Count + 1;
  8889. int delRows = 21 - currRowIndex;
  8890. if (delRows > 0)
  8891. {
  8892. for (int i = 0; i < delRows; i++)
  8893. {
  8894. table.Rows.RemoveAt(currRowIndex);
  8895. //cultivateRowIndex++;
  8896. }
  8897. }
  8898. strFileName += "VOUCHER.docx";
  8899. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8900. doc.Save(fileDir);
  8901. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8902. return Ok(JsonView(true, "操作成功!", Url));
  8903. }
  8904. /// <summary>
  8905. /// 酒店预订
  8906. /// 生成 预定成本 Excel
  8907. /// </summary>
  8908. /// <param name="_dto"></param>
  8909. /// <returns></returns>
  8910. [HttpPost]
  8911. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8912. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  8913. {
  8914. #region 参数验证
  8915. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  8916. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  8917. if (!vadalitorRes.IsValid)
  8918. {
  8919. var errors = new StringBuilder();
  8920. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  8921. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  8922. }
  8923. #region 团组操作权限验证 76 酒店预定模块
  8924. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8925. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8926. #endregion
  8927. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8928. #region 页面操作权限验证
  8929. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8930. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8931. #endregion
  8932. #endregion
  8933. decimal _rate = 1.00M;
  8934. string _currency = "";
  8935. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  8936. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8937. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  8938. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  8939. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  8940. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  8941. {
  8942. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  8943. }
  8944. _currency = _GroupCostParameter.Currency;
  8945. bool isIntType = int.TryParse(_currency, out int currId);
  8946. if (isIntType)
  8947. {
  8948. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  8949. }
  8950. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  8951. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  8952. if (currInfo == null)
  8953. {
  8954. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  8955. }
  8956. if (!_currency.ToUpper().Equals("CNY"))
  8957. {
  8958. _rate = _GroupCostParameter.Rate;
  8959. }
  8960. _rate = currInfo.Rate;
  8961. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8962. string strFileName = "HotelStatement/";
  8963. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8964. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  8965. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  8966. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  8967. #region 数据处理
  8968. foreach (var item in hrDtas)
  8969. {
  8970. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  8971. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  8972. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  8973. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  8974. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  8975. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  8976. string singleRoomFeeStr = string.Empty,
  8977. doubleRoomFeeStr = string.Empty,
  8978. suiteRoomFeeStr = string.Empty,
  8979. otherRoomFeeStr = string.Empty,
  8980. payMoneyStr = string.Empty,
  8981. cardPriceStr = string.Empty;
  8982. if (roomCurr.Equals(_currency))
  8983. {
  8984. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  8985. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  8986. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  8987. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  8988. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  8989. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  8990. }
  8991. else
  8992. {
  8993. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  8994. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  8995. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  8996. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  8997. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  8998. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  8999. }
  9000. string breakfastPriceStr = string.Empty,
  9001. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9002. governmentRentStr = string.Empty,
  9003. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9004. cityTaxStrStr = string.Empty,
  9005. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9006. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  9007. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  9008. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  9009. pcfds.Add(new HotelReservations_PCFD_View()
  9010. {
  9011. City = item.City,
  9012. HotelName = item.HotelName,
  9013. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9014. // SingleRoomCount = item.SingleRoomCount,
  9015. SingleRoomPrice = singleRoomFeeStr,
  9016. // DoubleRoomCount = item.DoubleRoomCount,
  9017. DoubleRoomPrice = doubleRoomFeeStr,
  9018. //SuiteRoomCount = item.SuiteRoomCount,
  9019. SuiteRoomPrice = suiteRoomFeeStr,
  9020. OtherRoomPrice = otherRoomFeeStr,
  9021. //OtherRoomCount = item.OtherRoomCount,
  9022. BreakfastPrice = breakfastPriceStr,
  9023. GovernmentRent = governmentRentStr,
  9024. CityTax = cityTaxStrStr,
  9025. RoomExplanation = item.RoomExplanation,
  9026. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  9027. PayTime = roomInfo.ConsumptionDate,
  9028. BankNo = roomInfo.BankNo,
  9029. PayMoney = payMoneyStr,
  9030. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9031. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  9032. CardPrice = cardPriceStr,
  9033. Remark = ccpInfo.Remark
  9034. });
  9035. }
  9036. #endregion
  9037. //载入模板
  9038. WorkbookDesigner designer = new WorkbookDesigner();
  9039. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9040. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9041. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9042. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9043. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9044. designer.SetDataSource("Opertor", userInfo.CnName);
  9045. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9046. dt.TableName = "ViewMyHotelReservations";
  9047. designer.SetDataSource(dt);
  9048. designer.Process();
  9049. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  9050. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9051. designer.Workbook.Save(serverPath);
  9052. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9053. #region 删除指定行
  9054. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  9055. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9056. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9057. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9058. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9059. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9060. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9061. cssIndex = dt.Columns["CityTax"].Ordinal,
  9062. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9063. remarkIndex = dt.Columns["Remark"].Ordinal;
  9064. //删除指定列
  9065. foreach (DataRow item in dt.Rows)
  9066. {
  9067. string singleStr = item["SingleRoomPrice"].ToString();
  9068. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9069. if (containsDigitButNotZero1) singleDel = false;
  9070. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9071. string doubleStr = item["DoubleRoomPrice"].ToString();
  9072. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9073. if (containsDigitButNotZero2) doubleDel = false;
  9074. string suiteStr = item["SuiteRoomPrice"].ToString();
  9075. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9076. if (containsDigitButNotZero3) suiteDel = false;
  9077. string otherStr = item["OtherRoomPrice"].ToString();
  9078. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9079. if (containsDigitButNotZero4) otherDel = false;
  9080. string zcStr = item["BreakfastPrice"].ToString();
  9081. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9082. if (containsDigitButNotZero5) zcDel = false;
  9083. string dsStr = item["GovernmentRent"].ToString();
  9084. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9085. if (containsDigitButNotZero6) dsDel = false;
  9086. string cssStr = item["CityTax"].ToString();
  9087. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9088. if (containsDigitButNotZero7) cssDel = false;
  9089. string cpStr = item["ConsumptionPatterns"].ToString();
  9090. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9091. string remarkStr = item["Remark"].ToString();
  9092. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9093. }
  9094. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9095. DeleteColumn(serverPath, cpIndex, cpDel);
  9096. DeleteColumn(serverPath, dsIndex, dsDel);
  9097. DeleteColumn(serverPath, cssIndex, cssDel);
  9098. DeleteColumn(serverPath, zcIndex, zcDel);
  9099. DeleteColumn(serverPath, otherIndex, otherDel);
  9100. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9101. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9102. DeleteColumn(serverPath, singleIndex, singleDel);
  9103. #endregion
  9104. //只保留第一个表格
  9105. DeleteSheet(serverPath);
  9106. return Ok(JsonView(true, "操作成功", url = rst));
  9107. }
  9108. /// <summary>
  9109. /// 删除指定列
  9110. /// </summary>
  9111. /// <param name="file"></param>
  9112. /// <param name="columnIndex"></param>
  9113. /// <param name="isDel"></param>
  9114. private void DeleteColumn(string file, int columnIndex, bool isDel)
  9115. {
  9116. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9117. //wb.Save(file);
  9118. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9119. if (sheet1 != null)
  9120. {
  9121. if (isDel)
  9122. {
  9123. Cells cells = sheet1.Cells;
  9124. cells.DeleteColumn(columnIndex);
  9125. }
  9126. }
  9127. wb.Save(file);
  9128. }
  9129. /// <summary>
  9130. /// 删除sheet
  9131. /// </summary>
  9132. /// <param name="file"></param>
  9133. /// <param name="sheetName"></param>
  9134. private void DeleteSheet(string file, string sheetName = "")
  9135. {
  9136. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9137. //wb.Save(file);
  9138. List<string> sheets = new List<string>();
  9139. foreach (var item in wb.Worksheets)
  9140. {
  9141. sheets.Add(item.Name);
  9142. }
  9143. if (sheets.Count > 0)
  9144. {
  9145. sheets.RemoveAt(0);//不删除第一个sheet
  9146. foreach (var item in sheets)
  9147. {
  9148. wb.Worksheets.RemoveAt(item);
  9149. }
  9150. }
  9151. wb.Save(file);
  9152. }
  9153. /// <summary>
  9154. /// 酒店预订
  9155. /// 确认单
  9156. /// </summary>
  9157. /// <param name="_dto"></param>
  9158. /// <returns></returns>
  9159. [HttpPost]
  9160. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9161. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9162. {
  9163. try
  9164. {
  9165. #region 参数验证
  9166. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9167. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9168. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9169. #region 团组操作权限验证 76 酒店预定模块
  9170. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9171. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9172. #endregion
  9173. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9174. #region 页面操作权限验证
  9175. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9176. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9177. #endregion
  9178. #endregion
  9179. //团组信息
  9180. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9181. //酒店数据
  9182. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9183. if (listhoteldata.Count < 0)
  9184. {
  9185. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9186. }
  9187. //利datatable存储
  9188. DataTable dt = new DataTable();
  9189. dt.Columns.Add("CheckInDate", typeof(string));
  9190. dt.Columns.Add("City", typeof(string));
  9191. dt.Columns.Add("Hotel", typeof(string));
  9192. dt.Columns.Add("Room", typeof(string));
  9193. for (int i = 0; i < listhoteldata.Count; i++)
  9194. {
  9195. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9196. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9197. while (dayStart < dayEnd)
  9198. {
  9199. string temp = "";
  9200. DataRow row = dt.NewRow();
  9201. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9202. row["City"] = listhoteldata[i].City;
  9203. row["Hotel"] = listhoteldata[i].HotelName;
  9204. if (listhoteldata[i].SingleRoomCount > 0)
  9205. {
  9206. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9207. }
  9208. if (listhoteldata[i].DoubleRoomCount > 0)
  9209. {
  9210. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9211. }
  9212. if (listhoteldata[i].SuiteRoomCount > 0)
  9213. {
  9214. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9215. }
  9216. if (listhoteldata[i].OtherRoomCount > 0)
  9217. {
  9218. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9219. }
  9220. row["Room"] = temp;
  9221. dt.Rows.Add(row);
  9222. dayStart = dayStart.AddDays(1);
  9223. }
  9224. }
  9225. Dictionary<string, string> dic = new Dictionary<string, string>();
  9226. dic.Add("Dele", di.TeamName);
  9227. dic.Add("City", di.VisitCountry);
  9228. //模板路径
  9229. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9230. //载入模板
  9231. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9232. DocumentBuilder builder = new DocumentBuilder(doc);
  9233. foreach (var key in dic.Keys)
  9234. {
  9235. builder.MoveToBookmark(key);
  9236. builder.Write(dic[key]);
  9237. }
  9238. //获取word里所有表格
  9239. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9240. //获取所填表格的序数
  9241. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9242. var rowStart = tableOne.Rows[0]; //获取第1行
  9243. //循环赋值
  9244. for (int i = 0; i < dt.Rows.Count; i++)
  9245. {
  9246. builder.MoveToCell(0, i + 1, 0, 0);
  9247. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9248. builder.MoveToCell(0, i + 1, 1, 0);
  9249. builder.Write(dt.Rows[i]["City"].ToString());
  9250. builder.MoveToCell(0, i + 1, 2, 0);
  9251. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9252. builder.MoveToCell(0, i + 1, 3, 0);
  9253. builder.Write(dt.Rows[i]["Room"].ToString());
  9254. }
  9255. //删除多余行
  9256. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9257. {
  9258. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9259. }
  9260. string strFileName = di.TeamName + "酒店确认单.doc";
  9261. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9262. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9263. return Ok(JsonView(true, "成功", url));
  9264. }
  9265. catch (Exception ex)
  9266. {
  9267. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9268. }
  9269. }
  9270. #endregion
  9271. #region 团组状态
  9272. /// <summary>
  9273. /// 团组状态列表 Page
  9274. /// </summary>
  9275. /// <param name="dto">团组列表请求dto</param>
  9276. /// <returns></returns>
  9277. [HttpPost]
  9278. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9279. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9280. {
  9281. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9282. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9283. {
  9284. string sqlWhere = string.Empty;
  9285. if (dto.IsSure == 0) //未完成
  9286. {
  9287. sqlWhere += string.Format(@" And IsSure = 0");
  9288. }
  9289. else if (dto.IsSure == 1) //已完成
  9290. {
  9291. sqlWhere += string.Format(@" And IsSure = 1");
  9292. }
  9293. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9294. {
  9295. string tj = dto.SearchCriteria;
  9296. 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}%')",
  9297. tj, tj, tj, tj, tj);
  9298. }
  9299. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9300. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9301. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9302. From (
  9303. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9304. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9305. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9306. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9307. From Grp_DelegationInfo gdi
  9308. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9309. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9310. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9311. Where gdi.IsDel = 0 {0}
  9312. ) temp ", sqlWhere);
  9313. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9314. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9315. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9316. }
  9317. else
  9318. {
  9319. return Ok(JsonView(false, "查询失败"));
  9320. }
  9321. }
  9322. /// <summary>
  9323. /// 团组状态
  9324. /// 设置操作完成
  9325. /// </summary>
  9326. /// <param name="dto">团组列表请求dto</param>
  9327. /// <returns></returns>
  9328. [HttpPost]
  9329. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9330. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9331. {
  9332. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9333. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9334. {
  9335. Id = dto.Id,
  9336. IsSure = 1
  9337. };
  9338. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9339. .UpdateColumns(it => new { it.IsSure })
  9340. .WhereColumns(it => new { it.Id })
  9341. .ExecuteCommandAsync();
  9342. if (result > 0)
  9343. {
  9344. return Ok(JsonView(true, "操作完成!"));
  9345. }
  9346. return Ok(JsonView(false, "操作失败!"));
  9347. }
  9348. #endregion
  9349. #region 保险费用录入
  9350. /// <summary>
  9351. /// 根据团组Id查询保险费用列表
  9352. /// </summary>
  9353. /// <param name="dto"></param>
  9354. /// <returns></returns>
  9355. [HttpPost]
  9356. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9357. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9358. {
  9359. try
  9360. {
  9361. Result groupData = await _customersRep.CustomersByDiId(dto);
  9362. if (groupData.Code != 0)
  9363. {
  9364. return Ok(JsonView(false, groupData.Msg));
  9365. }
  9366. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9367. }
  9368. catch (Exception ex)
  9369. {
  9370. return Ok(JsonView(false, ex.Message));
  9371. }
  9372. }
  9373. /// <summary>
  9374. /// 根据保险费用Id查询保险费用详细
  9375. /// </summary>
  9376. /// <param name="dto"></param>
  9377. /// <returns></returns>
  9378. [HttpPost]
  9379. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9380. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9381. {
  9382. try
  9383. {
  9384. Result groupData = await _customersRep.CustomersById(dto);
  9385. if (groupData.Code != 0)
  9386. {
  9387. return Ok(JsonView(false, groupData.Msg));
  9388. }
  9389. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9390. }
  9391. catch (Exception ex)
  9392. {
  9393. return Ok(JsonView(false, ex.Message));
  9394. }
  9395. }
  9396. /// <summary>
  9397. /// 保险费用录入页面初始化绑定
  9398. /// </summary>
  9399. /// <param name="dto"></param>
  9400. /// <returns></returns>
  9401. [HttpPost]
  9402. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9403. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9404. {
  9405. try
  9406. {
  9407. Result groupData = await _customersRep.CustomersInitialize(dto);
  9408. if (groupData.Code != 0)
  9409. {
  9410. return Ok(JsonView(false, groupData.Msg));
  9411. }
  9412. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9413. }
  9414. catch (Exception ex)
  9415. {
  9416. return Ok(JsonView(false, ex.Message));
  9417. }
  9418. }
  9419. /// <summary>
  9420. /// 保险费用操作(Status:1.新增,2.修改)
  9421. /// </summary>
  9422. /// <param name="dto"></param>
  9423. /// <returns></returns>
  9424. [HttpPost]
  9425. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9426. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9427. {
  9428. try
  9429. {
  9430. Result groupData = await _customersRep.OpCustomers(dto);
  9431. if (groupData.Code != 0)
  9432. {
  9433. return Ok(JsonView(false, groupData.Msg));
  9434. }
  9435. #region 应用推送
  9436. try
  9437. {
  9438. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9439. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9440. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9441. }
  9442. catch (Exception ex)
  9443. {
  9444. }
  9445. #endregion
  9446. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9447. }
  9448. catch (Exception ex)
  9449. {
  9450. return Ok(JsonView(false, ex.Message));
  9451. }
  9452. }
  9453. /// <summary>
  9454. /// 保险文件上传
  9455. /// </summary>
  9456. /// <param name="file"></param>
  9457. /// <returns></returns>
  9458. [HttpPost]
  9459. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9460. public async Task<IActionResult> UploadCus(IFormFile file)
  9461. {
  9462. try
  9463. {
  9464. if (file != null)
  9465. {
  9466. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9467. //文件名称
  9468. string projectFileName = file.FileName;
  9469. //上传的文件的路径
  9470. string filePath = "";
  9471. if (!Directory.Exists(fileDir))
  9472. {
  9473. Directory.CreateDirectory(fileDir);
  9474. }
  9475. //上传的文件的路径
  9476. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9477. using (FileStream fs = System.IO.File.Create(filePath))
  9478. {
  9479. file.CopyTo(fs);
  9480. fs.Flush();
  9481. }
  9482. return Ok(JsonView(true, "上传成功!", projectFileName));
  9483. }
  9484. else
  9485. {
  9486. return Ok(JsonView(false, "上传失败!"));
  9487. }
  9488. }
  9489. catch (Exception ex)
  9490. {
  9491. return Ok(JsonView(false, "程序错误!"));
  9492. throw;
  9493. }
  9494. }
  9495. /// <summary>
  9496. /// 保险删除指定文件
  9497. /// </summary>
  9498. /// <param name="dto"></param>
  9499. /// <returns></returns>
  9500. [HttpPost]
  9501. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9502. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9503. {
  9504. try
  9505. {
  9506. string filePath = "";
  9507. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9508. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9509. //int id = 0;
  9510. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9511. // 删除该文件
  9512. try
  9513. {
  9514. System.IO.File.Delete(filePath);
  9515. 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()
  9516. {
  9517. Attachment = "",
  9518. }).ExecuteCommandAsync();
  9519. if (result != 0)
  9520. {
  9521. return Ok(JsonView(true, "成功!"));
  9522. }
  9523. else
  9524. {
  9525. return Ok(JsonView(false, "失败!"));
  9526. }
  9527. }
  9528. catch (Exception)
  9529. {
  9530. 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()
  9531. {
  9532. Attachment = "",
  9533. }).ExecuteCommandAsync();
  9534. if (result != 0)
  9535. {
  9536. return Ok(JsonView(true, "成功!"));
  9537. }
  9538. else
  9539. {
  9540. return Ok(JsonView(false, "失败!"));
  9541. }
  9542. }
  9543. }
  9544. catch (Exception ex)
  9545. {
  9546. return Ok(JsonView(false, "程序错误!"));
  9547. throw;
  9548. }
  9549. }
  9550. /// <summary>
  9551. /// 保险费用操作(删除)
  9552. /// </summary>
  9553. /// <param name="dto"></param>
  9554. /// <returns></returns>
  9555. [HttpPost]
  9556. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9557. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9558. {
  9559. try
  9560. {
  9561. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9562. if (!res)
  9563. {
  9564. return Ok(JsonView(false, "删除失败"));
  9565. }
  9566. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9567. {
  9568. IsDel = 1,
  9569. DeleteUserId = dto.DeleteUserId,
  9570. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9571. }).ExecuteCommandAsync();
  9572. return Ok(JsonView(true, "删除成功!"));
  9573. }
  9574. catch (Exception ex)
  9575. {
  9576. return Ok(JsonView(false, "程序错误!"));
  9577. throw;
  9578. }
  9579. }
  9580. #endregion
  9581. #region 接团客户名单 PageId 104
  9582. /// <summary>
  9583. /// 接团客户名单
  9584. /// 迁移数据(慎用!)
  9585. /// </summary>
  9586. /// <param name="dto"></param>
  9587. /// <returns></returns>
  9588. [HttpPost]
  9589. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9590. public async Task<IActionResult> PostTourClientListChange()
  9591. {
  9592. try
  9593. {
  9594. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9595. //var groupClinetData1
  9596. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9597. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9598. int updateCount = 0;
  9599. if (oldOAClientList.Count > 0)
  9600. {
  9601. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9602. _sqlSugar.BeginTran();
  9603. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9604. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9605. foreach (var item in oldOAClientList)
  9606. {
  9607. int comId = 0;
  9608. string format = "yyyy-MM-dd HH:mm:ss";
  9609. string data11 = "1990-01-01 00:00";
  9610. var data1 = IsValidDate(item.OPdate, format);
  9611. if (data1) data11 = item.OPdate;
  9612. //客户公司验证
  9613. if (!string.IsNullOrEmpty(item.Company))
  9614. {
  9615. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9616. if (clientComInfo == null) // add
  9617. {
  9618. var addInfo = new Crm_CustomerCompany()
  9619. {
  9620. CompanyAbbreviation = "",
  9621. CompanyFullName = item.Company,
  9622. Address = "",
  9623. PostCodes = "",
  9624. LastedOpUserId = item.OPer,
  9625. LastedOpDt = Convert.ToDateTime(data11),
  9626. CreateUserId = item.OPer,
  9627. CreateTime = Convert.ToDateTime(data11),
  9628. IsDel = 0
  9629. };
  9630. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9631. if (comId1 > 0) comId = comId1;
  9632. }
  9633. else comId = clientComInfo.Id;
  9634. }
  9635. //客户人员验证
  9636. int clientId = 0;
  9637. string name = item.LastName + item.Name;
  9638. if (!string.IsNullOrEmpty(name))
  9639. {
  9640. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9641. if (clientInfo == null)
  9642. {
  9643. DateTime? dateTime = null;
  9644. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9645. if (isDt) dateTime = birthDayDt;
  9646. var addInfo1 = new Crm_DeleClient()
  9647. {
  9648. CrmCompanyId = comId,
  9649. DiId = -1,
  9650. LastName = item.LastName,
  9651. FirstName = item.Name,
  9652. OldName = "",
  9653. Pinyin = item.Pinyin,
  9654. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9655. Marriage = 0,
  9656. Phone = item.Phone,
  9657. Job = item.Job,
  9658. BirthDay = dateTime
  9659. };
  9660. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9661. if (clientId1 > 0) clientId = clientId1;
  9662. }
  9663. else clientId = clientInfo.Id;
  9664. }
  9665. if (clientId < 1)
  9666. {
  9667. continue;
  9668. }
  9669. int airType = 0;
  9670. if (item.AirType == "超经舱") airType = 459;
  9671. else if (item.AirType == "公务舱") airType = 458;
  9672. else if (item.AirType == "经济舱") airType = 460;
  9673. else if (item.AirType == "其他") airType = 565;
  9674. else if (item.AirType == "头等舱") airType = 457;
  9675. var _TourClientListEntity = new Grp_TourClientList()
  9676. {
  9677. DiId = item.Diid,
  9678. ClientId = clientId,
  9679. CreateUserId = item.OPer,
  9680. CreateTime = Convert.ToDateTime(data11),
  9681. Remark = item.Remark,
  9682. IsDel = item.Isdel,
  9683. ShippingSpaceTypeId = airType,
  9684. ShippingSpaceSpecialNeeds = item.AirRemark,
  9685. HotelSpecialNeeds = item.RoomType
  9686. };
  9687. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9688. if (_TourClientList > 0)
  9689. {
  9690. updateCount++;
  9691. }
  9692. }
  9693. _sqlSugar.CommitTran();
  9694. }
  9695. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9696. }
  9697. catch (Exception ex)
  9698. {
  9699. _sqlSugar.RollbackTran();
  9700. return Ok(JsonView(false, ex.Message));
  9701. }
  9702. return Ok(JsonView(true));
  9703. }
  9704. private bool IsValidDate(string dateString, string format)
  9705. {
  9706. DateTime dateValue;
  9707. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9708. return valid;
  9709. }
  9710. /// <summary>
  9711. /// 接团客户名单
  9712. /// 根据团组Id查询List
  9713. /// </summary>
  9714. /// <param name="dto"></param>
  9715. /// <returns></returns>
  9716. [HttpPost]
  9717. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9718. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9719. {
  9720. #region 参数验证
  9721. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9722. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9723. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9724. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9725. #region 页面操作权限验证
  9726. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9727. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9728. #endregion
  9729. #endregion
  9730. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9731. if (viewData.Code != 0)
  9732. {
  9733. return Ok(JsonView(false, viewData.Msg));
  9734. }
  9735. return Ok(JsonView(viewData.Data));
  9736. }
  9737. /// <summary>
  9738. /// 接团客户名单
  9739. /// 基础数据 Init
  9740. /// </summary>
  9741. /// <param name="_dto"></param>
  9742. /// <returns></returns>
  9743. [HttpPost]
  9744. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9745. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9746. {
  9747. #region 参数验证
  9748. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9749. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9750. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9751. #region 页面操作权限验证
  9752. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9753. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9754. #endregion
  9755. #endregion
  9756. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9757. if (viewData.Code != 0)
  9758. {
  9759. return Ok(JsonView(false, viewData.Msg));
  9760. }
  9761. return Ok(JsonView(viewData.Data));
  9762. }
  9763. /// <summary>
  9764. /// 接团客户名单
  9765. /// 根据 Id查询 Details
  9766. /// </summary>
  9767. /// <param name="_dto"></param>
  9768. /// <returns></returns>
  9769. [HttpPost]
  9770. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9771. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9772. {
  9773. #region 参数验证
  9774. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9775. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9776. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9777. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9778. #region 页面操作权限验证
  9779. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9780. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9781. #endregion
  9782. #endregion
  9783. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9784. if (viewData.Code != 0)
  9785. {
  9786. return Ok(JsonView(false, viewData.Msg));
  9787. }
  9788. return Ok(JsonView(viewData.Data));
  9789. }
  9790. /// <summary>
  9791. /// 接团客户名单
  9792. /// Add Or Edit
  9793. /// </summary>
  9794. /// <param name="_dto"></param>
  9795. /// <returns></returns>
  9796. [HttpPost]
  9797. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9798. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9799. {
  9800. #region 参数验证
  9801. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9802. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9803. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9804. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9805. #region 页面操作权限验证
  9806. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9807. if (_dto.Id == 0) //添加
  9808. {
  9809. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9810. }
  9811. else if (_dto.Id >= 0) //修改
  9812. {
  9813. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9814. }
  9815. #endregion
  9816. #endregion
  9817. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9818. if (viewData.Code != 0)
  9819. {
  9820. return Ok(JsonView(false, viewData.Msg));
  9821. }
  9822. return Ok(JsonView(true));
  9823. }
  9824. /// <summary>
  9825. /// 接团客户名单
  9826. /// AddMultiple(添加多个)
  9827. /// </summary>
  9828. /// <param name="_dto"></param>
  9829. /// <returns></returns>
  9830. [HttpPost]
  9831. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9832. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9833. {
  9834. #region 参数验证
  9835. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9836. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9837. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9838. #region 页面操作权限验证
  9839. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9840. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9841. #endregion
  9842. #endregion
  9843. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9844. if (viewData.Code != 0)
  9845. {
  9846. return Ok(JsonView(false, viewData.Msg));
  9847. }
  9848. return Ok(JsonView(true));
  9849. }
  9850. /// <summary>
  9851. /// 接团客户名单
  9852. /// Del
  9853. /// </summary>
  9854. /// <param name="_dto"></param>
  9855. /// <returns></returns>
  9856. [HttpPost]
  9857. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9858. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9859. {
  9860. #region 参数验证
  9861. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9862. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9863. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9864. #region 页面操作权限验证
  9865. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9866. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9867. #endregion
  9868. #endregion
  9869. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  9870. if (viewData.Code != 0)
  9871. {
  9872. return Ok(JsonView(false, viewData.Msg));
  9873. }
  9874. return Ok(JsonView(true));
  9875. }
  9876. /// <summary>
  9877. /// 接团客户名单
  9878. /// 文件下载 客户名单
  9879. /// </summary>
  9880. /// <param name="_dto"></param>
  9881. /// <returns></returns>
  9882. [HttpPost]
  9883. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9884. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  9885. {
  9886. #region 参数验证
  9887. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9888. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9889. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  9890. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9891. #region 页面操作权限验证
  9892. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9893. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9894. #endregion
  9895. #endregion
  9896. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  9897. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  9898. From Grp_TourClientList tcl
  9899. Left Join
  9900. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  9901. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  9902. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  9903. From Crm_DeleClient dc
  9904. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  9905. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  9906. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  9907. Where dc.IsDel = 0) temp
  9908. On temp.DcId =tcl.ClientId
  9909. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  9910. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  9911. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  9912. //载入模板
  9913. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  9914. if (_dto.Language == 1)
  9915. {
  9916. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  9917. }
  9918. //载入模板
  9919. var doc = new Document(tempPath);
  9920. DocumentBuilder builder = new DocumentBuilder(doc);
  9921. //获取word里所有表格
  9922. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9923. //获取所填表格的序数
  9924. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9925. var rowStart = tableOne.Rows[0]; //获取第1行
  9926. if (_dto.Language == 0)
  9927. {
  9928. //循环赋值
  9929. for (int i = 0; i < DcList.Count; i++)
  9930. {
  9931. builder.MoveToCell(0, i + 1, 0, 0);
  9932. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  9933. builder.MoveToCell(0, i + 1, 1, 0);
  9934. int sex = DcList[i].Sex;
  9935. string sexStr = string.Empty;
  9936. if (sex == 0) sexStr = "男";
  9937. else if (sex == 1) sexStr = "女";
  9938. else sexStr = "未设置";
  9939. builder.Write(sexStr);
  9940. builder.MoveToCell(0, i + 1, 2, 0);
  9941. string birthDay = DcList[i].BirthDay;
  9942. string birthDayStr = string.Empty;
  9943. if (!string.IsNullOrEmpty(birthDay))
  9944. {
  9945. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  9946. }
  9947. builder.Write(birthDayStr);
  9948. builder.MoveToCell(0, i + 1, 3, 0);
  9949. string company = "";
  9950. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9951. {
  9952. company = DcList[i].CompanyFullName.ToString();
  9953. }
  9954. builder.Write(company);
  9955. builder.MoveToCell(0, i + 1, 4, 0);
  9956. builder.Write(DcList[i].Job);
  9957. }
  9958. }
  9959. else if (_dto.Language == 1)
  9960. {
  9961. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  9962. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  9963. List<string> transArrayStr = new List<string>();
  9964. string transStrRes1 = "";
  9965. for (int i = 0; i < DcList.Count; i++)
  9966. {
  9967. var dc = DcList[i];
  9968. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  9969. if (dc.Job.Equals("暂无")) dc.Job = "-";
  9970. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  9971. if (DcList.Count - 1 == i) transStrRes1 += str1;
  9972. else transStrRes1 += $"{str1}|";
  9973. }
  9974. //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";
  9975. string transStrRes = "";
  9976. if (transStrRes1.Length > 0 )
  9977. {
  9978. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  9979. }
  9980. //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
  9981. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  9982. //List<string> transArray = new List<string> { };
  9983. List<TranslateInfo> transArray = new List<TranslateInfo>();
  9984. if (transStrRes.Contains("|"))
  9985. {
  9986. string[] transArray1 = transStrRes.Split('|');
  9987. if (transArray1.Length > 0)
  9988. {
  9989. foreach (var item in transArray1)
  9990. {
  9991. if (item.Contains("&"))
  9992. {
  9993. string[] transArray2 = item.Split('&');
  9994. int index = 0;
  9995. string companyName = "", job = "";
  9996. if (transArray2.Length > 0)
  9997. {
  9998. bool success = int.TryParse(transArray2[0].Trim(), out index);
  9999. if (1 < transArray2.Length) companyName = transArray2[1];
  10000. if (2 < transArray2.Length) job = transArray2[2];
  10001. }
  10002. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  10003. }
  10004. }
  10005. }
  10006. }
  10007. //循环赋值
  10008. for (int i = 0; i < DcList.Count; i++)
  10009. {
  10010. string PYName = "";
  10011. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10012. {
  10013. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10014. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10015. PYName = PY_First + " " + PY_Last;
  10016. }
  10017. else
  10018. {
  10019. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10020. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10021. PYName = PY_First + " " + PY_Last;
  10022. }
  10023. builder.MoveToCell(0, i + 1, 0, 0);
  10024. builder.Write(PYName);
  10025. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10026. builder.MoveToCell(0, i + 1, 1, 0);
  10027. builder.Write(sex);
  10028. DateTime birthDt;
  10029. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10030. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  10031. builder.MoveToCell(0, i + 1, 2, 0);
  10032. builder.Write(birthday);
  10033. string company = string.Empty,job = string.Empty;
  10034. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  10035. if (dcTransInfo != null)
  10036. {
  10037. company = dcTransInfo.CompanyName;
  10038. job = dcTransInfo.Job;
  10039. }
  10040. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10041. {
  10042. //查询对照表
  10043. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10044. if (tempCec != null)
  10045. {
  10046. company = tempCec.enName;
  10047. }
  10048. //翻译
  10049. else
  10050. {
  10051. }
  10052. }
  10053. builder.MoveToCell(0, i + 1, 3, 0);
  10054. builder.Write(company);
  10055. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10056. {
  10057. //查询对照表
  10058. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10059. if (tempPec != null)
  10060. {
  10061. job = tempPec.enName;
  10062. }
  10063. //翻译
  10064. else
  10065. {
  10066. }
  10067. }
  10068. builder.MoveToCell(0, i + 1, 4, 0);
  10069. builder.Write(job);
  10070. }
  10071. }
  10072. //删除多余行
  10073. while (tableOne.Rows.Count > DcList.Count + 1)
  10074. {
  10075. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10076. }
  10077. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10078. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10079. doc.Save(fileDir);
  10080. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10081. return Ok(JsonView(true, "操作成功!", Url));
  10082. }
  10083. private class TranslateInfo
  10084. {
  10085. public int Index { get; set; }
  10086. public string CompanyName { get; set; }
  10087. public string Job { get; set; }
  10088. }
  10089. #endregion
  10090. #region 团组倒推表
  10091. /// <summary>
  10092. /// 倒推表基础数据
  10093. /// Init
  10094. /// </summary>
  10095. /// <param name="dto"></param>
  10096. /// <returns></returns>
  10097. [HttpPost]
  10098. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10099. public async Task<IActionResult> PostInvertedListInit()
  10100. {
  10101. var viewData = await _invertedListRep._Init();
  10102. if (viewData.Code != 0)
  10103. {
  10104. return Ok(JsonView(false, viewData.Msg));
  10105. }
  10106. return Ok(JsonView(viewData.Data));
  10107. }
  10108. /// <summary>
  10109. /// 倒推表
  10110. /// Info
  10111. /// </summary>
  10112. /// <param name="dto"></param>
  10113. /// <returns></returns>
  10114. [HttpPost]
  10115. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10116. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10117. {
  10118. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10119. if (viewData.Code != 0)
  10120. {
  10121. return Ok(JsonView(false, viewData.Msg));
  10122. }
  10123. return Ok(JsonView(viewData.Data));
  10124. }
  10125. /// <summary>
  10126. /// 倒推表
  10127. /// Create
  10128. /// </summary>
  10129. /// <param name="dto"></param>
  10130. /// <returns></returns>
  10131. [HttpPost]
  10132. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10133. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10134. {
  10135. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10136. if (viewData.Code != 0)
  10137. {
  10138. return Ok(JsonView(false, viewData.Msg));
  10139. }
  10140. return Ok(JsonView(viewData.Data));
  10141. }
  10142. /// <summary>
  10143. /// 倒推表
  10144. /// Update
  10145. /// </summary>
  10146. /// <param name="dto"></param>
  10147. /// <returns></returns>
  10148. [HttpPost]
  10149. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10150. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10151. {
  10152. var viewData = await _invertedListRep._Update(dto);
  10153. if (viewData.Code != 0)
  10154. {
  10155. return Ok(JsonView(false, viewData.Msg));
  10156. }
  10157. return Ok(JsonView(viewData.Data));
  10158. }
  10159. /// <summary>
  10160. /// 倒推表
  10161. /// File Download
  10162. /// </summary>
  10163. /// <param name="dto"></param>
  10164. /// <returns></returns>
  10165. [HttpPost]
  10166. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10167. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10168. {
  10169. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10170. if (info2.Code != 0)
  10171. {
  10172. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10173. }
  10174. var info1 = info2.Data as InvertedListInfoView;
  10175. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10176. string teamName = "";
  10177. if (info != null) teamName = info.TeamName;
  10178. //载入模板
  10179. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10180. DocumentBuilder builder = new DocumentBuilder(doc);
  10181. //利用键值对存放数据
  10182. Dictionary<string, string> dic = new Dictionary<string, string>();
  10183. dic.Add("TeamName", teamName);
  10184. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10185. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10186. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10187. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10188. dic.Add("SQRemark", info1.ApprovalRemark);
  10189. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10190. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10191. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10192. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10193. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10194. dic.Add("QZRemark", info1.VisaInformationRemark);
  10195. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10196. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10197. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10198. dic.Add("CQRemark", info1.IssueVisaRemark);
  10199. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10200. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10201. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10202. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10203. #region 填充word模板书签内容
  10204. foreach (var key in dic.Keys)
  10205. {
  10206. builder.MoveToBookmark(key);
  10207. builder.Write(dic[key]);
  10208. }
  10209. #endregion
  10210. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10211. string fileName = $"{teamName}团出行准备流程表.doc";
  10212. string filePath = fileDir + $@"InvertedList/{fileName}";
  10213. doc.Save(filePath);
  10214. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10215. return Ok(JsonView(true, "操作成功!", Url));
  10216. }
  10217. #endregion
  10218. #region 三公签证费用(签证费、代办费)
  10219. /// <summary>
  10220. /// 三公签证费用(签证费、代办费)
  10221. /// List
  10222. /// </summary>
  10223. /// <returns></returns>
  10224. [HttpPost]
  10225. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10226. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10227. {
  10228. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10229. if (_view.Code != 0)
  10230. {
  10231. return Ok(JsonView(false, _view.Msg));
  10232. }
  10233. return Ok(JsonView(true, "操作成功!", _view.Data));
  10234. }
  10235. /// <summary>
  10236. /// 三公签证费用(签证费、代办费)
  10237. /// Add Or Update
  10238. /// </summary>
  10239. /// <returns></returns>
  10240. [HttpPost]
  10241. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10242. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10243. {
  10244. var _view = await _visaFeeInfoRep._Update(_dto);
  10245. if (_view.Code != 0)
  10246. {
  10247. return Ok(JsonView(false, _view.Msg));
  10248. }
  10249. return Ok(JsonView(true, _view.Msg));
  10250. }
  10251. #endregion
  10252. #region 酒店询价
  10253. /// <summary>
  10254. /// 酒店询价
  10255. /// Init
  10256. /// </summary>
  10257. /// <param name="dto"></param>
  10258. /// <returns></returns>
  10259. [HttpPost]
  10260. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10261. public async Task<IActionResult> PostHotelInquiryInit()
  10262. {
  10263. var res = await _hotelInquiryRep._Init();
  10264. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10265. return Ok(JsonView(true, res.Msg, res.Data));
  10266. }
  10267. /// <summary>
  10268. /// 酒店询价
  10269. /// page Item
  10270. /// </summary>
  10271. /// <param name="_dto"></param>
  10272. /// <returns></returns>
  10273. [HttpPost]
  10274. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10275. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10276. {
  10277. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10278. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10279. var view = res.Data as PageDataViewBase;
  10280. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10281. }
  10282. /// <summary>
  10283. /// 酒店询价
  10284. /// info
  10285. /// </summary>
  10286. /// <param name="_dto"></param>
  10287. /// <returns></returns>
  10288. [HttpPost]
  10289. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10290. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10291. {
  10292. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10293. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10294. return Ok(JsonView(true, res.Msg, res.Data));
  10295. }
  10296. /// <summary>
  10297. /// 酒店询价
  10298. /// Add Or Edit
  10299. /// </summary>
  10300. /// <param name="_dto"></param>
  10301. /// <returns></returns>
  10302. [HttpPost]
  10303. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10304. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10305. {
  10306. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10307. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10308. return Ok(JsonView(true, res.Msg, res.Data));
  10309. }
  10310. /// <summary>
  10311. /// 酒店询价
  10312. /// Del
  10313. /// </summary>
  10314. /// <param name="_dto"></param>
  10315. /// <returns></returns>
  10316. [HttpPost]
  10317. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10318. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10319. {
  10320. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10321. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10322. return Ok(JsonView(true, res.Msg, res.Data));
  10323. }
  10324. #endregion
  10325. #region 下载匹配op行程单
  10326. /// <summary>
  10327. /// 匹配op行程单
  10328. /// Init
  10329. /// </summary>
  10330. /// <param name="dto">团组列表请求dto</param>
  10331. /// <returns></returns>
  10332. [HttpPost]
  10333. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10334. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10335. {
  10336. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10337. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10338. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10339. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10340. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10341. .Where(it => it.IsDel == 0)
  10342. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10343. .OrderByDescending(it => it.CreateUserId)
  10344. .ToList();
  10345. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10346. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10347. var diids = groupInfos.Select(it => it.Id).ToList();
  10348. List<string> countrys = new List<string>();
  10349. foreach (var item in country)
  10350. {
  10351. var data = _groupRepository.FormartTeamName(item);
  10352. var dataArray = _groupRepository.GroupSplitCountry(data);
  10353. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10354. }
  10355. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10356. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10357. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10358. foreach (var item in areaItem)
  10359. {
  10360. string areaStr = item.Value;
  10361. if (!string.IsNullOrEmpty(areaStr))
  10362. {
  10363. string[] str1 = areaStr.Split("-");
  10364. if (str1.Length > 0)
  10365. {
  10366. areaArray.AddRange(str1);
  10367. }
  10368. }
  10369. }
  10370. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10371. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10372. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10373. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10374. .ToList();
  10375. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10376. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10377. .Where(it => countriesIds.Contains(it.Id))
  10378. .Select(it => new { it.Id, Name = it.Name_CN })
  10379. .ToList();
  10380. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10381. .Select(it => it.TeamName).ToList();
  10382. stopwatch.Stop();
  10383. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10384. }
  10385. ///// <summary>
  10386. ///// 匹配op行程单
  10387. ///// Init 查询区域数据
  10388. ///// </summary>
  10389. ///// <param name="dto">团组列表请求dto</param>
  10390. ///// <returns></returns>
  10391. //[HttpPost]
  10392. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10393. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10394. //{
  10395. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10396. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10397. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10398. // if (string.IsNullOrEmpty(countriesDataStr))
  10399. // {
  10400. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10401. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10402. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10403. // }
  10404. // else
  10405. // {
  10406. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10407. // }
  10408. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10409. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10410. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10411. // List<dynamic> childList = new List<dynamic>();
  10412. // int parentId = dto.CountriesId;
  10413. // if (provinceData.Count > 1)
  10414. // {
  10415. // foreach (var item1 in provinceData)
  10416. // {
  10417. // List<dynamic> childList1 = new List<dynamic>();
  10418. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10419. // foreach (var item2 in citiesData1)
  10420. // {
  10421. // List<dynamic> childList2 = new List<dynamic>();
  10422. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10423. // foreach (var item3 in countiesData1)
  10424. // {
  10425. // childList2.Add(new
  10426. // {
  10427. // id = item3.Id,
  10428. // parentId = item2.Id,
  10429. // level = "district",
  10430. // name = item3.Name_CN,
  10431. // });
  10432. // }
  10433. // childList1.Add(new
  10434. // {
  10435. // id = item2.Id,
  10436. // parentId = item1.Id,
  10437. // level = "city",
  10438. // name = item2.Name_CN,
  10439. // childList = childList2
  10440. // });
  10441. // }
  10442. // childList.Add(new
  10443. // {
  10444. // id = item1.Id,
  10445. // parentId = parentId,
  10446. // level = "province",
  10447. // name = item1.Name_CN,
  10448. // childList = childList1
  10449. // });
  10450. // }
  10451. // //城市
  10452. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10453. // foreach (var item2 in citiesData2)
  10454. // {
  10455. // List<dynamic> childList22 = new List<dynamic>();
  10456. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10457. // foreach (var item3 in countiesData1)
  10458. // {
  10459. // childList22.Add(new
  10460. // {
  10461. // id = item3.Id,
  10462. // parentId = item2.Id,
  10463. // level = "district",
  10464. // name = item3.Name_CN,
  10465. // });
  10466. // }
  10467. // childList.Add(new
  10468. // {
  10469. // id = item2.Id,
  10470. // parentId = parentId,
  10471. // level = "city",
  10472. // name = item2.Name_CN,
  10473. // childList = childList22
  10474. // });
  10475. // }
  10476. // }
  10477. // else
  10478. // {
  10479. // foreach (var item2 in citiesData)
  10480. // {
  10481. // string cname = item2.Name_CN;
  10482. // List<dynamic> childList1 = new List<dynamic>();
  10483. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10484. // foreach (var item3 in countiesData1)
  10485. // {
  10486. // childList1.Add(new
  10487. // {
  10488. // Id = item3.Id,
  10489. // parentId = item2.Id,
  10490. // level = "district",
  10491. // name = item3.Name_CN
  10492. // });
  10493. // }
  10494. // childList.Add(new
  10495. // {
  10496. // id = item2.Id,
  10497. // parentId = parentId,
  10498. // level = "city",
  10499. // name = item2.Name_CN,
  10500. // childList = childList1
  10501. // });
  10502. // }
  10503. // }
  10504. // stopwatch.Stop();
  10505. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10506. //}
  10507. /// <summary>
  10508. /// 匹配op行程单
  10509. /// 接团信息列表 Page
  10510. /// </summary>
  10511. /// <param name="dto">团组列表请求dto</param>
  10512. /// <returns></returns>
  10513. [HttpPost]
  10514. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10515. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10516. {
  10517. var swatch = new Stopwatch();
  10518. swatch.Start();
  10519. #region 参数验证
  10520. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10521. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10522. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10523. #region 页面操作权限验证
  10524. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10525. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10526. #endregion
  10527. #endregion
  10528. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10529. {
  10530. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10531. string sqlWhere = "";
  10532. if (!string.IsNullOrEmpty(dto.Country))
  10533. {
  10534. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10535. }
  10536. if (!string.IsNullOrEmpty(dto.Area))
  10537. {
  10538. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10539. }
  10540. if (!string.IsNullOrEmpty(dto.TeamName))
  10541. {
  10542. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10543. }
  10544. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10545. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10546. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10547. swatch.Stop();
  10548. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10549. }
  10550. else
  10551. {
  10552. return Ok(JsonView(false, "查询失败"));
  10553. }
  10554. }
  10555. /// <summary>
  10556. /// 匹配op行程单
  10557. /// 行程单下载
  10558. /// </summary>
  10559. /// <param name="dto">团组列表请求dto</param>
  10560. /// <returns></returns>
  10561. [HttpPost]
  10562. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10563. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10564. {
  10565. #region 参数验证
  10566. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10567. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10568. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10569. #region 页面操作权限验证
  10570. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10571. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10572. #endregion
  10573. #endregion
  10574. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10575. {
  10576. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10577. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10578. }
  10579. else
  10580. {
  10581. return Ok(JsonView(false, "下载失败!"));
  10582. }
  10583. }
  10584. #endregion
  10585. #region 国家信息 数据 注释
  10586. //[HttpPost]
  10587. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10588. //{
  10589. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10590. // foreach (var item in dto)
  10591. // {
  10592. // infos.Add(new Grp_GroupsTaskAssignment()
  10593. // {
  10594. // DIId = item,
  10595. // CTId = 82,
  10596. // UId = 248,
  10597. // IsEnable = 1,
  10598. // CreateUserId = 233,
  10599. // CreateTime = DateTime.Now,
  10600. // IsDel = 0
  10601. // });
  10602. // infos.Add(new Grp_GroupsTaskAssignment()
  10603. // {
  10604. // DIId = item,
  10605. // CTId = 82,
  10606. // UId = 286,
  10607. // IsEnable = 1,
  10608. // CreateUserId = 233,
  10609. // CreateTime = DateTime.Now,
  10610. // IsDel = 0
  10611. // });
  10612. // }
  10613. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10614. // return Ok("操作成功");
  10615. //}
  10616. //public class paramJsonDto
  10617. //{
  10618. // public List<CountriesInfo> str { get; set; }
  10619. //}
  10620. //[HttpPost]
  10621. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10622. //{
  10623. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10624. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10625. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10626. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10627. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10628. // _sqlSugar.BeginTran();
  10629. // int countitiesIndex = 0;
  10630. // foreach (var item in dto.str)
  10631. // {
  10632. // dynamic data = item.c;
  10633. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10634. // if (data != null)
  10635. // {
  10636. // countitiesIndex++;
  10637. // foreach (var item1 in data)
  10638. // {
  10639. // string cnname = item1.cn;
  10640. // string enname = item1.en;
  10641. // Sys_Cities provinceInfo = new Sys_Cities()
  10642. // {
  10643. // CountriesId = countriesId,
  10644. // Name_CN = cnname,
  10645. // Name_EN = enname,
  10646. // ParentId = 0,
  10647. // IsCapital = 1,
  10648. // CreateUserId = 208,
  10649. // CreateTime = DateTime.Now,
  10650. // IsDel = 0
  10651. // };
  10652. // if (item1.lv == "province") //省份
  10653. // {
  10654. // provinceInfo.Level = 1;
  10655. // int provinceId = 0;
  10656. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10657. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10658. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10659. // var data1 = item1.c;
  10660. // foreach (var item2 in data1)
  10661. // {
  10662. // if (item2.lv == "city")
  10663. // {
  10664. // string citycnname = item2.cn;
  10665. // string cityenname = item2.en;
  10666. // Sys_Cities cityInfo = new Sys_Cities()
  10667. // {
  10668. // CountriesId = countriesId,
  10669. // ParentId = provinceId,
  10670. // Level = 2,
  10671. // Name_CN = citycnname,
  10672. // Name_EN = cityenname,
  10673. // IsCapital = 1,
  10674. // CreateUserId = 208,
  10675. // CreateTime = DateTime.Now,
  10676. // IsDel = 0
  10677. // };
  10678. // if (item2.c != null)
  10679. // {
  10680. // int cityId = 0;
  10681. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10682. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10683. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10684. // foreach (var item3 in item2.c)
  10685. // {
  10686. // if (item3.lv == "district")
  10687. // {
  10688. // var districtInfo = new Sys_Cities()
  10689. // {
  10690. // CountriesId = countriesId,
  10691. // Name_CN = item3.cn,
  10692. // Name_EN = item3.en,
  10693. // Level = 3,
  10694. // ParentId = cityId,
  10695. // IsCapital = 1,
  10696. // CreateUserId = 208,
  10697. // CreateTime = DateTime.Now,
  10698. // IsDel = 0
  10699. // };
  10700. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10701. // //{
  10702. // districts.Add(districtInfo);
  10703. // //}
  10704. // }
  10705. // }
  10706. // }
  10707. // else
  10708. // {
  10709. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10710. // //{
  10711. // cities.Add(cityInfo);
  10712. // //}
  10713. // }
  10714. // }
  10715. // }
  10716. // }
  10717. // else if (item1.lv == "city")//城市
  10718. // {
  10719. // provinceInfo.Level = 2;
  10720. // if (item1.c != null)
  10721. // {
  10722. // int cityId = 0;
  10723. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10724. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10725. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10726. // foreach (var item3 in item1.c)
  10727. // {
  10728. // if (item3.lv == "district")
  10729. // {
  10730. // var districtInfo = new Sys_Cities()
  10731. // {
  10732. // CountriesId = countriesId,
  10733. // Name_CN = item3.cn,
  10734. // Name_EN = item3.en,
  10735. // Level = 3,
  10736. // ParentId = cityId,
  10737. // IsCapital = 1,
  10738. // CreateUserId = 208,
  10739. // CreateTime = DateTime.Now,
  10740. // IsDel = 0
  10741. // };
  10742. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10743. // //{
  10744. // districts.Add(districtInfo);
  10745. // //}
  10746. // }
  10747. // }
  10748. // }
  10749. // else
  10750. // {
  10751. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10752. // //{
  10753. // cities.Add(provinceInfo);
  10754. // //}
  10755. // }
  10756. // }
  10757. // }
  10758. // }
  10759. // }
  10760. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10761. // cities = cities.Distinct().ToList();
  10762. // districts = districts.Distinct().ToList();
  10763. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10764. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10765. // cities.AddRange(districts);
  10766. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10767. // //_sqlSugar.RollbackTran();
  10768. // _sqlSugar.CommitTran();
  10769. // return Ok(JsonView(false, "操作成功!"));
  10770. //}
  10771. //[HttpPost]
  10772. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10773. //{
  10774. // List<CountitiesInfo> infos = dto.MyProperty;
  10775. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10776. // _sqlSugar.BeginTran();
  10777. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10778. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10779. // foreach (var item in infos)
  10780. // {
  10781. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10782. // if (countryInfo != null)
  10783. // {
  10784. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10785. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10786. // if (cityInfo1 != null)
  10787. // {
  10788. // cityInfo1.IsCapital = 0;
  10789. // cityInfos.Add(cityInfo1);
  10790. // }
  10791. // }
  10792. // }
  10793. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10794. // .UpdateColumns(it => it.IsCapital)
  10795. // .WhereColumns(it => it.Id)
  10796. // .ExecuteCommand();
  10797. // //_sqlSugar.RollbackTran();
  10798. // _sqlSugar.CommitTran();
  10799. // return Ok(JsonView(false, "操作成功!"));
  10800. //}
  10801. //public class CounrtiesDto
  10802. //{
  10803. // public List<CountitiesInfo> MyProperty { get; set; }
  10804. //}
  10805. //public class CountitiesInfo
  10806. //{
  10807. // /// <summary>
  10808. // /// 圣约翰
  10809. // /// </summary>
  10810. // public string capital_name_chinese { get; set; }
  10811. // /// <summary>
  10812. // ///
  10813. // /// </summary>
  10814. // public string capital_name { get; set; }
  10815. // /// <summary>
  10816. // ///
  10817. // /// </summary>
  10818. // public string country_type { get; set; }
  10819. // /// <summary>
  10820. // /// 安提瓜和巴布达
  10821. // /// </summary>
  10822. // public string country_name_chinese { get; set; }
  10823. // /// <summary>
  10824. // /// 安提瓜和巴布达
  10825. // /// </summary>
  10826. // public string country_name_chinese_short { get; set; }
  10827. // /// <summary>
  10828. // /// 安提瓜和巴布达
  10829. // /// </summary>
  10830. // public string country_name_chinese_UN { get; set; }
  10831. // /// <summary>
  10832. // ///
  10833. // /// </summary>
  10834. // public string country_name_english_abbreviation { get; set; }
  10835. // /// <summary>
  10836. // ///
  10837. // /// </summary>
  10838. // public string country_name_english_formal { get; set; }
  10839. // /// <summary>
  10840. // ///
  10841. // /// </summary>
  10842. // public string country_name_english_UN { get; set; }
  10843. // /// <summary>
  10844. // ///
  10845. // /// </summary>
  10846. // public string continent_name { get; set; }
  10847. // /// <summary>
  10848. // ///
  10849. // /// </summary>
  10850. // public string subregion_name { get; set; }
  10851. // /// <summary>
  10852. // ///
  10853. // /// </summary>
  10854. // public string country_code2 { get; set; }
  10855. // /// <summary>
  10856. // ///
  10857. // /// </summary>
  10858. // public string country_code3 { get; set; }
  10859. // /// <summary>
  10860. // ///
  10861. // /// </summary>
  10862. // public string phone_code { get; set; }
  10863. //}
  10864. //public class CountriesInfo : BasicInfo
  10865. //{
  10866. // public List<CitiesInfo> c { get; set; }
  10867. //}
  10868. //public class CitiesInfo : BasicInfo
  10869. //{
  10870. // public List<AreaInfo> c { get; set; }
  10871. //}
  10872. //public class AreaInfo : BasicInfo
  10873. //{
  10874. // public List<AreaInfo> c { get; set; }
  10875. //}
  10876. //public class BasicInfo
  10877. //{
  10878. // public string code { get; set; }
  10879. // public string cn { get; set; }
  10880. // public string lv { get; set; }
  10881. // public string en { get; set; }
  10882. //}
  10883. #endregion
  10884. #region 查看邀请方
  10885. /// <summary>
  10886. /// 查看邀请方
  10887. /// 邀请方信息 Init
  10888. /// </summary>
  10889. /// <param name="dto"></param>
  10890. /// <returns></returns>
  10891. [HttpPost]
  10892. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10893. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  10894. {
  10895. string sqlWhere = string.Empty;
  10896. if (!string.IsNullOrEmpty(dto.Search))
  10897. {
  10898. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  10899. }
  10900. string sql = string.Format($@"Select
  10901. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  10902. Id,
  10903. UnitName
  10904. From Res_InvitationOfficialActivityData
  10905. Where IsDel = 0
  10906. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  10907. RefAsync<int> total = 0;
  10908. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10909. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  10910. }
  10911. /// <summary>
  10912. /// 查看邀请方
  10913. /// 国家信息 Init
  10914. /// </summary>
  10915. /// <param name="dto"></param>
  10916. /// <returns></returns>
  10917. [HttpPost]
  10918. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10919. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  10920. {
  10921. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  10922. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10923. var diids = groupInfos.Select(it => it.Id).ToList();
  10924. List<string> countrys = new List<string>();
  10925. foreach (var item in country)
  10926. {
  10927. var data = _groupRepository.FormartTeamName(item);
  10928. var dataArray = _groupRepository.GroupSplitCountry(data);
  10929. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10930. }
  10931. countrys = countrys.Distinct().ToList();
  10932. for (int i = 0; i < countrys.Count; i++)
  10933. {
  10934. string item = countrys[i];
  10935. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  10936. {
  10937. countrys.Remove(item);
  10938. i--;
  10939. }
  10940. }
  10941. RefAsync<int> total = 0;
  10942. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  10943. .Where(it => countrys.Contains(it.Name_CN))
  10944. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10945. .Select(it => new { id = it.Id, name = it.Name_CN })
  10946. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10947. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10948. }
  10949. /// <summary>
  10950. /// 查看邀请方
  10951. /// 城市信息 Init
  10952. /// </summary>
  10953. /// <param name="dto"></param>
  10954. /// <returns></returns>
  10955. [HttpPost]
  10956. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10957. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  10958. {
  10959. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  10960. RefAsync<int> total = 0;
  10961. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  10962. .Where(it => it.CountriesId == dto.CountiesId)
  10963. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10964. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  10965. .Select(it => new { id = it.Id, name = it.Name_CN })
  10966. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10967. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10968. }
  10969. /// <summary>
  10970. /// 查看邀请方
  10971. /// 团组名称 Init
  10972. /// </summary>
  10973. /// <param name="dto"></param>
  10974. /// <returns></returns>
  10975. [HttpPost]
  10976. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10977. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  10978. {
  10979. var watch = new Stopwatch();
  10980. watch.Start();
  10981. RefAsync<int> total = 0;
  10982. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  10983. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  10984. .Where((oa, di) => oa.IsDel == 0)
  10985. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  10986. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  10987. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  10988. .Distinct()
  10989. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10990. watch.Stop();
  10991. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  10992. }
  10993. /// <summary>
  10994. /// 查看邀请方
  10995. /// 团组 & 邀请方信息
  10996. /// </summary>
  10997. /// <param name="dto"></param>
  10998. /// <returns></returns>
  10999. [HttpPost]
  11000. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11001. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  11002. {
  11003. var watch = new Stopwatch();
  11004. watch.Start();
  11005. RefAsync<int> total = 0;
  11006. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  11007. .AS("Grp_DelegationInfo")
  11008. .Includes(x => x.InvitingInfos)
  11009. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  11010. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  11011. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  11012. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  11013. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  11014. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  11015. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11016. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  11017. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  11018. infos.ForEach(x =>
  11019. {
  11020. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  11021. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  11022. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  11023. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  11024. });
  11025. watch.Stop();
  11026. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  11027. }
  11028. #endregion
  11029. #region 报批行程
  11030. /// <summary>
  11031. /// 报批行程初始化
  11032. /// </summary>
  11033. /// <param name="dto"></param>
  11034. /// <returns></returns>
  11035. [HttpPost]
  11036. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  11037. {
  11038. const int chiNumber = 5;
  11039. var jw = JsonView(false);
  11040. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  11041. var group = groupList.First();
  11042. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  11043. group = groupList.First(x => x.Id == diid);
  11044. if (group == null)
  11045. {
  11046. jw.Msg = "暂无团组!";
  11047. return Ok(jw);
  11048. }
  11049. var data = new
  11050. {
  11051. groupList = groupList.Select(x => new
  11052. {
  11053. x.TeamName,
  11054. x.Id
  11055. }),
  11056. content = new ArrayList(),
  11057. groupInfo = new
  11058. {
  11059. group.VisitDays,
  11060. group.TourCode,
  11061. group.VisitPNumber,
  11062. group.TeamName,
  11063. group.Id,
  11064. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  11065. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  11066. },
  11067. };
  11068. var resultArr = new ArrayList();
  11069. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  11070. if (content.Count == 0)
  11071. {
  11072. var stay = "-";
  11073. var cityPath = "-";
  11074. //添加城市路径以及住宿地
  11075. //黑屏代码数据
  11076. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11077. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11078. {
  11079. jw = JsonView(true, "黑屏代码有误!", data);
  11080. return Ok(jw);
  11081. }
  11082. foreach (DataRow row in dtBlack.Rows)
  11083. {
  11084. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11085. {
  11086. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  11087. return Ok(jw);
  11088. }
  11089. }
  11090. //黑屏代码获取时间区间
  11091. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11092. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11093. _sqlSugar.BeginTran();
  11094. for (int i = 0; i < timeArr.Count; i++)
  11095. {
  11096. stay = "-";
  11097. cityPath = "-";
  11098. DateTime NewData = DateTime.Parse(timeArr[i]);
  11099. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11100. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11101. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11102. if (tbSelect.Length > 0)
  11103. {
  11104. List<string> threeCodeStr = new List<string>();
  11105. foreach (var item in tbSelect)
  11106. {
  11107. var threeCode = item["Three"].ToString() ?? "";
  11108. if (threeCode.Length == 6)
  11109. {
  11110. var start = threeCode.Substring(0, 3);
  11111. var end = threeCode.Substring(3, 3);
  11112. if (threeCodeStr.Count == 0)
  11113. {
  11114. threeCodeStr.Add(start);
  11115. threeCodeStr.Add(end);
  11116. }
  11117. else
  11118. {
  11119. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11120. {
  11121. threeCodeStr.Add(end);
  11122. }
  11123. else
  11124. {
  11125. threeCodeStr.Add(start);
  11126. threeCodeStr.Add(end);
  11127. }
  11128. }
  11129. }
  11130. }
  11131. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11132. var last = threeCodeStr.Last();
  11133. foreach (var item in threeCodeStr)
  11134. {
  11135. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11136. if (item.Equals(last))
  11137. {
  11138. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11139. }
  11140. }
  11141. cityPath = cityPath.Trim('-');
  11142. }
  11143. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11144. appro.Diid = diid ?? -1;
  11145. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11146. appro.Id = thisId;
  11147. appro.CreateUserId = dto.UserId;
  11148. appro.CreateTime = DateTime.Now;
  11149. content.Add(appro);
  11150. }
  11151. _sqlSugar.CommitTran();
  11152. }
  11153. foreach (var x in content)
  11154. {
  11155. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  11156. if (chiList.Count < chiNumber)
  11157. {
  11158. for (int i = chiList.Count; i < chiNumber; i++)
  11159. {
  11160. chiList.Add(new Grp_ApprovalTravelDetails());
  11161. }
  11162. }
  11163. resultArr.Add(new
  11164. {
  11165. x.Id,
  11166. x.Date,
  11167. x.Diid,
  11168. chiList = chiList.Select(x1 => new
  11169. {
  11170. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11171. x1.Details,
  11172. x1.ParentId,
  11173. x1.Id
  11174. })
  11175. });
  11176. }
  11177. data = data with
  11178. {
  11179. content = resultArr,
  11180. };
  11181. jw = JsonView(true, "获取成功!", data);
  11182. return Ok(jw);
  11183. }
  11184. /// <summary>
  11185. /// 报批行程删除
  11186. /// </summary>
  11187. /// <param name="dto"></param>
  11188. /// <returns></returns>
  11189. [HttpPost]
  11190. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11191. {
  11192. var jw = JsonView(false);
  11193. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11194. if (group == null)
  11195. {
  11196. jw.Msg = "团组参数有误!";
  11197. return Ok(jw);
  11198. }
  11199. try
  11200. {
  11201. _sqlSugar.BeginTran();
  11202. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11203. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11204. {
  11205. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11206. DeleteUserId = dto.uesrId,
  11207. IsDel = 1
  11208. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11209. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11210. {
  11211. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11212. DeleteUserId = dto.uesrId,
  11213. IsDel = 1
  11214. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11215. _sqlSugar.CommitTran();
  11216. jw = JsonView(true, "删除成功");
  11217. }
  11218. catch (Exception ex)
  11219. {
  11220. jw = JsonView(false, ex.Message);
  11221. }
  11222. return Ok(jw);
  11223. }
  11224. /// <summary>
  11225. /// 报批行程保存
  11226. /// </summary>
  11227. /// <param name="dto"></param>
  11228. /// <returns></returns>
  11229. [HttpPost]
  11230. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11231. {
  11232. var jw = JsonView(false);
  11233. var Find = dto.Arr.Find(x => x.id == 0);
  11234. if (Find != null)
  11235. {
  11236. jw.Msg = "生成的ID为0!";
  11237. return Ok(jw);
  11238. }
  11239. foreach (var item in dto.Arr)
  11240. {
  11241. foreach (var chi in item.chiList)
  11242. {
  11243. if (chi.parentId == 0)
  11244. {
  11245. chi.parentId = item.id;
  11246. }
  11247. }
  11248. }
  11249. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11250. _sqlSugar.BeginTran();
  11251. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11252. {
  11253. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11254. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11255. {
  11256. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11257. DeleteUserId = dto.UserId,
  11258. IsDel = 1
  11259. }).ExecuteCommand();
  11260. }
  11261. try
  11262. {
  11263. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11264. {
  11265. CreateTime = DateTime.Now,
  11266. CreateUserId = dto.UserId,
  11267. Details = x.details,
  11268. ParentId = x.parentId,
  11269. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11270. Remark = "",
  11271. IsDel = 0
  11272. }).ToList()).ExecuteCommand();
  11273. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11274. {
  11275. Id = x.id,
  11276. Details = x.details,
  11277. ParentId = x.parentId,
  11278. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11279. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11280. {
  11281. Details = x.Details,
  11282. ParentId = x.ParentId,
  11283. Time = x.Time
  11284. }).ExecuteCommand();
  11285. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11286. {
  11287. Id = x.id,
  11288. Date = x.date,
  11289. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11290. {
  11291. Date = x.Date
  11292. }).ExecuteCommand();
  11293. _sqlSugar.CommitTran();
  11294. jw = JsonView(true, "保存成功!");
  11295. }
  11296. catch (Exception ex)
  11297. {
  11298. _sqlSugar.RollbackTran();
  11299. jw = JsonView(false, "保存失败!" + ex.Message);
  11300. }
  11301. return Ok(jw);
  11302. }
  11303. /// <summary>
  11304. /// 报批行程生成
  11305. /// </summary>
  11306. /// <param name="dto"></param>
  11307. /// <returns></returns>
  11308. [HttpPost]
  11309. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11310. {
  11311. var jw = JsonView(false);
  11312. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11313. if (group == null)
  11314. {
  11315. jw.Msg = "暂无该团组!";
  11316. return Ok(jw);
  11317. }
  11318. //黑屏代码数据
  11319. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11320. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11321. {
  11322. jw.Msg = "黑屏代码有误!";
  11323. return Ok(jw);
  11324. }
  11325. foreach (DataRow row in dtBlack.Rows)
  11326. {
  11327. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11328. {
  11329. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11330. return Ok(jw);
  11331. }
  11332. }
  11333. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11334. var resultArr = new ArrayList();
  11335. if (officialActivitiesArr.Count == 0)
  11336. {
  11337. jw.Msg = "暂无公务出访信息!";
  11338. return Ok(jw);
  11339. }
  11340. try
  11341. {
  11342. _sqlSugar.BeginTran();
  11343. DeleteApprovalJourney(new
  11344. Domain.Dtos.Groups.DeleteApprovalJourney
  11345. {
  11346. Diid = dto.Diid,
  11347. uesrId = dto.Userid
  11348. });
  11349. var stay = "-";
  11350. var cityPath = "-";
  11351. //添加城市路径以及住宿地
  11352. //黑屏代码获取时间区间
  11353. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11354. var empty = "【未收入该三字码!请机票同事录入】";
  11355. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11356. for (int i = 0; i < timeArr.Count; i++)
  11357. {
  11358. stay = "-";
  11359. cityPath = "-";
  11360. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11361. DateTime NewData = DateTime.Parse(timeArr[i]);
  11362. 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();
  11363. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11364. if (tbSelect.Length > 0)
  11365. {
  11366. List<string> threeCodeStr = new List<string>();
  11367. bool isTrade = false;
  11368. string trip = string.Empty;
  11369. var rowLast = tbSelect.Last();
  11370. var rowFirst = tbSelect.First();
  11371. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11372. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11373. var takeOffTime = DateTime.Parse(timeArr[i]);
  11374. var fallToTime = DateTime.Parse(timeArr[i]);
  11375. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11376. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11377. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11378. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11379. foreach (var item in tbSelect)
  11380. {
  11381. var start = string.Empty;
  11382. var end = string.Empty;
  11383. var threeCode = item["Three"].ToString() ?? "";
  11384. if (threeCode.Length == 6)
  11385. {
  11386. start = threeCode.Substring(0, 3);
  11387. end = threeCode.Substring(3, 3);
  11388. if (threeCodeStr.Count == 0)
  11389. {
  11390. threeCodeStr.Add(start);
  11391. threeCodeStr.Add(end);
  11392. }
  11393. else
  11394. {
  11395. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11396. {
  11397. threeCodeStr.Add(end);
  11398. }
  11399. else
  11400. {
  11401. threeCodeStr.Add(start);
  11402. threeCodeStr.Add(end);
  11403. }
  11404. }
  11405. }
  11406. //处理机票信息
  11407. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11408. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11409. if (start_Object == null)
  11410. {
  11411. start_Object = new Res_ThreeCode()
  11412. {
  11413. AirPort = empty,
  11414. AirPort_En = empty,
  11415. City = empty,
  11416. Country = empty,
  11417. Four = empty,
  11418. Three = empty,
  11419. };
  11420. }
  11421. if (end_Object == null)
  11422. {
  11423. end_Object = new Res_ThreeCode()
  11424. {
  11425. AirPort = empty,
  11426. AirPort_En = empty,
  11427. City = empty,
  11428. Country = empty,
  11429. Four = empty,
  11430. Three = empty,
  11431. };
  11432. }
  11433. //机型判断
  11434. string airModel = item["AirModel"].ToString();
  11435. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11436. string flightTime = item["FlightTime"].ToString();
  11437. if (flightTime!.Contains(":"))
  11438. {
  11439. flightTime = flightTime.Replace(":", "小时");
  11440. flightTime += "分钟";
  11441. }
  11442. if (flightTime.Contains("H"))
  11443. {
  11444. flightTime = flightTime.Replace("H", "小时");
  11445. }
  11446. if (flightTime.Contains("M"))
  11447. {
  11448. flightTime = flightTime.Replace("M", "分钟");
  11449. }
  11450. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11451. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11452. {
  11453. flightTime = flightDataTime.Hour > 0
  11454. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11455. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11456. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11457. }
  11458. //航班号
  11459. string flightcode = item["Fliagtcode"].ToString();
  11460. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11461. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11462. if (aircompany == null)
  11463. {
  11464. aircompany = new Res_AirCompany
  11465. {
  11466. CnName = hsEmpty,
  11467. EnName = hsEmpty,
  11468. ShortCode = hsEmpty,
  11469. };
  11470. }
  11471. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11472. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11473. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11474. if (isTrade)
  11475. {
  11476. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11477. }
  11478. else
  11479. {
  11480. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11481. }
  11482. }
  11483. chiarr.Add(new Grp_ApprovalTravelDetails
  11484. {
  11485. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11486. CreateTime = DateTime.Now,
  11487. CreateUserId = dto.Userid,
  11488. ParentId = 0,
  11489. Details = trip
  11490. });
  11491. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11492. var last = threeCodeStr.Last();
  11493. foreach (var item in threeCodeStr)
  11494. {
  11495. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11496. if (item.Equals(last))
  11497. {
  11498. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11499. }
  11500. }
  11501. cityPath = cityPath.Trim('-');
  11502. }
  11503. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11504. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11505. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11506. appro.Diid = dto.Diid;
  11507. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11508. appro.Id = thisId;
  11509. appro.CreateUserId = dto.Userid;
  11510. appro.CreateTime = DateTime.Now;
  11511. foreach (var item in gwinfo)
  11512. {
  11513. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11514. chi.Details = "拜访" + item.Client;
  11515. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11516. {
  11517. chi.Details += "," + item.ReqSample;
  11518. }
  11519. chi.ParentId = thisId;
  11520. chi.Time = item.Time;
  11521. chiarr.Add(chi);
  11522. }
  11523. if (chiarr.Count < 5)
  11524. {
  11525. for (int j = chiarr.Count; j < 5; j++)
  11526. {
  11527. chiarr.Add(new
  11528. Grp_ApprovalTravelDetails());
  11529. }
  11530. }
  11531. resultArr.Add(new
  11532. {
  11533. appro.Id,
  11534. appro.Date,
  11535. appro.Diid,
  11536. chiList = chiarr.Select(x1 => new
  11537. {
  11538. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11539. x1.Details,
  11540. x1.ParentId,
  11541. x1.Id
  11542. })
  11543. });
  11544. }
  11545. _sqlSugar.CommitTran();
  11546. jw = JsonView(true, "生成成功!", resultArr);
  11547. }
  11548. catch (Exception ex)
  11549. {
  11550. jw.Code = 400;
  11551. jw.Msg = "生成失败!" + ex.Message;
  11552. }
  11553. return Ok(jw);
  11554. }
  11555. /// <summary>
  11556. /// 报批行程word导出
  11557. /// </summary>
  11558. /// <param name="dto"></param>
  11559. /// <returns></returns>
  11560. [HttpPost]
  11561. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11562. {
  11563. var jw = JsonView(false);
  11564. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11565. if (group == null)
  11566. {
  11567. jw.Msg = "暂无该团组!";
  11568. return Ok(jw);
  11569. }
  11570. //模板路径
  11571. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11572. //载入模板
  11573. Document doc = new Document(tempPath);
  11574. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11575. //获取所填表格的序数
  11576. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11577. Aspose.Words.Tables.Row titleRowClone = null;
  11578. Aspose.Words.Tables.Row CenterRowClone = null;
  11579. int index = 0;
  11580. int indexChi = 0;
  11581. int SetIndex = 0;
  11582. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11583. //获取数据,放到datatable
  11584. foreach (var item in ApprovalTravelArr)
  11585. {
  11586. if (index > 0)
  11587. {
  11588. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11589. tableOne.AppendChild(titleRowClone);
  11590. }
  11591. var textTime = item.Date;
  11592. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11593. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11594. SetIndex++;
  11595. if (ChiRep.Count > 0)
  11596. {
  11597. foreach (var itemChi in ChiRep)
  11598. {
  11599. var txtTime = itemChi.Time;
  11600. var txtDetail = itemChi.Details;
  11601. if (indexChi > 0)
  11602. {
  11603. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11604. tableOne.AppendChild(CenterRowClone);
  11605. }
  11606. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11607. {
  11608. SetCells(tableOne, doc, SetIndex, 0, "");
  11609. SetCells(tableOne, doc, SetIndex, 1, "");
  11610. indexChi++;
  11611. SetIndex++;
  11612. break;
  11613. }
  11614. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11615. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11616. indexChi++;
  11617. SetIndex++;
  11618. }
  11619. }
  11620. else
  11621. {
  11622. if (indexChi > 0)
  11623. {
  11624. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11625. tableOne.AppendChild(CenterRowClone);
  11626. }
  11627. SetCells(tableOne, doc, SetIndex, 0, "");
  11628. SetCells(tableOne, doc, SetIndex, 1, "");
  11629. indexChi++;
  11630. SetIndex++;
  11631. }
  11632. index++;
  11633. }
  11634. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11635. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11636. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11637. jw.Code = 200;
  11638. jw.Msg = "";
  11639. return Ok(jw);
  11640. }
  11641. private string intToString(int numberVal)
  11642. {
  11643. string numberval = numberVal.ToString();
  11644. Dictionary<char, string> Number = new Dictionary<char, string>();
  11645. Number.Add('1', "一");
  11646. Number.Add('2', "二");
  11647. Number.Add('3', "三");
  11648. Number.Add('4', "四");
  11649. Number.Add('5', "五");
  11650. Number.Add('6', "六");
  11651. Number.Add('7', "七");
  11652. Number.Add('8', "八");
  11653. Number.Add('9', "九");
  11654. string stringNumberVal = string.Empty;
  11655. for (int i = 0; i < numberval.Length; i++)
  11656. {
  11657. if (i == 0)
  11658. {
  11659. stringNumberVal += Number[numberval[i]];
  11660. }
  11661. else if (i >= 1)
  11662. {
  11663. if (numberval[i] == '0')
  11664. {
  11665. stringNumberVal = "十";
  11666. }
  11667. else
  11668. {
  11669. stringNumberVal += "十" + Number[numberval[i]];
  11670. }
  11671. }
  11672. }
  11673. return stringNumberVal;
  11674. }
  11675. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11676. {
  11677. //获取table中的某个单元格,从0开始
  11678. Cell lshCell = table.Rows[rows].Cells[cells];
  11679. //将单元格中段落移除
  11680. foreach (Node item in lshCell.Paragraphs)
  11681. {
  11682. lshCell.Paragraphs.Remove(item);
  11683. }
  11684. if (val.Contains("\r\n"))
  11685. {
  11686. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11687. foreach (var item in spArr)
  11688. {
  11689. //新建一个段落
  11690. Paragraph p = new Paragraph(doc);
  11691. var r = new Run(doc, item);
  11692. //把设置的值赋给之前新建的段落
  11693. p.AppendChild(r);
  11694. //将此段落加到单元格内
  11695. lshCell.AppendChild(p);
  11696. }
  11697. }
  11698. else
  11699. {
  11700. //新建一个段落
  11701. Paragraph p = new Paragraph(doc);
  11702. var r = new Run(doc, val);
  11703. //把设置的值赋给之前新建的段落
  11704. p.AppendChild(r);
  11705. //将此段落加到单元格内
  11706. lshCell.AppendChild(p);
  11707. }
  11708. }
  11709. [HttpPost]
  11710. public async Task<IActionResult> ServerHttp(string paramStr)
  11711. {
  11712. paramStr = paramStr.TrimEnd('\'');
  11713. paramStr = paramStr.TrimStart('\'');
  11714. JsonView jw = JsonView(false);
  11715. JObject param = JObject.Parse(paramStr);
  11716. if (!param.ContainsKey("url"))
  11717. {
  11718. jw.Msg = "url null";
  11719. return Ok(jw);
  11720. }
  11721. string url = param["url"]!.ToString();
  11722. var methon = "get";
  11723. Dictionary<string, string> bodyValues = null;
  11724. Dictionary<string, string> headValues = null;
  11725. if (param.ContainsKey("methon"))
  11726. {
  11727. methon = param["methon"]!.ToString();
  11728. }
  11729. if (param.ContainsKey("header"))
  11730. {
  11731. var header = param["header"]!.ToString();
  11732. JObject headerJobject = JObject.Parse(header);
  11733. headValues = new Dictionary<string, string>();
  11734. foreach (JProperty item in headerJobject.Properties())
  11735. {
  11736. var value = item.Value.ToString();
  11737. var head = item.Path;
  11738. headValues.Add(head, value);
  11739. }
  11740. }
  11741. if (param.ContainsKey("body"))
  11742. {
  11743. var body = param["body"]!.ToString();
  11744. bodyValues = new Dictionary<string, string>();
  11745. JObject bodyJobject = JObject.Parse(body);
  11746. foreach (JProperty item in bodyJobject.Properties())
  11747. {
  11748. var value = item.Value.ToString();
  11749. var head = item.Path;
  11750. bodyValues.Add(head, value);
  11751. }
  11752. }
  11753. HttpClient client = new HttpClient();
  11754. string responseString = string.Empty;
  11755. if (param.ContainsKey("isJson"))
  11756. {
  11757. }
  11758. if (headValues != null)
  11759. {
  11760. foreach (var item in headValues.Keys)
  11761. {
  11762. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11763. }
  11764. }
  11765. try
  11766. {
  11767. if (methon == "get")
  11768. {
  11769. responseString = await client.GetStringAsync(url);
  11770. }
  11771. else if (methon == "post")
  11772. {
  11773. if (bodyValues == null)
  11774. {
  11775. jw.Msg = "methon post body null";
  11776. return Ok(jw);
  11777. }
  11778. // 数据转化为 key=val 格式
  11779. var content = new FormUrlEncodedContent(bodyValues);
  11780. var response = await client.PostAsync(url, content);
  11781. // 获取数据
  11782. responseString = await response.Content.ReadAsStringAsync();
  11783. }
  11784. else
  11785. {
  11786. jw.Msg = "methon error";
  11787. }
  11788. jw = JsonView(true, "success", responseString);
  11789. }
  11790. catch (Exception ex)
  11791. {
  11792. jw.Msg = "error " + ex.Message;
  11793. jw.Data = ex.StackTrace;
  11794. }
  11795. finally
  11796. {
  11797. client.Dispose();
  11798. }
  11799. return Ok(jw);
  11800. }
  11801. #endregion
  11802. // /// <summary>
  11803. // ///
  11804. // /// </summary>
  11805. // /// <param name="_dto"></param>
  11806. // /// <returns></returns>
  11807. // [HttpPost]
  11808. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11809. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11810. // {
  11811. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11812. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11813. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11814. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11815. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11816. // dic_psg.Add("客人", 974);
  11817. // dic_psg.Add("司机", 975);
  11818. // dic_psg.Add("导游", 976);
  11819. // dic_psg.Add("公司内部人员", 977);
  11820. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11821. // foreach (var item in list_visa)
  11822. // {
  11823. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11824. // temp.Id = item.Id;
  11825. // temp.DIId = item.DIId;
  11826. // temp.VisaClient = item.VisaClient;
  11827. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  11828. // temp.VisaCurrency = item.VisaCurrency;
  11829. // temp.IsThird = item.IsThird;
  11830. // if (dic_psg.ContainsKey(item.PassengerType))
  11831. // {
  11832. // temp.PassengerType = dic_psg[item.PassengerType];
  11833. // }
  11834. // else {
  11835. // temp.PassengerType = -1;
  11836. // }
  11837. // temp.VisaNumber = item.VisaNumber;
  11838. // temp.VisaFreeNumber = item.VisaFreeNumber;
  11839. // temp.CreateUserId = item.Operators;
  11840. // DateTime dt_ct;
  11841. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  11842. // if (b_ct)
  11843. // {
  11844. // temp.CreateTime = dt_ct;
  11845. // }
  11846. // else
  11847. // {
  11848. // temp.CreateTime = DateTime.Now;
  11849. // }
  11850. // temp.DeleteTime = "";
  11851. // temp.DeleteUserId = 0;
  11852. // temp.Remark = item.Remark;
  11853. // if (string.IsNullOrEmpty(temp.Remark)) {
  11854. // temp.Remark = "";
  11855. // }
  11856. // temp.IsDel = item.IsDel;
  11857. // temp.VisaDescription = item.VisaAttachment;
  11858. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  11859. //([Id]
  11860. // ,[DIId]
  11861. // ,[VisaClient]
  11862. // ,[VisaPrice]
  11863. // ,[VisaCurrency]
  11864. // ,[IsThird]
  11865. // ,[PassengerType]
  11866. // ,[VisaNumber]
  11867. // ,[VisaFreeNumber]
  11868. // ,[CreateUserId]
  11869. // ,[CreateTime]
  11870. // ,[DeleteTime]
  11871. // ,[DeleteUserId]
  11872. // ,[Remark]
  11873. // ,[IsDel]
  11874. // ,[visaDescription])
  11875. // VALUES
  11876. // ({0},{1},'{2}',{3},{4}
  11877. //,{5},{6},{7},{8},{9}
  11878. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  11879. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  11880. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  11881. //);
  11882. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  11883. // }
  11884. // return Ok(JsonView(true, "操作成功!"));
  11885. // }
  11886. /// <summary>
  11887. /// 123132123
  11888. /// </summary>
  11889. /// <param name="_dto"></param>
  11890. /// <returns></returns>
  11891. [HttpPost]
  11892. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11893. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11894. {
  11895. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11896. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  11897. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  11898. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11899. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  11900. dicDetail.Add(789, 1034);
  11901. dicDetail.Add(790, 1035);
  11902. dicDetail.Add(791, 1036);
  11903. dicDetail.Add(792, 1037);
  11904. dicDetail.Add(793, 1038);
  11905. dicDetail.Add(794, 1039);
  11906. dicDetail.Add(795, 1040);
  11907. dicDetail.Add(796, 1041);
  11908. dicDetail.Add(797, 1042);
  11909. dicDetail.Add(798, 1043);
  11910. dicDetail.Add(801, 1044);
  11911. dicDetail.Add(802, 1045);
  11912. dicDetail.Add(803, 1046);
  11913. Dictionary<int, int> dic = new Dictionary<int, int>();
  11914. dic.Add(806, 1027);
  11915. dic.Add(807, 1028);
  11916. dic.Add(808, 1029);
  11917. dic.Add(809, 1030);
  11918. dic.Add(810, 1031);
  11919. dic.Add(811, 1032);
  11920. dic.Add(812, 1033);
  11921. foreach (var item in list_visa)
  11922. {
  11923. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  11924. temp.Coefficient = item.coefficient;
  11925. DateTime dtCrt;
  11926. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  11927. if (b1)
  11928. {
  11929. temp.CreateTime = dtCrt;
  11930. }
  11931. else
  11932. {
  11933. temp.CreateTime = DateTime.Now;
  11934. }
  11935. temp.CreateUserId = item.Operators;
  11936. temp.DeleteTime = "";
  11937. temp.DeleteUserId = 0;
  11938. temp.DiId = int.Parse(item.DIID);
  11939. temp.FilePath = item.FilePath;
  11940. temp.IsDel = item.IsDel;
  11941. temp.Price = item.Price;
  11942. temp.PriceCount = 1;
  11943. temp.PriceCurrency = item.Currency;
  11944. int detailId = 0;
  11945. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  11946. {
  11947. detailId = dicDetail[item.PriceTypeDetail];
  11948. }
  11949. temp.PriceDetailType = detailId;
  11950. temp.PriceDt = DateTime.Now;
  11951. temp.PriceName = item.PriceName;
  11952. temp.PriceSum = item.Price;
  11953. int tid = 0;
  11954. if (dic.ContainsKey(item.PriceType))
  11955. {
  11956. tid = dic[item.PriceType];
  11957. }
  11958. temp.PriceType = tid;
  11959. temp.Remark = item.Remark;
  11960. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  11961. }
  11962. return Ok(JsonView(true, "操作成功!"));
  11963. }
  11964. }
  11965. }