GroupsController.cs 702 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806148071480814809148101481114812148131481414815148161481714818148191482014821148221482314824148251482614827148281482914830148311483214833148341483514836148371483814839148401484114842148431484414845148461484714848148491485014851148521485314854148551485614857148581485914860148611486214863148641486514866148671486814869148701487114872148731487414875148761487714878148791488014881148821488314884148851488614887148881488914890148911489214893148941489514896148971489814899149001490114902149031490414905149061490714908149091491014911149121491314914149151491614917149181491914920149211492214923149241492514926149271492814929149301493114932149331493414935149361493714938149391494014941149421494314944149451494614947149481494914950149511495214953149541495514956149571495814959149601496114962149631496414965149661496714968149691497014971149721497314974149751497614977149781497914980149811498214983149841498514986149871498814989149901499114992149931499414995149961499714998149991500015001150021500315004150051500615007150081500915010150111501215013150141501515016150171501815019150201502115022150231502415025150261502715028150291503015031150321503315034150351503615037150381503915040150411504215043150441504515046150471504815049150501505115052150531505415055150561505715058150591506015061150621506315064150651506615067150681506915070150711507215073150741507515076150771507815079150801508115082150831508415085150861508715088150891509015091150921509315094150951509615097150981509915100151011510215103151041510515106151071510815109
  1. using Aspose.Cells;
  2. using Aspose.Words;
  3. using Aspose.Words.Drawing;
  4. using Aspose.Words.Tables;
  5. using Microsoft.AspNetCore.SignalR;
  6. using MySqlX.XDevAPI.Relational;
  7. using NPOI.HSSF.UserModel;
  8. using NPOI.SS.Format;
  9. using NPOI.SS.UserModel;
  10. using NPOI.SS.Util;
  11. using NPOI.XSSF.UserModel;
  12. using OASystem.API.OAMethodLib;
  13. using OASystem.API.OAMethodLib.File;
  14. using OASystem.API.OAMethodLib.Hub.HubClients;
  15. using OASystem.API.OAMethodLib.Hub.Hubs;
  16. using OASystem.API.OAMethodLib.JuHeAPI;
  17. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  18. using OASystem.Domain.Dtos.CRM;
  19. using OASystem.Domain.Dtos.FileDto;
  20. using OASystem.Domain.Dtos.Groups;
  21. using OASystem.Domain.Entities.Customer;
  22. using OASystem.Domain.Entities.Financial;
  23. using OASystem.Domain.Entities.Groups;
  24. using OASystem.Domain.ViewModels.Groups;
  25. using OASystem.Infrastructure.Repositories.Groups;
  26. using Quartz.Util;
  27. using SqlSugar.Extensions;
  28. using System.Collections;
  29. using System.Data;
  30. using System.Diagnostics;
  31. using System.Globalization;
  32. using System.IO;
  33. using System.Reflection.PortableExecutable;
  34. using Ubiety.Dns.Core;
  35. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  36. using Bookmark = Aspose.Words.Bookmark;
  37. using Cell = Aspose.Words.Tables.Cell;
  38. using Table = Aspose.Words.Tables.Table;
  39. namespace OASystem.API.Controllers
  40. {
  41. /// <summary>
  42. /// 团组相关
  43. /// </summary>
  44. //[Authorize]
  45. [Route("api/[controller]/[action]")]
  46. public class GroupsController : ControllerBase
  47. {
  48. private readonly ILogger<GroupsController> _logger;
  49. private readonly GrpScheduleRepository _grpScheduleRep;
  50. private readonly IMapper _mapper;
  51. private readonly DelegationInfoRepository _groupRepository;
  52. private readonly TaskAssignmentRepository _taskAssignmentRep;
  53. private readonly AirTicketResRepository _airTicketResRep;
  54. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  55. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  56. private readonly DelegationEnDataRepository _delegationEnDataRep;
  57. private readonly DelegationVisaRepository _delegationVisaRep;
  58. private readonly VisaPriceRepository _visaPriceRep;
  59. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  60. private readonly HotelPriceRepository _hotelPriceRep;
  61. private readonly CustomersRepository _customersRep;
  62. private readonly MessageRepository _message;
  63. private readonly SqlSugarClient _sqlSugar;
  64. private readonly TourClientListRepository _tourClientListRep;
  65. private readonly TeamRateRepository _teamRateRep;
  66. #region 成本相关
  67. private readonly CheckBoxsRepository _checkBoxs;
  68. private readonly GroupCostRepository _GroupCostRepository;
  69. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  70. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  71. #endregion
  72. private readonly SetDataRepository _setDataRep;
  73. private string url;
  74. private string path;
  75. private readonly EnterExitCostRepository _enterExitCostRep;
  76. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  77. private readonly UsersRepository _usersRep;
  78. private readonly IJuHeApiService _juHeApi;
  79. private readonly InvertedListRepository _invertedListRep;
  80. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  81. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  82. private readonly ThreeCodeRepository _threeCodeRepository;
  83. private readonly HotelInquiryRepository _hotelInquiryRep;
  84. private readonly FeeAuditRepository _feeAuditRep;
  85. private readonly VisaCommissionRepository _visaCommissionRep;
  86. public GroupsController(ILogger<GroupsController> logger, IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  87. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  88. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  89. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  90. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  91. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  92. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  93. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  94. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep, VisaCommissionRepository visaCommissionRep)
  95. {
  96. _logger = logger;
  97. _mapper = mapper;
  98. _grpScheduleRep = grpScheduleRep;
  99. _groupRepository = groupRepository;
  100. _taskAssignmentRep = taskAssignmentRep;
  101. _airTicketResRep = airTicketResRep;
  102. _sqlSugar = sqlSugar;
  103. url = AppSettingsHelper.Get("ExcelBaseUrl");
  104. path = AppSettingsHelper.Get("ExcelBasePath");
  105. if (!System.IO.Directory.Exists(path))
  106. {
  107. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  108. }
  109. _decreasePaymentsRep = decreasePaymentsRep;
  110. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  111. _delegationEnDataRep = delegationEnDataRep;
  112. _enterExitCostRep = enterExitCostRep;
  113. _delegationVisaRep = delegationVisaRep;
  114. _message = message;
  115. _visaPriceRep = visaPriceRep;
  116. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  117. _checkBoxs = checkBoxs;
  118. _GroupCostRepository = GroupCostRepository;
  119. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  120. _GroupCostParameterRepository = GroupCostParameterRepository;
  121. _hotelPriceRep = hotelPriceRep;
  122. _customersRep = customersRep;
  123. _setDataRep = setDataRep;
  124. _tourClientListRep = tourClientListRep;
  125. _teamRateRep = teamRateRep;
  126. _hubContext = hubContext;
  127. _usersRep = usersRep;
  128. _juHeApi = juHeApi;
  129. _invertedListRep = invertedListRep;
  130. _visaFeeInfoRep = visaFeeInfoRep;
  131. _ticketBlackCodeRep = ticketBlackCodeRep;
  132. _hotelInquiryRep = hotelInquiryRep;
  133. _threeCodeRepository = threeCodeRepository;
  134. _feeAuditRep = feeAuditRep;
  135. _visaCommissionRep = visaCommissionRep;
  136. }
  137. #region 流程管控
  138. /// <summary>
  139. /// 获取团组流程管控信息
  140. /// </summary>
  141. /// <param name="paras">参数Json字符串</param>
  142. /// <returns></returns>
  143. [HttpPost]
  144. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  145. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  146. {
  147. if (string.IsNullOrEmpty(_jsonDto.Paras))
  148. {
  149. return Ok(JsonView(false, "参数为空"));
  150. }
  151. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  152. if (_ScheduleDto != null)
  153. {
  154. if (_ScheduleDto.SearchType == 2)//获取列表
  155. {
  156. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  157. return Ok(JsonView(_grpScheduleViewList));
  158. }
  159. else//获取对象
  160. {
  161. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  162. if (_grpScheduleView != null)
  163. {
  164. return Ok(JsonView(_grpScheduleView));
  165. }
  166. }
  167. }
  168. else
  169. {
  170. return Ok(JsonView(false, "参数反序列化失败"));
  171. }
  172. return Ok(JsonView(false, "暂无数据!"));
  173. }
  174. /// <summary>
  175. /// 修改团组流程管控详细表数据
  176. /// </summary>
  177. /// <param name="paras"></param>
  178. /// <returns></returns>
  179. [HttpPost]
  180. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  181. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  182. {
  183. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  184. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  185. .SetColumns(it => it.Duty == _detail.Duty)
  186. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  187. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  188. .SetColumns(it => it.JobContent == _detail.JobContent)
  189. .SetColumns(it => it.Remark == _detail.Remark)
  190. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  191. .Where(s => s.Id == dto.Id)
  192. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  193. .ExecuteCommandAsync();
  194. if (result > 0)
  195. {
  196. return Ok(JsonView(true, "保存成功!"));
  197. }
  198. return Ok(JsonView(false, "保存失败!"));
  199. }
  200. /// <summary>
  201. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  202. /// </summary>
  203. /// <param name="dto"></param>
  204. /// <returns></returns>
  205. [HttpPost]
  206. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  207. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  208. {
  209. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  210. _detail.IsDel = 1;
  211. _detail.DeleteUserId = dto.Duty;
  212. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  213. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  214. .SetColumns(it => it.IsDel == _detail.IsDel)
  215. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  216. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  217. .Where(it => it.Id == dto.Id)
  218. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  219. //.WhereColumns(s => s.Id == dto.Id)
  220. .ExecuteCommandAsync();
  221. if (result > 0)
  222. {
  223. return Ok(JsonView(true, "删除成功!"));
  224. }
  225. return Ok(JsonView(false, "删除失败!"));
  226. }
  227. /// <summary>
  228. /// 增加团组流程管控详细表数据
  229. /// </summary>
  230. /// <param name="dto"></param>
  231. /// <returns></returns>
  232. [HttpPost]
  233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  234. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  235. {
  236. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  237. if (DateTime.Now < _detail.ExpectBeginDt)
  238. {
  239. _detail.StepStatus = 0;
  240. }
  241. else
  242. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  243. _detail.StepStatus = 1;
  244. }
  245. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  246. if (result > 0)
  247. {
  248. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  249. return Ok(JsonView(true, "添加成功!", _result));
  250. }
  251. return Ok(JsonView(false, "添加失败!"));
  252. }
  253. #endregion
  254. #region 团组基本信息
  255. /// <summary>
  256. /// 接团信息列表
  257. /// </summary>
  258. /// <param name="dto">团组列表请求dto</param>
  259. /// <returns></returns>
  260. [HttpPost]
  261. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  262. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  263. {
  264. var groupData = await _groupRepository.GetGroupList(dto);
  265. if (groupData.Code != 0)
  266. {
  267. return Ok(JsonView(false, groupData.Msg));
  268. }
  269. return Ok(JsonView(groupData.Data));
  270. }
  271. /// <summary>
  272. /// 分页查询团组列表
  273. /// </summary>
  274. /// <param name="dto"></param>
  275. /// <returns></returns>
  276. [HttpPost]
  277. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  278. public async Task<IActionResult> QueryGroupListOffset(QueryGroupListOffsetDto dto)
  279. {
  280. var watch = new Stopwatch();
  281. watch.Start();
  282. RefAsync<int> total = 0;
  283. var countyDatas = await _sqlSugar.Queryable<Grp_DelegationInfo>()
  284. .Where((di) => di.IsDel == 0 && !string.IsNullOrWhiteSpace(di.TeamName))
  285. .WhereIF(!string.IsNullOrEmpty(dto.Search), (di) => di.TeamName.Contains(dto.Search))
  286. .OrderBy((di) => new { id = SqlFunc.Desc(di.Id) })
  287. .Select((di) => new { id = di.Id, name = di.TeamName, di.ClientName , di.VisitPNumber , di.VisitCountry, di.VisitDays, di.VisitStartDate , di.VisitEndDate, di.TourCode })
  288. .Distinct()
  289. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  290. watch.Stop();
  291. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  292. }
  293. /// <summary>
  294. /// 接团信息列表 Page
  295. /// </summary>
  296. /// <param name="dto">团组列表请求dto</param>
  297. /// <returns></returns>
  298. [HttpPost]
  299. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  300. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  301. {
  302. #region 参数验证
  303. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  304. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  305. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  306. #region 页面操作权限验证
  307. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  308. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  309. #endregion
  310. #endregion
  311. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  312. {
  313. string sqlWhere = string.Empty;
  314. if (dto.IsSure == 0) //未完成
  315. {
  316. sqlWhere += string.Format(@" And IsSure = 0");
  317. }
  318. else if (dto.IsSure == 1) //已完成
  319. {
  320. sqlWhere += string.Format(@" And IsSure = 1");
  321. }
  322. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  323. {
  324. string tj = dto.SearchCriteria;
  325. sqlWhere += string.Format(@"And (ssd.Name Like '%{0}%' Or TeamName Like '%{1}%' Or ClientName Like '%{2}%' Or ClientName Like '%{3}%' Or su.CnName Like '%{4}%')",
  326. tj, tj, tj, tj, tj);
  327. }
  328. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  329. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  330. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  331. JietuanOperator,IsSure,CreateTime,IsBid
  332. From (
  333. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  334. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  335. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  336. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  337. su.CnName JietuanOperator,IsSure,gdi.CreateTime,gdi.IsBid
  338. From Grp_DelegationInfo gdi
  339. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  340. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  341. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  342. Where gdi.IsDel = 0 {0}
  343. ) temp", sqlWhere);
  344. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  345. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  346. #region 处理所属部门
  347. /*
  348. * 1.sq 和 gyy 等显示 市场部
  349. * 2.王鸽和主管及张总还有管理员号统一国交部
  350. * 2-1. 4 管理员 ,21 张海麟
  351. */
  352. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  353. List<int> userIds1 = new List<int>() { 4, 21 };
  354. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  355. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  356. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  357. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  358. .ToList();
  359. foreach (var item in _DelegationList)
  360. {
  361. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  362. }
  363. #endregion
  364. var _view = new
  365. {
  366. PageFuncAuth = pageFunAuthView,
  367. Data = _DelegationList
  368. };
  369. return Ok(JsonView(true, "查询成功!", _view, total));
  370. }
  371. else
  372. {
  373. return Ok(JsonView(false, "查询失败"));
  374. }
  375. }
  376. /// <summary>
  377. /// 团组列表
  378. /// </summary>
  379. /// <returns></returns>
  380. [HttpPost]
  381. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  382. {
  383. #region 参数验证
  384. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  385. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  386. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  387. #region 页面操作权限验证
  388. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  389. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  390. #endregion
  391. #endregion
  392. if (dto.PortType != 1 && dto.PortType != 2)
  393. {
  394. return Ok(JsonView(false, "查询失败!"));
  395. }
  396. string orderbyStr = "order by gdi.CreateTime Desc";
  397. string sqlWhere = string.Empty;
  398. if (dto.IsSure == 0) //未完成
  399. {
  400. sqlWhere += string.Format(@" And IsSure = 0");
  401. }
  402. else if (dto.IsSure == 1) //已完成
  403. {
  404. sqlWhere += string.Format(@" And IsSure = 1");
  405. }
  406. //团组类型
  407. if (dto.TeamDid > 0)
  408. {
  409. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  410. }
  411. //团组名称
  412. if (!string.IsNullOrEmpty(dto.TeamName))
  413. {
  414. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  415. }
  416. //客户名称
  417. if (!string.IsNullOrEmpty(dto.ClientName))
  418. {
  419. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  420. }
  421. //客户单位
  422. if (!string.IsNullOrEmpty(dto.ClientUnit))
  423. {
  424. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  425. }
  426. //出访时间
  427. if (!string.IsNullOrEmpty(dto.visitDataTime))
  428. {
  429. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  430. orderbyStr = "order by gdi.VisitDate";
  431. }
  432. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  433. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  434. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  435. JietuanOperator,IsSure,CreateTime
  436. From (
  437. Select row_number() over({0}) as Row_Number,
  438. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  439. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  440. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  441. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  442. From Grp_DelegationInfo gdi
  443. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  444. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  445. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  446. Where gdi.IsDel = 0 {1}
  447. ) temp ", orderbyStr, sqlWhere);
  448. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  449. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  450. #region 处理所属部门
  451. /*
  452. * 1.sq 和 gyy 等显示 市场部
  453. * 2.王鸽和主管及张总还有管理员号统一国交部
  454. * 2-1. 4 管理员 ,21 张海麟
  455. */
  456. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  457. List<int> userIds1 = new List<int>() { 4, 21 };
  458. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  459. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  460. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  461. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  462. .ToList();
  463. foreach (var item in _DelegationList)
  464. {
  465. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  466. }
  467. #endregion
  468. var _view = new
  469. {
  470. PageFuncAuth = pageFunAuthView,
  471. Data = _DelegationList
  472. };
  473. return Ok(JsonView(true, "查询成功!", _view, total));
  474. }
  475. /// <summary>
  476. /// 接团信息详情
  477. /// </summary>
  478. /// <param name="dto">团组info请求dto</param>
  479. /// <returns></returns>
  480. [HttpPost]
  481. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  482. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  483. {
  484. var groupData = await _groupRepository.GetGroupInfo(dto);
  485. if (groupData.Code != 0)
  486. {
  487. return Ok(JsonView(false, groupData.Msg));
  488. }
  489. return Ok(JsonView(groupData.Data));
  490. }
  491. /// <summary>
  492. /// 接团信息 编辑添加
  493. /// 基础信息数据源
  494. /// </summary>
  495. /// <param name="dto"></param>
  496. /// <returns></returns>
  497. [HttpPost]
  498. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  499. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  500. {
  501. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  502. if (groupData.Code != 0)
  503. {
  504. return Ok(JsonView(false, groupData.Msg));
  505. }
  506. return Ok(JsonView(groupData.Data));
  507. }
  508. /// <summary>
  509. /// 接团信息 操作(增改)
  510. /// </summary>
  511. /// <param name="dto"></param>
  512. /// <returns></returns>
  513. [HttpPost]
  514. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  515. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  516. {
  517. try
  518. {
  519. var groupData = await _groupRepository.GroupOperation(dto);
  520. if (groupData.Code != 0)
  521. {
  522. return Ok(JsonView(false, groupData.Msg));
  523. }
  524. int diId = 0;
  525. //添加时 默认加入团组汇率
  526. if (dto.Status == 1) //添加
  527. {
  528. diId = groupData.Data;
  529. //添加默认币种
  530. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  531. //默认分配权限
  532. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  533. //消息提示 王鸽 主管号
  534. List<int> _managerIds = new List<int>() { 22, 32 };
  535. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  536. if (userIds.Count > 0)
  537. {
  538. userIds.Add(208);
  539. //创建团组管控
  540. GroupStepForDelegation.CreateWorkStep(diId);
  541. //发送消息
  542. string groupName = dto.TeamName;
  543. string createGroupUser = string.Empty;
  544. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  545. if (userInfo != null) createGroupUser = userInfo.CnName;
  546. string title = $"系统通知";
  547. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  548. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  549. }
  550. //默认创建倒推表
  551. await _invertedListRep._Create(dto.UserId, diId);
  552. }
  553. else if (dto.Status == 2)
  554. {
  555. diId = dto.Id;
  556. }
  557. return Ok(JsonView(true, "操作成功!", diId));
  558. }
  559. catch (Exception ex)
  560. {
  561. Logs("[response]" + JsonConvert.SerializeObject(dto));
  562. Logs(ex.Message);
  563. return Ok(JsonView(false, ex.Message));
  564. }
  565. }
  566. /// <summary>
  567. /// 接团流程操作(增改)
  568. /// 安卓端使用 建团时添加客户名单
  569. /// </summary>
  570. /// <param name="dto"></param>
  571. /// <returns></returns>
  572. [HttpPost]
  573. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  574. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  575. {
  576. try
  577. {
  578. #region 参数验证
  579. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  580. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  581. #region 页面操作权限验证
  582. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  583. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  584. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  585. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  586. #endregion
  587. #endregion
  588. _sqlSugar.BeginTran();
  589. var _dto = new GroupOperationDto();
  590. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  591. var groupData = await _groupRepository.GroupOperation(_dto);
  592. if (groupData.Code != 0)
  593. {
  594. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  595. }
  596. int diId = 0;
  597. //添加时 默认加入团组汇率
  598. if (dto.Status == 1) //添加
  599. {
  600. diId = groupData.Data;
  601. //添加默认币种
  602. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  603. //默认分配权限
  604. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  605. //消息提示 王鸽 主管号
  606. List<int> _managerIds = new List<int>() { 22, 32 };
  607. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  608. if (userIds.Count > 0)
  609. {
  610. userIds.Add(208);
  611. //创建团组管控
  612. GroupStepForDelegation.CreateWorkStep(diId);
  613. //发送消息
  614. string groupName = dto.TeamName;
  615. string createGroupUser = string.Empty;
  616. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  617. if (userInfo != null) createGroupUser = userInfo.CnName;
  618. string title = $"系统通知";
  619. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  620. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  621. }
  622. }
  623. if (dto.Status == 2)
  624. {
  625. diId = dto.Id;
  626. if (diId == 0)
  627. {
  628. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  629. }
  630. }
  631. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  632. if (viewData.Code != 0)
  633. {
  634. _sqlSugar.RollbackTran();
  635. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  636. }
  637. _sqlSugar.CommitTran();
  638. return Ok(JsonView(true, "添加成功"));
  639. }
  640. catch (Exception ex)
  641. {
  642. _sqlSugar.RollbackTran();
  643. return Ok(JsonView(false, ex.Message));
  644. }
  645. }
  646. /// <summary>
  647. /// 接团信息 操作(删除)
  648. /// </summary>
  649. /// <param name="dto"></param>
  650. /// <returns></returns>
  651. [HttpPost]
  652. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  653. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  654. {
  655. try
  656. {
  657. var groupData = await _groupRepository.GroupDel(dto);
  658. if (groupData.Code != 0)
  659. {
  660. return Ok(JsonView(false, groupData.Msg));
  661. }
  662. return Ok(JsonView(true));
  663. }
  664. catch (Exception ex)
  665. {
  666. Logs("[response]" + JsonConvert.SerializeObject(dto));
  667. Logs(ex.Message);
  668. return Ok(JsonView(false, ex.Message));
  669. }
  670. }
  671. /// <summary>
  672. /// 获取团组销售报价号
  673. /// 团组添加时 使用
  674. /// </summary>
  675. /// <returns></returns>
  676. [HttpPost]
  677. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  678. public async Task<IActionResult> GetGroupSalesQuoteNo()
  679. {
  680. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  681. if (groupData.Code != 0)
  682. {
  683. return Ok(JsonView(false, groupData.Msg));
  684. }
  685. object salesQuoteNo = new
  686. {
  687. SalesQuoteNo = groupData.Data
  688. };
  689. return Ok(JsonView(salesQuoteNo));
  690. }
  691. /// <summary>
  692. /// 设置确认出团
  693. /// </summary>
  694. /// <param name="dto"></param>
  695. /// <returns></returns>
  696. [HttpPost]
  697. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  698. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  699. {
  700. var groupData = await _groupRepository.ConfirmationGroup(dto);
  701. if (groupData.Code != 0)
  702. {
  703. return Ok(JsonView(false, groupData.Msg));
  704. }
  705. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  706. #region OA消息推送
  707. try
  708. {
  709. string groupName = groupInfo.TeamName;
  710. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  711. List<int> userIds = new List<int>();
  712. listUser.ForEach(s => userIds.Add(s.Id));
  713. string title = $"系统通知";
  714. string content = $"团组[{groupName}]已确认出团!";
  715. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  716. }
  717. catch (Exception ex)
  718. {
  719. }
  720. #endregion
  721. #region 应用推送
  722. try
  723. {
  724. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  725. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  726. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  727. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  728. {
  729. List<string> userList = new List<string>() { users.QiyeChatUserId };
  730. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  731. }
  732. }
  733. catch (Exception ex)
  734. {
  735. }
  736. #endregion
  737. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  738. return Ok(JsonView(true, "操作成功!", groupData.Data));
  739. }
  740. /// <summary>
  741. /// 获取团组名称data And 签证国别Data
  742. /// </summary>
  743. /// <param name="dto"></param>
  744. /// <returns></returns>
  745. [HttpPost]
  746. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  747. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  748. {
  749. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  750. if (groupData.Code != 0)
  751. {
  752. return Ok(JsonView(false, groupData.Msg));
  753. }
  754. return Ok(JsonView(groupData.Data));
  755. }
  756. /// <summary>
  757. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  758. /// </summary>
  759. /// <returns></returns>
  760. [HttpPost]
  761. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  762. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  763. {
  764. try
  765. {
  766. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  767. if (groupData.Code != 0)
  768. {
  769. return Ok(JsonView(false, groupData.Msg));
  770. }
  771. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  772. }
  773. catch (Exception ex)
  774. {
  775. return Ok(JsonView(false, "程序错误!"));
  776. throw;
  777. }
  778. }
  779. #endregion
  780. #region 团组&签证
  781. /// <summary>
  782. /// 根据团组Id获取签证客户信息List
  783. /// </summary>
  784. /// <param name="dto">请求dto</param>
  785. /// <returns></returns>
  786. [HttpPost]
  787. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  788. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  789. {
  790. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  791. if (groupData.Code != 0)
  792. {
  793. return Ok(JsonView(false, groupData.Msg));
  794. }
  795. return Ok(JsonView(groupData.Data));
  796. }
  797. /// <summary>
  798. /// IOS获取团组签证拍照上传进度01(团组列表)
  799. /// </summary>
  800. /// <param name="dto">请求dto</param>
  801. /// <returns></returns>
  802. [HttpPost]
  803. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  804. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  805. {
  806. if (dto == null)
  807. {
  808. return Ok(JsonView(false, "参数为空"));
  809. }
  810. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  811. return Ok(JsonView(visaList));
  812. }
  813. /// <summary>
  814. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  815. /// </summary>
  816. /// <returns></returns>
  817. [HttpPost]
  818. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  819. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  820. {
  821. if (dto == null)
  822. {
  823. return Ok(JsonView(false, "请求错误:"));
  824. }
  825. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  826. return Ok(JsonView(list));
  827. }
  828. /// <summary>
  829. /// IOS获取团组签证拍照上传进度03(相册)
  830. /// </summary>
  831. /// <returns></returns>
  832. [HttpPost]
  833. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  834. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  835. {
  836. if (dto == null)
  837. {
  838. return Ok(JsonView(false, "请求错误:"));
  839. }
  840. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  841. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  842. list.ForEach(s => s.url = url);
  843. return Ok(JsonView(list));
  844. }
  845. /// <summary>
  846. /// IOS获取团组签证拍照上传进度04(图片上传)
  847. /// </summary>
  848. /// <param name="dto"></param>
  849. /// <returns></returns>
  850. [HttpPost]
  851. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  852. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  853. {
  854. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  855. //if (!string.IsNullOrEmpty(result))
  856. //{
  857. //}
  858. //else {
  859. // return Ok(JsonView(false, "上传失败"));
  860. //}
  861. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  862. int sucNum = 0;
  863. try
  864. {
  865. foreach (var item in dto.base64DataList)
  866. {
  867. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  868. string result = decodeBase64ToImage(item, imageName);
  869. if (!string.IsNullOrEmpty(result))
  870. {
  871. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  872. pic.CreateUserId = dto.CreateUserId;
  873. pic.PicName = imageName;
  874. pic.PicPath = result;
  875. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  876. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  877. if (insertResult > 0)
  878. {
  879. sucNum++;
  880. }
  881. }
  882. }
  883. }
  884. catch (Exception ex)
  885. {
  886. return Ok(JsonView(false, ex.Message));
  887. }
  888. string msg = string.Format(@"成功上传{0}张", sucNum);
  889. return Ok(JsonView(true, msg));
  890. }
  891. private string decodeBase64ToImage(string base64DataURL, string imgName)
  892. {
  893. string filename = "";//声明一个string类型的相对路径
  894. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  895. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  896. try//会有异常抛出,try,catch一下
  897. {
  898. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  899. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  900. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  901. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  902. //文件名称
  903. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  904. //上传的文件的路径
  905. string filePath = "";
  906. if (!Directory.Exists(fileDir))
  907. {
  908. Directory.CreateDirectory(fileDir);
  909. }
  910. //上传的文件的路径
  911. filePath = fileDir + filename;
  912. //string url = HttpRuntime.AppDomainAppPath.ToString();
  913. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  914. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  915. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  916. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  917. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  918. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  919. ms.Close();//关闭当前流,并释放所有与之关联的资源
  920. bitmap.Dispose();
  921. }
  922. catch (Exception e)
  923. {
  924. string massage = e.Message;
  925. Logs("IOS图片上传Error:" + massage);
  926. //filename = e.Message;
  927. }
  928. return filename;//返回相对路径
  929. }
  930. /// <summary>
  931. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  932. /// </summary>
  933. /// <param name="dto"></param>
  934. /// <returns></returns>
  935. [HttpPost]
  936. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  937. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  938. {
  939. if (dto == null)
  940. {
  941. return Ok(JsonView(false, "请求错误:"));
  942. }
  943. string msg = "参数错误";
  944. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  945. {
  946. try
  947. {
  948. //_delegationVisaRep.BeginTran();
  949. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  950. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  951. .Where(s => s.Id == dto.visaProgressCustomerId)
  952. .ExecuteCommandAsync();
  953. if (updCount > 0 && dto.publishCode == 1)
  954. {
  955. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  956. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  957. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  958. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  959. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  960. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  961. if (groupData == null)
  962. {
  963. _delegationVisaRep.RollbackTran();
  964. }
  965. string title = string.Format(@"[签证进度更新]");
  966. string content = string.Format(@"测试文本");
  967. bool rst = await _message.AddMsg(new MessageDto()
  968. {
  969. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  970. IssuerId = dto.publisher,
  971. Title = title,
  972. Content = content,
  973. ReleaseTime = DateTime.Now,
  974. UIdList = new List<int> {
  975. 234
  976. }
  977. });
  978. if (rst)
  979. {
  980. return Ok(JsonView(true, "发送通知成功"));
  981. }
  982. }
  983. //_delegationVisaRep.CommitTran();
  984. }
  985. catch (Exception)
  986. {
  987. //_delegationVisaRep.RollbackTran();
  988. }
  989. }
  990. return Ok(JsonView(true, msg));
  991. }
  992. #endregion
  993. #region 团组任务分配
  994. /// <summary>
  995. /// 团组任务分配初始化
  996. /// </summary>
  997. /// <param name="dto"></param>
  998. /// <returns></returns>
  999. [HttpPost]
  1000. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1001. public async Task<IActionResult> GetTaskAssignmen()
  1002. {
  1003. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1004. if (groupData.Code != 0)
  1005. {
  1006. return Ok(JsonView(false, groupData.Msg));
  1007. }
  1008. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1009. }
  1010. /// <summary>
  1011. /// 团组任务分配查询
  1012. /// </summary>
  1013. /// <param name="dto"></param>
  1014. /// <returns></returns>
  1015. [HttpPost]
  1016. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1017. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1018. {
  1019. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1020. if (groupData.Code != 0)
  1021. {
  1022. return Ok(JsonView(false, groupData.Msg));
  1023. }
  1024. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1025. }
  1026. /// <summary>
  1027. /// 团组任务分配操作
  1028. /// </summary>
  1029. /// <param name="dto"></param>
  1030. /// <returns></returns>
  1031. [HttpPost]
  1032. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1033. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1034. {
  1035. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1036. if (groupData.Code != 0)
  1037. {
  1038. return Ok(JsonView(false, groupData.Msg));
  1039. }
  1040. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1041. }
  1042. /// <summary>
  1043. /// 团组任务分配
  1044. /// 批量分配
  1045. /// 查询团组
  1046. /// </summary>
  1047. /// <param name="dto"></param>
  1048. /// <returns></returns>
  1049. [HttpPost]
  1050. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1051. public async Task<IActionResult> TaskAllocationGroupSelect(TaskAllocationGroupSelectDto dto)
  1052. {
  1053. //参数验证
  1054. if (dto.PortType < 1 || dto.PortType > 3) return Ok(JsonView(false, MsgTips.Port));
  1055. if (!DateTime.TryParse(dto.VisitBeginDt,out _) || !DateTime.TryParse(dto.VisitEndDt,out _))
  1056. return Ok(JsonView(false, "团组出访开始/结束日期格式不正确!"));
  1057. return Ok(await _taskAssignmentRep.TaskAllocationGroupSelect(dto));
  1058. }
  1059. /// <summary>
  1060. /// 团组任务分配
  1061. /// 批量分配
  1062. /// </summary>
  1063. /// <param name="dto"></param>
  1064. /// <returns></returns>
  1065. [HttpPost]
  1066. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1067. public async Task<IActionResult> TaskAllocationBulkAdd(TaskAllocationBulkAddDto dto)
  1068. {
  1069. //参数验证
  1070. if (dto.UserIds.Length < 1 ) return Ok(JsonView(false, $"请选择分配人员!"));
  1071. if (dto.PermissionTypeIds.Length < 1) return Ok(JsonView(false, $"请选择分配类型!"));
  1072. if (dto.GroupIds.Length < 1) return Ok(JsonView(false, "请选择分配团组Id"));
  1073. if (dto.CurrUserId < 1) return Ok(JsonView(false, "请传入有效的CurrUserId数组参数"));
  1074. return Ok(await _taskAssignmentRep.TaskAllocationBulkAdd(dto));
  1075. }
  1076. #endregion
  1077. #region 团组费用审核
  1078. /// <summary>
  1079. /// 费用审核
  1080. /// 团组列表 Page
  1081. /// </summary>
  1082. /// <param name="_dto">团组列表请求dto</param>
  1083. /// <returns></returns>
  1084. [HttpPost]
  1085. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1086. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1087. {
  1088. #region 参数验证
  1089. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1090. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1091. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1092. #region 页面操作权限验证
  1093. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1094. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1095. #endregion
  1096. #endregion
  1097. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1098. {
  1099. string sqlWhere = string.Empty;
  1100. if (_dto.IsSure == 0) //未完成
  1101. {
  1102. sqlWhere += string.Format(@" And IsSure = 0");
  1103. }
  1104. else if (_dto.IsSure == 1) //已完成
  1105. {
  1106. sqlWhere += string.Format(@" And IsSure = 1");
  1107. }
  1108. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1109. {
  1110. string tj = _dto.SearchCriteria;
  1111. sqlWhere += string.Format(@"And (ssd.Name Like '%{0}%' Or TeamName Like '%{1}%' Or ClientName Like '%{2}%' Or ClientName Like '%{3}%' Or su.CnName Like '%{4}%')",
  1112. tj, tj, tj, tj, tj);
  1113. }
  1114. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1115. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1116. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1117. From (
  1118. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1119. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1120. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1121. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1122. From Grp_DelegationInfo gdi
  1123. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1124. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1125. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1126. Where gdi.IsDel = 0 {0}
  1127. ) temp ", sqlWhere);
  1128. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1129. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1130. var _view = new
  1131. {
  1132. PageFuncAuth = pageFunAuthView,
  1133. Data = _DelegationList
  1134. };
  1135. return Ok(JsonView(true, "查询成功!", _view, total));
  1136. }
  1137. else
  1138. {
  1139. return Ok(JsonView(false, "查询失败"));
  1140. }
  1141. }
  1142. /// <summary>
  1143. /// 获取团组费用审核
  1144. /// </summary>
  1145. /// <param name="paras">参数Json字符串</param>
  1146. /// <returns></returns>
  1147. [HttpPost]
  1148. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1149. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1150. {
  1151. try
  1152. {
  1153. #region 参数验证
  1154. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1155. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1156. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1157. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1158. #region 页面操作权限验证
  1159. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1160. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1161. #endregion
  1162. #endregion
  1163. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1164. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1165. #region 费用清单
  1166. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1167. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1168. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1169. List<Grp_CreditCardPayment> entityList = _groupRepository
  1170. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1171. .Where(exp.ToExpression())
  1172. .ToList();
  1173. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1174. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1175. /*
  1176. * 76://酒店预订
  1177. */
  1178. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1179. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1180. .ToListAsync();
  1181. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1182. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1183. .ToListAsync();
  1184. /*
  1185. * 79://车/导游地接
  1186. */
  1187. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1188. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1189. .ToListAsync();
  1190. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1191. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1192. .ToListAsync();
  1193. /*
  1194. * 80: //签证
  1195. */
  1196. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1197. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1198. .ToListAsync();
  1199. /*
  1200. *81: //邀请/公务活动
  1201. */
  1202. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1203. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1204. .ToListAsync();
  1205. /*
  1206. * 82: //团组客户保险
  1207. */
  1208. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1209. /*
  1210. * Lable = 85 机票预订
  1211. */
  1212. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1213. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1214. .ToListAsync();
  1215. /*
  1216. * 85 机票预定
  1217. */
  1218. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1219. /*
  1220. * 98 其他款项
  1221. */
  1222. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1223. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1224. .ToListAsync();
  1225. /*
  1226. * 285:收款退还
  1227. */
  1228. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1229. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1230. .ToListAsync();
  1231. /*
  1232. * 1015: //超支费用
  1233. */
  1234. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1235. /*
  1236. * 币种信息
  1237. */
  1238. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1239. /*
  1240. * 车/导游地接 费用类型
  1241. */
  1242. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1243. /*
  1244. * 车/导游地接 费用类型
  1245. */
  1246. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1247. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1248. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1249. /*
  1250. * 用户信息
  1251. */
  1252. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1253. /*
  1254. * 费用模块
  1255. */
  1256. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1257. string priceModule = string.Empty;
  1258. if (sdPriceName != null)
  1259. {
  1260. priceModule = sdPriceName.Name;
  1261. }
  1262. /*
  1263. * 成本信息
  1264. */
  1265. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1266. decimal _groupRate = 0.0000M;
  1267. string _groupCurrencyCode = "-";
  1268. if (groupCost != null)
  1269. {
  1270. _groupRate = groupCost.Rate;
  1271. if (int.TryParse(groupCost.Currency, out int _currency))
  1272. {
  1273. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1274. }
  1275. else _groupCurrencyCode = groupCost.Currency;
  1276. }
  1277. string costContentSql = $"Select * From Grp_GroupCost";
  1278. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1279. //处理日期为空的天数
  1280. for (int i = 0; i < groupCostDetails.Count; i++)
  1281. if (i != 0)
  1282. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1283. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1284. /*
  1285. * 处理详情数据
  1286. */
  1287. foreach (var entity in entityList)
  1288. {
  1289. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1290. _detail.Id = entity.Id;
  1291. _detail.PriceName = priceModule;
  1292. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1293. if (_detail.PayType.Equals("现金")) _detail.CardType = "-";
  1294. else _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1295. /*
  1296. * 应付款金额
  1297. */
  1298. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1299. string PaymentCurrency_WaitPay = "Unknown";
  1300. string hotelCurrncyCode = "Unknown";
  1301. string hotelCurrncyName = "Unknown";
  1302. if (sdPaymentCurrency_WaitPay != null)
  1303. {
  1304. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1305. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1306. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1307. if (hotelCurrncyCode.Equals("CNY"))
  1308. {
  1309. entity.DayRate = 1.0000M;
  1310. }
  1311. }
  1312. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1313. /*
  1314. * 此次付款金额
  1315. */
  1316. decimal CurrPayStr = 0.00M,
  1317. OriginalCurrPay = 0.00M;
  1318. if (entity.PayPercentage == 0)
  1319. {
  1320. if (entity.PayThenMoney != 0)
  1321. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1322. }
  1323. else
  1324. {
  1325. if (entity.PayMoney != 0)
  1326. {
  1327. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1328. }
  1329. }
  1330. if (_dto.Label == 79)
  1331. {
  1332. string original = string.Empty;
  1333. if (hotelCurrncyCode.Equals("CNY"))
  1334. {
  1335. OriginalCurrPay = CurrPayStr;
  1336. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1337. }
  1338. else
  1339. {
  1340. OriginalCurrPay = ((entity.PayMoney / 100) * entity.PayPercentage).ConvertToDecimal1();
  1341. //760 EUR(7600.00 CNY)
  1342. _detail.CurrPay = $"{OriginalCurrPay.ToString("#0.00")} {hotelCurrncyCode}({CurrPayStr.ToString("#0.00")} CNY)";
  1343. }
  1344. }
  1345. else
  1346. {
  1347. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1348. }
  1349. /*
  1350. * 剩余尾款
  1351. */
  1352. decimal BalanceStr = 0;
  1353. if (CurrPayStr != 0)
  1354. {
  1355. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1356. BalanceStr = 0;
  1357. else
  1358. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1359. }
  1360. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1361. /*
  1362. * Bus名称
  1363. */
  1364. _detail.BusName = "待增加";
  1365. /*
  1366. *费用所属
  1367. */
  1368. switch (entity.CTable)
  1369. {
  1370. case 76://酒店预订
  1371. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1372. if (hotelReservations != null)
  1373. {
  1374. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1375. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1376. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1377. string roomFeeStr = "", roomFeestr1 = "";
  1378. //是否比较房型价格
  1379. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1380. //roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1381. roomFeeStr += $"<br/>";
  1382. if (hotelReservations.SingleRoomPrice > 0)
  1383. {
  1384. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}<br/>";
  1385. __isSingle = true;
  1386. }
  1387. if (hotelReservations.DoubleRoomPrice > 0)
  1388. {
  1389. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}<br/>";
  1390. __isDouble = true;
  1391. }
  1392. if (hotelReservations.SuiteRoomPrice > 0)
  1393. {
  1394. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}<br/>";
  1395. __isSuite = true;
  1396. }
  1397. if (hotelReservations.OtherRoomPrice > 0)
  1398. {
  1399. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}";
  1400. __isOther = true;
  1401. }
  1402. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1403. else roomFeeStr += " 0.00 * 0";
  1404. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1405. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1406. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1407. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1408. /*
  1409. * 费用类型
  1410. * 1:房费
  1411. * 2:早餐
  1412. * 3:地税
  1413. * 4:城市税
  1414. * </summary>
  1415. */
  1416. //地税
  1417. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1418. if (governmentRentData != null)
  1419. {
  1420. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1421. governmentRentFee = governmentRentData.Price;
  1422. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1423. if (governmentRentCurrData != null)
  1424. {
  1425. governmentRentCode = governmentRentCurrData.Name;
  1426. governmentRentName = $"({governmentRentCurrData.Remark})";
  1427. }
  1428. }
  1429. //城市税
  1430. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1431. if (cityTaxData != null)
  1432. {
  1433. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1434. cityTaxFee = cityTaxData.Price;
  1435. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1436. if (cityTaxCurrData != null)
  1437. {
  1438. cityTaxCode = cityTaxCurrData.Name;
  1439. cityTaxName = $"({cityTaxCurrData.Remark})";
  1440. }
  1441. }
  1442. //酒店早餐
  1443. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1444. if (breakfastData != null)
  1445. {
  1446. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1447. breakfastFee = breakfastData.Price;
  1448. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1449. if (breakfastCurrData != null)
  1450. {
  1451. breakfastCode = breakfastCurrData.Name;
  1452. breakfastName = $"({breakfastCurrData.Remark})";
  1453. }
  1454. }
  1455. //房间费用
  1456. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1457. if (roomData != null)
  1458. {
  1459. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1460. if (_detail.PayType.Equals("现金")) _detail.CardType = "-";
  1461. else _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1462. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1463. roomFee = roomData.Price;
  1464. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1465. if (roomCurrData != null)
  1466. {
  1467. roomCode = roomCurrData.Name;
  1468. roomName = $"({roomCurrData.Remark})";
  1469. }
  1470. }
  1471. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1472. string hotelCostStr = "";
  1473. decimal hotelCsotTotal = 0.00M;
  1474. if (groupCost != null)
  1475. {
  1476. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1477. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1478. }
  1479. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1480. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1481. string hotelCost_day = "";
  1482. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1483. foreach (var item in hotelCostDetails1)
  1484. {
  1485. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1486. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1487. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1488. //else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1489. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1490. //else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1491. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1492. //else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1493. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1494. //else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1495. hotelCost_day += @$"</br>";
  1496. }
  1497. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1498. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1499. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1500. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1501. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1502. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1503. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1504. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1505. $"房间说明: {hotelReservations.Remark} <br/>" +
  1506. $"房间费用: {roomCode} {roomName} 当时汇率:{roomData?.Rate.ToString("#0.0000")}{roomFeeStr} 是否由地接代付:{roomBool}<br/><br/>" +
  1507. $"{hotelBreakfastStr}" +
  1508. $"{hotelGovernmentRentStr}" +
  1509. $"{hotelCityTaxStr}";
  1510. _detail.PriceNameContent = hotelReservations.HotelName;
  1511. }
  1512. break;
  1513. case 79://车/导游地接
  1514. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1515. if (touristGuideGroundReservations != null)
  1516. {
  1517. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1518. {
  1519. _detail.BusName = touristGuideGroundReservations.BusName;
  1520. }
  1521. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1522. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1523. //if (isInt)
  1524. //{
  1525. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1526. // if (cityInfo != null)
  1527. // {
  1528. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1529. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1530. // if (carFeeItem != null)
  1531. // {
  1532. // nameContent += $@"({carFeeItem.Name})";
  1533. // }
  1534. // _detail.PriceNameContent = nameContent;
  1535. // }
  1536. //}
  1537. //else
  1538. //{
  1539. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1540. //}
  1541. var touristGuideGroundReservationsContents =
  1542. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1543. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1544. foreach (var item in touristGuideGroundReservationsContents)
  1545. {
  1546. string typeName = "Unknown";
  1547. string carCurrencyCode = "Unknown";
  1548. string carCurrencyName = "Unknown";
  1549. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1550. if (carTypeData != null) typeName = carTypeData.Name;
  1551. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1552. if (currencyData != null)
  1553. {
  1554. carCurrencyCode = currencyData.Name;
  1555. carCurrencyName = currencyData.Remark;
  1556. }
  1557. //op、成本 币种是否一致
  1558. bool IsCurrencyAgreement = false;
  1559. if (carCurrencyCode.Equals(_groupCurrencyCode)) IsCurrencyAgreement = true;
  1560. string opCostStr = string.Empty;
  1561. decimal opCostTypePrice = 0.00M;
  1562. #region 处理成本各项费用
  1563. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1564. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1565. if (opCost.Count > 0)
  1566. {
  1567. switch (item.SId)
  1568. {
  1569. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1570. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1571. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1572. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1573. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1574. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1575. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1576. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1577. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1578. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1579. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1580. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1581. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1582. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1583. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1584. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1585. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1586. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1587. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1588. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1589. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1590. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1591. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1592. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1593. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1594. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1595. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1596. }
  1597. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1598. if (!IsCurrencyAgreement) opCostStr += $" ≈ {(opCostTypePrice * _groupRate).ToString("#0.00")} CNY";
  1599. }
  1600. #endregion
  1601. string opTypeStr = $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")})" ;
  1602. if (!IsCurrencyAgreement) opTypeStr += $" ≈ {(item.Price * entity.DayRate).ToString("#0.00")} CNY";
  1603. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1604. $"{opTypeStr} {opCostStr}<br/>" +
  1605. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1606. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1607. }
  1608. _detail.PriceMsgContent = priceMsg;
  1609. }
  1610. break;
  1611. case 80: //签证
  1612. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1613. if (visaInfo != null)
  1614. {
  1615. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1616. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1617. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1618. }
  1619. break;
  1620. case 81: //邀请/公务活动
  1621. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1622. if (_ioa != null)
  1623. {
  1624. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1625. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1626. sendCurrName = "Unknown", //快递费用币种 Name
  1627. sendCurrCode = "Unknown", //快递费用币种 Code
  1628. eventsCurrName = "Unknown", //公务活动费币种 Name
  1629. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1630. translateCurrName = "Unknown", //公务翻译费 Name
  1631. translateCurrCode = "Unknown"; //公务翻译费 Code
  1632. #region 处理费用币种
  1633. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1634. if (inviteCurrData != null)
  1635. {
  1636. inviteCurrName = inviteCurrData.Remark;
  1637. inviteCurrCode = inviteCurrData.Name;
  1638. }
  1639. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1640. if (sendCurrData != null)
  1641. {
  1642. sendCurrName = sendCurrData.Remark;
  1643. sendCurrCode = sendCurrData.Name;
  1644. }
  1645. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1646. if (eventsCurrData != null)
  1647. {
  1648. eventsCurrName = eventsCurrData.Remark;
  1649. eventsCurrCode = eventsCurrData.Name;
  1650. }
  1651. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1652. if (translateCurrData != null)
  1653. {
  1654. translateCurrName = translateCurrData.Remark;
  1655. translateCurrCode = translateCurrData.Name;
  1656. }
  1657. #endregion
  1658. _detail.PriceNameContent = _ioa.InviterArea;
  1659. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1660. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1661. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1662. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1663. $@"备注:" + _ioa.Remark + "<br/>";
  1664. }
  1665. break;
  1666. case 82: //团组客户保险
  1667. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1668. if (customers != null)
  1669. {
  1670. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1671. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1672. }
  1673. break;
  1674. case 85: //机票预订
  1675. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1676. if (jpRes != null)
  1677. {
  1678. string FlightsDescription = jpRes.FlightsDescription;
  1679. string PriceDescription = jpRes.PriceDescription;
  1680. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1681. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1682. }
  1683. break;
  1684. case 98://其他款项
  1685. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1686. if (gdpRes != null)
  1687. {
  1688. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1689. _detail.PriceNameContent = gdpRes.PriceName;
  1690. }
  1691. break;
  1692. case 285://收款退还
  1693. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1694. if (refundAndOtherMoney != null)
  1695. {
  1696. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1697. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1698. }
  1699. break;
  1700. case 751://酒店早餐
  1701. break;
  1702. case 1015://超支费用
  1703. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1704. if (groupExtraCost != null)
  1705. {
  1706. _detail.PriceNameContent = groupExtraCost.PriceName;
  1707. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1708. }
  1709. break;
  1710. default:
  1711. break;
  1712. }
  1713. /*
  1714. * 申请人
  1715. */
  1716. string operatorName = " - ";
  1717. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1718. if (_opUser != null)
  1719. {
  1720. operatorName = _opUser.CnName;
  1721. }
  1722. _detail.OperatorName = operatorName;
  1723. /*
  1724. * 审核人
  1725. */
  1726. string auditOperatorName = "Unknown";
  1727. if (entity.AuditGMOperate == 0)
  1728. auditOperatorName = " - ";
  1729. else if (entity.AuditGMOperate == 4)
  1730. auditOperatorName = "自动审核";
  1731. else
  1732. {
  1733. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1734. if (_adUser != null)
  1735. {
  1736. auditOperatorName = _adUser.CnName;
  1737. }
  1738. }
  1739. _detail.AuditOperatorName = auditOperatorName;
  1740. /*
  1741. * 超预算比例
  1742. */
  1743. string overBudgetStr = "";
  1744. if (entity.ExceedBudget == -1)
  1745. overBudgetStr = sdPriceName.Name + "尚无预算";
  1746. else if (entity.ExceedBudget == 0)
  1747. {
  1748. if (entity.CTable == 76 || entity.CTable == 79)
  1749. {
  1750. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1751. else overBudgetStr = _feeAuditRep.IsOverBudget(entity.CTable, entity.DIId, entity.CId);
  1752. }
  1753. else
  1754. {
  1755. overBudgetStr = "未超预算";
  1756. }
  1757. }
  1758. else
  1759. overBudgetStr = entity.ExceedBudget.ToString("P");
  1760. _detail.OverBudget = overBudgetStr;
  1761. /*
  1762. * 已审核金额
  1763. */
  1764. decimal auditFee = 0.00M;
  1765. if (entity.IsAuditGM == 1 || entity.IsAuditGM == 3) auditFee = CurrPayStr;
  1766. /*
  1767. * 费用总计
  1768. */
  1769. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1770. {
  1771. CurrencyId = entity.PaymentCurrency,
  1772. CurrencyName = PaymentCurrency_WaitPay,
  1773. AmountPayable = entity.PayMoney,
  1774. ThisPayment = OriginalCurrPay,
  1775. BalancePayment = BalanceStr,
  1776. AuditedFunds = auditFee
  1777. });
  1778. _detail.IsAuditGM = entity.IsAuditGM;
  1779. detailList.Add(_detail);
  1780. }
  1781. #endregion
  1782. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1783. /*
  1784. * 下方描述处理
  1785. */
  1786. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1787. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1788. if (ccpCurrencyPrice != null)
  1789. {
  1790. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1791. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1792. }
  1793. else
  1794. {
  1795. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1796. }
  1797. string amountPayableStr = string.Format(@"应付款总金额: ");
  1798. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1799. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1800. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1801. foreach (var item in nonDuplicat)
  1802. {
  1803. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1804. if (strs.Count > 0)
  1805. {
  1806. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1807. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1808. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1809. amountPayableStr += string.Format(@"{0}{1}&nbsp;|&nbsp;", amountPayable.ToString("#0.00"), item.CurrencyName);
  1810. //单独处理此次付款金额
  1811. if (item.CurrencyId == 836) //人民币
  1812. {
  1813. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|&nbsp;", thisPayment.ToString("#0.00"), item.CurrencyName);
  1814. }
  1815. else
  1816. {
  1817. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|&nbsp;", thisPayment.ToString("#0.00"), item.CurrencyName);
  1818. }
  1819. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|&nbsp;", balancePayment.ToString("#0.00"), item.CurrencyName);
  1820. //单独处理已审核费用
  1821. if (item.CurrencyId == 836) //人民币
  1822. {
  1823. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1824. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1825. }
  1826. else
  1827. {
  1828. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1829. }
  1830. }
  1831. }
  1832. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1833. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1834. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1835. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1836. var _view1 = new
  1837. {
  1838. PageFuncAuth = pageFunAuthView,
  1839. Data = _view
  1840. };
  1841. return Ok(JsonView(_view1));
  1842. }
  1843. catch (Exception ex)
  1844. {
  1845. return Ok(JsonView(false, ex.Message));
  1846. }
  1847. }
  1848. /// <summary>
  1849. /// 费用审核
  1850. /// 修改团组费用审核状态
  1851. /// </summary>
  1852. /// <param name="_dto">参数Json字符串</param>
  1853. /// <returns></returns>
  1854. [HttpPost]
  1855. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1856. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1857. {
  1858. #region 参数验证
  1859. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1860. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1861. #endregion
  1862. #region 页面操作权限验证
  1863. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1864. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1865. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1866. #endregion
  1867. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1868. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1869. DateTime dtNow = DateTime.Now;
  1870. _groupRepository.BeginTran();
  1871. int rst = 0;
  1872. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1873. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1874. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1875. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1876. List<dynamic> msgDatas = new List<dynamic>();
  1877. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1878. foreach (var item in idList)
  1879. {
  1880. int CreditId = int.Parse(item);
  1881. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1882. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1883. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1884. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1885. .Where(s => s.Id == CreditId)
  1886. .ExecuteCommandAsync();
  1887. if (result < 1)
  1888. {
  1889. rst = -1;
  1890. _groupRepository.RollbackTran();
  1891. return Ok(JsonView(false, "操作失败并回滚!"));
  1892. }
  1893. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1894. if (creditData != null)
  1895. {
  1896. #region 应用通知配置
  1897. try
  1898. {
  1899. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1900. }
  1901. catch (Exception ex)
  1902. {
  1903. }
  1904. #endregion
  1905. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1906. string groupNameStr = string.Empty;
  1907. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1908. if (groupData != null) groupNameStr = groupData.TeamName;
  1909. string creditTypeStr = string.Empty;
  1910. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1911. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1912. string creditCurrency = string.Empty;
  1913. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1914. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1915. if (creditCurrency.Equals("CNY"))
  1916. {
  1917. creditData.DayRate = 1.0000M;
  1918. }
  1919. if (creditData.PayPercentage == 0.00M)
  1920. {
  1921. creditData.PayPercentage = 100M;
  1922. }
  1923. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1924. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1925. string msgContent = "";
  1926. if (creditCurrency.Equals("CNY"))
  1927. {
  1928. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1929. }
  1930. else
  1931. {
  1932. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1933. }
  1934. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1935. }
  1936. }
  1937. if (rst == 0)
  1938. {
  1939. _groupRepository.CommitTran();
  1940. foreach (var item in msgDatas)
  1941. {
  1942. //发送消息
  1943. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1944. }
  1945. #region 应用推送
  1946. try
  1947. {
  1948. foreach (var ccpId in dic_ccp_user.Keys)
  1949. {
  1950. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1951. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1952. }
  1953. }
  1954. catch (Exception)
  1955. {
  1956. }
  1957. #endregion
  1958. return Ok(JsonView(true, "操作成功!"));
  1959. }
  1960. return Ok(JsonView(false, "操作失败!"));
  1961. }
  1962. #endregion
  1963. #region 机票费用录入
  1964. /// <summary>
  1965. /// 机票录入当前登录人可操作团组
  1966. /// </summary>
  1967. /// <param name="dto"></param>
  1968. /// <returns></returns>
  1969. [HttpPost]
  1970. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1971. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1972. {
  1973. try
  1974. {
  1975. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1976. if (groupData.Code != 0)
  1977. {
  1978. return Ok(JsonView(false, groupData.Msg));
  1979. }
  1980. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1981. }
  1982. catch (Exception ex)
  1983. {
  1984. return Ok(JsonView(false, "程序错误!"));
  1985. throw;
  1986. }
  1987. }
  1988. /// <summary>
  1989. /// 机票费用录入列表
  1990. /// </summary>
  1991. /// <param name="dto"></param>
  1992. /// <returns></returns>
  1993. [HttpPost]
  1994. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1995. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1996. {
  1997. try
  1998. {
  1999. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  2000. if (groupData.Code != 0)
  2001. {
  2002. return Ok(JsonView(false, groupData.Msg));
  2003. }
  2004. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2005. }
  2006. catch (Exception ex)
  2007. {
  2008. return Ok(JsonView(false, ex.Message));
  2009. throw;
  2010. }
  2011. }
  2012. /// <summary>
  2013. /// 根据id查询费用录入信息
  2014. /// </summary>
  2015. /// <param name="dto"></param>
  2016. /// <returns></returns>
  2017. [HttpPost]
  2018. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2019. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  2020. {
  2021. try
  2022. {
  2023. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  2024. if (groupData.Code != 0)
  2025. {
  2026. return Ok(JsonView(false, groupData.Msg));
  2027. }
  2028. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2029. }
  2030. catch (Exception ex)
  2031. {
  2032. return Ok(JsonView(false, "程序错误!"));
  2033. throw;
  2034. }
  2035. }
  2036. /// <summary>
  2037. /// 机票费用录入操作(Status:1.新增,2.修改)
  2038. /// </summary>
  2039. /// <param name="dto"></param>
  2040. /// <returns></returns>
  2041. [HttpPost]
  2042. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2043. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  2044. {
  2045. try
  2046. {
  2047. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  2048. if (groupData.Code != 0)
  2049. {
  2050. return Ok(JsonView(false, groupData.Msg));
  2051. }
  2052. #region 应用推送
  2053. try
  2054. {
  2055. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2056. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2057. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2058. }
  2059. catch (Exception ex)
  2060. {
  2061. }
  2062. #endregion
  2063. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2064. }
  2065. catch (Exception ex)
  2066. {
  2067. return Ok(JsonView(false, "程序错误!"));
  2068. throw;
  2069. }
  2070. }
  2071. /// <summary>
  2072. /// 根据舱位类型查询接团客户名单信息
  2073. /// </summary>
  2074. /// <param name="dto"></param>
  2075. /// <returns></returns>
  2076. [HttpPost]
  2077. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2078. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2079. {
  2080. try
  2081. {
  2082. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2083. if (crm_Groups.Count != 0)
  2084. {
  2085. List<dynamic> Customer = new List<dynamic>();
  2086. foreach (var item in crm_Groups)
  2087. {
  2088. var data = new
  2089. {
  2090. Id = item.Id,
  2091. Pinyin = item.Pinyin,
  2092. Name = item.LastName + item.FirstName
  2093. };
  2094. Customer.Add(data);
  2095. }
  2096. return Ok(JsonView(true, "查询成功!", Customer));
  2097. }
  2098. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2099. }
  2100. catch (Exception ex)
  2101. {
  2102. return Ok(JsonView(false, "程序错误!"));
  2103. throw;
  2104. }
  2105. }
  2106. /// <summary>
  2107. /// 根据团号获取客户信息
  2108. /// </summary>
  2109. /// <param name="dto"></param>
  2110. /// <returns></returns>
  2111. [HttpPost]
  2112. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2113. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2114. {
  2115. var jw = JsonView(false);
  2116. if (dto.DIID < 1)
  2117. {
  2118. jw.Msg += "请输入正确的diid";
  2119. return Ok(jw);
  2120. }
  2121. var arr = getSimplClientList(dto.DIID);
  2122. jw = JsonView(true, "获取成功!", arr);
  2123. return Ok(jw);
  2124. }
  2125. private List<SimplClientInfo> getSimplClientList(int diId)
  2126. {
  2127. string sql = string.Format("select b.Id,b.Pinyin,b.lastName,b.firstName,b.phone from Grp_TourClientList a, Crm_DeleClient b where a.clientid = b.id and a.isdel = 0 and a.diid = {0}", diId);
  2128. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2129. return arr;
  2130. }
  2131. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2132. {
  2133. string result = origin;
  2134. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2135. {
  2136. string[] temparr = origin.Split(',');
  2137. string fistrStr = temparr[0];
  2138. int count = temparr.Count();
  2139. int tempId;
  2140. bool success = int.TryParse(fistrStr, out tempId);
  2141. if (success)
  2142. {
  2143. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2144. if (tempInfo != null)
  2145. {
  2146. if (count > 1)
  2147. {
  2148. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2149. }
  2150. else
  2151. {
  2152. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2153. }
  2154. }
  2155. }
  2156. }
  2157. return result;
  2158. }
  2159. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2160. {
  2161. string result = origin;
  2162. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2163. {
  2164. string[] temparr = origin.Split(',');
  2165. result = "";
  2166. foreach (var item in temparr)
  2167. {
  2168. int tempId;
  2169. bool success = int.TryParse(item, out tempId);
  2170. if (success)
  2171. {
  2172. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2173. if (tempInfo != null)
  2174. {
  2175. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2176. }
  2177. }
  2178. }
  2179. }
  2180. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2181. return result;
  2182. }
  2183. /// <summary>
  2184. /// 机票费用录入,删除
  2185. /// </summary>
  2186. /// <param name="dto"></param>
  2187. /// <returns></returns>
  2188. [HttpPost]
  2189. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2190. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2191. {
  2192. try
  2193. {
  2194. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2195. if (res)
  2196. {
  2197. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2198. {
  2199. IsDel = 1,
  2200. DeleteUserId = dto.DeleteUserId,
  2201. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2202. }).ExecuteCommandAsync();
  2203. return Ok(JsonView(true, "删除成功!"));
  2204. }
  2205. return Ok(JsonView(false, "删除失败!"));
  2206. }
  2207. catch (Exception ex)
  2208. {
  2209. return Ok(JsonView(false, "程序错误!"));
  2210. throw;
  2211. }
  2212. }
  2213. /// <summary>
  2214. /// 导出机票录入报表
  2215. /// </summary>
  2216. /// <param name="dto"></param>
  2217. /// <returns></returns>
  2218. [HttpPost]
  2219. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2220. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2221. {
  2222. try
  2223. {
  2224. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2225. if (groupData.Code != 0)
  2226. {
  2227. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2228. }
  2229. else
  2230. {
  2231. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2232. if (AirTicketReservations.Count != 0)
  2233. {
  2234. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2235. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2236. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2237. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2238. WorkbookDesigner designer = new WorkbookDesigner();
  2239. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2240. decimal countCost = 0;
  2241. foreach (var item in AirTicketReservations)
  2242. {
  2243. #region 处理客人姓名
  2244. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2245. item.ClientName = clientNames;
  2246. #endregion
  2247. if (item.BankType == "其他")
  2248. {
  2249. item.BankNo = "--";
  2250. }
  2251. else
  2252. {
  2253. if (!string.IsNullOrEmpty(item.BankType))
  2254. {
  2255. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2256. }
  2257. }
  2258. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2259. item.Price = System.Decimal.Round(item.Price, 2);
  2260. countCost += Convert.ToDecimal(item.Price);
  2261. }
  2262. designer.SetDataSource("Export", AirTicketReservations);
  2263. designer.SetDataSource("ExportDiCode", diCode);
  2264. designer.SetDataSource("ExportDiName", diName);
  2265. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2266. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2267. designer.Process();
  2268. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2269. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2270. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2271. return Ok(JsonView(true, "成功", url = rst));
  2272. }
  2273. else
  2274. {
  2275. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2276. }
  2277. }
  2278. }
  2279. catch (Exception ex)
  2280. {
  2281. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2282. throw;
  2283. }
  2284. }
  2285. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2286. /// <summary>
  2287. /// 行程单导出
  2288. /// </summary>
  2289. /// <param name="dto"></param>
  2290. /// <returns></returns>
  2291. [HttpPost]
  2292. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2293. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2294. {
  2295. try
  2296. {
  2297. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2298. if (groupData.Code != 0)
  2299. {
  2300. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2301. }
  2302. else
  2303. {
  2304. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2305. if (dto.Language == "CN")
  2306. {
  2307. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2308. DocumentBuilder builder = new DocumentBuilder(doc);
  2309. int tableIndex = 0;//表格索引
  2310. //得到文档中的第一个表格
  2311. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2312. foreach (var item in _AirTicketReservations)
  2313. {
  2314. #region 处理固定数据
  2315. string[] FlightsCode = item.FlightsCode.Split('/');
  2316. if (FlightsCode.Length != 0)
  2317. {
  2318. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2319. if (_AirCompany != null)
  2320. {
  2321. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2322. }
  2323. else
  2324. {
  2325. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2326. }
  2327. }
  2328. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2329. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2330. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2331. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2332. string name = "";
  2333. foreach (string clientName in nameArray)
  2334. {
  2335. if (!name.Contains(clientName))
  2336. {
  2337. name += clientName + ",";
  2338. }
  2339. }
  2340. if (!string.IsNullOrWhiteSpace(name))
  2341. {
  2342. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2343. }
  2344. else
  2345. {
  2346. table.Range.Bookmarks["ClientName"].Text = "--";
  2347. }
  2348. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2349. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2350. table.Range.Bookmarks["JointTicket"].Text = "--";
  2351. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2352. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2353. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2354. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2355. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2356. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2357. #endregion
  2358. #region 循环数据处理
  2359. List<AirInfo> airs = new List<AirInfo>();
  2360. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2361. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2362. for (int i = 0; i < FlightsCode.Length; i++)
  2363. {
  2364. AirInfo air = new AirInfo();
  2365. string[] tempstr = DayArray[i]
  2366. .Replace("\r\n", string.Empty)
  2367. .Replace("\\r\\n", string.Empty)
  2368. .TrimStart().TrimEnd()
  2369. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2370. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2371. string starCity = "";
  2372. if (star_Three != null)
  2373. {
  2374. starCity = star_Three.AirPort;
  2375. }
  2376. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2377. string EndCity = "";
  2378. if (End_Three != null)
  2379. {
  2380. EndCity = End_Three.AirPort;
  2381. }
  2382. air.Destination = starCity + "/" + EndCity;
  2383. air.Flight = FlightsCode[i];
  2384. air.SeatingClass = item.CTypeName;
  2385. string dateTime = tempstr[2];
  2386. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2387. air.FlightDate = DateTemp;
  2388. air.DepartureTime = tempstr[5];
  2389. air.LandingTime = tempstr[6];
  2390. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2391. air.TicketStatus = "--";
  2392. air.Luggage = "--";
  2393. air.DepartureTerminal = "--";
  2394. air.LandingTerminal = "--";
  2395. airs.Add(air);
  2396. }
  2397. int row = 13;
  2398. for (int i = 0; i < airs.Count; i++)
  2399. {
  2400. if (airs.Count > 2)
  2401. {
  2402. for (int j = 0; j < airs.Count - 2; j++)
  2403. {
  2404. var CopyRow = table.Rows[12].Clone(true);
  2405. table.Rows.Add(CopyRow);
  2406. }
  2407. }
  2408. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2409. int index = 0;
  2410. foreach (PropertyInfo property in properties)
  2411. {
  2412. string value = property.GetValue(airs[i]).ToString();
  2413. Cell ishcel0 = table.Rows[row].Cells[index];
  2414. Paragraph p = new Paragraph(doc);
  2415. string s = value;
  2416. p.AppendChild(new Run(doc, s));
  2417. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2418. ishcel0.AppendChild(p);
  2419. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2420. index++;
  2421. }
  2422. row++;
  2423. }
  2424. #endregion
  2425. Paragraph lastParagraph = new Paragraph(doc);
  2426. //第一个表格末尾加段落
  2427. table.ParentNode.InsertAfter(lastParagraph, table);
  2428. //复制第一个表格
  2429. Table cloneTable = (Table)table.Clone(true);
  2430. //在文档末尾段落后面加入复制的表格
  2431. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2432. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2433. {
  2434. int rownewsIndex = 13;
  2435. for (int i = 0; i < 2; i++)
  2436. {
  2437. var CopyRow = table.Rows[12].Clone(true);
  2438. table.Rows.RemoveAt(13);
  2439. table.Rows.Add(CopyRow);
  2440. rownewsIndex++;
  2441. }
  2442. }
  2443. else
  2444. {
  2445. table.Rows.RemoveAt(12);
  2446. }
  2447. cloneTable.Rows.RemoveAt(12);
  2448. }
  2449. if (_AirTicketReservations.Count != 0)
  2450. {
  2451. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2452. if (FlightsCode.Length != 0)
  2453. {
  2454. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2455. if (_AirCompany != null)
  2456. {
  2457. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2458. }
  2459. else
  2460. {
  2461. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2462. }
  2463. }
  2464. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2465. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2466. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2467. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2468. string name = "";
  2469. foreach (string clientName in nameArray)
  2470. {
  2471. if (!name.Contains(clientName))
  2472. {
  2473. name += clientName + ",";
  2474. }
  2475. }
  2476. if (!string.IsNullOrWhiteSpace(name))
  2477. {
  2478. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2479. }
  2480. else
  2481. {
  2482. table.Range.Bookmarks["ClientName"].Text = "--";
  2483. }
  2484. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2485. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2486. table.Range.Bookmarks["JointTicket"].Text = "--";
  2487. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2488. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2489. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2490. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2491. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2492. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2493. }
  2494. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2495. //保存合并后的文档
  2496. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2497. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2498. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2499. return Ok(JsonView(true, "成功!", rst));
  2500. }
  2501. else
  2502. {
  2503. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2504. DocumentBuilder builder = new DocumentBuilder(doc);
  2505. int tableIndex = 0;//表格索引
  2506. //得到文档中的第一个表格
  2507. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2508. List<string> texts = new List<string>();
  2509. foreach (var item in _AirTicketReservations)
  2510. {
  2511. string[] FlightsCode = item.FlightsCode.Split('/');
  2512. if (FlightsCode.Length != 0)
  2513. {
  2514. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2515. if (_AirCompany != null)
  2516. {
  2517. if (!transDic.ContainsKey(_AirCompany.CnName))
  2518. {
  2519. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2520. }
  2521. }
  2522. else
  2523. {
  2524. if (!transDic.ContainsKey("--"))
  2525. {
  2526. transDic.Add("--", "--");
  2527. }
  2528. }
  2529. }
  2530. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2531. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2532. string name = "";
  2533. foreach (string clientName in nameArray)
  2534. {
  2535. name += clientName + ",";
  2536. }
  2537. if (!texts.Contains(name))
  2538. {
  2539. texts.Add(name);
  2540. }
  2541. List<AirInfo> airs = new List<AirInfo>();
  2542. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2543. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2544. for (int i = 0; i < FlightsCode.Length; i++)
  2545. {
  2546. AirInfo air = new AirInfo();
  2547. string[] tempstr = DayArray[i]
  2548. .Replace("\r\n", string.Empty)
  2549. .Replace("\\r\\n", string.Empty)
  2550. .TrimStart().TrimEnd()
  2551. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2552. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2553. if (star_Three != null)
  2554. {
  2555. if (!transDic.ContainsKey(star_Three.AirPort))
  2556. {
  2557. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2558. }
  2559. }
  2560. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2561. if (End_Three != null)
  2562. {
  2563. if (!transDic.ContainsKey(End_Three.AirPort))
  2564. {
  2565. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2566. }
  2567. }
  2568. if (!texts.Contains(item.CTypeName))
  2569. {
  2570. texts.Add(item.CTypeName);
  2571. }
  2572. }
  2573. }
  2574. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2575. if (transData.Count > 0)
  2576. {
  2577. foreach (TranslateResult item in transData)
  2578. {
  2579. if (!transDic.ContainsKey(item.Query))
  2580. {
  2581. transDic.Add(item.Query, item.Translation);
  2582. }
  2583. }
  2584. }
  2585. foreach (var item in _AirTicketReservations)
  2586. {
  2587. #region 处理固定数据
  2588. string[] FlightsCode = item.FlightsCode.Split('/');
  2589. if (FlightsCode.Length != 0)
  2590. {
  2591. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2592. if (_AirCompany != null)
  2593. {
  2594. string str = "--";
  2595. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2596. if (!string.IsNullOrEmpty(translateResult))
  2597. {
  2598. str = translateResult;
  2599. str = _airTicketResRep.Processing(str);
  2600. }
  2601. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2602. }
  2603. else
  2604. {
  2605. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2606. }
  2607. }
  2608. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2609. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2610. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2611. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2612. string names = "";
  2613. foreach (string clientName in nameArray)
  2614. {
  2615. names += clientName + ",";
  2616. }
  2617. if (!string.IsNullOrWhiteSpace(names))
  2618. {
  2619. string str = "--";
  2620. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2621. if (!string.IsNullOrEmpty(translateResult))
  2622. {
  2623. str = translateResult;
  2624. str = _airTicketResRep.Processing(str);
  2625. }
  2626. table.Range.Bookmarks["ClientName"].Text = str;
  2627. }
  2628. else
  2629. {
  2630. table.Range.Bookmarks["ClientName"].Text = "--";
  2631. }
  2632. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2633. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2634. table.Range.Bookmarks["JointTicket"].Text = "--";
  2635. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2636. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2637. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2638. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2639. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2640. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2641. #endregion
  2642. #region 循环数据处理
  2643. List<AirInfo> airs = new List<AirInfo>();
  2644. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2645. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2646. for (int i = 0; i < FlightsCode.Length; i++)
  2647. {
  2648. AirInfo air = new AirInfo();
  2649. string[] tempstr = DayArray[i]
  2650. .Replace("\r\n", string.Empty)
  2651. .Replace("\\r\\n", string.Empty)
  2652. .TrimStart().TrimEnd()
  2653. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2654. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2655. string starCity = "";
  2656. if (star_Three != null)
  2657. {
  2658. string str2 = "--";
  2659. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2660. if (!string.IsNullOrEmpty(translateResult2))
  2661. {
  2662. str2 = translateResult2;
  2663. str2 = _airTicketResRep.Processing(str2);
  2664. }
  2665. starCity = str2;
  2666. }
  2667. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2668. string EndCity = "";
  2669. if (End_Three != null)
  2670. {
  2671. string str1 = "--";
  2672. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2673. if (!string.IsNullOrEmpty(translateResult1))
  2674. {
  2675. str1 = translateResult1;
  2676. str1 = _airTicketResRep.Processing(str1);
  2677. }
  2678. EndCity = str1;
  2679. }
  2680. air.Destination = starCity + "/" + EndCity;
  2681. air.Flight = FlightsCode[i];
  2682. string str = "--";
  2683. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2684. if (!string.IsNullOrEmpty(translateResult))
  2685. {
  2686. str = translateResult;
  2687. str = _airTicketResRep.Processing(str);
  2688. }
  2689. air.SeatingClass = str;
  2690. string dateTime = tempstr[2];
  2691. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2692. air.FlightDate = DateTemp;
  2693. air.DepartureTime = tempstr[5];
  2694. air.LandingTime = tempstr[6];
  2695. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2696. air.TicketStatus = "--";
  2697. air.Luggage = "--";
  2698. air.DepartureTerminal = "--";
  2699. air.LandingTerminal = "--";
  2700. airs.Add(air);
  2701. }
  2702. int row = 13;
  2703. for (int i = 0; i < airs.Count; i++)
  2704. {
  2705. if (airs.Count > 2)
  2706. {
  2707. for (int j = 0; j < airs.Count - 2; j++)
  2708. {
  2709. var CopyRow = table.Rows[12].Clone(true);
  2710. table.Rows.Add(CopyRow);
  2711. }
  2712. }
  2713. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2714. int index = 0;
  2715. foreach (PropertyInfo property in properties)
  2716. {
  2717. string value = property.GetValue(airs[i]).ToString();
  2718. Cell ishcel0 = table.Rows[row].Cells[index];
  2719. Paragraph p = new Paragraph(doc);
  2720. string s = value;
  2721. p.AppendChild(new Run(doc, s));
  2722. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2723. ishcel0.AppendChild(p);
  2724. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2725. //ishcel0.CellFormat.VerticalAlignment=
  2726. index++;
  2727. }
  2728. row++;
  2729. }
  2730. #endregion
  2731. Paragraph lastParagraph = new Paragraph(doc);
  2732. //第一个表格末尾加段落
  2733. table.ParentNode.InsertAfter(lastParagraph, table);
  2734. //复制第一个表格
  2735. Table cloneTable = (Table)table.Clone(true);
  2736. //在文档末尾段落后面加入复制的表格
  2737. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2738. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2739. {
  2740. int rownewsIndex = 13;
  2741. for (int i = 0; i < 2; i++)
  2742. {
  2743. var CopyRow = table.Rows[12].Clone(true);
  2744. table.Rows.RemoveAt(13);
  2745. table.Rows.Add(CopyRow);
  2746. rownewsIndex++;
  2747. }
  2748. }
  2749. else
  2750. {
  2751. table.Rows.RemoveAt(12);
  2752. }
  2753. cloneTable.Rows.RemoveAt(12);
  2754. }
  2755. if (_AirTicketReservations.Count != 0)
  2756. {
  2757. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2758. if (FlightsCode.Length != 0)
  2759. {
  2760. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2761. if (_AirCompany != null)
  2762. {
  2763. string str = "--";
  2764. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2765. if (!string.IsNullOrEmpty(translateResult))
  2766. {
  2767. str = translateResult;
  2768. str = _airTicketResRep.Processing(str);
  2769. }
  2770. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2771. }
  2772. else
  2773. {
  2774. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2775. }
  2776. }
  2777. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2778. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2779. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2780. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2781. string names = "";
  2782. foreach (string clientName in nameArray)
  2783. {
  2784. names += clientName + ",";
  2785. }
  2786. if (!string.IsNullOrWhiteSpace(names))
  2787. {
  2788. string str = "--";
  2789. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2790. if (!string.IsNullOrEmpty(translateResult))
  2791. {
  2792. str = translateResult;
  2793. str = _airTicketResRep.Processing(str);
  2794. }
  2795. table.Range.Bookmarks["ClientName"].Text = str;
  2796. }
  2797. else
  2798. {
  2799. table.Range.Bookmarks["ClientName"].Text = "--";
  2800. }
  2801. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2802. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2803. table.Range.Bookmarks["JointTicket"].Text = "--";
  2804. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2805. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2806. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2807. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2808. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2809. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2810. }
  2811. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2812. //保存合并后的文档
  2813. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2814. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2815. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2816. return Ok(JsonView(true, "成功!", rst));
  2817. }
  2818. }
  2819. }
  2820. catch (Exception ex)
  2821. {
  2822. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2823. throw;
  2824. }
  2825. }
  2826. #endregion
  2827. #region 团组增减款项 --> 其他款项
  2828. /// <summary>
  2829. /// 团组增减款项下拉框绑定
  2830. /// </summary>
  2831. /// <param name="dto"></param>
  2832. /// <returns></returns>
  2833. [HttpPost]
  2834. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2835. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2836. {
  2837. #region 参数验证
  2838. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2839. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2840. #endregion
  2841. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2842. }
  2843. /// <summary>
  2844. /// 根据团组Id查询团组增减款项
  2845. /// </summary>
  2846. /// <param name="dto"></param>
  2847. /// <returns></returns>
  2848. [HttpPost]
  2849. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2850. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2851. {
  2852. #region 参数验证
  2853. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2854. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2855. #endregion
  2856. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2857. }
  2858. /// <summary>
  2859. /// 团组增减款项操作(Status:1.新增,2.修改)
  2860. /// </summary>
  2861. /// <param name="dto"></param>
  2862. /// <returns></returns>
  2863. [HttpPost]
  2864. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2865. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2866. {
  2867. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2868. if (groupData.Code != 200)
  2869. {
  2870. return Ok(JsonView(false, groupData.Msg));
  2871. }
  2872. #region 应用推送
  2873. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2874. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2875. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2876. #endregion
  2877. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2878. }
  2879. /// <summary>
  2880. /// 团组增减款项操作 删除
  2881. /// </summary>
  2882. /// <param name="dto"></param>
  2883. /// <returns></returns>
  2884. [HttpPost]
  2885. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2886. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2887. {
  2888. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2889. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2890. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2891. if (res.Code == 0)
  2892. {
  2893. return Ok(JsonView(true, "删除成功!"));
  2894. }
  2895. return Ok(JsonView(false, "删除失败!"));
  2896. }
  2897. /// <summary>
  2898. /// 根据团组增减款项Id查询
  2899. /// </summary>
  2900. /// <param name="dto"></param>
  2901. /// <returns></returns>
  2902. [HttpPost]
  2903. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2904. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2905. {
  2906. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2907. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2908. }
  2909. /// <summary>
  2910. /// 查询供应商名称
  2911. /// </summary>
  2912. /// <param name="dto"></param>
  2913. /// <returns></returns>
  2914. [HttpPost]
  2915. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2916. {
  2917. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2918. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2919. ?? new List<Grp_DecreasePayments>();
  2920. dbResult = dbResult.Distinct(new
  2921. ProductComparer()).ToList();
  2922. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2923. {
  2924. x.Id,
  2925. x.SupplierAddress,
  2926. x.SupplierArea,
  2927. x.SupplierContact,
  2928. x.SupplierContactNumber,
  2929. x.SupplierEmail,
  2930. x.SupplierName,
  2931. x.SupplierSocialAccount,
  2932. x.SupplierTypeId,
  2933. }).ToList());
  2934. return Ok(jw);
  2935. }
  2936. #endregion
  2937. #region 文件上传、删除
  2938. /// <summary>
  2939. /// region 文件上传 可以带参数
  2940. /// </summary>
  2941. /// <param name="file"></param>
  2942. /// <returns></returns>
  2943. [HttpPost]
  2944. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2945. public async Task<IActionResult> UploadProject(IFormFile file)
  2946. {
  2947. //var TypeName = Request.Headers["TypeName"].ToString();
  2948. //if (file == null) return Ok(JsonView(false, "文件不存在!"));
  2949. //var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2950. ////文件名称
  2951. //string projectFileName = file.FileName;
  2952. ////上传的文件的路径
  2953. //string filePath = $"{fileDir}/{projectFileName}";
  2954. //if (TypeName == "A")//A代表团组增减款项
  2955. //{
  2956. // filePath = fileDir + $@"\团组增减款项相关文件";
  2957. // if (!Directory.Exists(filePath))
  2958. // {
  2959. // Directory.CreateDirectory(filePath);
  2960. // }
  2961. // //上传的文件的路径
  2962. // filePath += $@"\{projectFileName}";
  2963. //}
  2964. //else if (TypeName == "B")//B代表商邀相关文件
  2965. //{
  2966. // //上传的文件的路径
  2967. // filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2968. // if (!Directory.Exists(filePath))
  2969. // {
  2970. // Directory.CreateDirectory(filePath);
  2971. // }
  2972. // //上传的文件的路径
  2973. // filePath = $@"\{projectFileName}";
  2974. //}
  2975. //try
  2976. //{
  2977. // using (FileStream fs = System.IO.File.Create(filePath))
  2978. // {
  2979. // file.CopyTo(fs);
  2980. // fs.Flush();
  2981. // }
  2982. //}
  2983. //catch (Exception ex)
  2984. //{
  2985. // return Ok(JsonView(false, $"文件上传失败! Error:{ex.Message}"));
  2986. //}
  2987. //return Ok(JsonView(true, "上传成功!", projectFileName));
  2988. try
  2989. {
  2990. var TypeName = Request.Headers["TypeName"].ToString();
  2991. if (file != null)
  2992. {
  2993. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2994. //文件名称
  2995. string projectFileName = file.FileName;
  2996. //上传的文件的路径
  2997. string filePath = $"{fileDir}/{projectFileName}";
  2998. if (TypeName == "A")//A代表团组增减款项
  2999. {
  3000. if (!Directory.Exists(fileDir))
  3001. {
  3002. Directory.CreateDirectory(fileDir);
  3003. }
  3004. //上传的文件的路径
  3005. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  3006. }
  3007. else if (TypeName == "B")//B代表商邀相关文件
  3008. {
  3009. if (!Directory.Exists(fileDir))
  3010. {
  3011. Directory.CreateDirectory(fileDir);
  3012. }
  3013. //上传的文件的路径
  3014. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  3015. }
  3016. using (FileStream fs = System.IO.File.Create(filePath))
  3017. {
  3018. file.CopyTo(fs);
  3019. fs.Flush();
  3020. }
  3021. return Ok(JsonView(true, "上传成功!", projectFileName));
  3022. }
  3023. else
  3024. {
  3025. return Ok(JsonView(false, "上传失败!"));
  3026. }
  3027. }
  3028. catch (Exception ex)
  3029. {
  3030. return Ok(JsonView(false, "程序错误!"));
  3031. }
  3032. }
  3033. /// <summary>
  3034. /// 删除指定文件
  3035. /// </summary>
  3036. /// <param name="dto"></param>
  3037. /// <returns></returns>
  3038. [HttpPost]
  3039. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3040. public async Task<IActionResult> DelFile(DelFileDto dto)
  3041. {
  3042. try
  3043. {
  3044. var TypeName = Request.Headers["TypeName"].ToString();
  3045. string filePath = "";
  3046. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3047. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  3048. int id = 0;
  3049. if (TypeName == "A")
  3050. {
  3051. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  3052. // 删除该文件
  3053. System.IO.File.Delete(filePath);
  3054. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  3055. }
  3056. else if (TypeName == "B")
  3057. {
  3058. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  3059. // 删除该文件
  3060. System.IO.File.Delete(filePath);
  3061. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  3062. }
  3063. if (id != 0)
  3064. {
  3065. return Ok(JsonView(true, "成功!"));
  3066. }
  3067. else
  3068. {
  3069. return Ok(JsonView(false, "失败!"));
  3070. }
  3071. }
  3072. catch (Exception ex)
  3073. {
  3074. return Ok(JsonView(false, "程序错误!"));
  3075. throw;
  3076. }
  3077. }
  3078. #endregion
  3079. #region 商邀费用录入
  3080. /// <summary>
  3081. /// 根据团组Id查询商邀费用列表
  3082. /// </summary>
  3083. /// <param name="dto"></param>
  3084. /// <returns></returns>
  3085. [HttpPost]
  3086. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3087. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  3088. {
  3089. try
  3090. {
  3091. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3092. if (groupData.Code != 0)
  3093. {
  3094. return Ok(JsonView(false, groupData.Msg));
  3095. }
  3096. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3097. }
  3098. catch (Exception ex)
  3099. {
  3100. return Ok(JsonView(false, "程序错误!"));
  3101. throw;
  3102. }
  3103. }
  3104. //
  3105. /// <summary>
  3106. /// 商邀费用 Info Page 基础数据源
  3107. /// </summary>
  3108. /// <param name="dto"></param>
  3109. /// <returns></returns>
  3110. [HttpPost]
  3111. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3112. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3113. {
  3114. try
  3115. {
  3116. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3117. if (groupData.Code != 0)
  3118. {
  3119. return Ok(JsonView(false, groupData.Msg));
  3120. }
  3121. return Ok(JsonView(true, "操作成功", groupData.Data));
  3122. }
  3123. catch (Exception ex)
  3124. {
  3125. return Ok(JsonView(false, ex.Message));
  3126. throw;
  3127. }
  3128. }
  3129. /// <summary>
  3130. /// 根据商邀费用ID查询C表和商邀费用数据
  3131. /// </summary>
  3132. /// <param name="dto"></param>
  3133. /// <returns></returns>
  3134. [HttpPost]
  3135. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3136. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3137. {
  3138. try
  3139. {
  3140. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3141. if (groupData.Code != 0)
  3142. {
  3143. return Ok(JsonView(false, groupData.Msg));
  3144. }
  3145. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3146. }
  3147. catch (Exception ex)
  3148. {
  3149. return Ok(JsonView(false, ex.Message));
  3150. throw;
  3151. }
  3152. }
  3153. /// <summary>
  3154. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3155. /// </summary>
  3156. /// <param name="dto"></param>
  3157. /// <returns></returns>
  3158. [HttpPost]
  3159. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3160. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3161. {
  3162. try
  3163. {
  3164. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3165. if (groupData.Code != 0)
  3166. {
  3167. return Ok(JsonView(false, groupData.Msg));
  3168. }
  3169. #region 应用推送
  3170. try
  3171. {
  3172. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3173. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3174. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3175. }
  3176. catch (Exception ex)
  3177. {
  3178. }
  3179. #endregion
  3180. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3181. }
  3182. catch (Exception ex)
  3183. {
  3184. return Ok(JsonView(false, "程序错误!"));
  3185. throw;
  3186. }
  3187. }
  3188. /// <summary>
  3189. /// 商邀删除
  3190. /// </summary>
  3191. /// <param name="dto"></param>
  3192. /// <returns></returns>
  3193. [HttpPost]
  3194. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3195. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3196. {
  3197. try
  3198. {
  3199. _sqlSugar.BeginTran();
  3200. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3201. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3202. {
  3203. IsDel = 1,
  3204. DeleteUserId = dto.DeleteUserId,
  3205. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3206. })
  3207. .Where(it => it.Id == dto.Id)
  3208. .ExecuteCommand();
  3209. if (res1 > 0)
  3210. {
  3211. int _diId = 0;
  3212. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3213. if (_ioaInfo != null)
  3214. {
  3215. _diId = _ioaInfo.DiId;
  3216. }
  3217. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3218. .SetColumns(a => new Grp_CreditCardPayment()
  3219. {
  3220. IsDel = 1,
  3221. DeleteUserId = dto.DeleteUserId,
  3222. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3223. })
  3224. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3225. .ExecuteCommand();
  3226. if (res2 > 0)
  3227. {
  3228. _sqlSugar.CommitTran();
  3229. return Ok(JsonView(true, "删除成功!"));
  3230. }
  3231. }
  3232. _sqlSugar.RollbackTran();
  3233. return Ok(JsonView(false, "删除失败"));
  3234. }
  3235. catch (Exception ex)
  3236. {
  3237. _sqlSugar.RollbackTran();
  3238. return Ok(JsonView(false, ex.Message));
  3239. }
  3240. }
  3241. /// <summary>
  3242. /// 团组模块文件上传
  3243. /// </summary>
  3244. /// <param name="dto"></param>
  3245. /// <returns></returns>
  3246. [HttpPost]
  3247. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3248. {
  3249. var jw = JsonView(false);
  3250. long M = 1024 * 1024;
  3251. if (dto.Files == null || dto.Files.Count == 0)
  3252. {
  3253. jw.Msg = "无文件信息!";
  3254. return Ok(jw);
  3255. }
  3256. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3257. {
  3258. jw.Msg = "文件大小超过20M!";
  3259. return Ok(jw);
  3260. }
  3261. //var nameSp = dto.File.FileName.Split(".");
  3262. //if (nameSp.Length < 2)
  3263. //{
  3264. // jw.Msg = "拓展名称有误!";
  3265. // return Ok(jw);
  3266. //}
  3267. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3268. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3269. //{
  3270. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3271. // return Ok(jw);
  3272. //}
  3273. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3274. if (Ctable == null)
  3275. {
  3276. jw.Msg = "Ctable指向有误!";
  3277. return Ok(jw);
  3278. }
  3279. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3280. if (groupInfo == null)
  3281. {
  3282. jw.Msg = "团组信息不存在!";
  3283. return Ok(jw);
  3284. }
  3285. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3286. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3287. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3288. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3289. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3290. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3291. try
  3292. {
  3293. if (!Directory.Exists(fileBase))
  3294. {
  3295. Directory.CreateDirectory(fileBase);
  3296. }
  3297. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3298. foreach (var fileStream in dto.Files)
  3299. {
  3300. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3301. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3302. {
  3303. Cid = dto.Cid,
  3304. CreateTime = DateTime.Now,
  3305. CreateUserId = dto.Userid,
  3306. Ctable = dto.Ctable,
  3307. Diid = dto.Diid,
  3308. IsDel = 0,
  3309. FilePath = saveFilePath,
  3310. FileName = fileStream.FileName
  3311. };
  3312. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3313. {
  3314. fileStream.CopyTo(fs);
  3315. fs.Flush();
  3316. }
  3317. saveArr.Add(file);
  3318. }
  3319. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3320. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3321. jw = JsonView(true, "保存成功!", new
  3322. {
  3323. count = addResult,
  3324. filesName = saveArr.Select(x => x.FileName)
  3325. }) ;
  3326. }
  3327. catch (Exception ex)
  3328. {
  3329. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3330. {
  3331. count = 0,
  3332. filesName = new string[0],
  3333. }) ;
  3334. }
  3335. return Ok(jw);
  3336. }
  3337. /// <summary>
  3338. /// 查询各模块已保存文件
  3339. /// </summary>
  3340. /// <param name="dto"></param>
  3341. /// <returns></returns>
  3342. [HttpPost]
  3343. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3344. {
  3345. var expression = Expressionable.Create<Grp_GroupModelFile>()
  3346. .AndIF(dto.UserId != -1 , x => x.CreateUserId == dto.UserId);
  3347. var visaIds = _sqlSugar.Queryable<Sys_Users>().Where(x => x.JobPostId == 26).Select(x=>x.Id).ToList();
  3348. if (visaIds.Contains(dto.UserId) && dto.Ctable == 80)
  3349. {
  3350. expression = Expressionable.Create<Grp_GroupModelFile>()
  3351. .And(x=>visaIds.Contains(x.CreateUserId));
  3352. }
  3353. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3354. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3355. .Where(expression.ToExpression())
  3356. .ToList();
  3357. //.ToPageList(pagenumber, pageSize, ref totalCount, ref totalPage)
  3358. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3359. {
  3360. x.FileName,
  3361. x.Id,
  3362. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"), AppSettingsHelper.Get("GrpFileFtpPath")),
  3363. CreateTime = x.CreateTime.ToString("yyyy-MM-dd HH-mm"),
  3364. })));
  3365. }
  3366. /// <summary>
  3367. /// 下载该团组下的所有文件
  3368. /// </summary>
  3369. /// <param name="dto"></param>
  3370. /// <returns></returns>
  3371. [HttpPost]
  3372. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3373. {
  3374. var jw = JsonView(false);
  3375. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3376. if (groupInfo == null)
  3377. {
  3378. jw.Msg = "团组信息不存在!";
  3379. return Ok(jw);
  3380. }
  3381. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3382. var isModule = Convert.ToBoolean(dto.isModule);
  3383. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3384. IOOperatorHelper io = new IOOperatorHelper();
  3385. if (isModule)
  3386. {
  3387. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3388. foreach (var moduleArr in moduleGroup)
  3389. {
  3390. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3391. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3392. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3393. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3394. foreach (var item in moduleArr)
  3395. {
  3396. if (System.IO.File.Exists(item.FilePath))
  3397. {
  3398. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3399. {
  3400. byte[] bytes = new byte[fileStream.Length];
  3401. fileStream.Read(bytes, 0, bytes.Length);
  3402. fileStream.Close();
  3403. Stream stream = new MemoryStream(bytes);
  3404. chiZips.Add(item.FileName, stream);
  3405. }
  3406. }
  3407. }
  3408. if (chiZips.Count > 0)
  3409. {
  3410. var byts = io.ConvertZipStream(chiZips);
  3411. Stream stream = new MemoryStream(byts);
  3412. Zips.Add(key.Name+"_.zip", stream);
  3413. }
  3414. }
  3415. }
  3416. else
  3417. {
  3418. foreach (var item in dbQuery)
  3419. {
  3420. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3421. {
  3422. byte[] bytes = new byte[fileStream.Length];
  3423. fileStream.Read(bytes, 0, bytes.Length);
  3424. fileStream.Close();
  3425. Stream stream = new MemoryStream(bytes);
  3426. while (Zips.Keys.Contains(item.FileName))
  3427. {
  3428. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3429. }
  3430. Zips.Add(item.FileName, stream);
  3431. }
  3432. }
  3433. }
  3434. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3435. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3436. if (Zips.Count > 0)
  3437. {
  3438. var byts = io.ConvertZipStream(Zips);
  3439. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3440. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3441. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3442. }
  3443. else
  3444. {
  3445. jw.Msg = "暂无生成文件!";
  3446. }
  3447. return Ok(jw);
  3448. }
  3449. /// <summary>
  3450. /// 下载该团组下此模块的所有文件
  3451. /// </summary>
  3452. /// <param name="dto"></param>
  3453. /// <returns></returns>
  3454. [HttpPost]
  3455. public IActionResult ExportGroupByModule(ExportGroupByModuleDto dto)
  3456. {
  3457. var jw = JsonView(false);
  3458. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3459. if (groupInfo == null)
  3460. {
  3461. jw.Msg = "团组信息不存在!";
  3462. return Ok(jw);
  3463. }
  3464. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid && x.Ctable == dto.Ctable).ToList();
  3465. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == dto.Ctable
  3466. && x.IsDel == 0);
  3467. if (key == null)
  3468. {
  3469. jw.Msg = "Ctable指向错误!";
  3470. return Ok(jw);
  3471. }
  3472. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3473. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3474. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3475. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3476. IOOperatorHelper io = new IOOperatorHelper();
  3477. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3478. foreach (var item in dbQuery)
  3479. {
  3480. if (System.IO.File.Exists(item.FilePath))
  3481. {
  3482. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3483. {
  3484. byte[] bytes = new byte[fileStream.Length];
  3485. fileStream.Read(bytes, 0, bytes.Length);
  3486. fileStream.Close();
  3487. Stream stream = new MemoryStream(bytes);
  3488. while (Zips.Keys.Contains(item.FileName))
  3489. {
  3490. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3491. }
  3492. Zips.Add(item.FileName, stream);
  3493. }
  3494. }
  3495. }
  3496. if (Zips.Count > 0)
  3497. {
  3498. var byts = io.ConvertZipStream(Zips);
  3499. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3500. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_{key.Name}_.Zip");
  3501. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_{key.Name}_.Zip" });
  3502. }
  3503. else
  3504. {
  3505. jw.Msg = "暂无生成文件!";
  3506. }
  3507. return Ok(jw);
  3508. }
  3509. /// <summary>
  3510. /// 删除该团组下的指定文件
  3511. /// </summary>
  3512. /// <param name="dto"></param>
  3513. /// <returns></returns>
  3514. [HttpPost]
  3515. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3516. {
  3517. var jw = JsonView(false);
  3518. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3519. if (sing == null)
  3520. {
  3521. jw.Msg = "暂无";
  3522. return Ok(jw);
  3523. }
  3524. if (System.IO.File.Exists(sing.FilePath))
  3525. {
  3526. try
  3527. {
  3528. System.IO.File.Delete(sing.FilePath);
  3529. }
  3530. catch (Exception ex)
  3531. {
  3532. jw.Msg = "删除失败!" + ex.Message;
  3533. return Ok(jw);
  3534. }
  3535. }
  3536. sing.IsDel = 1;
  3537. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3538. sing.DeleteUserId = dto.UserId;
  3539. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3540. jw = JsonView(true, "删除成功!");
  3541. return Ok(jw);
  3542. }
  3543. #endregion
  3544. #region 团组英文资料
  3545. /// <summary>
  3546. /// 查询团组英文所有资料
  3547. /// </summary>
  3548. /// <param name="dto"></param>
  3549. /// <returns></returns>
  3550. [HttpPost]
  3551. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3552. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3553. {
  3554. try
  3555. {
  3556. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3557. if (groupData.Code != 0)
  3558. {
  3559. return Ok(JsonView(false, groupData.Msg));
  3560. }
  3561. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3562. }
  3563. catch (Exception ex)
  3564. {
  3565. return Ok(JsonView(false, "程序错误!"));
  3566. throw;
  3567. }
  3568. }
  3569. /// <summary>
  3570. /// 团组英文资料操作(Status:1.新增,2.修改)
  3571. /// </summary>
  3572. /// <param name="dto"></param>
  3573. /// <returns></returns>
  3574. [HttpPost]
  3575. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3576. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3577. {
  3578. try
  3579. {
  3580. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3581. if (groupData.Code != 0)
  3582. {
  3583. return Ok(JsonView(false, groupData.Msg));
  3584. }
  3585. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3586. }
  3587. catch (Exception ex)
  3588. {
  3589. return Ok(JsonView(false, "程序错误!"));
  3590. throw;
  3591. }
  3592. }
  3593. /// <summary>
  3594. /// 团组英文资料Id查询数据
  3595. /// </summary>
  3596. /// <param name="dto"></param>
  3597. /// <returns></returns>
  3598. [HttpPost]
  3599. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3600. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3601. {
  3602. try
  3603. {
  3604. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3605. if (_DelegationEnData != null)
  3606. {
  3607. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3608. }
  3609. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3610. }
  3611. catch (Exception ex)
  3612. {
  3613. return Ok(JsonView(false, "程序错误!"));
  3614. throw;
  3615. }
  3616. }
  3617. /// <summary>
  3618. /// 团组英文资料删除
  3619. /// </summary>
  3620. /// <param name="dto"></param>
  3621. /// <returns></returns>
  3622. [HttpPost]
  3623. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3624. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3625. {
  3626. try
  3627. {
  3628. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3629. if (!res)
  3630. {
  3631. return Ok(JsonView(false, "删除失败"));
  3632. }
  3633. return Ok(JsonView(true, "删除成功!"));
  3634. }
  3635. catch (Exception ex)
  3636. {
  3637. return Ok(JsonView(false, "程序错误!"));
  3638. throw;
  3639. }
  3640. }
  3641. #endregion
  3642. #region 导出邀请函
  3643. /// <summary>
  3644. /// 导出邀请函页面初始化
  3645. /// </summary>
  3646. /// <param name="dto"></param>
  3647. /// <returns></returns>
  3648. [HttpPost]
  3649. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3650. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3651. {
  3652. try
  3653. {
  3654. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3655. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3656. if (dto.DiId == 0)
  3657. {
  3658. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3659. }
  3660. else
  3661. {
  3662. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3663. }
  3664. return Ok(JsonView(true, "查询成功!", new
  3665. {
  3666. deleClient = crm_Deles,
  3667. delegations = grp_Delegations
  3668. }));
  3669. }
  3670. catch (Exception ex)
  3671. {
  3672. return Ok(JsonView(false, "程序错误!"));
  3673. throw;
  3674. }
  3675. }
  3676. /// <summary>
  3677. /// 导出邀请函
  3678. /// </summary>
  3679. /// <param name="dto"></param>
  3680. /// <returns></returns>
  3681. [HttpPost]
  3682. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3683. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3684. {
  3685. #region 参数验证
  3686. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3687. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3688. #endregion
  3689. try
  3690. {
  3691. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3692. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3693. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3694. From Grp_TourClientList tcl
  3695. Left Join
  3696. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3697. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3698. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3699. From Crm_DeleClient dc
  3700. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3701. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3702. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3703. Where dc.IsDel = 0) temp
  3704. On temp.DcId =tcl.ClientId
  3705. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3706. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3707. List<string> texts = new List<string>();
  3708. if (datas.Count != 0)
  3709. {
  3710. foreach (TourClientListDetailsView item in datas)
  3711. {
  3712. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3713. {
  3714. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3715. }
  3716. else
  3717. {
  3718. string name = item.LastName + item.FirstName;
  3719. texts.Add(name);
  3720. }
  3721. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3722. {
  3723. if (!transDic.ContainsKey(item.Job))
  3724. {
  3725. texts.Add(item.Job);
  3726. }
  3727. }
  3728. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3729. {
  3730. texts.Add(item.CompanyFullName);
  3731. }
  3732. }
  3733. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3734. if (transData.Count > 0)
  3735. {
  3736. foreach (TranslateResult item in transData)
  3737. {
  3738. if (!transDic.ContainsKey(item.Query))
  3739. {
  3740. transDic.Add(item.Query, item.Translation);
  3741. }
  3742. }
  3743. }
  3744. List<GuestList> list = new List<GuestList>();
  3745. foreach (TourClientListDetailsView dele in datas)
  3746. {
  3747. GuestList guestList = new GuestList();
  3748. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3749. {
  3750. guestList.Name = dele.Pinyin;
  3751. }
  3752. else
  3753. {
  3754. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3755. guestList.Name = Name;
  3756. }
  3757. if (dele.Sex == 0)
  3758. {
  3759. guestList.Sex = "Male";
  3760. }
  3761. else if (dele.Sex == 1)
  3762. {
  3763. guestList.Sex = "Female";
  3764. }
  3765. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3766. if (!string.IsNullOrEmpty(dele.Job))
  3767. {
  3768. guestList.Job = dele.Job;
  3769. }
  3770. list.Add(guestList);
  3771. }
  3772. //载入模板
  3773. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3774. DocumentBuilder builder = new DocumentBuilder(doc);
  3775. //获取word里所有表格
  3776. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3777. //获取所填表格的序数
  3778. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3779. var rowStart = tableOne.Rows[0]; //获取第1行
  3780. //循环赋值
  3781. for (int i = 0; i < list.Count; i++)
  3782. {
  3783. builder.MoveToCell(0, i + 1, 0, 0);
  3784. builder.Write(list[i].Name.ToString());
  3785. builder.MoveToCell(0, i + 1, 1, 0);
  3786. builder.Write(list[i].Sex.ToString());
  3787. builder.MoveToCell(0, i + 1, 2, 0);
  3788. builder.Write(list[i].DOB.ToString());
  3789. builder.MoveToCell(0, i + 1, 3, 0);
  3790. builder.Write(list[i].Job.ToString());
  3791. }
  3792. //删除多余行
  3793. while (tableOne.Rows.Count > list.Count + 1)
  3794. {
  3795. tableOne.Rows.RemoveAt(list.Count + 1);
  3796. }
  3797. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3798. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3799. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3800. doc.Save(filePath);
  3801. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3802. return Ok(JsonView(true, "操作成功!", Url));
  3803. }
  3804. else
  3805. {
  3806. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3807. }
  3808. }
  3809. catch (Exception ex)
  3810. {
  3811. return Ok(JsonView(false, ex.Message));
  3812. throw;
  3813. }
  3814. }
  3815. #endregion
  3816. #region 团组经理模块 出入境费用
  3817. ///// <summary>
  3818. ///// 团组模块 - 出入境费用
  3819. ///// </summary>
  3820. ///// <returns></returns>
  3821. //[HttpPost]
  3822. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3823. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3824. //{
  3825. // try
  3826. // {
  3827. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3828. // if (data.Code != 0)
  3829. // {
  3830. // return Ok(JsonView(false, data.Msg));
  3831. // }
  3832. // return Ok(JsonView(true, "查询成功!"));
  3833. // }
  3834. // catch (Exception ex)
  3835. // {
  3836. // return Ok(JsonView(false, ex.Message));
  3837. // throw;
  3838. // }
  3839. //}
  3840. /// <summary>
  3841. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3842. /// </summary>
  3843. /// <returns></returns>
  3844. [HttpPost]
  3845. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3846. public async Task<IActionResult> SetDayAndCostAreaChange()
  3847. {
  3848. try
  3849. {
  3850. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3851. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3852. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3853. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3854. foreach (var item in unite) //处理交集数据
  3855. {
  3856. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3857. }
  3858. foreach (var item in merge) //处理差集数据
  3859. {
  3860. int nationalTravelFeeId = 0;
  3861. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3862. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3863. else
  3864. {
  3865. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3866. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3867. }
  3868. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3869. }
  3870. //只更新dayAndCost 的 nationalTravelFeeId;
  3871. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3872. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3873. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3874. }
  3875. catch (Exception ex)
  3876. {
  3877. return Ok(JsonView(false, ex.Message));
  3878. throw;
  3879. }
  3880. }
  3881. /// <summary>
  3882. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3883. /// </summary>
  3884. /// <returns></returns>
  3885. [HttpPost]
  3886. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3887. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3888. {
  3889. try
  3890. {
  3891. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3892. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3893. //SetDataInfoView
  3894. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3895. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3896. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3897. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3898. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3899. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3900. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3901. //默认币种显示
  3902. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3903. {
  3904. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3905. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3906. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3907. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3908. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3909. };
  3910. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3911. if (_currencyRate.Count > 0)
  3912. {
  3913. foreach (var item in _currencyInfos)
  3914. {
  3915. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3916. if (rateInfo != null)
  3917. {
  3918. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3919. rate1 *= 1.035M;
  3920. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3921. }
  3922. }
  3923. }
  3924. return Ok(JsonView(true, "查询成功!", new
  3925. {
  3926. GroupNameData = groupNameData.Data,
  3927. CurrencyData = _CurrencyData,
  3928. WordTypeData = _WordTypeData,
  3929. ExcelTypeData = _ExcelTypeData,
  3930. CurrencyInit = _currencyInfos
  3931. }));
  3932. }
  3933. catch (Exception ex)
  3934. {
  3935. return Ok(JsonView(false, ex.Message));
  3936. throw;
  3937. }
  3938. }
  3939. /// <summary>
  3940. /// 团组模块 - 出入境费用
  3941. /// 实时汇率 tips
  3942. /// 签证费用 tips
  3943. /// </summary>
  3944. /// <returns></returns>
  3945. [HttpPost]
  3946. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3947. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3948. {
  3949. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3950. //默认币种显示
  3951. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3952. {
  3953. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3954. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3955. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3956. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3957. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3958. };
  3959. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3960. List<dynamic> reteInfos = new List<dynamic>();
  3961. if (_currencyRate.Count > 0)
  3962. {
  3963. foreach (var item in _currencyInfos)
  3964. {
  3965. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3966. if (rateInfo != null)
  3967. {
  3968. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3969. decimal rate1 = item.Rate;
  3970. rate1 *= 1.03M;
  3971. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3972. reteInfos.Add(new
  3973. {
  3974. currCode = item.CurrencyCode,
  3975. currName = item.CurrencyName,
  3976. rate = rate2,
  3977. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3978. });
  3979. }
  3980. }
  3981. }
  3982. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3983. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3984. return Ok(JsonView(true, "查询成功!", new
  3985. {
  3986. //GroupNameData = groupNameData.Data,
  3987. visaData = visaData.Data,
  3988. airData = airData.Data,
  3989. reteInfos = reteInfos
  3990. }));
  3991. }
  3992. /// <summary>
  3993. /// 团组模块 - 出入境费用 - Info
  3994. /// </summary>
  3995. /// <returns></returns>
  3996. [HttpPost]
  3997. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3998. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3999. {
  4000. try
  4001. {
  4002. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  4003. if (data.Code != 0)
  4004. {
  4005. return Ok(JsonView(false, data.Msg));
  4006. }
  4007. return Ok(JsonView(true, "查询成功!", data.Data));
  4008. }
  4009. catch (Exception ex)
  4010. {
  4011. return Ok(JsonView(false, ex.Message));
  4012. }
  4013. }
  4014. /// <summary>
  4015. /// 团组模块 - 出入境费用 - Add And Update
  4016. /// </summary>
  4017. /// <returns></returns>
  4018. [HttpPost]
  4019. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4020. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  4021. {
  4022. try
  4023. {
  4024. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4025. if (data.Code != 0)
  4026. {
  4027. return Ok(JsonView(false, data.Msg));
  4028. }
  4029. //生成默认文件pdf并且通知人员
  4030. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  4031. {
  4032. DiId = dto.DiId,
  4033. ExportType = 1,
  4034. SubTypeId = 1005
  4035. }, "pdf");
  4036. //发送通知
  4037. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  4038. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  4039. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  4040. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  4041. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  4042. return Ok(JsonView(true, data.Msg, data.Data));
  4043. }
  4044. catch (Exception ex)
  4045. {
  4046. return Ok(JsonView(false, ex.Message));
  4047. }
  4048. }
  4049. /// <summary>
  4050. /// 团组模块 - 出入境费用 - Confirm 费用
  4051. /// </summary>
  4052. /// <returns></returns>
  4053. [HttpPost]
  4054. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4055. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  4056. {
  4057. //TODO:测试完毕需把对应的用户ID更改
  4058. //1、数据表添加字段
  4059. //2、更改字段接口()
  4060. var _view = await _enterExitCostRep.ConfirmCost(dto);
  4061. //3、确认成功 给财务发送消息
  4062. if (_view.Code == 200)
  4063. {
  4064. if (dto.Type == 1)
  4065. {
  4066. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  4067. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  4068. }
  4069. }
  4070. return Ok(_view);
  4071. }
  4072. /// <summary>
  4073. /// 团组模块 - 出入境费用 - File downlaod
  4074. /// </summary>
  4075. /// <param name="dto"></param>
  4076. /// <returns></returns>
  4077. [HttpPost]
  4078. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4079. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  4080. {
  4081. try
  4082. {
  4083. if (dto.DiId < 1)
  4084. {
  4085. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4086. }
  4087. if (dto.ExportType < 1)
  4088. {
  4089. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  4090. }
  4091. if (dto.SubTypeId < 1)
  4092. {
  4093. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  4094. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  4095. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  4096. 3 团组成员名单 1 团组成员名单"));
  4097. }
  4098. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4099. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  4100. if (_EnterExitCosts == null)
  4101. {
  4102. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  4103. }
  4104. //数据源
  4105. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  4106. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  4107. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  4108. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  4109. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  4110. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  4111. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  4112. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  4113. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  4114. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  4115. .Select((tcl, dc, cc) => new
  4116. {
  4117. Name = dc.LastName + dc.FirstName,
  4118. Sex = dc.Sex,
  4119. Birthday = dc.BirthDay,
  4120. Company = cc.CompanyFullName,
  4121. Job = dc.Job
  4122. })
  4123. .ToList();
  4124. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4125. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  4126. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  4127. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  4128. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  4129. if (dto.ExportType == 1) //明细表
  4130. {
  4131. if (dto.SubTypeId == 1005) //1005(默认明细表)
  4132. {
  4133. //获取模板
  4134. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  4135. //载入模板
  4136. Document doc = new Document(tempPath);
  4137. DocumentBuilder builder = new DocumentBuilder(doc);
  4138. //利用键值对存放数据
  4139. Dictionary<string, string> dic = new Dictionary<string, string>();
  4140. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  4141. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  4142. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  4143. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  4144. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  4145. //境内费用(其他费用)
  4146. if (_EnterExitCosts.ChoiceOne == 1)
  4147. {
  4148. string row1_1 = "";
  4149. if (_EnterExitCosts.Visa > 0)
  4150. {
  4151. //insidePayTotal += _EnterExitCosts.Visa;
  4152. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  4153. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  4154. {
  4155. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  4156. }
  4157. }
  4158. string row1_2 = "";
  4159. if (_EnterExitCosts.YiMiao > 0)
  4160. {
  4161. //insidePayTotal += _EnterExitCosts.YiMiao;
  4162. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  4163. }
  4164. if (_EnterExitCosts.HeSuan > 0)
  4165. {
  4166. //insidePayTotal += _EnterExitCosts.HeSuan;
  4167. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4168. }
  4169. if (_EnterExitCosts.Service > 0)
  4170. {
  4171. //insidePayTotal += _EnterExitCosts.Service;
  4172. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4173. }
  4174. string row1_3 = "";
  4175. if (_EnterExitCosts.Safe > 0)
  4176. {
  4177. //insidePayTotal += _EnterExitCosts.Safe;
  4178. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4179. }
  4180. if (_EnterExitCosts.Ticket > 0)
  4181. {
  4182. //insidePayTotal += _EnterExitCosts.Ticket;
  4183. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4184. }
  4185. string row1 = "";
  4186. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4187. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4188. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4189. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4190. dic.Add("Row1Str", row1);
  4191. }
  4192. string airTotalStr = string.Empty,
  4193. airPriceStr = string.Empty;
  4194. //经济舱
  4195. if (_EnterExitCosts.SumJJC == 1)
  4196. {
  4197. airTotalStr += $"{_EnterExitCosts.OutsideJJPay.ToString("#0.00")}元/人(经济舱)";
  4198. airPriceStr += $"{_EnterExitCosts.AirJJ.ToString("#0.00")}元/人(经济舱)";
  4199. }
  4200. //公务舱
  4201. if (_EnterExitCosts.SumGWC == 1)
  4202. {
  4203. airTotalStr += $" {_EnterExitCosts.OutsideGWPay.ToString("#0.00")} 元/人(公务舱)";
  4204. airPriceStr += $" {_EnterExitCosts.AirGW.ToString("#0.00")} 元/人(公务舱)";
  4205. }
  4206. //头等舱
  4207. if (_EnterExitCosts.SumTDC == 1)
  4208. {
  4209. airTotalStr += $" {_EnterExitCosts.OutsideTDPay.ToString("#0.00")} 元/人(头等舱)";
  4210. airPriceStr += $" {_EnterExitCosts.AirTD.ToString("#0.00")} 元/人(头等舱)";
  4211. }
  4212. dic.Add("AirTotalStr", airTotalStr);
  4213. dic.Add("AirPriceStr", airPriceStr);
  4214. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4215. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4216. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4217. int table1Row = 0,
  4218. table2Row = 0,
  4219. table3Row = 0,
  4220. table4Row = 0;
  4221. //住宿费
  4222. if (_EnterExitCosts.ChoiceThree == 1)
  4223. {
  4224. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4225. table1Row = dac1.Count;
  4226. #region 填充word表格内容
  4227. for (int i = 0; i < dac1.Count; i++)
  4228. {
  4229. Grp_DayAndCost dac = dac1[i];
  4230. if (dac == null) continue;
  4231. builder.MoveToCell(0, i, 0, 0);
  4232. builder.Write("第" + dac.Days.ToString() + "晚:");
  4233. builder.MoveToCell(0, i, 1, 0);
  4234. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4235. //builder.Write(dac.Place == null ? "" : dac.Place);
  4236. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4237. builder.MoveToCell(0, i, 2, 0);
  4238. builder.Write("费用标准:");
  4239. string curr = "";
  4240. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4241. if (currData != null)
  4242. {
  4243. curr = currData.Name;
  4244. }
  4245. builder.MoveToCell(0, i, 3, 0);
  4246. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4247. builder.MoveToCell(0, i, 4, 0);
  4248. builder.Write("费用小计:");
  4249. builder.MoveToCell(0, i, 5, 0);
  4250. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4251. }
  4252. #endregion
  4253. }else dic.Add("SubZS","0.00");
  4254. //删除多余行
  4255. while (table1.Rows.Count > table1Row)
  4256. {
  4257. table1.Rows.RemoveAt(table1Row);
  4258. }
  4259. //伙食费
  4260. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4261. if (_EnterExitCosts.ChoiceFour == 1)
  4262. {
  4263. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4264. table2Row = dac2.Count;
  4265. #region 填充word表格内容
  4266. for (int i = 0; i < dac2.Count; i++)
  4267. {
  4268. Grp_DayAndCost dac = dac2[i];
  4269. if (dac == null) continue;
  4270. builder.MoveToCell(1, i, 0, 0);
  4271. builder.Write("第" + dac.Days.ToString() + "天:");
  4272. builder.MoveToCell(1, i, 1, 0);
  4273. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4274. builder.MoveToCell(1, i, 2, 0);
  4275. builder.Write("费用标准:");
  4276. string curr = "";
  4277. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4278. if (currData != null)
  4279. {
  4280. curr = currData.Name;
  4281. }
  4282. builder.MoveToCell(1, i, 3, 0);
  4283. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4284. builder.MoveToCell(1, i, 4, 0);
  4285. builder.Write("费用小计:");
  4286. builder.MoveToCell(1, i, 5, 0);
  4287. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4288. }
  4289. #endregion
  4290. }else dic.Add("SubHS","0.00");
  4291. //删除多余行
  4292. while (table2.Rows.Count > table2Row)
  4293. {
  4294. table2.Rows.RemoveAt(table2Row);
  4295. }
  4296. //公杂费
  4297. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4298. if (_EnterExitCosts.ChoiceFive == 1)
  4299. {
  4300. dic.Add("SubGZF", miscellaneousFeeTotal.ToString("#0.00"));
  4301. table3Row = dac3.Count;
  4302. #region 填充word表格内容
  4303. for (int i = 0; i < dac3.Count; i++)
  4304. {
  4305. Grp_DayAndCost dac = dac3[i];
  4306. if (dac == null) continue;
  4307. builder.MoveToCell(2, i, 0, 0);
  4308. builder.Write("第" + dac.Days.ToString() + "天:");
  4309. builder.MoveToCell(2, i, 1, 0);
  4310. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4311. builder.MoveToCell(2, i, 2, 0);
  4312. builder.Write("费用标准:");
  4313. string curr = "";
  4314. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4315. if (currData != null)
  4316. {
  4317. curr = currData.Name;
  4318. }
  4319. builder.MoveToCell(2, i, 3, 0);
  4320. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4321. builder.MoveToCell(2, i, 4, 0);
  4322. builder.Write("费用小计:");
  4323. builder.MoveToCell(2, i, 5, 0);
  4324. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4325. }
  4326. //删除多余行
  4327. while (table3.Rows.Count > table3Row)
  4328. {
  4329. table3.Rows.RemoveAt(table3Row);
  4330. }
  4331. #endregion
  4332. }else dic.Add("SubGZF", "0.00");
  4333. //删除多余行
  4334. while (table3.Rows.Count > table3Row)
  4335. {
  4336. table3.Rows.RemoveAt(table3Row);
  4337. }
  4338. //培训费
  4339. Aspose.Words.Tables.Table table4 = allTables[3] as Aspose.Words.Tables.Table;
  4340. if (_EnterExitCosts.ChoiceSix == 1)
  4341. {
  4342. string pxStr = $"六、培训费合计: {tainFeeTotal.ToString("#0.00")} 元/人";
  4343. dic.Add("SubPX", pxStr);
  4344. table4Row = dac4.Count;
  4345. #region 填充word表格内容
  4346. for (int i = 0; i < dac4.Count; i++)
  4347. {
  4348. Grp_DayAndCost dac = dac4[i];
  4349. if (dac == null) continue;
  4350. builder.MoveToCell(3, i, 0, 0);
  4351. builder.Write("第" + dac.Days.ToString() + "天:");
  4352. builder.MoveToCell(3, i, 1, 0);
  4353. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4354. builder.MoveToCell(3, i, 2, 0);
  4355. builder.Write("费用标准:");
  4356. string curr = "";
  4357. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4358. if (currData != null)
  4359. {
  4360. curr = currData.Name;
  4361. }
  4362. builder.MoveToCell(3, i, 3, 0);
  4363. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4364. builder.MoveToCell(3, i, 4, 0);
  4365. builder.Write("费用小计:");
  4366. builder.MoveToCell(3, i, 5, 0);
  4367. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4368. }
  4369. #endregion
  4370. }
  4371. //else dic.Add("SubPX","0.00");
  4372. //删除多余行
  4373. while (table4.Rows.Count > table4Row)
  4374. {
  4375. table4.Rows.RemoveAt(table4Row);
  4376. }
  4377. decimal otherFeeTotal = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal;
  4378. decimal subJJC = 0.00M,
  4379. subGWC = 0.00M,
  4380. subTDC = 0.00M;
  4381. //经济舱
  4382. if (_EnterExitCosts.SumJJC == 1) subJJC = otherFeeTotal + _EnterExitCosts.OutsideJJPay;
  4383. //公务舱
  4384. if (_EnterExitCosts.SumGWC == 1) subGWC = otherFeeTotal + _EnterExitCosts.OutsideGWPay;
  4385. //头等舱
  4386. if (_EnterExitCosts.SumTDC == 1) subTDC = otherFeeTotal + _EnterExitCosts.OutsideTDPay;
  4387. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4388. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4389. dic.Add("SubTDC", subTDC.ToString("#0.00"));
  4390. #region 填充word模板书签内容
  4391. foreach (var key in dic.Keys)
  4392. {
  4393. builder.MoveToBookmark(key);
  4394. builder.Write(dic[key]);
  4395. }
  4396. #endregion
  4397. //文件名
  4398. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4399. AsposeHelper.removewatermark_v2180();
  4400. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4401. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4402. return Ok(JsonView(true, "成功", new { Url = url }));
  4403. }
  4404. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4405. {
  4406. //获取模板
  4407. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4408. //载入模板
  4409. Document doc = new Document(tempPath);
  4410. DocumentBuilder builder = new DocumentBuilder(doc);
  4411. Dictionary<string, string> dic = new Dictionary<string, string>();
  4412. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4413. {
  4414. List<string> list = new List<string>();
  4415. try
  4416. {
  4417. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4418. foreach (var item in spilitArr)
  4419. {
  4420. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4421. var depCode = spDotandEmpty[2].Substring(0, 3);
  4422. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4423. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4424. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4425. list.Add(depName);
  4426. list.Add(arrName);
  4427. }
  4428. list = list.Distinct().ToList();
  4429. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4430. }
  4431. catch (Exception)
  4432. {
  4433. dic.Add("ReturnCode", "行程录入不正确!");
  4434. }
  4435. }
  4436. else
  4437. {
  4438. dic.Add("ReturnCode", "未录入行程!");
  4439. }
  4440. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4441. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4442. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4443. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4444. {
  4445. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4446. dic.Add("Day", sp.Days.ToString());
  4447. }
  4448. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4449. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4450. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4451. //dic.Add("Names", Names);
  4452. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4453. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4454. decimal dac1totalPrice = 0.00M;
  4455. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4456. foreach (var dac in dac1)
  4457. {
  4458. if (dac.SubTotal == 0.00M)
  4459. {
  4460. continue;
  4461. }
  4462. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4463. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4464. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4465. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4466. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4467. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4468. builder.Write(currency);//币种
  4469. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4470. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4471. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4472. builder.Write("");//人数
  4473. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4474. builder.Write("");//天数
  4475. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4476. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4477. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4478. decimal rate = 0.00M;
  4479. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4480. builder.Write(rate.ToString("#0.0000"));//汇率
  4481. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4482. decimal rbmPrice = dac.SubTotal;
  4483. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4484. accommodationStartIndex++;
  4485. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4486. }
  4487. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4488. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4489. {
  4490. table1.Rows.RemoveAt(i - 1);
  4491. foodandotherStartIndex--;
  4492. }
  4493. if (dac2.Count == dac3.Count)//国家 币种 金额
  4494. {
  4495. for (int i = 0; i < dac2.Count; i++)
  4496. {
  4497. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4498. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4499. }
  4500. }
  4501. decimal dac2totalPrice = 0.00M;
  4502. foreach (var dac in dac2)
  4503. {
  4504. if (dac.SubTotal == 0)
  4505. {
  4506. continue;
  4507. }
  4508. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4509. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4510. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4511. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4512. builder.Write(currency);//币种
  4513. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4514. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4515. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4516. builder.Write("");//人数
  4517. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4518. builder.Write("");//天数
  4519. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4520. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4521. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4522. decimal rate = 0.00M;
  4523. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4524. builder.Write(rate.ToString("#0.0000"));//汇率
  4525. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4526. decimal rbmPrice = dac.SubTotal;
  4527. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4528. foodandotherStartIndex++;
  4529. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4530. }
  4531. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4532. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4533. {
  4534. table1.Rows.RemoveAt(i - 1);
  4535. }
  4536. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4537. string otherFeeStr = "";
  4538. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4539. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4540. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4541. if (otherFeeStr.Length > 0)
  4542. {
  4543. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4544. otherFeeStr = $"({otherFeeStr})";
  4545. dic.Add("OtherFeeStr", otherFeeStr);
  4546. }
  4547. //总计
  4548. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4549. //国际旅费
  4550. string outsideAir = string.Empty;
  4551. string allPriceAir = string.Empty;
  4552. if (_EnterExitCosts.SumJJC == 1)
  4553. {
  4554. outsideAir += string.Format(@"经济舱:{0} 元/人;", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4555. allPriceAir += string.Format(@"经济舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4556. }
  4557. if (_EnterExitCosts.SumGWC == 1)
  4558. {
  4559. outsideAir += string.Format(@"公务舱:{0} 元/人;", _EnterExitCosts.AirGW.ToString("#0.00"));
  4560. allPriceAir += string.Format(@"公务舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideGWPay).ToString("#0.00"));
  4561. }
  4562. if (_EnterExitCosts.SumTDC == 1)
  4563. {
  4564. outsideAir += string.Format(@"头等舱:{0} 元/人;", _EnterExitCosts.AirTD.ToString("#0.00"));
  4565. allPriceAir += string.Format(@"头等舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideTDPay).ToString("#0.00"));
  4566. }
  4567. dic.Add("InTravelPrice", $"({outsideAir})");
  4568. dic.Add("FinalSumPrice", $"({allPriceAir})");
  4569. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4570. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4571. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4572. foreach (var key in dic.Keys)
  4573. {
  4574. builder.MoveToBookmark(key);
  4575. builder.Write(dic[key]);
  4576. }
  4577. //模板文件名
  4578. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  4579. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4580. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4581. return Ok(JsonView(true, "成功", new { Url = url }));
  4582. }
  4583. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4584. {
  4585. //获取模板
  4586. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4587. //载入模板
  4588. WorkbookDesigner designer = new WorkbookDesigner();
  4589. designer.Workbook = new Workbook(tempPath);
  4590. Dictionary<string, string> dic = new Dictionary<string, string>();
  4591. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4592. {
  4593. List<string> list = new List<string>();
  4594. try
  4595. {
  4596. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4597. foreach (var item in spilitArr)
  4598. {
  4599. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4600. var depCode = spDotandEmpty[2].Substring(0, 3);
  4601. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4602. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4603. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4604. list.Add(depName);
  4605. list.Add(arrName);
  4606. }
  4607. list = list.Distinct().ToList();
  4608. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4609. }
  4610. catch (Exception)
  4611. {
  4612. dic.Add("ReturnCode", "行程录入不正确!");
  4613. }
  4614. }
  4615. else
  4616. {
  4617. dic.Add("ReturnCode", "未录入行程!");
  4618. }
  4619. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4620. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4621. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4622. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4623. {
  4624. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4625. dic.Add("Day", sp.Days.ToString());
  4626. }
  4627. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4628. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4629. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4630. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4631. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4632. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4633. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4634. designer.SetDataSource("Name", Names);
  4635. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4636. designer.SetDataSource("Day", dic["Day"] + "天");
  4637. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4638. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4639. int startIndex = 10;
  4640. const int startIndexcopy = 10;
  4641. if (dac2.Count == dac3.Count)//国家 币种 金额
  4642. {
  4643. for (int i = 0; i < dac2.Count; i++)
  4644. {
  4645. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4646. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4647. }
  4648. }
  4649. DataTable dtdac1 = new DataTable();
  4650. List<string> place = new List<string>();
  4651. dtdac1.Columns.AddRange(new DataColumn[] {
  4652. new DataColumn(){ ColumnName = "city"},
  4653. new DataColumn(){ ColumnName = "curr"},
  4654. new DataColumn(){ ColumnName = "criterion"},
  4655. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4656. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4657. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4658. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4659. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4660. });
  4661. DataTable dtdac2 = new DataTable();
  4662. dtdac2.Columns.AddRange(new DataColumn[] {
  4663. new DataColumn(){ ColumnName = "city"},
  4664. new DataColumn(){ ColumnName = "curr"},
  4665. new DataColumn(){ ColumnName = "criterion"},
  4666. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4667. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4668. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4669. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4670. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4671. });
  4672. dtdac1.TableName = "tb1";
  4673. dtdac2.TableName = "tb2";
  4674. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4675. foreach (var item in dac1)
  4676. {
  4677. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4678. if (place.Contains(item.Place))
  4679. {
  4680. continue;
  4681. }
  4682. DataRow row = dtdac1.NewRow();
  4683. row["city"] = item.Place;
  4684. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4685. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4686. row["curr"] = currency;
  4687. row["rate"] = rate.ToString("#0.0000");
  4688. row["criterion"] = item.Cost.ToString("#0.00");
  4689. row["number"] = 1;
  4690. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4691. //row["costRMB"] = rbmPrice;
  4692. dtdac1.Rows.Add(row);
  4693. place.Add(item.Place);
  4694. }
  4695. place = new List<string>();
  4696. foreach (var item in dac2)
  4697. {
  4698. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4699. if (place.Contains(item.Place))
  4700. {
  4701. continue;
  4702. }
  4703. DataRow row = dtdac2.NewRow();
  4704. row["city"] = item.Place;
  4705. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4706. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4707. row["curr"] = currency;
  4708. row["rate"] = rate.ToString("#0.0000");
  4709. row["criterion"] = item.Cost.ToString("#0.00");
  4710. row["number"] = 1;
  4711. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4712. //row["cost"] = item.SubTotal;
  4713. //row["costRMB"] = rbmPrice;
  4714. dtdac2.Rows.Add(row);
  4715. place.Add(item.Place);
  4716. //dac2totalPrice += rbmPrice;
  4717. }
  4718. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4719. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4720. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4721. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4722. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4723. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4724. string cell4Str1 = string.Empty;
  4725. if (_EnterExitCosts.SumJJC == 1) cell4Str1 += $"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人;";
  4726. if (_EnterExitCosts.SumGWC == 1) cell4Str1 += $"公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人;";
  4727. if (_EnterExitCosts.SumTDC == 1) cell4Str1 += $"公务舱:{_EnterExitCosts.AirTD.ToString("#0.00")} 元/人;";
  4728. string cell4Str = $" 4.国际旅费:{cell4Str1}";
  4729. string cellStr = $" 5.其他费用(";
  4730. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4731. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4732. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4733. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4734. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4735. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4736. if (cellStr.Length > 8)
  4737. {
  4738. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4739. }
  4740. cellStr += ")";
  4741. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4742. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay + otherFee;
  4743. decimal pxFee = dac4.Sum(it => it.Cost);
  4744. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay;
  4745. string celllastStr1 = "";
  4746. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4747. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4748. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4749. celllastStr1 += $",国际旅费 元";
  4750. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4751. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4752. designer.SetDataSource("cell4Str", cell4Str);
  4753. designer.SetDataSource("cellStr", cellStr);
  4754. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4755. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay).ToString("#0.00"));
  4756. designer.SetDataSource("celllastStr", celllastStr);
  4757. Workbook wb = designer.Workbook;
  4758. var sheet = wb.Worksheets[0];
  4759. //绑定datatable数据集
  4760. designer.SetDataSource(dtdac1);
  4761. designer.SetDataSource(dtdac2);
  4762. designer.Process();
  4763. var rowStart = dtdac1.Rows.Count;
  4764. while (rowStart > 0)
  4765. {
  4766. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4767. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4768. startIndex++;
  4769. rowStart--;
  4770. }
  4771. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4772. startIndex += 1; //总计行
  4773. rowStart = dtdac2.Rows.Count;
  4774. while (rowStart > 0)
  4775. {
  4776. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4777. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4778. startIndex++;
  4779. rowStart--;
  4780. }
  4781. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4782. wb.CalculateFormula(true);
  4783. //模板文件名
  4784. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  4785. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4786. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4787. return Ok(JsonView(true, "成功", new { Url = url }));
  4788. }
  4789. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4790. {
  4791. //获取模板
  4792. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4793. //载入模板
  4794. Document doc = new Document(tempPath);
  4795. DocumentBuilder builder = new DocumentBuilder(doc);
  4796. Dictionary<string, string> dic = new Dictionary<string, string>();
  4797. dic.Add("GroupName", _DelegationInfo.TeamName);
  4798. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4799. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4800. string missionLeaderJob = "";//负责人job
  4801. int groupNumber = 0; //团人数
  4802. if (DeleClientList.Count > 0)
  4803. {
  4804. missionLeader = DeleClientList[0]?.Name ?? "";
  4805. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4806. }
  4807. dic.Add("MissionLeader", missionLeader); //团负责人
  4808. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4809. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4810. #region MyRegion
  4811. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4812. //{
  4813. // List<string> list = new List<string>();
  4814. // try
  4815. // {
  4816. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4817. // foreach (var item in spilitArr)
  4818. // {
  4819. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4820. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4821. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4822. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4823. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4824. // list.Add(depName);
  4825. // list.Add(arrName);
  4826. // }
  4827. // list = list.Distinct().ToList();
  4828. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4829. // }
  4830. // catch (Exception)
  4831. // {
  4832. // dic.Add("ReturnCode", "行程录入不正确!");
  4833. // }
  4834. //}
  4835. //else
  4836. //{
  4837. // dic.Add("ReturnCode", "未录入行程!");
  4838. //}
  4839. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4840. dic.Add("ReturnCode", string.Join("、", countrys));
  4841. #endregion
  4842. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4843. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4844. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4845. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4846. //{
  4847. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4848. // dic.Add("Day", sp.Days.ToString());
  4849. //}
  4850. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4851. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4852. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4853. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4854. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4855. //培训人员名单
  4856. int cultivateRowIndex = 7;
  4857. foreach (var item in DeleClientList)
  4858. {
  4859. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4860. builder.Write(item.Name);
  4861. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4862. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4863. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4864. string birthDay = "";
  4865. if (item.Birthday != null)
  4866. {
  4867. DateTime dt = Convert.ToDateTime(item.Birthday);
  4868. birthDay = $"{dt.Year}.{dt.Month}";
  4869. }
  4870. builder.Write(birthDay);
  4871. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4872. builder.Write(item.Company);
  4873. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4874. builder.Write(item.Job);
  4875. cultivateRowIndex++;
  4876. }
  4877. //删除多余行
  4878. //cultivateRowIndex -= 2;
  4879. int delRows = 10 + 7 - cultivateRowIndex;
  4880. if (delRows > 0)
  4881. {
  4882. for (int i = 0; i < delRows; i++)
  4883. {
  4884. table1.Rows.RemoveAt(cultivateRowIndex);
  4885. //cultivateRowIndex++;
  4886. }
  4887. }
  4888. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4889. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4890. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4891. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4892. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4893. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4894. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4895. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4896. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4897. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4898. //其他费用
  4899. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4900. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4901. //其他费用合计
  4902. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4903. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4904. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4905. //公务舱合计
  4906. //国际旅费
  4907. string outsideJJ = "";
  4908. string allPriceJJ = "";
  4909. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4910. {
  4911. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4912. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4913. }
  4914. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4915. {
  4916. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4917. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4918. }
  4919. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4920. {
  4921. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4922. dic.Add("AirFeeTotal", airFeeTotalStr);
  4923. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4924. dic.Add("FeeTotal", feeTotalStr);
  4925. }
  4926. foreach (var key in dic.Keys)
  4927. {
  4928. builder.MoveToBookmark(key);
  4929. builder.Write(dic[key]);
  4930. }
  4931. //模板文件名
  4932. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4933. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4934. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4935. return Ok(JsonView(true, "成功", new { Url = url }));
  4936. }
  4937. }
  4938. else if (dto.ExportType == 2) //表格
  4939. {
  4940. //利用键值对存放数据
  4941. Dictionary<string, string> dic = new Dictionary<string, string>();
  4942. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4943. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4944. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4945. dic.Add("Day", sp.Days.ToString());
  4946. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4947. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4948. {
  4949. //获取模板
  4950. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4951. //载入模板
  4952. Document doc = new Document(tempPath);
  4953. DocumentBuilder builder = new DocumentBuilder(doc);
  4954. dic.Add("TeamName", _DelegationInfo.TeamName);
  4955. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4956. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4957. string missionLeaderName = "",
  4958. missionLeaderJob = "";
  4959. if (DeleClientList.Count > 0)
  4960. {
  4961. missionLeaderName = DeleClientList[0].Name;
  4962. missionLeaderJob = DeleClientList[0].Job;
  4963. }
  4964. dic.Add("MissionLeaderName", missionLeaderName);
  4965. dic.Add("MissionLeaderJob", missionLeaderJob);
  4966. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4967. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4968. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4969. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4970. int rowCount = 10;//总人数行
  4971. int startRowIndex = 7; //起始行
  4972. for (int i = 0; i < DeleClientList.Count; i++)
  4973. {
  4974. builder.MoveToCell(0, startRowIndex, 0, 0);
  4975. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4976. builder.MoveToCell(0, startRowIndex, 1, 0);
  4977. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4978. builder.Write(sex);//性别
  4979. builder.MoveToCell(0, startRowIndex, 2, 0);
  4980. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4981. builder.MoveToCell(0, startRowIndex, 3, 0);
  4982. builder.Write(DeleClientList[i].Company);//工作单位
  4983. builder.MoveToCell(0, startRowIndex, 4, 0);
  4984. builder.Write(DeleClientList[i].Job);//职务及级别
  4985. builder.MoveToCell(0, startRowIndex, 5, 0);
  4986. builder.Write("");//人员属性
  4987. builder.MoveToCell(0, startRowIndex, 6, 0);
  4988. builder.Write("");//上次出国时间
  4989. startRowIndex++;
  4990. }
  4991. int nullRow = rowCount - DeleClientList.Count;//空行
  4992. for (int i = 0; i < nullRow; i++)
  4993. {
  4994. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4995. }
  4996. foreach (var key in dic.Keys)
  4997. {
  4998. builder.MoveToBookmark(key);
  4999. builder.Write(dic[key]);
  5000. }
  5001. //模板文件名
  5002. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  5003. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5004. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5005. return Ok(JsonView(true, "成功", new { Url = url }));
  5006. }
  5007. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  5008. {
  5009. //获取模板
  5010. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  5011. //载入模板
  5012. Document doc = new Document(tempPath);
  5013. DocumentBuilder builder = new DocumentBuilder(doc);
  5014. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  5015. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  5016. dic.Add("Names", Names);
  5017. int accommodationRows = 12, foodandotherRows = 12;
  5018. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  5019. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  5020. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5021. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  5022. int accommodationStartIndex = 6;
  5023. decimal dac1totalPrice = 0.00M;
  5024. foreach (var dac in dac1)
  5025. {
  5026. if (dac.SubTotal == 0)
  5027. {
  5028. continue;
  5029. }
  5030. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  5031. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  5032. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  5033. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  5034. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  5035. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  5036. builder.Write(currency);//币种
  5037. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  5038. builder.Write(dac.Cost.ToString("#0.00"));//标准
  5039. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  5040. builder.Write("");//人数
  5041. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  5042. builder.Write("");//天数
  5043. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  5044. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  5045. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  5046. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  5047. builder.Write(rate.ToString("#0.0000"));//汇率
  5048. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  5049. decimal rbmPrice = rate * dac.SubTotal;
  5050. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  5051. accommodationStartIndex++;
  5052. dac1totalPrice += rbmPrice;
  5053. }
  5054. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  5055. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  5056. builder.Write("小计");
  5057. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  5058. builder.Write(dac1totalPrice.ToString("#0.00"));
  5059. accommodationStartIndex++;
  5060. int nullRow = accommodationRows - dac1.Count;
  5061. //删除空行
  5062. //if (nullRow > 0)
  5063. //{
  5064. // int rowIndex = accommodationStartIndex;
  5065. // for (int i = 0; i < nullRow; i++)
  5066. // {
  5067. // Aspose.Words.Tables.Row row = table1.Rows[rowIndex];
  5068. // row.Remove();
  5069. // rowIndex++;
  5070. // }
  5071. //}
  5072. if (dac2.Count == dac3.Count)//国家 币种 金额
  5073. {
  5074. for (int i = 0; i < dac2.Count; i++)
  5075. {
  5076. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  5077. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  5078. }
  5079. }
  5080. int foodandotherStartIndex = 19;//
  5081. decimal dac2totalPrice = 0.00M;
  5082. foreach (var dac in dac2)
  5083. {
  5084. if (dac.SubTotal == 0)
  5085. {
  5086. continue;
  5087. }
  5088. //foodandotherStartIndex = 12;
  5089. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  5090. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  5091. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  5092. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  5093. builder.Write(currency);//币种
  5094. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  5095. builder.Write(dac.Cost.ToString("#0.00"));//标准
  5096. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  5097. builder.Write("");//人数
  5098. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  5099. builder.Write("");//天数
  5100. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  5101. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  5102. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  5103. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  5104. builder.Write(rate.ToString("#0.0000"));//汇率
  5105. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  5106. decimal rbmPrice = rate * dac.SubTotal;
  5107. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  5108. foodandotherStartIndex++;
  5109. dac2totalPrice += rbmPrice;
  5110. }
  5111. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  5112. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  5113. //删除空行
  5114. //if (dac2.Count < foodandotherRows)
  5115. //{
  5116. // while (table2.Rows.Count > dac2.Count)
  5117. // {
  5118. // table2.Rows.RemoveAt(dac2.Count);
  5119. // }
  5120. //}
  5121. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  5122. string otherFeeStr = "";
  5123. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  5124. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  5125. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  5126. if (otherFeeStr.Length > 0)
  5127. {
  5128. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  5129. otherFeeStr = $"({otherFeeStr})";
  5130. dic.Add("OtherFeeStr", otherFeeStr);
  5131. }
  5132. foreach (var key in dic.Keys)
  5133. {
  5134. builder.MoveToBookmark(key);
  5135. builder.Write(dic[key]);
  5136. }
  5137. //模板文件名
  5138. string strFileName = $"省级单位出(境)经费报销单{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  5139. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5140. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5141. return Ok(JsonView(true, "成功", new { Url = url }));
  5142. }
  5143. }
  5144. else if (dto.ExportType == 3)
  5145. {
  5146. if (dto.SubTypeId == 1) //团组成员名单
  5147. {
  5148. if (DeleClientList.Count < 1)
  5149. {
  5150. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  5151. }
  5152. //获取模板
  5153. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  5154. //载入模板
  5155. Document doc = new Document(tempPath);
  5156. DocumentBuilder builder = new DocumentBuilder(doc);
  5157. //获取word里所有表格
  5158. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5159. //获取所填表格的序数
  5160. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5161. var rowStart = tableOne.Rows[0]; //获取第1行
  5162. //循环赋值
  5163. for (int i = 0; i < DeleClientList.Count; i++)
  5164. {
  5165. builder.MoveToCell(0, i + 1, 0, 0);
  5166. builder.Write(DeleClientList[i].Name);
  5167. builder.MoveToCell(0, i + 1, 1, 0);
  5168. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  5169. builder.Write(sex);
  5170. builder.MoveToCell(0, i + 1, 2, 0);
  5171. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  5172. builder.MoveToCell(0, i + 1, 3, 0);
  5173. builder.Write(DeleClientList[i].Company);
  5174. builder.MoveToCell(0, i + 1, 4, 0);
  5175. builder.Write(DeleClientList[i].Job);
  5176. }
  5177. //删除多余行
  5178. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  5179. {
  5180. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  5181. }
  5182. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  5183. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  5184. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  5185. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5186. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5187. return Ok(JsonView(true, "成功", new { Url = url }));
  5188. }
  5189. }
  5190. return Ok(JsonView(false, "操作失败!"));
  5191. }
  5192. catch (Exception ex)
  5193. {
  5194. return Ok(JsonView(false, ex.Message));
  5195. }
  5196. }
  5197. /// <summary>
  5198. /// 获取三公费用标准city
  5199. /// </summary>
  5200. /// <param name="placeData"></param>
  5201. /// <param name="nationalTravelFeeId"></param>
  5202. /// <returns></returns>
  5203. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  5204. {
  5205. string _city = string.Empty;
  5206. if (placeData.Count < 1) return _city;
  5207. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  5208. if (data == null) return _city;
  5209. string country = data.Country;
  5210. string city = data.City;
  5211. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  5212. else _city = city;
  5213. return _city;
  5214. }
  5215. /// <summary>
  5216. /// 团组模块 - 出入境费用 - 明细表导出
  5217. /// </summary>
  5218. /// <returns></returns>
  5219. [HttpPost]
  5220. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5221. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  5222. {
  5223. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  5224. if (data.Code != 0)
  5225. {
  5226. return Ok(JsonView(false, data.Msg));
  5227. }
  5228. return Ok(JsonView(true, data.Msg, data.Data));
  5229. }
  5230. /// <summary>
  5231. /// 团组模块 - 出入境费用 - 一键清空
  5232. /// </summary>
  5233. /// <returns></returns>
  5234. [HttpPost]
  5235. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5236. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  5237. {
  5238. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  5239. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  5240. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  5241. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  5242. if (_view.Code == 0)
  5243. {
  5244. return Ok(JsonView(true, "操作成功"));
  5245. }
  5246. return Ok(JsonView(false, "操作失败"));
  5247. }
  5248. /// <summary>
  5249. /// 团组模块 - 出入境费用 - 子项删除
  5250. /// </summary>
  5251. /// <returns></returns>
  5252. [HttpPost]
  5253. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5254. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  5255. {
  5256. try
  5257. {
  5258. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  5259. if (data.Code != 0)
  5260. {
  5261. return Ok(JsonView(false, data.Msg));
  5262. }
  5263. return Ok(JsonView(true, "操作成功!", data.Data));
  5264. }
  5265. catch (Exception ex)
  5266. {
  5267. return Ok(JsonView(false, ex.Message));
  5268. }
  5269. }
  5270. /// <summary>
  5271. /// 团组模块 - 出入境国家费用标准 List
  5272. /// </summary>
  5273. /// <returns></returns>
  5274. [HttpPost]
  5275. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5276. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5277. {
  5278. try
  5279. {
  5280. Stopwatch sw = new Stopwatch();
  5281. sw.Start();
  5282. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5283. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5284. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5285. Where gntf.Isdel = 0");
  5286. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5287. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5288. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5289. //foreach (var item in nationalTravel)
  5290. //{
  5291. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5292. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5293. // if (otherData != null)
  5294. // {
  5295. // cityData.Remove(otherData);
  5296. // cityData.Add(otherData);
  5297. // }
  5298. // nationalTravelFeeData1.Add(new
  5299. // {
  5300. // Country = item.Country,
  5301. // CityData = cityData
  5302. // });
  5303. //}
  5304. sw.Stop();
  5305. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5306. }
  5307. catch (Exception ex)
  5308. {
  5309. return Ok(JsonView(false, ex.Message));
  5310. throw;
  5311. }
  5312. }
  5313. /// <summary>
  5314. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5315. /// </summary>
  5316. /// <returns></returns>
  5317. [HttpPost]
  5318. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5319. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5320. {
  5321. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5322. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5323. List<string> countryData = new List<string>();
  5324. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5325. countryData = countryData.Distinct().ToList();
  5326. List<dynamic> dataSource = new List<dynamic>();
  5327. foreach (var item in countryData)
  5328. {
  5329. List<string> cityData1 = new List<string>();
  5330. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5331. var countryData2 = new
  5332. {
  5333. CountryName = item,
  5334. CityData = cityData1
  5335. };
  5336. dataSource.Add(countryData2);
  5337. }
  5338. return Ok(JsonView(true, "查询成功!", dataSource));
  5339. }
  5340. /// <summary>
  5341. /// 团组模块 - 出入境国家费用标准 Page List
  5342. /// </summary>
  5343. /// <returns></returns>
  5344. [HttpPost]
  5345. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5346. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5347. {
  5348. int portId = dto.PortType;
  5349. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5350. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5351. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5352. string whereSql = string.Empty;
  5353. if (!string.IsNullOrEmpty(dto.Country))
  5354. {
  5355. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5356. }
  5357. if (!string.IsNullOrEmpty(dto.City))
  5358. {
  5359. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5360. }
  5361. string pageSql = string.Format(@"Select * From (
  5362. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5363. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5364. From Grp_NationalTravelFee gntf
  5365. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5366. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5367. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5368. RefAsync<int> total = 0;
  5369. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5370. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5371. }
  5372. /// <summary>
  5373. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5374. /// </summary>
  5375. /// <returns></returns>
  5376. [HttpPost]
  5377. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5378. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5379. {
  5380. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5381. int portId = dto.PortType;
  5382. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5383. string whereSql = string.Empty;
  5384. if (!string.IsNullOrEmpty(dto.Country))
  5385. {
  5386. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5387. }
  5388. if (!string.IsNullOrEmpty(dto.City))
  5389. {
  5390. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5391. }
  5392. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5393. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5394. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5395. From Grp_NationalTravelFee gntf
  5396. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5397. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5398. Where gntf.Isdel = 0 {0} ", whereSql);
  5399. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5400. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5401. }
  5402. /// <summary>
  5403. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5404. /// </summary>
  5405. /// <returns></returns>
  5406. [HttpPost]
  5407. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5408. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5409. {
  5410. try
  5411. {
  5412. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5413. if (data.Code != 0)
  5414. {
  5415. return Ok(JsonView(false, data.Msg));
  5416. }
  5417. return Ok(JsonView(true, "操作成功!", data.Data));
  5418. }
  5419. catch (Exception ex)
  5420. {
  5421. return Ok(JsonView(false, ex.Message));
  5422. }
  5423. }
  5424. /// <summary>
  5425. /// 团组模块 - 出入境国家费用标准 - Del
  5426. /// </summary>
  5427. /// <returns></returns>
  5428. [HttpPost]
  5429. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5430. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5431. {
  5432. try
  5433. {
  5434. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5435. {
  5436. Id = dto.Id,
  5437. DeleteUserId = dto.DeleteUserId,
  5438. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5439. IsDel = 1
  5440. };
  5441. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5442. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5443. .WhereColumns(it => new { it.Id })
  5444. .ExecuteCommandAsync();
  5445. if (delStatus <= 0)
  5446. {
  5447. return Ok(JsonView(false, "删除失败!"));
  5448. }
  5449. return Ok(JsonView(true, "操作成功!"));
  5450. }
  5451. catch (Exception ex)
  5452. {
  5453. return Ok(JsonView(false, ex.Message));
  5454. }
  5455. }
  5456. #endregion
  5457. #region 签证费用录入
  5458. /// <summary>
  5459. /// 根据diid查询签证费用列表
  5460. /// </summary>
  5461. /// <param name="dto"></param>
  5462. /// <returns></returns>
  5463. [HttpPost]
  5464. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5465. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5466. {
  5467. try
  5468. {
  5469. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5470. if (groupData.Code != 0)
  5471. {
  5472. return Ok(JsonView(false, groupData.Msg));
  5473. }
  5474. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5475. }
  5476. catch (Exception ex)
  5477. {
  5478. return Ok(JsonView(false, ex.Message));
  5479. }
  5480. }
  5481. /// <summary>
  5482. /// 根据签证费用Id查询单条数据及c表数据
  5483. /// </summary>
  5484. /// <param name="dto"></param>
  5485. /// <returns></returns>
  5486. [HttpPost]
  5487. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5488. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5489. {
  5490. try
  5491. {
  5492. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5493. if (groupData.Code != 0)
  5494. {
  5495. return Ok(JsonView(false, groupData.Msg));
  5496. }
  5497. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5498. }
  5499. catch (Exception ex)
  5500. {
  5501. return Ok(JsonView(false, ex.Message));
  5502. }
  5503. }
  5504. /// <summary>
  5505. /// 签证费用删除
  5506. /// </summary>
  5507. /// <param name="dto"></param>
  5508. /// <returns></returns>
  5509. [HttpPost]
  5510. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5511. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5512. {
  5513. _sqlSugar.BeginTran();
  5514. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5515. if (!res)
  5516. {
  5517. _sqlSugar.RollbackTran();
  5518. return Ok(JsonView(false, "删除失败"));
  5519. }
  5520. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5521. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5522. .SetColumns(a => new Grp_CreditCardPayment()
  5523. {
  5524. IsDel = 1,
  5525. DeleteUserId = dto.DeleteUserId,
  5526. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5527. }).ExecuteCommand();
  5528. if (resSub < 1)
  5529. {
  5530. _sqlSugar.RollbackTran();
  5531. return Ok(JsonView(false, "删除失败"));
  5532. }
  5533. _sqlSugar.CommitTran();
  5534. return Ok(JsonView(true, "删除成功!"));
  5535. }
  5536. /// <summary>
  5537. /// 签证费用录入下拉框初始化
  5538. /// </summary>
  5539. /// <returns></returns>
  5540. [HttpPost]
  5541. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5542. public async Task<IActionResult> VisaPriceAddSelect()
  5543. {
  5544. try
  5545. {
  5546. //支付方式
  5547. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5548. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5549. //币种
  5550. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5551. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5552. //乘客类型
  5553. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5554. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5555. //卡类型
  5556. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5557. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5558. var data = new
  5559. {
  5560. Payment = _Payment,
  5561. CurrencyList = _CurrencyList,
  5562. PassengerType = _PassengerType,
  5563. BankCard = _BankCard
  5564. };
  5565. return Ok(JsonView(true, "查询成功!", data));
  5566. }
  5567. catch (Exception ex)
  5568. {
  5569. return Ok(JsonView(false, "程序错误!"));
  5570. throw;
  5571. }
  5572. }
  5573. /// <summary>
  5574. /// 签证费用录入操作(Status:1.新增,2.修改)
  5575. /// </summary>
  5576. /// <param name="dto"></param>
  5577. /// <returns></returns>
  5578. [HttpPost]
  5579. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5580. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5581. {
  5582. try
  5583. {
  5584. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5585. if (groupData.Code != 0)
  5586. {
  5587. return Ok(JsonView(false, groupData.Msg));
  5588. }
  5589. #region 应用推送
  5590. try
  5591. {
  5592. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5593. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5594. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5595. }
  5596. catch (Exception ex)
  5597. {
  5598. }
  5599. #endregion
  5600. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5601. }
  5602. catch (Exception ex)
  5603. {
  5604. return Ok(JsonView(false, ex.Message));
  5605. }
  5606. }
  5607. #endregion
  5608. #region 签证提成录入
  5609. /// <summary>
  5610. /// 签证提成录入
  5611. /// 基础数据
  5612. /// </summary>
  5613. /// <param name="_dto"></param>
  5614. /// <returns></returns>
  5615. [HttpGet]
  5616. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5617. public async Task<IActionResult> VisaCommissionInit()
  5618. {
  5619. return Ok(await _visaCommissionRep.Init());
  5620. }
  5621. /// <summary>
  5622. /// 签证提成录入
  5623. /// Item
  5624. /// </summary>
  5625. /// <param name="_dto"></param>
  5626. /// <returns></returns>
  5627. [HttpPost]
  5628. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5629. public async Task<IActionResult> VisaCommissionItem(VisaCommissionItemDto _dto)
  5630. {
  5631. var validator = new VisaCommissionItemDtoValidator();
  5632. var validatorRes = await validator.ValidateAsync(_dto);
  5633. if (!validatorRes.IsValid)
  5634. {
  5635. StringBuilder sb = new StringBuilder();
  5636. foreach (var item in validatorRes.Errors)
  5637. {
  5638. sb.AppendLine(item.ErrorMessage);
  5639. }
  5640. return Ok(JsonView(false, sb.ToString()));
  5641. }
  5642. return Ok(await _visaCommissionRep.Item(_dto));
  5643. }
  5644. /// <summary>
  5645. /// 签证提成录入
  5646. /// Save
  5647. /// </summary>
  5648. /// <param name="_dto"></param>
  5649. /// <returns></returns>
  5650. [HttpPost]
  5651. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5652. public async Task<IActionResult> VisaCommissionSave(VisaCommissionSaveDto _dto)
  5653. {
  5654. //参数验证
  5655. if (_dto.Items.Length < 1) return Ok(JsonView(false, "请输入有效的请求!"));
  5656. foreach (var item in _dto.Items)
  5657. {
  5658. if (item.CurrUserId < 1) return Ok(JsonView(false, "请输入有效的CurrUserId!"));
  5659. if (item.DiId < 1) return Ok(JsonView(false, "请输入有效的DiId!"));
  5660. if (string.IsNullOrEmpty( item.Country) ) return Ok(JsonView(false, "国家为空!"));
  5661. //if (item.Quantity < 1) return Ok(JsonView(false, "请输入有效的Qauntity!"));
  5662. }
  5663. return Ok(await _visaCommissionRep.Save(_dto));
  5664. }
  5665. /// <summary>
  5666. /// 签证提成录入
  5667. /// Create
  5668. /// </summary>
  5669. /// <param name="_dto"></param>
  5670. /// <returns></returns>
  5671. [HttpPost]
  5672. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5673. public async Task<IActionResult> VisaCommissionCreate(VisaCommissionCreateDto _dto)
  5674. {
  5675. var validator = new VisaCommissionCreateDtoValidator();
  5676. var validatorRes = await validator.ValidateAsync(_dto);
  5677. if (!validatorRes.IsValid)
  5678. {
  5679. StringBuilder sb = new StringBuilder();
  5680. foreach (var item in validatorRes.Errors)
  5681. {
  5682. sb.AppendLine(item.ErrorMessage);
  5683. }
  5684. return Ok(JsonView(false, sb.ToString()));
  5685. }
  5686. return Ok(await _visaCommissionRep.Create(_dto));
  5687. }
  5688. /// <summary>
  5689. /// 签证提成录入
  5690. /// Put(编辑)
  5691. /// </summary>
  5692. /// <param name="id"></param>
  5693. /// <param name="_dto"></param>
  5694. /// <returns></returns>
  5695. [HttpPut]
  5696. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5697. public async Task<IActionResult> VisaCommissionEdit(int id,VisaCommissionCreateDto _dto)
  5698. {
  5699. if (id < 1) return Ok(JsonView(false, "请输入正确的id参数!"));
  5700. var validator = new VisaCommissionCreateDtoValidator();
  5701. var validatorRes = await validator.ValidateAsync(_dto);
  5702. if (!validatorRes.IsValid)
  5703. {
  5704. StringBuilder sb = new StringBuilder();
  5705. foreach (var item in validatorRes.Errors)
  5706. {
  5707. sb.AppendLine(item.ErrorMessage);
  5708. }
  5709. return Ok(JsonView(false, sb.ToString()));
  5710. }
  5711. return Ok(await _visaCommissionRep.Edit(id,_dto));
  5712. }
  5713. /// <summary>
  5714. /// 签证提成录入
  5715. /// Del
  5716. /// </summary>
  5717. /// <param name="id"></param>
  5718. /// <param name="currUserId"></param>
  5719. /// <returns></returns>
  5720. [HttpPost]
  5721. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5722. public async Task<IActionResult> VisaCommissionDel(int id,int currUserId)
  5723. {
  5724. if (id < 1) return Ok(JsonView(false, "请输入正确的id参数!"));
  5725. if (currUserId < 1) return Ok(JsonView(false, "请输入正确的currUserId参数!"));
  5726. return Ok(await _visaCommissionRep.Del(id, currUserId));
  5727. }
  5728. #endregion
  5729. #region op费用录入
  5730. /// <summary>
  5731. /// 根据diid查询op费用列表
  5732. /// </summary>
  5733. /// <param name="dto"></param>
  5734. /// <returns></returns>
  5735. [HttpPost]
  5736. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5737. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5738. {
  5739. try
  5740. {
  5741. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5742. if (groupData.Code != 0)
  5743. {
  5744. return Ok(JsonView(false, groupData.Msg));
  5745. }
  5746. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5747. }
  5748. catch (Exception ex)
  5749. {
  5750. return Ok(JsonView(false, ex.Message));
  5751. }
  5752. }
  5753. /// <summary>
  5754. /// 根据op费用Id查询单条数据及c表数据
  5755. /// </summary>
  5756. /// <param name="dto"></param>
  5757. /// <returns></returns>
  5758. [HttpPost]
  5759. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5760. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5761. {
  5762. try
  5763. {
  5764. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5765. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5766. var data = new
  5767. {
  5768. CarTouristGuideGround = _groupData,
  5769. CreditCardPayment = _creditCardPayment
  5770. };
  5771. return Ok(JsonView(true, "查询成功!", data));
  5772. }
  5773. catch (Exception ex)
  5774. {
  5775. return Ok(JsonView(false, "程序错误!"));
  5776. }
  5777. }
  5778. /// <summary>
  5779. /// op费用删除
  5780. /// </summary>
  5781. /// <param name="dto"></param>
  5782. /// <returns></returns>
  5783. [HttpPost]
  5784. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5785. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5786. {
  5787. try
  5788. {
  5789. _sqlSugar.BeginTran();
  5790. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5791. if (!res)
  5792. {
  5793. return Ok(JsonView(false, "删除失败"));
  5794. }
  5795. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5796. {
  5797. IsDel = 1,
  5798. DeleteUserId = dto.DeleteUserId,
  5799. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5800. }).ExecuteCommandAsync();
  5801. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5802. {
  5803. IsDel = 1,
  5804. DeleteUserId = dto.DeleteUserId,
  5805. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5806. }).ExecuteCommandAsync();
  5807. #region 删除超支相关数据
  5808. //删除导入的超支数据
  5809. var ids = _sqlSugar.Queryable<Fin_LocalGuideRelevancyOverspend>().Where(x => x.LocalGuideId == dto.Id && x.IsDel == 0).Select(x => x.OverspendId).ToList();
  5810. var count = _sqlSugar.Updateable<Fin_GroupExtraCost>().Where(x => ids.Contains(x.Id) && x.IsDel == 0).SetColumns(x => new Fin_GroupExtraCost
  5811. {
  5812. IsDel = 1,
  5813. DeleteUserId = dto.DeleteUserId,
  5814. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5815. }).ExecuteCommand();
  5816. count = _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(x => x.CTable == 1015 && x.IsDel == 0 && ids.Contains(x.CId)).SetColumns(x => new Grp_CreditCardPayment
  5817. {
  5818. IsDel = 1,
  5819. DeleteUserId = dto.DeleteUserId,
  5820. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5821. }).ExecuteCommand() ;
  5822. count = _sqlSugar.Updateable<Fin_LocalGuideRelevancyOverspend>().Where(x=>x.IsDel == 0 && x.LocalGuideId == dto.Id).SetColumns(x => new Fin_LocalGuideRelevancyOverspend
  5823. {
  5824. IsDel = 1,
  5825. DeleteUserId = dto.DeleteUserId,
  5826. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5827. }).ExecuteCommand();
  5828. #endregion
  5829. _sqlSugar.CommitTran();
  5830. return Ok(JsonView(true, "删除成功!"));
  5831. }
  5832. catch (Exception ex)
  5833. {
  5834. _sqlSugar.RollbackTran();
  5835. return Ok(JsonView(false, "程序错误!" + ex.Message));
  5836. }
  5837. }
  5838. /// <summary>
  5839. /// op费用录入操作(Status:1.新增,2.修改)
  5840. /// </summary>
  5841. /// <param name="dto"></param>
  5842. /// <returns></returns>
  5843. [HttpPost]
  5844. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5845. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5846. {
  5847. try
  5848. {
  5849. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5850. if (groupData.Code != 0)
  5851. {
  5852. return Ok(JsonView(false, groupData.Msg));
  5853. }
  5854. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5855. }
  5856. catch (Exception ex)
  5857. {
  5858. return Ok(JsonView(false, ex.Message));
  5859. }
  5860. }
  5861. /// <summary>
  5862. /// 填写费用详细页面初始化绑定
  5863. /// </summary>
  5864. /// <param name="dto"></param>
  5865. /// <returns></returns>
  5866. [HttpPost]
  5867. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5868. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5869. {
  5870. try
  5871. {
  5872. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5873. if (groupData.Code != 0)
  5874. {
  5875. return Ok(JsonView(false, groupData.Msg));
  5876. }
  5877. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5878. }
  5879. catch (Exception ex)
  5880. {
  5881. return Ok(JsonView(false, ex.Message));
  5882. }
  5883. }
  5884. /// <summary>
  5885. /// 根据op费用Id查询详细数据
  5886. /// </summary>
  5887. /// <param name="dto"></param>
  5888. /// <returns></returns>
  5889. [HttpPost]
  5890. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5891. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5892. {
  5893. try
  5894. {
  5895. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5896. if (groupData.Code != 0)
  5897. {
  5898. return Ok(JsonView(false, groupData.Msg));
  5899. }
  5900. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5901. }
  5902. catch (Exception ex)
  5903. {
  5904. return Ok(JsonView(false, ex.Message));
  5905. }
  5906. }
  5907. /// <summary>
  5908. /// OP费用录入填写详情
  5909. /// </summary>
  5910. /// <param name="dto"></param>
  5911. /// <returns></returns>
  5912. [HttpPost]
  5913. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5914. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5915. {
  5916. try
  5917. {
  5918. #region 参数校验
  5919. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5920. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5921. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5922. #endregion
  5923. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5924. if (groupData.Code != 0)
  5925. {
  5926. return Ok(JsonView(false, groupData.Msg));
  5927. }
  5928. //自动审核
  5929. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5930. #region 应用推送
  5931. try
  5932. {
  5933. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5934. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5935. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5936. }
  5937. catch (Exception ex)
  5938. {
  5939. }
  5940. #endregion
  5941. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5942. }
  5943. catch (Exception ex)
  5944. {
  5945. return Ok(JsonView(false, ex.Message));
  5946. }
  5947. }
  5948. /// <summary>
  5949. /// 获取三公详细所有城市
  5950. /// </summary>
  5951. /// <returns></returns>
  5952. [HttpGet]
  5953. public IActionResult OpCarCityResult()
  5954. {
  5955. var jw = JsonView(false);
  5956. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5957. {
  5958. x.Id,
  5959. x.Country,
  5960. x.City,
  5961. }).ToList();
  5962. if (data.Count > 0)
  5963. {
  5964. jw = JsonView(true, "获取成功!", data);
  5965. }
  5966. else
  5967. {
  5968. jw.Msg = "城市数据为空!";
  5969. jw.Data = new string[0];
  5970. }
  5971. return Ok(jw);
  5972. }
  5973. /// <summary>
  5974. /// 导出地接费用明细
  5975. /// </summary>
  5976. /// <param name="dto"></param>
  5977. /// <returns></returns>
  5978. [HttpPost]
  5979. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5980. {
  5981. var jw = JsonView(false);
  5982. if (dto.Diid < 1)
  5983. {
  5984. jw.Msg = "请输入正确的diid!";
  5985. return Ok(jw);
  5986. }
  5987. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5988. if (group == null)
  5989. {
  5990. jw.Msg = "未找到团组信息!";
  5991. return Ok(jw);
  5992. }
  5993. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5994. if (localGuideArr.Count == 0)
  5995. {
  5996. jw.Msg = "该团组暂无地接信息!";
  5997. return Ok(jw);
  5998. }
  5999. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  6000. var overspendSoure = new Dictionary<int, int>
  6001. {
  6002. { 91, 982 }, //车
  6003. { 92 , 1059} ,//导游
  6004. { 994 , 1073}, //翻译
  6005. { 988 , 1074 }, //早餐
  6006. { 93 , 1075 }, //午餐
  6007. { 989 , 1076 }, //晚餐
  6008. };
  6009. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  6010. foreach (var groupArr in localGroup)
  6011. {
  6012. var keyValue = groupArr.Key;
  6013. if (int.TryParse(keyValue, out int cityid))
  6014. {
  6015. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  6016. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  6017. }
  6018. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  6019. foreach (var item in groupArr)
  6020. {
  6021. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  6022. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  6023. new Grp_CarTouristGuideGroundReservationsContentExtend
  6024. {
  6025. Count = a.Count,
  6026. CreateTime = a.CreateTime,
  6027. CreateUserId = a.CreateUserId,
  6028. CTGGRId = a.CTGGRId,
  6029. Currency = a.Currency,
  6030. DatePrice = a.DatePrice,
  6031. DeleteTime = a.DeleteTime,
  6032. DeleteUserId = a.DeleteUserId,
  6033. DiId = a.DiId,
  6034. Id = a.Id,
  6035. IsDel = a.IsDel,
  6036. Price = a.Price,
  6037. PriceContent = a.PriceContent,
  6038. Remark = a.Remark,
  6039. SId = a.SId,
  6040. SidName = b.Name,
  6041. Units = a.Units,
  6042. }
  6043. ).ToList();
  6044. if (content.Count > 0)
  6045. {
  6046. contentArr.Add(content);
  6047. }
  6048. }
  6049. //open excel
  6050. //set excel
  6051. //save excel
  6052. try
  6053. {
  6054. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  6055. IWorkbook workbook;
  6056. if (Path.GetExtension(filePath).ToLower() == ".xls")
  6057. {
  6058. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  6059. }
  6060. else
  6061. {
  6062. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  6063. }
  6064. ISheet sheet = workbook.GetSheetAt(0);
  6065. var rowStartIndex = 2;
  6066. var clounmCount = 10;
  6067. var initStyleRow = sheet.GetRow(2);
  6068. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  6069. //var overspendArrDetail =
  6070. var existsId = new List<CarCompare>();
  6071. var lastElem = arr.Last();
  6072. var thisSid = -1;
  6073. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  6074. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  6075. {
  6076. Name = "未知币种!",
  6077. Remark = "未知币种!",
  6078. };
  6079. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  6080. Action cloneRowFn = () =>
  6081. {
  6082. rowStartIndex++;
  6083. var cloneRow = sheet.CreateRow(rowStartIndex);
  6084. // 复制样式
  6085. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  6086. {
  6087. ICell sourceCell = initStyleRow.GetCell(i);
  6088. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  6089. // 确保单元格存在样式
  6090. if (sourceCell.CellStyle != null)
  6091. {
  6092. targetCell.CellStyle = sourceCell.CellStyle;
  6093. }
  6094. }
  6095. };
  6096. var mergeRow = () =>
  6097. {
  6098. for (int i = 2; i < sheet.LastRowNum; i++)
  6099. {
  6100. var row = sheet.GetRow(i);
  6101. var cellFirst = row.GetCell(0);
  6102. var thisIndex = i + 1;
  6103. while (thisIndex < sheet.LastRowNum)
  6104. {
  6105. var nextRow = sheet.GetRow(thisIndex);
  6106. var nextCellFirst = nextRow.GetCell(0);
  6107. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  6108. {
  6109. thisIndex++;
  6110. }
  6111. else
  6112. {
  6113. break;
  6114. }
  6115. }
  6116. thisIndex--;
  6117. if (thisIndex != i)
  6118. {
  6119. //合并row
  6120. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6121. i, // 起始行索引(0-based)
  6122. thisIndex, // 结束行索引(0-based)
  6123. 0, // 起始列索引(0-based)
  6124. 0 // 结束列索引(0-based)
  6125. );
  6126. sheet.AddMergedRegion(cellRangeAddress);
  6127. i = thisIndex;
  6128. }
  6129. }
  6130. };
  6131. var chaoshiNumber = 0;
  6132. var totalNumber = 0.00M;
  6133. string lastStr = "";
  6134. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  6135. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  6136. {
  6137. b.IsAuditGM,
  6138. x.Id,
  6139. x.Area,
  6140. b.PayPercentage,
  6141. b.PayMoney,
  6142. }).ToList();
  6143. string yesPayment = "", noPayment = "";
  6144. foreach (var item in queryCarArrByCityAndDiid)
  6145. {
  6146. if (item.IsAuditGM == 1)
  6147. {
  6148. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  6149. }
  6150. else
  6151. {
  6152. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  6153. }
  6154. }
  6155. lastStr = yesPayment + noPayment;
  6156. foreach (var item in arr)
  6157. {
  6158. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  6159. {
  6160. if (thisSid != item.SId)
  6161. {
  6162. if (thisSid == -1)
  6163. {
  6164. thisSid = item.SId;
  6165. }
  6166. else
  6167. {
  6168. //合并小计行
  6169. //创建合并区域的实例
  6170. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6171. rowStartIndex, // 起始行索引(0-based)
  6172. rowStartIndex, // 结束行索引(0-based)
  6173. 0, // 起始列索引(0-based)
  6174. 3 // 结束列索引(0-based)
  6175. );
  6176. sheet.AddMergedRegion(cellRangeAddress);
  6177. var CellStyle = workbook.CreateCellStyle();
  6178. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6179. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  6180. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  6181. for (int i = 0; i <= clounmCount; i++)
  6182. {
  6183. if (i > 6)
  6184. {
  6185. var CellStyle1 = workbook.CreateCellStyle();
  6186. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6187. IFont Font = workbook.CreateFont(); // 创建字体
  6188. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  6189. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6190. CellStyle1.SetFont(Font);
  6191. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  6192. }
  6193. else
  6194. {
  6195. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6196. }
  6197. }
  6198. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6199. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6200. //超时合计
  6201. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6202. //超时数
  6203. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6204. //超时合计费用
  6205. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6206. thisSid = item.SId;
  6207. cloneRowFn();
  6208. chaoshiNumber = 0;
  6209. totalNumber = 0;
  6210. }
  6211. }
  6212. IRow row = sheet.GetRow(rowStartIndex);
  6213. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6214. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  6215. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  6216. if (isOpenOverspendSoure)
  6217. {
  6218. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6219. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  6220. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  6221. }
  6222. for (int i = 0; i <= clounmCount; i++)
  6223. {
  6224. var cell = row.GetCell(i);
  6225. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  6226. if (cell == null)
  6227. {
  6228. cell = row.CreateCell(i);
  6229. }
  6230. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  6231. fontRed.CloneStyleFrom(cell.CellStyle);
  6232. IFont Font = workbook.CreateFont(); // 创建字体
  6233. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  6234. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6235. fontRed.SetFont(Font);
  6236. byte[] rgb = new byte[3] { 255, 242, 204 };
  6237. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  6238. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  6239. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  6240. if (workbook is XSSFWorkbook)
  6241. {
  6242. BackgroundColor255_242_204.FillForegroundColor = 0;
  6243. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  6244. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  6245. }
  6246. else
  6247. {
  6248. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  6249. }
  6250. if (i == 1 || i > 6)
  6251. {
  6252. if (i > 6)
  6253. {
  6254. fontRed.FillForegroundColor = 0;
  6255. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  6256. fontRed.FillPattern = FillPattern.SolidForeground;
  6257. }
  6258. cell.CellStyle = fontRed;
  6259. }
  6260. if (i > 2 && i < 7)
  6261. {
  6262. cell.CellStyle = BackgroundColor255_242_204;
  6263. }
  6264. cell.SetCellValue(setCellValue); //写入单元格
  6265. }
  6266. if (overspendSoure.ContainsKey(thisSid))
  6267. {
  6268. var overspendId = overspendSoure[thisSid];
  6269. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6270. }
  6271. cloneRowFn();
  6272. existsId.Add(new CarCompare
  6273. {
  6274. DataPrice = item.DatePrice.ObjToDate(),
  6275. Sid = item.SId
  6276. });
  6277. }
  6278. if (item.Equals(lastElem))
  6279. {
  6280. //合并小计行
  6281. //创建合并区域的实例
  6282. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6283. rowStartIndex, // 起始行索引(0-based)
  6284. rowStartIndex, // 结束行索引(0-based)
  6285. 0, // 起始列索引(0-based)
  6286. 3 // 结束列索引(0-based)
  6287. );
  6288. sheet.AddMergedRegion(cellRangeAddress);
  6289. var CellStyle = workbook.CreateCellStyle();
  6290. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6291. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  6292. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  6293. for (int i = 0; i <= clounmCount; i++)
  6294. {
  6295. if (i > 6)
  6296. {
  6297. var CellStyle1 = workbook.CreateCellStyle();
  6298. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6299. IFont Font = workbook.CreateFont(); // 创建字体
  6300. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  6301. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6302. CellStyle1.SetFont(Font);
  6303. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  6304. }
  6305. else
  6306. {
  6307. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6308. }
  6309. }
  6310. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6311. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6312. //超时合计
  6313. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6314. //超时数
  6315. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6316. //超时合计费用
  6317. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6318. cloneRowFn();
  6319. // 创建合并区域的实例
  6320. cellRangeAddress = new CellRangeAddress(
  6321. rowStartIndex, // 起始行索引(0-based)
  6322. rowStartIndex, // 结束行索引(0-based)
  6323. 0, // 起始列索引(0-based)
  6324. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  6325. );
  6326. // 添加合并区域
  6327. sheet.AddMergedRegion(cellRangeAddress);
  6328. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  6329. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  6330. }
  6331. }
  6332. mergeRow();
  6333. // 保存修改后的Excel文件到新文件
  6334. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  6335. // new FileStream(newFilePath, FileMode.CreateNew)
  6336. using (var stream = new MemoryStream())
  6337. {
  6338. workbook.Write(stream, true);
  6339. stream.Flush();
  6340. stream.Seek(0, SeekOrigin.Begin);
  6341. MemoryStream memoryStream = new MemoryStream();
  6342. stream.CopyTo(memoryStream);
  6343. memoryStream.Seek(0, SeekOrigin.Begin);
  6344. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  6345. }
  6346. workbook.Close();
  6347. workbook.Dispose();
  6348. }
  6349. catch (Exception ex)
  6350. {
  6351. jw.Msg = "出现异常!" + ex.Message;
  6352. return Ok(jw);
  6353. }
  6354. }
  6355. if (Zips.Count > 0)
  6356. {
  6357. IOOperatorHelper io = new IOOperatorHelper();
  6358. var byts = io.ConvertZipStream(Zips);
  6359. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  6360. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  6361. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  6362. }
  6363. else
  6364. {
  6365. jw.Msg = "暂无生成文件!";
  6366. }
  6367. return Ok(jw);
  6368. }
  6369. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  6370. {
  6371. string outStr = string.Empty;
  6372. switch (i)
  6373. {
  6374. case 0:
  6375. outStr = arr[0].SidName;
  6376. break;
  6377. case 1:
  6378. outStr = arr[0].DataPriceStr;
  6379. break;
  6380. case 2:
  6381. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  6382. break;
  6383. case 4:
  6384. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  6385. break;
  6386. case 7:
  6387. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6388. {
  6389. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  6390. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  6391. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  6392. }
  6393. break;
  6394. case 8:
  6395. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6396. {
  6397. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  6398. }
  6399. break;
  6400. case 9:
  6401. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6402. {
  6403. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  6404. }
  6405. break;
  6406. case 10:
  6407. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6408. {
  6409. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6410. }
  6411. break;
  6412. }
  6413. return outStr;
  6414. }
  6415. #region OP行程单
  6416. /// <summary>
  6417. /// OP行程单初始化
  6418. /// </summary>
  6419. /// <param name="dto"></param>
  6420. /// <returns></returns>
  6421. [HttpPost]
  6422. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6423. {
  6424. var jw = JsonView(false);
  6425. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6426. var group = groupList.First();
  6427. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6428. if (group == null)
  6429. {
  6430. jw.Msg = "暂无团组!";
  6431. return Ok(jw);
  6432. }
  6433. group = groupList.Find(x => x.Id == diid);
  6434. if (group == null)
  6435. {
  6436. jw.Msg = "请输入正确的团组ID!";
  6437. return Ok(jw);
  6438. }
  6439. string city = string.Empty;
  6440. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6441. if (blackCode.Count > 0)
  6442. {
  6443. var black = blackCode.First();
  6444. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6445. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6446. if (blackSp.Length > 0)
  6447. {
  6448. try
  6449. {
  6450. var cityArrCode = new List<string>(20);
  6451. foreach (var item in blackSp)
  6452. {
  6453. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6454. var IndexSelect = itemSp[2];
  6455. var cityArrCodeLength = cityArrCode.Count - 1;
  6456. var startCity = IndexSelect.Substring(0, 3);
  6457. if (cityArrCodeLength > 0)
  6458. {
  6459. var arrEndCity = cityArrCode[cityArrCodeLength];
  6460. if (arrEndCity != startCity)
  6461. {
  6462. cityArrCode.Add(startCity.ToUpper());
  6463. }
  6464. }
  6465. else
  6466. {
  6467. cityArrCode.Add(startCity.ToUpper());
  6468. }
  6469. var endCity = IndexSelect.Substring(3, 3);
  6470. cityArrCode.Add(endCity.ToUpper());
  6471. }
  6472. var cityThree = string.Empty;
  6473. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6474. cityThree = cityThree.TrimEnd(',');
  6475. if (string.IsNullOrWhiteSpace(cityThree))
  6476. {
  6477. throw new
  6478. Exception("error");
  6479. }
  6480. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6481. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6482. foreach (var item in cityArrCode)
  6483. {
  6484. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6485. if (find != null)
  6486. {
  6487. city += find.City + "/";
  6488. }
  6489. else
  6490. {
  6491. city += item + "三字码未收入/";
  6492. }
  6493. }
  6494. city = city.TrimEnd('/');
  6495. }
  6496. catch (Exception e)
  6497. {
  6498. city = "黑屏代码格式不正确!";
  6499. }
  6500. }
  6501. }
  6502. else
  6503. {
  6504. city = "未录入黑屏代码";
  6505. }
  6506. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6507. {
  6508. Date = x.Date,
  6509. Days = x.Days,
  6510. Diffgroup = x.Diffgroup,
  6511. Diid = x.Diid,
  6512. Traffic_First = x.Traffic_First,
  6513. Traffic_Second = x.Traffic_Second,
  6514. Trip = x.Trip,
  6515. WeekDay = x.WeekDay,
  6516. Id = x.Id
  6517. }).ToList();
  6518. jw.Data = new
  6519. {
  6520. groupList = groupList.Select(x => new
  6521. {
  6522. x.Id,
  6523. x.TeamName,
  6524. x.TourCode
  6525. }).ToList(),
  6526. groupInfo = new
  6527. {
  6528. group.VisitDays,
  6529. group.TourCode,
  6530. group.VisitPNumber,
  6531. group.TeamName,
  6532. city
  6533. },
  6534. OpTravelList
  6535. };
  6536. jw.Code = 200;
  6537. jw.Msg = "操作成功!";
  6538. return Ok(jw);
  6539. }
  6540. /// <summary>
  6541. /// 删除团组行程单
  6542. /// </summary>
  6543. /// <returns></returns>
  6544. [HttpPost]
  6545. public IActionResult DelTravel(DelOpTravelDto dto)
  6546. {
  6547. var jw = JsonView(false);
  6548. if (dto.UserId <= 0 || dto.Diid <= 0)
  6549. {
  6550. jw.Msg = "请输入正确的参数!";
  6551. return Ok(jw);
  6552. }
  6553. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6554. .SetColumns(x => new Grp_TravelList
  6555. {
  6556. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6557. DeleteUserId = dto.UserId,
  6558. IsDel = 1,
  6559. }).ExecuteCommand();
  6560. jw = JsonView(true);
  6561. return Ok(jw);
  6562. }
  6563. /// <summary>
  6564. /// 行程单保存
  6565. /// </summary>
  6566. /// <returns></returns>
  6567. [HttpPost]
  6568. public IActionResult TravelSave(TravelSaveDto dto)
  6569. {
  6570. var jw = JsonView(false);
  6571. if (dto.Arr.Count > 0)
  6572. {
  6573. try
  6574. {
  6575. _sqlSugar.BeginTran();
  6576. foreach (var item in dto.Arr)
  6577. {
  6578. if (item.Id == 0)
  6579. {
  6580. throw new Exception("请传入正确的Id");
  6581. }
  6582. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6583. .SetColumns(x => new Grp_TravelList
  6584. {
  6585. Trip = item.Trip
  6586. }).ExecuteCommand();
  6587. }
  6588. _sqlSugar.CommitTran();
  6589. jw = JsonView(true);
  6590. }
  6591. catch (Exception ex)
  6592. {
  6593. _sqlSugar.RollbackTran();
  6594. jw.Msg = "程序异常!" + ex.Message;
  6595. }
  6596. }
  6597. else
  6598. {
  6599. jw.Msg = "请传入正确的参数!";
  6600. }
  6601. return Ok(jw);
  6602. }
  6603. /// <summary>
  6604. /// 导出行程单
  6605. /// </summary>
  6606. /// <param name="dto"></param>
  6607. /// <returns></returns>
  6608. [HttpPost]
  6609. public IActionResult ExportTravel(ExportTravelDto dto)
  6610. {
  6611. var jw = JsonView(false);
  6612. jw.Data = "";
  6613. int diid = 0;
  6614. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6615. if (Find == null)
  6616. {
  6617. jw.Msg = "请选择正确的团组!";
  6618. return Ok(jw);
  6619. }
  6620. else
  6621. {
  6622. diid = Find.Id;
  6623. }
  6624. //数据源
  6625. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6626. DataTable dtBlack = null;
  6627. try
  6628. {
  6629. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6630. }
  6631. catch (Exception)
  6632. {
  6633. jw.Msg = "机票黑屏代码有误!";
  6634. return Ok(jw);
  6635. }
  6636. string CityStr = string.Empty;
  6637. if (dtBlack.Rows.Count == 0)
  6638. {
  6639. jw.Msg = "机票黑屏代码有误!";
  6640. return Ok(jw);
  6641. }
  6642. else
  6643. {
  6644. foreach (DataRow row in dtBlack.Rows)
  6645. {
  6646. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6647. {
  6648. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6649. return Ok(jw);
  6650. }
  6651. }
  6652. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6653. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6654. }
  6655. //创建数据源Table
  6656. DataTable dtSource = new DataTable();
  6657. dtSource.Columns.Add("Days", typeof(string));
  6658. dtSource.Columns.Add("Date", typeof(string));
  6659. dtSource.Columns.Add("Week", typeof(string));
  6660. dtSource.Columns.Add("Traffic", typeof(string));
  6661. dtSource.Columns.Add("Trip", typeof(string));
  6662. //获取数据,放到datatable
  6663. foreach (var item in _travelList)
  6664. {
  6665. DataRow dr = dtSource.NewRow();
  6666. dr["Days"] = item.Days;
  6667. dr["Date"] = item.Date;
  6668. dr["Week"] = item.WeekDay;
  6669. dr["Traffic"] = item.Traffic_First
  6670. + "\r\n"
  6671. + item.Traffic_Second;
  6672. dr["Trip"] = item.Trip;
  6673. dtSource.Rows.Add(dr);
  6674. }
  6675. Dictionary<string, string> dic = new Dictionary<string, string>();
  6676. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6677. dic.Add("City", CityStr);
  6678. dic.Add("Days", Find.VisitDays.ToString());
  6679. dic.Add("DeleCode", Find.TourCode);
  6680. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6681. //模板路径
  6682. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6683. //载入模板
  6684. Document doc = null;
  6685. DocumentBuilder builder = null;
  6686. try
  6687. {
  6688. //载入模板
  6689. doc = new Document(tempPath);
  6690. builder = new DocumentBuilder(doc);
  6691. }
  6692. catch (Exception)
  6693. {
  6694. jw.Msg = "模板位置不存在!";
  6695. return Ok(jw);
  6696. }
  6697. foreach (var key in dic.Keys)
  6698. {
  6699. Bookmark bookmark = doc.Range.Bookmarks[key];
  6700. if (bookmark != null)
  6701. {
  6702. builder.MoveToBookmark(key);
  6703. builder.Write(dic[key]);
  6704. }
  6705. }
  6706. //获取word里所有表格
  6707. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6708. //获取所填表格的序数
  6709. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6710. try
  6711. {
  6712. //循环赋值
  6713. for (int i = 0; i < dtSource.Rows.Count; i++)
  6714. {
  6715. builder.MoveToCell(0, i + 1, 0, 0);
  6716. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6717. builder.MoveToCell(0, i + 1, 1, 0);
  6718. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6719. builder.MoveToCell(0, i + 1, 2, 0);
  6720. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6721. var trip = dtSource.Rows[i]["Trip"].ToString();
  6722. builder.MoveToCell(0, i + 1, 3, 0);
  6723. builder.Write(trip);
  6724. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6725. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6726. // 获取特定索引的段落
  6727. Paragraph paragraph = (Paragraph)paragraphs[0];
  6728. Run run = paragraph.Runs[0];
  6729. Aspose.Words.Font font = run.Font;
  6730. font.Name = "黑体";
  6731. //设置双休红色
  6732. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6733. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6734. paragraph = (Paragraph)paragraphs[1];
  6735. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6736. {
  6737. run = paragraph.Runs[0];
  6738. font = run.Font;
  6739. font.Color = Color.Red;
  6740. }
  6741. }
  6742. }
  6743. catch (Exception ex)
  6744. {
  6745. }
  6746. //删除多余行
  6747. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6748. {
  6749. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6750. }
  6751. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6752. if (!Directory.Exists(savePath))
  6753. {
  6754. try
  6755. {
  6756. Directory.CreateDirectory(savePath);
  6757. }
  6758. catch
  6759. {
  6760. }
  6761. }
  6762. string path = savePath + Find.TeamName + "出访日程";
  6763. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6764. try
  6765. {
  6766. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6767. string postfix = ".docx";
  6768. if (dto.IsPDF == 1)
  6769. {
  6770. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6771. postfix = ".pdf";
  6772. }
  6773. doc.Save(path + postfix, saveFormat);
  6774. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6775. }
  6776. catch (Exception)
  6777. {
  6778. jw = JsonView(false);
  6779. }
  6780. return Ok(jw);
  6781. }
  6782. /// <summary>
  6783. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6784. /// </summary>
  6785. /// <param name="num"></param>
  6786. /// <returns></returns>
  6787. string GetNum(string num)
  6788. {
  6789. string str = "";
  6790. switch (num)
  6791. {
  6792. case "1":
  6793. str = "一";
  6794. break;
  6795. case "2":
  6796. str = "二";
  6797. break;
  6798. case "3":
  6799. str = "三";
  6800. break;
  6801. case "4":
  6802. str = "四";
  6803. break;
  6804. case "5":
  6805. str = "五";
  6806. break;
  6807. case "6":
  6808. str = "六";
  6809. break;
  6810. case "7":
  6811. str = "七";
  6812. break;
  6813. case "8":
  6814. str = "八";
  6815. break;
  6816. case "9":
  6817. str = "九";
  6818. break;
  6819. case "10":
  6820. str = "十";
  6821. break;
  6822. case "11":
  6823. str = "十一";
  6824. break;
  6825. case "12":
  6826. str = "十二";
  6827. break;
  6828. case "一":
  6829. str = "1";
  6830. break;
  6831. case "二":
  6832. str = "2";
  6833. break;
  6834. case "三":
  6835. str = "3";
  6836. break;
  6837. case "四":
  6838. str = "4";
  6839. break;
  6840. case "五":
  6841. str = "5";
  6842. break;
  6843. case "六":
  6844. str = "6";
  6845. break;
  6846. case "七":
  6847. str = "7";
  6848. break;
  6849. case "八":
  6850. str = "8";
  6851. break;
  6852. case "九":
  6853. str = "9";
  6854. break;
  6855. case "十":
  6856. str = "10";
  6857. break;
  6858. case "十一":
  6859. str = "11";
  6860. break;
  6861. case "十二":
  6862. str = "12";
  6863. break;
  6864. }
  6865. return str;
  6866. }
  6867. #endregion
  6868. #endregion
  6869. #region 团组成本
  6870. /// <summary>
  6871. /// 团组成本数据初始化
  6872. /// </summary>
  6873. /// <param name="dto"></param>
  6874. /// <returns></returns>
  6875. [HttpPost]
  6876. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6877. {
  6878. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6879. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6880. WHEN COUNT(*) >= 0 THEN 'True'
  6881. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6882. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6883. ").ToList(); //团组列表
  6884. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6885. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6886. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6887. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6888. if (groupinfoValue != null)
  6889. {
  6890. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6891. var spArr = new string[1] { countryArr };
  6892. if (countryArr.Contains("|"))
  6893. {
  6894. spArr = countryArr.Split("|");
  6895. }
  6896. else if (countryArr.Contains("、"))
  6897. {
  6898. spArr = countryArr.Split("、");
  6899. }
  6900. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6901. {
  6902. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6903. if (dbQueryCountry != null)
  6904. {
  6905. visaCountryInfoArr.Add(dbQueryCountry);
  6906. }
  6907. }
  6908. }
  6909. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6910. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6911. var create = _GroupCostRepository.
  6912. CreateGroupCostByBlackCode(dto.Diid);
  6913. if (groupCost.Count == 0 && create.Code == 0)
  6914. {
  6915. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6916. }
  6917. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6918. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6919. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6920. groupCostMap = groupCostMap.Select(x =>
  6921. {
  6922. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6923. {
  6924. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6925. }
  6926. return x;
  6927. }).ToList();
  6928. //GroupCostParameter.Add(new
  6929. // Grp_GroupCostParameter());
  6930. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6931. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6932. return Ok(JsonView(new
  6933. {
  6934. groupList,
  6935. groupInfo,
  6936. groupChecks,
  6937. groupCost = groupCostMap,
  6938. hotelNumber,
  6939. GroupCostParameter = GroupCostParameterMap,
  6940. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6941. {
  6942. x.VisaCountry,
  6943. x.VisaPrice,
  6944. x.Id,
  6945. }).ToList(),
  6946. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6947. blackCodeIsTrue = create.Code == 0 ? true : false,
  6948. hotelIsTrue = hotelIsTrue,
  6949. }));
  6950. }
  6951. /// <summary>
  6952. /// 团组成本信息保存
  6953. /// </summary>
  6954. /// <param name="dto"></param>
  6955. /// <returns></returns>
  6956. [HttpPost]
  6957. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6958. {
  6959. if (dto.Diid <= 0 || dto.Userid <= 0)
  6960. {
  6961. return Ok(JsonView(false));
  6962. }
  6963. JsonView jw = null;
  6964. bool isTrue = false;
  6965. #region 复制团组成本
  6966. //if (dto.Diid == 2581)
  6967. //{
  6968. // dto.Diid = 2599;
  6969. // dto.CheckBoxs.ForEach(x =>
  6970. // {
  6971. // x.Diid = 2599;
  6972. // });
  6973. // dto.GroupCosts.ForEach(x =>
  6974. // {
  6975. // x.Diid = 2599;
  6976. // });
  6977. // dto.CostTypeHotelNumbers.ForEach(x =>
  6978. // {
  6979. // x.Diid = 2599;
  6980. // });
  6981. // dto.GroupCostParameters.ForEach(x =>
  6982. // {
  6983. // x.DiId = 2599;
  6984. // });
  6985. //}
  6986. #endregion
  6987. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6988. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6989. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6990. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6991. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6992. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6993. try
  6994. {
  6995. _sqlSugar.BeginTran();
  6996. isTrue = await _GroupCostRepository.
  6997. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6998. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6999. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  7000. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  7001. _sqlSugar.CommitTran();
  7002. jw = JsonView(true, "保存成功!", isTrue);
  7003. }
  7004. catch (Exception)
  7005. {
  7006. _sqlSugar.RollbackTran();
  7007. jw = JsonView(false);
  7008. }
  7009. return Ok(jw);
  7010. }
  7011. /// <summary>
  7012. /// 司兼导数据
  7013. /// </summary>
  7014. /// <param name="dto"></param>
  7015. /// <returns></returns>
  7016. [HttpPost]
  7017. public IActionResult GetCarGuides(CarGuidesDto dto)
  7018. {
  7019. JsonView jw = null;
  7020. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  7021. jw = JsonView(true, "获取成功!", Data);
  7022. return Ok(jw);
  7023. }
  7024. /// <summary>
  7025. /// 导游数据
  7026. /// </summary>
  7027. /// <param name="dto"></param>
  7028. /// <returns></returns>
  7029. [HttpPost]
  7030. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  7031. {
  7032. JsonView jw = null;
  7033. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  7034. // 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
  7035. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  7036. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  7037. jw = JsonView(true, "获取成功!", Data);
  7038. return Ok(jw);
  7039. }
  7040. /// <summary>
  7041. /// 成本车数据
  7042. /// </summary>
  7043. /// <param name="dto"></param>
  7044. /// <returns></returns>
  7045. [HttpPost]
  7046. public IActionResult GetCarInfo(CarGuidesDto dto)
  7047. {
  7048. JsonView jw = null;
  7049. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  7050. jw = JsonView(true, "获取成功!", Data);
  7051. return Ok(jw);
  7052. }
  7053. /// <summary>
  7054. /// 景点数据
  7055. /// </summary>
  7056. /// <param name="dto"></param>
  7057. /// <returns></returns>
  7058. [HttpPost]
  7059. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  7060. {
  7061. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  7062. return Ok(JsonView(true, "获取成功!", Data));
  7063. }
  7064. /// <summary>
  7065. /// 成本通知
  7066. /// </summary>
  7067. /// <param name="dto"></param>
  7068. /// <returns></returns>
  7069. [HttpPost]
  7070. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  7071. {
  7072. if (dto.Diid < 0)
  7073. {
  7074. return Ok(JsonView(false));
  7075. }
  7076. JsonView jw = null;
  7077. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  7078. if (GroupCostParameter != null)
  7079. {
  7080. int IsShare = 0;
  7081. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  7082. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  7083. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  7084. string msg = string.Empty;
  7085. if (isTrue)
  7086. {
  7087. if (IsShare == 0)
  7088. {
  7089. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  7090. }
  7091. else
  7092. {
  7093. #region 企微通知对应岗位用户
  7094. try
  7095. {
  7096. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  7097. }
  7098. catch (Exception ex)
  7099. {
  7100. }
  7101. #endregion
  7102. msg = "通知成功,其他模块操作人员可见此成本信息!";
  7103. }
  7104. jw = JsonView(isTrue, msg, new { IsShare });
  7105. }
  7106. else
  7107. {
  7108. msg = "修改失败!";
  7109. jw = JsonView(isTrue, msg);
  7110. }
  7111. }
  7112. else
  7113. {
  7114. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  7115. }
  7116. return Ok(jw);
  7117. }
  7118. /// <summary>
  7119. /// 导出报价单
  7120. /// </summary>
  7121. /// <param name="dto"></param>
  7122. /// <returns></returns>
  7123. [HttpPost]
  7124. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  7125. {
  7126. if (dto.Diid == 0)
  7127. {
  7128. return Ok(JsonView(false, "请传递团组id"));
  7129. }
  7130. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7131. if (deleInfo.Code != 0)
  7132. {
  7133. return Ok(JsonView(false, "团组信息查询失败!"));
  7134. }
  7135. var di = deleInfo.Data as DelegationInfoWebView;
  7136. if (di != null)
  7137. {
  7138. di.TeamName = di.TeamName.Replace("|","、");
  7139. di.VisitCountry = di.VisitCountry.Replace("|", "、");
  7140. //文件名
  7141. string strFileName = di.TeamName + "-收款账单.doc";
  7142. //获取模板
  7143. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  7144. //载入模板
  7145. Document doc = new Document(tmppath);
  7146. decimal TotalPrice = 0.00M;
  7147. string itemStr = string.Empty;
  7148. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  7149. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  7150. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  7151. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  7152. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  7153. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  7154. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  7155. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  7156. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  7157. foreach (var cost in groupCostType)
  7158. {
  7159. var List = cost.ToList();
  7160. if (cost.Key == "A")
  7161. {
  7162. foreach (var ListItem in List)
  7163. {
  7164. if (ListItem.number > 0)
  7165. {
  7166. if (ListItem.code.Contains("TBR"))
  7167. {
  7168. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7169. }
  7170. else
  7171. {
  7172. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7173. }
  7174. TotalPrice += (ListItem.number * ListItem.price);
  7175. }
  7176. }
  7177. }
  7178. else
  7179. {
  7180. itemStr = itemStr.Insert(0, "A段\r\n");
  7181. itemStr += "B段\r\n";
  7182. foreach (var ListItem in List)
  7183. {
  7184. if (ListItem.number > 0)
  7185. {
  7186. if (ListItem.code.Contains("TBR"))
  7187. {
  7188. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7189. }
  7190. else
  7191. {
  7192. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7193. }
  7194. TotalPrice += (ListItem.number * ListItem.price);
  7195. }
  7196. }
  7197. }
  7198. }
  7199. #region 替换Word模板书签内容
  7200. Dictionary<string, string> marks = new Dictionary<string, string>();
  7201. marks.Add("To", di.ClientUnit);//付款方
  7202. marks.Add("ToTel", di.TellPhone);//付款方电话
  7203. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  7204. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  7205. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  7206. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  7207. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  7208. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  7209. marks.Add("PayItemContent", itemStr);//详细信息
  7210. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  7211. #endregion
  7212. ////注
  7213. //if (doc.Range.Bookmarks["Attention"] != null)
  7214. //{
  7215. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  7216. // mark.Text = frList[0].Attention;
  7217. //}
  7218. foreach (var item in marks.Keys)
  7219. {
  7220. if (doc.Range.Bookmarks[item] != null)
  7221. {
  7222. Bookmark mark = doc.Range.Bookmarks[item];
  7223. mark.Text = marks[item];
  7224. }
  7225. }
  7226. byte[] bytes = null;
  7227. using (MemoryStream stream = new MemoryStream())
  7228. {
  7229. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7230. bytes = stream.ToArray();
  7231. }
  7232. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  7233. return Ok(JsonView(true, "", new
  7234. {
  7235. Data = bytes,
  7236. strFileName,
  7237. }));
  7238. }
  7239. else
  7240. {
  7241. return Ok(JsonView(false, "团组信息不存在!"));
  7242. }
  7243. }
  7244. /// <summary>
  7245. /// 导出团组成本
  7246. /// </summary>
  7247. /// <param name="dto"></param>
  7248. /// <returns></returns>
  7249. [HttpPost]
  7250. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  7251. {
  7252. var jw = JsonView(false);
  7253. if (dto.Diid == 0)
  7254. {
  7255. return Ok(JsonView(false, "请传递团组id"));
  7256. }
  7257. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7258. if (deleInfo.Code != 0)
  7259. {
  7260. return Ok(JsonView(false, "团组信息查询失败!"));
  7261. }
  7262. var di = deleInfo.Data as DelegationInfoWebView;
  7263. if (di == null)
  7264. {
  7265. return Ok(JsonView(false, "团组信息查询失败!"));
  7266. }
  7267. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  7268. WorkbookDesigner designer = new WorkbookDesigner();
  7269. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  7270. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  7271. for (int i = 0; i < List_GC.Count; i++)
  7272. {
  7273. GroupCost_Excel gc = new GroupCost_Excel();
  7274. gc.Id = List_GC[i].Id;
  7275. gc.Diid = List_GC[i].Diid.ToString();
  7276. gc.DAY = List_GC[i].DAY;
  7277. string week = "";
  7278. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  7279. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  7280. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  7281. gc.ITIN = List_GC[i].ITIN;
  7282. gc.CarType = List_GC[i].CarType;
  7283. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  7284. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  7285. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  7286. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  7287. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  7288. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  7289. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  7290. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  7291. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  7292. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  7293. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  7294. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  7295. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7296. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7297. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  7298. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  7299. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  7300. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  7301. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  7302. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  7303. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  7304. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  7305. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  7306. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  7307. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  7308. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  7309. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  7310. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  7311. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  7312. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  7313. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  7314. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  7315. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  7316. List_GC1.Add(gc);
  7317. }
  7318. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  7319. dt.TableName = "TB";
  7320. //报表标题等不用dt的值
  7321. designer.SetDataSource("TeamName", dto.title.TeamName);
  7322. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  7323. designer.SetDataSource("Tax", dto.title.Tax);
  7324. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  7325. designer.SetDataSource("Currency", dto.title.Currency);
  7326. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  7327. designer.SetDataSource("Rate", dto.title.Rate);
  7328. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  7329. var Aparams = hotels.Find(x => x.Type == "Default");
  7330. if (Aparams == null)
  7331. {
  7332. return Ok(jw);
  7333. }
  7334. //酒店数量
  7335. var txtSGRNumber = Aparams.SGR.ToString();
  7336. var txtTBRNumber = Aparams.TBR.ToString();
  7337. var txtJSESNumber = Aparams.JSES.ToString();
  7338. var txtSUITENumbe = Aparams.SUITE.ToString();
  7339. if (dto.costType == "B")
  7340. {
  7341. Aparams = hotels.Find(x => x.Type == "A");
  7342. var Bparams = hotels.Find(x => x.Type == "B");
  7343. if (Aparams == null || Bparams == null)
  7344. {
  7345. return Ok(jw);
  7346. }
  7347. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  7348. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  7349. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  7350. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  7351. }
  7352. designer.SetDataSource("SGRNumber", txtSGRNumber);
  7353. designer.SetDataSource("TBRNumber", txtTBRNumber);
  7354. designer.SetDataSource("JSESNumber", txtJSESNumber);
  7355. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  7356. var ws = designer.Workbook.Worksheets[0];
  7357. int Row = List_GC.Count;
  7358. int startIndex = 11;
  7359. int HideRows = 0;
  7360. List<int> hideRowsList = new List<int>();
  7361. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  7362. #region A段left数据
  7363. var left = dto.leftInfo.Find(x => x.Type == "A");
  7364. if (left == null)
  7365. {
  7366. return Ok(jw);
  7367. }
  7368. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  7369. if (leftBindData != null)
  7370. {
  7371. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  7372. designer.SetDataSource("VisaRS", leftBindData.rs);
  7373. designer.SetDataSource("VisaXS", leftBindData.xs);
  7374. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7375. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7376. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7377. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7378. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7379. }
  7380. else
  7381. {
  7382. hideRowsList.Add(Row + startIndex + HideRows);
  7383. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7384. }
  7385. HideRows += 2;
  7386. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  7387. if (leftBindData != null)
  7388. {
  7389. designer.SetDataSource("BXDRCB", leftBindData.cb);
  7390. designer.SetDataSource("BXRS", leftBindData.rs);
  7391. designer.SetDataSource("BXXS", leftBindData.xs);
  7392. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7393. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7394. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7395. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7396. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7397. }
  7398. else
  7399. {
  7400. hideRowsList.Add(Row + startIndex + HideRows);
  7401. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7402. }
  7403. HideRows += 2;
  7404. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7405. if (leftBindData != null)
  7406. {
  7407. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7408. designer.SetDataSource("HSRS", leftBindData.rs);
  7409. designer.SetDataSource("HSXS", leftBindData.xs);
  7410. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7411. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7412. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7413. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7414. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7415. }
  7416. else
  7417. {
  7418. hideRowsList.Add(Row + startIndex + HideRows);
  7419. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7420. }
  7421. HideRows += 2;
  7422. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7423. if (leftBindData != null)
  7424. {
  7425. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7426. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7427. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7428. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7429. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7430. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7431. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7432. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7433. }
  7434. else
  7435. {
  7436. hideRowsList.Add(Row + startIndex + HideRows);
  7437. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7438. }
  7439. HideRows += 2;
  7440. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7441. if (leftBindData != null)
  7442. {
  7443. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7444. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7445. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7446. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7447. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7448. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7449. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7450. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7451. }
  7452. else
  7453. {
  7454. hideRowsList.Add(Row + startIndex + HideRows);
  7455. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7456. }
  7457. HideRows += 2;
  7458. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("头等舱"));
  7459. if (leftBindData != null)
  7460. {
  7461. designer.SetDataSource("JPTDCCB", leftBindData.cb);
  7462. designer.SetDataSource("JPTDCPNum", leftBindData.rs);
  7463. designer.SetDataSource("JPTDCXS", leftBindData.xs);
  7464. designer.SetDataSource("JPTDCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7465. designer.SetDataSource("JPTDCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7466. designer.SetDataSource("JPTDCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7467. designer.SetDataSource("JPTDCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7468. designer.SetDataSource("JPTDCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7469. }
  7470. else
  7471. {
  7472. hideRowsList.Add(Row + startIndex + HideRows);
  7473. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7474. }
  7475. HideRows += 2;
  7476. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7477. if (leftBindData != null)
  7478. {
  7479. ////TBR
  7480. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7481. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7482. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7483. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7484. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7485. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7486. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7487. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7488. }
  7489. else
  7490. {
  7491. hideRowsList.Add(Row + startIndex + HideRows);
  7492. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7493. }
  7494. HideRows += 2;
  7495. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7496. if (leftBindData != null)
  7497. {
  7498. ////SGR
  7499. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7500. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7501. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7502. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7503. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7504. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7505. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7506. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7507. }
  7508. else
  7509. {
  7510. hideRowsList.Add(Row + startIndex + HideRows);
  7511. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7512. }
  7513. HideRows += 2;
  7514. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7515. if (leftBindData != null)
  7516. {
  7517. ////JS/ES
  7518. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7519. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7520. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7521. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7522. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7523. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7524. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7525. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7526. }
  7527. else
  7528. {
  7529. hideRowsList.Add(Row + startIndex + HideRows);
  7530. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7531. }
  7532. HideRows += 2;
  7533. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7534. if (leftBindData != null)
  7535. {
  7536. ////SUITE
  7537. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7538. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7539. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7540. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7541. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7542. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7543. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7544. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7545. }
  7546. else
  7547. {
  7548. hideRowsList.Add(Row + startIndex + HideRows);
  7549. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7550. }
  7551. HideRows += 2;
  7552. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7553. if (leftBindData != null)
  7554. {
  7555. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7556. designer.SetDataSource("DJRS", leftBindData.rs);
  7557. designer.SetDataSource("DJXS", leftBindData.xs);
  7558. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7559. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7560. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7561. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7562. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7563. }
  7564. else
  7565. {
  7566. hideRowsList.Add(Row + startIndex + HideRows);
  7567. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7568. }
  7569. HideRows += 2;
  7570. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7571. if (leftBindData != null)
  7572. {
  7573. designer.SetDataSource("HCPCB", leftBindData.cb);
  7574. designer.SetDataSource("HCPRS", leftBindData.rs);
  7575. designer.SetDataSource("HCPXS", leftBindData.xs);
  7576. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7577. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7578. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7579. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7580. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7581. }
  7582. else
  7583. {
  7584. hideRowsList.Add(Row + startIndex + HideRows);
  7585. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7586. }
  7587. HideRows += 2;
  7588. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7589. if (leftBindData != null)
  7590. {
  7591. designer.SetDataSource("CPCB", leftBindData.cb);
  7592. designer.SetDataSource("CPRS", leftBindData.rs);
  7593. designer.SetDataSource("CPXS", leftBindData.xs);
  7594. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7595. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7596. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7597. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7598. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7599. }
  7600. else
  7601. {
  7602. hideRowsList.Add(Row + startIndex + HideRows);
  7603. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7604. }
  7605. HideRows += 2;
  7606. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7607. if (leftBindData != null)
  7608. {
  7609. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7610. designer.SetDataSource("GWRS", leftBindData.rs);
  7611. designer.SetDataSource("GWXS", leftBindData.xs);
  7612. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7613. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7614. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7615. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7616. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7617. }
  7618. else
  7619. {
  7620. hideRowsList.Add(Row + startIndex + HideRows);
  7621. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7622. }
  7623. HideRows += 2;
  7624. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7625. if (leftBindData != null)
  7626. {
  7627. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7628. designer.SetDataSource("LYJRS", leftBindData.rs);
  7629. designer.SetDataSource("LYJXS", leftBindData.xs);
  7630. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7631. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7632. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7633. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7634. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7635. }
  7636. else
  7637. {
  7638. hideRowsList.Add(Row + startIndex + HideRows);
  7639. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7640. }
  7641. #endregion
  7642. #region A段Right信息
  7643. var right = dto.rightInfo.Find(x => x.Type == "A");
  7644. if (right == null)
  7645. {
  7646. return Ok(jw);
  7647. }
  7648. HideRows += 4;
  7649. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7650. if (rightBindData != null)
  7651. {
  7652. //经济舱 + 双人间 TBR
  7653. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7654. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7655. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7656. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7657. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7658. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7659. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7660. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7661. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7662. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7663. }
  7664. else
  7665. {
  7666. hideRowsList.Add(Row + startIndex + HideRows);
  7667. }
  7668. HideRows += 2;
  7669. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7670. if (rightBindData != null)
  7671. {
  7672. //经济舱 + 单人间 SGR
  7673. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7674. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7675. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7676. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7677. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7678. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7679. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7680. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7681. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7682. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7683. }
  7684. else
  7685. {
  7686. hideRowsList.Add(Row + startIndex + HideRows);
  7687. }
  7688. HideRows += 2;
  7689. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7690. if (rightBindData != null)
  7691. {
  7692. //公务舱 + 单人间 SGR
  7693. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7694. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7695. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7696. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7697. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7698. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7699. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7700. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7701. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7702. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7703. }
  7704. else
  7705. {
  7706. hideRowsList.Add(Row + startIndex + HideRows);
  7707. }
  7708. HideRows += 2;
  7709. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7710. if (rightBindData != null)
  7711. {
  7712. //公务舱 + 小套房 JSES
  7713. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7714. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7715. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7716. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7717. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7718. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7719. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7720. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7721. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7722. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7723. }
  7724. else
  7725. {
  7726. hideRowsList.Add(Row + startIndex + HideRows);
  7727. }
  7728. HideRows += 2;
  7729. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7730. if (rightBindData != null)
  7731. {
  7732. //公务舱 + 小套房 JSES
  7733. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7734. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7735. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7736. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7737. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7738. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7739. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7740. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7741. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7742. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7743. }
  7744. else
  7745. {
  7746. hideRowsList.Add(Row + startIndex + HideRows);
  7747. }
  7748. HideRows += 2;
  7749. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7750. if (rightBindData != null)
  7751. {
  7752. //经济舱 + 大套房
  7753. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7754. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7755. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7756. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7757. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7758. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7759. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7760. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7761. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7762. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7763. }
  7764. else
  7765. {
  7766. hideRowsList.Add(Row + startIndex + HideRows);
  7767. }
  7768. HideRows += 2;
  7769. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 JS/ES"));
  7770. if (rightBindData != null)
  7771. {
  7772. //头等舱 + 小套房 JSES
  7773. designer.SetDataSource("lblTDCJSESDRCB", rightBindData.cb);
  7774. designer.SetDataSource("txtTDCJSESRS", rightBindData.rs);
  7775. designer.SetDataSource("lblTDCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7776. designer.SetDataSource("lblTDCJSESDRBJ", rightBindData.bj);
  7777. designer.SetDataSource("lblTDCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7778. designer.SetDataSource("lblTDCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7779. designer.SetDataSource("lblTDCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7780. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7781. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7782. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7783. }
  7784. else
  7785. {
  7786. hideRowsList.Add(Row + startIndex + HideRows);
  7787. }
  7788. HideRows += 2;
  7789. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 SUITE"));
  7790. if (rightBindData != null)
  7791. {
  7792. //头等舱 + 大套房
  7793. designer.SetDataSource("lblTDCSUITEDRCB", rightBindData.cb);
  7794. designer.SetDataSource("txtTDCSUITERS", rightBindData.rs);
  7795. designer.SetDataSource("lblTDCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7796. designer.SetDataSource("lblTDCSUITEDRBJ", rightBindData.bj);
  7797. designer.SetDataSource("lblTDCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7798. designer.SetDataSource("lblTDCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7799. designer.SetDataSource("lblTDCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7800. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7801. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7802. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7803. }
  7804. else
  7805. {
  7806. hideRowsList.Add(Row + startIndex + HideRows);
  7807. }
  7808. #endregion
  7809. #region B段标题清空
  7810. designer.SetDataSource("CostBDRCB", "");
  7811. designer.SetDataSource("CostBRS", "");
  7812. designer.SetDataSource("CostBXS", "");
  7813. designer.SetDataSource("CostBZCB", "");
  7814. designer.SetDataSource("CostBDRBJ", "");
  7815. designer.SetDataSource("CostBZBJ", "");
  7816. designer.SetDataSource("CostBDRLR", "");
  7817. designer.SetDataSource("CostBZLR", "");
  7818. designer.SetDataSource("CostBDRCBOM", "");
  7819. designer.SetDataSource("CostBRSOM", "");
  7820. designer.SetDataSource("CostBZCBOM", "");
  7821. designer.SetDataSource("CostBDRBJOM", "");
  7822. designer.SetDataSource("CostBZBJOM", "");
  7823. designer.SetDataSource("CostBDRLROM", "");
  7824. designer.SetDataSource("CostBZLROM", "");
  7825. #endregion
  7826. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7827. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7828. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7829. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7830. designer.SetDataSource("DJName", "地接(CNY)");
  7831. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7832. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7833. designer.SetDataSource("GWName", "公务(CNY)");
  7834. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7835. designer.SetDataSource("LYJName", "零用金(CNY)");
  7836. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7837. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7838. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7839. designer.SetDataSource("AirTDCName", "机票-头等舱(CNY)");
  7840. designer.SetDataSource("BXName", "保险(CNY)");
  7841. designer.SetDataSource("VisaName", "签证(CNY)");
  7842. #region B段基本数据
  7843. if (dto.costType == "B")
  7844. {
  7845. left = dto.leftInfo.Find(x => x.Type == "B");
  7846. if (left == null)
  7847. {
  7848. return Ok(jw);
  7849. }
  7850. #region B段left数据
  7851. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7852. if (leftBindData != null)
  7853. {
  7854. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7855. designer.SetDataSource("BHSRS", leftBindData.rs);
  7856. designer.SetDataSource("BHSXS", leftBindData.xs);
  7857. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7858. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7859. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7860. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7861. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7862. }
  7863. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7864. if (leftBindData != null)
  7865. {
  7866. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7867. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7868. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7869. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7870. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7871. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7872. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7873. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7874. }
  7875. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7876. if (leftBindData != null)
  7877. {
  7878. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7879. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7880. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7881. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7882. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7883. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7884. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7885. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7886. }
  7887. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("头等舱"));
  7888. if (leftBindData != null)
  7889. {
  7890. designer.SetDataSource("BJPTDCCB", leftBindData.cb);
  7891. designer.SetDataSource("BJPTDCPNum", leftBindData.rs);
  7892. designer.SetDataSource("BJPTDCXS", leftBindData.xs);
  7893. designer.SetDataSource("BJPTDCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7894. designer.SetDataSource("BJPTDCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7895. designer.SetDataSource("BJPTDCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7896. designer.SetDataSource("BJPTDCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7897. designer.SetDataSource("BJPTDCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7898. }
  7899. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7900. if (leftBindData != null)
  7901. {
  7902. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7903. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7904. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7905. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7906. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7907. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7908. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7909. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7910. }
  7911. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7912. if (leftBindData != null)
  7913. {
  7914. designer.SetDataSource("BCPCB", leftBindData.cb);
  7915. designer.SetDataSource("BCPRS", leftBindData.rs);
  7916. designer.SetDataSource("BCPXS", leftBindData.xs);
  7917. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7918. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7919. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7920. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7921. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7922. }
  7923. //TBR
  7924. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7925. if (leftBindData != null)
  7926. {
  7927. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7928. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7929. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7930. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7931. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7932. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7933. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7934. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7935. }
  7936. //SGR
  7937. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7938. if (leftBindData != null)
  7939. {
  7940. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7941. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7942. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7943. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7944. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7945. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7946. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7947. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7948. }
  7949. //JS/ES
  7950. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7951. if (leftBindData != null)
  7952. {
  7953. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7954. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7955. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7956. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7957. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7958. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7959. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7960. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7961. }
  7962. //SUITE
  7963. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7964. if (leftBindData != null)
  7965. {
  7966. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7967. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7968. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7969. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7970. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7971. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7972. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7973. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7974. }
  7975. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7976. if (leftBindData != null)
  7977. {
  7978. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7979. designer.SetDataSource("BDJRS", leftBindData.rs);
  7980. designer.SetDataSource("BDJXS", leftBindData.xs);
  7981. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7982. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7983. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7984. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7985. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7986. }
  7987. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7988. if (leftBindData != null)
  7989. {
  7990. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7991. designer.SetDataSource("BGWRS", leftBindData.rs);
  7992. designer.SetDataSource("BGWXS", leftBindData.xs);
  7993. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7994. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7995. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7996. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7997. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7998. }
  7999. #region 优化方案
  8000. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  8001. //excelBind.Add("零用金", new {
  8002. //cb="",
  8003. //rs="",
  8004. //xs ="",
  8005. //zcb = "",
  8006. //});
  8007. #endregion
  8008. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  8009. if (leftBindData != null)
  8010. {
  8011. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  8012. designer.SetDataSource("BLYJRS", leftBindData.rs);
  8013. designer.SetDataSource("BLYJXS", leftBindData.xs);
  8014. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8015. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8016. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8017. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8018. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8019. }
  8020. #endregion
  8021. #region B段Right信息
  8022. right = dto.rightInfo.Find(x => x.Type == "B");
  8023. if (right == null)
  8024. {
  8025. return Ok(jw);
  8026. }
  8027. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  8028. if (rightBindData != null)
  8029. {
  8030. //经济舱 + 双人间 TBR
  8031. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  8032. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  8033. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8034. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  8035. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8036. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8037. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8038. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8039. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8040. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8041. }
  8042. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  8043. if (rightBindData != null)
  8044. {
  8045. //经济舱 + 单人间 SGR
  8046. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  8047. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  8048. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8049. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  8050. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8051. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8052. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8053. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8054. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8055. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8056. }
  8057. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  8058. if (rightBindData != null)
  8059. {
  8060. //公务舱 + 单人间 SGR
  8061. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  8062. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  8063. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8064. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  8065. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8066. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8067. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8068. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8069. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8070. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8071. }
  8072. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  8073. if (rightBindData != null)
  8074. {
  8075. //公务舱 + 小套房 JSES
  8076. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  8077. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  8078. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8079. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  8080. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8081. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8082. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8083. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8084. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8085. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8086. }
  8087. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  8088. if (rightBindData != null)
  8089. {
  8090. //公务舱 + 小套房 JSES
  8091. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  8092. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  8093. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8094. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  8095. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8096. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8097. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8098. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8099. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8100. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8101. }
  8102. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  8103. if (rightBindData != null)
  8104. {
  8105. //经济舱 + 大套房
  8106. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  8107. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  8108. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8109. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  8110. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8111. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8112. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8113. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8114. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8115. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8116. }
  8117. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 JS/ES"));
  8118. if (rightBindData != null)
  8119. {
  8120. //头等舱 + 小套房 JSES
  8121. designer.SetDataSource("BlblTDCJSESDRCB", rightBindData.cb);
  8122. designer.SetDataSource("BtxtTDCJSESRS", rightBindData.rs);
  8123. designer.SetDataSource("BlblTDCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8124. designer.SetDataSource("BlblTDCJSESDRBJ", rightBindData.bj);
  8125. designer.SetDataSource("BlblTDCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8126. designer.SetDataSource("BlblTDCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8127. designer.SetDataSource("BlblTDCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8128. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8129. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8130. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8131. }
  8132. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 SUITE"));
  8133. if (rightBindData != null)
  8134. {
  8135. //头等舱 + 大套房
  8136. designer.SetDataSource("BlblTDCSUITEDRCB", rightBindData.cb);
  8137. designer.SetDataSource("BtxtTDCSUITERS", rightBindData.rs);
  8138. designer.SetDataSource("BlblTDCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8139. designer.SetDataSource("BlblTDCSUITEDRBJ", rightBindData.bj);
  8140. designer.SetDataSource("BlblTDCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8141. designer.SetDataSource("BlblTDCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8142. designer.SetDataSource("BlblTDCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8143. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8144. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8145. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8146. }
  8147. #endregion
  8148. #region 标题
  8149. designer.SetDataSource("CostBDRCB", "单人成本");
  8150. designer.SetDataSource("CostBRS", "人数");
  8151. designer.SetDataSource("CostBXS", "系数");
  8152. designer.SetDataSource("CostBZCB", "总成本");
  8153. designer.SetDataSource("CostBDRBJ", "单人报价");
  8154. designer.SetDataSource("CostBZBJ", "总报价");
  8155. designer.SetDataSource("CostBDRLR", "单人利润");
  8156. designer.SetDataSource("CostBZLR", "总利润");
  8157. designer.SetDataSource("CostBDRCBOM", "单人成本");
  8158. designer.SetDataSource("CostBRSOM", "人数");
  8159. designer.SetDataSource("CostBZCBOM", "总成本");
  8160. designer.SetDataSource("CostBDRBJOM", "单人报价");
  8161. designer.SetDataSource("CostBZBJOM", "总报价");
  8162. designer.SetDataSource("CostBDRLROM", "单人利润");
  8163. designer.SetDataSource("CostBZLROM", "总利润");
  8164. #endregion
  8165. }
  8166. #endregion
  8167. designer.SetDataSource("TzZCB2", TzZCB2);
  8168. designer.SetDataSource("TzZBJ2", TzZBJ2);
  8169. designer.SetDataSource("TzZLR2", TzZLR2);
  8170. string[] dataSourceKeys = new string[]
  8171. {
  8172. "VF",
  8173. "TGS",
  8174. "TGOF",
  8175. "TGM",
  8176. "TGA",
  8177. "TGTF",
  8178. "TGEF",
  8179. "CFM",
  8180. "CFOF",
  8181. "B",
  8182. "L",
  8183. "D",
  8184. "TBR",
  8185. "SGR",
  8186. "JSES",
  8187. "Suite",
  8188. "TV",
  8189. "1L",
  8190. "IF",
  8191. "EF",
  8192. "BRF",
  8193. "TE",
  8194. "TGT",
  8195. "DRVT",
  8196. "PC",
  8197. "TLF",
  8198. "ECT"
  8199. };
  8200. foreach (var item in dataSourceKeys)
  8201. {
  8202. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  8203. if (find != null)
  8204. {
  8205. designer.SetDataSource(item, find.text);
  8206. }
  8207. else
  8208. {
  8209. designer.SetDataSource(item, 0);
  8210. }
  8211. }
  8212. designer.SetDataSource(dt);
  8213. //根据数据源处理生成报表内容
  8214. designer.Process();
  8215. designer.Workbook.Worksheets[0].Name = "清单";
  8216. Worksheet sheet = designer.Workbook.Worksheets[0];
  8217. foreach (var Rowindex in hideRowsList)
  8218. {
  8219. ws.Cells.HideRows(Rowindex, 2);
  8220. }
  8221. byte[] bytes = null;
  8222. string strFileName = di.TeamName + "-团组-成本.xls";
  8223. using (MemoryStream stream = new MemoryStream())
  8224. {
  8225. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  8226. bytes = stream.ToArray();
  8227. }
  8228. return Ok(JsonView(true, "", new
  8229. {
  8230. Data = bytes,
  8231. strFileName,
  8232. }));
  8233. }
  8234. /// <summary>
  8235. /// 导出客户报表
  8236. /// </summary>
  8237. /// <returns></returns>
  8238. [HttpPost]
  8239. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  8240. {
  8241. var jw = JsonView(false);
  8242. if (dto.Diid == 0)
  8243. {
  8244. return Ok(JsonView(false, "请传递团组id"));
  8245. }
  8246. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  8247. if (deleInfo.Code != 0)
  8248. {
  8249. return Ok(JsonView(false, "团组信息查询失败!"));
  8250. }
  8251. var di = deleInfo.Data as DelegationInfoWebView;
  8252. if (di == null)
  8253. {
  8254. return Ok(JsonView(false, "团组信息查询失败!"));
  8255. }
  8256. //文件名
  8257. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  8258. //获取模板
  8259. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  8260. //载入模板
  8261. Document doc = new Document(tmppath);
  8262. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  8263. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  8264. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  8265. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  8266. var AParameter = ParameterList.Find(x => x.CostType == "A");
  8267. var BParameter = ParameterList.Find(x => x.CostType == "B");
  8268. if (AParameter == null)
  8269. {
  8270. return Ok(JsonView(false, "系数不存在!"));
  8271. }
  8272. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  8273. , TzAirDesc, TzZCost;
  8274. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  8275. = TzAirDesc = TzZCost = string.Empty;
  8276. TzNumber = AParameter.CostTypenumber.ToString();
  8277. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  8278. CarGuides1 = dto.CarGuides1;
  8279. Meal = dto.Meal;
  8280. SubsidizedMeals = dto.SubsidizedMeals;
  8281. NightRepair = dto.NightRepair;
  8282. AttractionsTickets = dto.AttractionsTickets;
  8283. MiscellaneousFees = dto.MiscellaneousFees;
  8284. ATip = dto.ATip;
  8285. TzHotelDesc = "";
  8286. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  8287. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  8288. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  8289. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  8290. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  8291. TzAirDesc = "";
  8292. TzZCost = dto.TzZCost;
  8293. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  8294. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  8295. var index = 1;
  8296. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  8297. foreach (var item in TzHotelDescArr)
  8298. {
  8299. if (AinfoArr != null)
  8300. {
  8301. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8302. if (Ainfo != null)
  8303. {
  8304. if (int.Parse(Ainfo.rs) <= 0)
  8305. {
  8306. continue;
  8307. }
  8308. var hotelText = string.Empty;
  8309. switch (item)
  8310. {
  8311. case "SGR":
  8312. hotelText = "单人间";
  8313. break;
  8314. case "JSES":
  8315. hotelText = "小套房";
  8316. break;
  8317. case "SUITE":
  8318. hotelText = "套房";
  8319. break;
  8320. case "TBR":
  8321. hotelText = "双人间";
  8322. break;
  8323. }
  8324. if (item != "TBR")
  8325. {
  8326. 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";
  8327. }
  8328. else
  8329. {
  8330. 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";
  8331. }
  8332. index++;
  8333. }
  8334. }
  8335. }
  8336. index = 1;
  8337. foreach (var item in TzAirDescArr)
  8338. {
  8339. if (AinfoArr != null)
  8340. {
  8341. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8342. if (Ainfo != null)
  8343. {
  8344. if (int.Parse(Ainfo.rs) <= 0)
  8345. {
  8346. continue;
  8347. }
  8348. 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";
  8349. index++;
  8350. }
  8351. }
  8352. }
  8353. if (dto.costType == "B")
  8354. {
  8355. if (BParameter == null)
  8356. {
  8357. return Ok(JsonView(false, "B段系数不存在!"));
  8358. }
  8359. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  8360. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  8361. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  8362. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  8363. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  8364. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  8365. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  8366. foreach (var item in TzHotelDescArr)
  8367. {
  8368. if (AinfoArr != null)
  8369. {
  8370. TzHotelDesc += "B段信息 \r\n";
  8371. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8372. if (Ainfo != null)
  8373. {
  8374. if (int.Parse(Ainfo.rs) <= 0)
  8375. {
  8376. continue;
  8377. }
  8378. var hotelText = string.Empty;
  8379. switch (item)
  8380. {
  8381. case "SGR":
  8382. hotelText = "单人间";
  8383. break;
  8384. case "JSES":
  8385. hotelText = "小套房";
  8386. break;
  8387. case "SUITE":
  8388. hotelText = "套房";
  8389. break;
  8390. case "TBR":
  8391. hotelText = "双人间";
  8392. break;
  8393. }
  8394. if (item != "TBR")
  8395. {
  8396. 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";
  8397. }
  8398. else
  8399. {
  8400. 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";
  8401. }
  8402. index++;
  8403. }
  8404. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  8405. }
  8406. }
  8407. index = 1;
  8408. foreach (var item in TzAirDescArr)
  8409. {
  8410. if (AinfoArr != null)
  8411. {
  8412. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8413. if (Ainfo != null)
  8414. {
  8415. if (int.Parse(Ainfo.rs) <= 0)
  8416. {
  8417. continue;
  8418. }
  8419. 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";
  8420. index++;
  8421. }
  8422. }
  8423. }
  8424. }
  8425. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  8426. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  8427. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  8428. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  8429. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  8430. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  8431. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  8432. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  8433. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  8434. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  8435. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  8436. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  8437. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  8438. DickeyValue.Add("Visa", Visa); // 签证单人报价
  8439. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  8440. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  8441. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  8442. DickeyValue.Add("TzZCost", TzZCost);
  8443. foreach (var key in DickeyValue.Keys)
  8444. {
  8445. if (doc.Range.Bookmarks[key] != null)
  8446. {
  8447. Bookmark mark = doc.Range.Bookmarks[key];
  8448. mark.Text = DickeyValue[key];
  8449. }
  8450. }
  8451. byte[] bytes = null;
  8452. string strFileName = di.TeamName + "-客户报价.doc";
  8453. using (MemoryStream stream = new MemoryStream())
  8454. {
  8455. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  8456. bytes = stream.ToArray();
  8457. }
  8458. return Ok(JsonView(true, "", new
  8459. {
  8460. Data = bytes,
  8461. strFileName,
  8462. }));
  8463. }
  8464. /// <summary>
  8465. /// 团组成本 各模块(酒店,地接,机票)成本提示
  8466. /// </summary>
  8467. /// <param name="dto"></param>
  8468. /// <returns></returns>
  8469. [HttpPost]
  8470. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8471. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  8472. {
  8473. try
  8474. {
  8475. #region 参数验证
  8476. if (dto.DiId < 0)
  8477. {
  8478. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  8479. }
  8480. List<int> cTableIds = new List<int>() {
  8481. 76 ,//酒店预订
  8482. 77 ,//行程
  8483. 79 ,//车/导游地接
  8484. 80 ,//签证
  8485. 81 ,//邀请/公务活
  8486. 82 ,//团组客户保险
  8487. 85 ,//机票预订
  8488. 98 ,//其他款项
  8489. 285 ,//收款退还
  8490. 751 ,//酒店早餐
  8491. 1015 // 超支费用
  8492. };
  8493. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  8494. {
  8495. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  8496. }
  8497. #endregion
  8498. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  8499. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  8500. if (_GroupCostParameters.Count <= 0)
  8501. {
  8502. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  8503. }
  8504. if (_GroupCostParameters[0].IsShare == 0)
  8505. {
  8506. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  8507. }
  8508. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8509. //处理date为空问题
  8510. if (_GroupCosts.Count > 0)
  8511. {
  8512. for (int i = 0; i < _GroupCosts.Count; i++)
  8513. {
  8514. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8515. {
  8516. if (i > 0)
  8517. {
  8518. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8519. }
  8520. }
  8521. }
  8522. }
  8523. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8524. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8525. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8526. string currCode = "";
  8527. #region currCode 验证
  8528. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8529. if (isInt)
  8530. {
  8531. var currData = currDatas.Find(it => it.Id == intCurrency);
  8532. if (currData != null)
  8533. {
  8534. currCode = currData.Name;
  8535. }
  8536. }
  8537. else
  8538. {
  8539. currCode = _GroupCostParameters[0].Currency.Trim();
  8540. }
  8541. #endregion
  8542. //op,酒店单段模式存储
  8543. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8544. {
  8545. CurrencyCode = currCode,
  8546. Rate = _GroupCostParameters[0].Rate,
  8547. CostType = _GroupCostParameters[0].CostType,
  8548. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8549. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8550. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8551. };
  8552. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8553. if (_GroupCostParameters.Count == 2)
  8554. {
  8555. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8556. }
  8557. foreach (var item in _GroupCostParameters)
  8558. {
  8559. decimal _rate = 1;
  8560. decimal _rate1 = item.Rate;
  8561. decimal _scale = 1;
  8562. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8563. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8564. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8565. //if (userInfo != null)
  8566. //{
  8567. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8568. // {
  8569. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8570. // {
  8571. // _scale = 1.00M;
  8572. // }
  8573. // }
  8574. //}
  8575. #endregion
  8576. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8577. {
  8578. CurrencyCode = currCode,
  8579. Rate = _rate1,
  8580. CostType = item.CostType,
  8581. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8582. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8583. CostTypeNumber = item.CostTypenumber
  8584. };
  8585. if (_GroupCostParameters.Count > 1)
  8586. {
  8587. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8588. }
  8589. else
  8590. {
  8591. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8592. }
  8593. if (dto.CTable == 79)//
  8594. {
  8595. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8596. modulePromptInfo.TotalCost = item.DJCB;
  8597. }
  8598. List<string> costTypes = new List<string>() { "A", "B" };
  8599. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8600. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8601. if (_GroupCostsDuplicates.Count() == 1)
  8602. {
  8603. _GroupCostsTypeData = _GroupCosts;
  8604. }
  8605. else
  8606. {
  8607. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8608. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8609. }
  8610. /*
  8611. * 76 酒店预订
  8612. * 77 行程
  8613. * 79 车/导游地接
  8614. * 80 签证
  8615. * 81 邀请/公务活动
  8616. * 82 团组客户保险
  8617. * 85 机票预订
  8618. * 98 其他款项
  8619. * 285 收款退还
  8620. * 751 酒店早餐
  8621. * 1015 超支费用
  8622. */
  8623. switch (dto.CTable)
  8624. {
  8625. case 76: // 酒店预订
  8626. _ModuleSubPromptInfo.AddRange(
  8627. _GroupCostsTypeData.Select(it => new
  8628. {
  8629. it.DAY,
  8630. it.Date,
  8631. it.ACCON,
  8632. it.ITIN,
  8633. it.SGR,
  8634. it.TBR,
  8635. it.JS_ES,
  8636. it.Suite
  8637. })
  8638. );
  8639. break;
  8640. case 79: // 车/导游地接
  8641. _ModuleSubPromptInfo.AddRange(
  8642. _GroupCostsTypeData.Select(it => new
  8643. {
  8644. Date = it.Date, //日期
  8645. CarFee = it.CarCost * _rate * _scale, //车费用
  8646. CarType = it.CarType, //车型
  8647. DriverFee = it.CFS * _rate * _scale, //司机工资
  8648. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8649. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8650. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8651. GuideFee = it.TGS * _rate * _scale, //导游费用
  8652. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8653. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8654. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8655. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8656. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8657. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8658. Breakfast = it.B * _rate * _scale, //早餐费
  8659. Lunch = it.L * _rate * _scale, //午餐费
  8660. Dinner = it.D * _rate * _scale, //晚餐费
  8661. OfficialActivitiesFee = it.TV * _rate * _scale,//会务活动费 --新加
  8662. OfficialTransFee = it.IF * _rate * _scale, //公务翻译费 --新加
  8663. InvitationFee = it.iL * _rate * _scale, //邀请函费用 --新加
  8664. TicketFee = it.EF * _rate * _scale, //门票费
  8665. TicketRemark = it.EFR, //门票费描述
  8666. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8667. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8668. SpentCash = it.PC * _rate * _scale, //零用金
  8669. LeadersFee = it.TLF * _rate * _scale, //领队费
  8670. ActivitiesFee = it.ECT * _rate * _scale, //会务费 --新加
  8671. })
  8672. );
  8673. break;
  8674. case 85: // 机票
  8675. List<dynamic> datas = new List<dynamic>();
  8676. datas.Add(
  8677. new
  8678. {
  8679. AirType = "经济舱",
  8680. AirNum = item.JJCRS,
  8681. AirDRCB = item.JJCCB,
  8682. AirZCB = (item.JJCRS * item.JJCCB)
  8683. }
  8684. );
  8685. datas.Add(
  8686. new
  8687. {
  8688. AirType = "公务舱",
  8689. AirNum = item.GWCRS,
  8690. AirDRCB = item.GWCCB,
  8691. AirZCB = (item.GWCRS * item.GWCCB)
  8692. }
  8693. );
  8694. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8695. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8696. modulePromptInfo.Data = new
  8697. {
  8698. airFeeData = datas,
  8699. airInitData = initDatas
  8700. };
  8701. _ModulePromptInfos.Add(modulePromptInfo);
  8702. break;
  8703. default:
  8704. break;
  8705. }
  8706. }
  8707. if (dto.CTable != 85)
  8708. {
  8709. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8710. _ModulePromptInfos.Add(_ModulePromptInfo);
  8711. }
  8712. _view.ModulePromptInfos = _ModulePromptInfos;
  8713. return Ok(JsonView(true, "操作成功!", _view));
  8714. }
  8715. catch (Exception ex)
  8716. {
  8717. return Ok(JsonView(false, ex.Message));
  8718. }
  8719. }
  8720. /// <summary>
  8721. /// 根据黑屏代码重新生成行程
  8722. /// </summary>
  8723. /// <param name="dto"></param>
  8724. /// <returns></returns>
  8725. [HttpPost]
  8726. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8727. {
  8728. var jw = JsonView(false);
  8729. var Create = _GroupCostRepository.
  8730. CreateGroupCostByBlackCode(dto.Diid);
  8731. jw.Msg = Create.Msg;
  8732. if (Create.Code == 0)
  8733. {
  8734. jw.Code = 200;
  8735. jw.Data = new
  8736. {
  8737. groupCost = Create.Data,
  8738. blackCodeIsTrue = true
  8739. };
  8740. }
  8741. else
  8742. {
  8743. jw.Code = 400;
  8744. jw.Data = new
  8745. {
  8746. groupCost = Create.Data,
  8747. blackCodeIsTrue = false,
  8748. };
  8749. }
  8750. return Ok(jw);
  8751. }
  8752. /// <summary>
  8753. /// 成本获取OP历史车费用
  8754. /// </summary>
  8755. /// <param name="dto"></param>
  8756. /// <returns></returns>
  8757. [HttpPost]
  8758. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8759. {
  8760. var jw = JsonView(false);
  8761. try
  8762. {
  8763. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8764. //获取现有所有车的数据
  8765. if (!dto.Param.IsNullOrWhiteSpace())
  8766. {
  8767. string sql = $@"
  8768. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8769. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8770. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8771. 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
  8772. AND gctggr.ServiceEndTime is not NULL
  8773. ORDER by gctggrc.id DESC
  8774. ";
  8775. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8776. var numeberResult = await Task.Run(() =>
  8777. {
  8778. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8779. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8780. return numberArr;
  8781. });
  8782. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8783. foreach (var item in numeberResult)
  8784. {
  8785. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8786. {
  8787. Country = "数据异常!",
  8788. City = string.Empty,
  8789. };
  8790. item.Area = find.Country + " " + find.City;
  8791. }
  8792. dbResult.AddRange(numeberResult);
  8793. if (dto.Param.Contains("、"))
  8794. {
  8795. var sp = dto.Param.Split("、");
  8796. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8797. .Where(x =>
  8798. {
  8799. return System.Array.Exists(sp, e =>
  8800. {
  8801. bool where = false;
  8802. if (x.Area != null)
  8803. {
  8804. where = x.Area.Contains(e);
  8805. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8806. {
  8807. return false;
  8808. }
  8809. }
  8810. if (x.PriceName != null && !where)
  8811. {
  8812. where = x.PriceName.Contains(e);
  8813. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8814. {
  8815. return false;
  8816. }
  8817. }
  8818. return where;
  8819. });
  8820. }).ToList();
  8821. }
  8822. else
  8823. {
  8824. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8825. .Where(x =>
  8826. {
  8827. bool where = false;
  8828. if (x.Area != null)
  8829. {
  8830. where = x.Area.Contains(dto.Param);
  8831. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8832. {
  8833. return false;
  8834. }
  8835. }
  8836. if (x.PriceName != null && !where)
  8837. {
  8838. where = x.PriceName.Contains(dto.Param);
  8839. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8840. {
  8841. return false;
  8842. }
  8843. }
  8844. return where;
  8845. }
  8846. )
  8847. .ToList();
  8848. }
  8849. }
  8850. var view = dbResult.Select(x =>
  8851. {
  8852. decimal dp = 0.00M;
  8853. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8854. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8855. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8856. {
  8857. if (startB && endB)
  8858. {
  8859. var timesp = endD.Subtract(startD);
  8860. if ((timesp.Days + 1) != 0)
  8861. {
  8862. dp = x.Price / (timesp.Days + 1);
  8863. }
  8864. }
  8865. }
  8866. else
  8867. {
  8868. dp = x.Price;
  8869. }
  8870. return new
  8871. {
  8872. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8873. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8874. x.Area,
  8875. x.id,
  8876. price = x.Price.ToString("F2"),
  8877. x.PriceName,
  8878. x.PriceContent,
  8879. x.TeamName,
  8880. x.DatePrice,
  8881. dayPrice = dp.ToString("F2"),
  8882. };
  8883. }).OrderByDescending(x => x.id).ToList();
  8884. jw = JsonView(true, "获取成功!", view);
  8885. }
  8886. catch (Exception e)
  8887. {
  8888. jw = JsonView(false, e.Message);
  8889. }
  8890. return Ok(jw);
  8891. }
  8892. #endregion
  8893. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8894. /// <summary>
  8895. /// 酒店预订
  8896. /// 酒店费用列表 根据团组Id查询
  8897. /// </summary>
  8898. /// <param name="_dto"></param>
  8899. /// <returns></returns>
  8900. [HttpPost]
  8901. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8902. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8903. {
  8904. #region 参数验证
  8905. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8906. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8907. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8908. #region 团组操作权限验证 76 酒店预定模块
  8909. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8910. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8911. #endregion
  8912. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8913. #region 页面操作权限验证
  8914. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8915. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8916. #endregion
  8917. #endregion
  8918. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8919. }
  8920. /// <summary>
  8921. /// 酒店预订
  8922. /// 基础数据
  8923. /// </summary>
  8924. /// <param name="_dto"></param>
  8925. /// <returns></returns>
  8926. [HttpPost]
  8927. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8928. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8929. {
  8930. #region 参数验证
  8931. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8932. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8933. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8934. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8935. #region 页面操作权限验证
  8936. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8937. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8938. #endregion
  8939. #region 团组操作权限验证 76 酒店预定模块
  8940. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8941. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8942. #endregion
  8943. #endregion
  8944. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8945. }
  8946. /// <summary>
  8947. /// 酒店预订
  8948. /// 创建 入住卷号码
  8949. /// </summary>
  8950. /// <param name="_dto"></param>
  8951. /// <returns></returns>
  8952. [HttpPost]
  8953. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8954. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8955. {
  8956. try
  8957. {
  8958. #region 参数验证
  8959. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8960. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8961. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8962. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8963. #region 页面操作权限验证
  8964. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8965. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8966. #endregion
  8967. #region 团组操作权限验证 76 酒店预定模块
  8968. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8969. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8970. #endregion
  8971. #endregion
  8972. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8973. if (data.Code != 0)
  8974. {
  8975. return Ok(JsonView(false, data.Msg));
  8976. }
  8977. return Ok(JsonView(true, data.Msg, data.Data));
  8978. }
  8979. catch (Exception ex)
  8980. {
  8981. return Ok(JsonView(false, ex.Message));
  8982. }
  8983. }
  8984. /// <summary>
  8985. /// 酒店预订
  8986. /// 详情
  8987. /// </summary>
  8988. /// <param name="_dto"></param>
  8989. /// <returns></returns>
  8990. [HttpPost]
  8991. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8992. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8993. {
  8994. #region 参数验证
  8995. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8996. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8997. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8998. #region 团组操作权限验证 76 酒店预定模块
  8999. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9000. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9001. #endregion
  9002. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9003. #region 页面操作权限验证
  9004. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9005. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9006. #endregion
  9007. #endregion
  9008. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  9009. }
  9010. /// <summary>
  9011. /// 酒店预订
  9012. /// Add Or Edit
  9013. /// </summary>
  9014. /// <param name="_dto"></param>
  9015. /// <returns></returns>
  9016. [HttpPost]
  9017. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9018. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  9019. {
  9020. #region 参数验证
  9021. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9022. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9023. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9024. #region 团组操作权限验证 76 酒店预定模块
  9025. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9026. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9027. #endregion
  9028. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9029. #region 页面操作权限验证
  9030. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9031. if (_dto.Id == 0) // Add
  9032. {
  9033. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9034. }
  9035. else if (_dto.Id > 1) // Edit
  9036. {
  9037. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9038. }
  9039. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  9040. #endregion
  9041. #endregion
  9042. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  9043. if (_view.Code != 200)
  9044. {
  9045. return Ok(_view);
  9046. }
  9047. #region 应用推送
  9048. try
  9049. {
  9050. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  9051. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  9052. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  9053. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9054. //自动审核
  9055. var autoAdit = await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  9056. //if (autoAdit.Code != 200) _view.Msg += $"\r\n{autoAdit.Msg}";
  9057. _logger.LogInformation($"【酒店自动审核】【{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}】执行调用 调用结果:{JsonConvert.SerializeObject(autoAdit)}");
  9058. }
  9059. catch (Exception ex)
  9060. {
  9061. }
  9062. #endregion
  9063. return Ok(_view);
  9064. }
  9065. /// <summary>
  9066. /// 酒店自动审核测试
  9067. /// Add Or Edit
  9068. /// </summary>
  9069. /// <param name="_dto"></param>
  9070. /// <returns></returns>
  9071. [HttpPost]
  9072. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9073. public async Task<IActionResult> PostHotelAutoAuditTest(int diid,int dataId)
  9074. {
  9075. #region 应用推送
  9076. try
  9077. {
  9078. //自动审核
  9079. await _feeAuditRep.FeeAutomaticAudit(1, diid, dataId);
  9080. }
  9081. catch (Exception ex)
  9082. {
  9083. return Ok(JsonView(false, "操作失败"));
  9084. }
  9085. #endregion
  9086. return Ok(JsonView(false,"操作成功"));
  9087. }
  9088. /// <summary>
  9089. /// 酒店预订
  9090. /// Del
  9091. /// </summary>
  9092. /// <param name="_dto"></param>
  9093. /// <returns></returns>
  9094. [HttpPost]
  9095. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9096. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  9097. {
  9098. #region 参数验证
  9099. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9100. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9101. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9102. #region 团组操作权限验证 76 酒店预定模块
  9103. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9104. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9105. #endregion
  9106. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9107. #region 页面操作权限验证
  9108. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9109. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9110. #endregion
  9111. #endregion
  9112. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  9113. }
  9114. /// <summary>
  9115. /// 酒店预订
  9116. /// 生成VOUCHER
  9117. /// 2024.05.06 之前版本
  9118. /// </summary>
  9119. /// <param name="_dto"></param>
  9120. /// <returns></returns>
  9121. [HttpPost]
  9122. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9123. public async Task<IActionResult> PostHotelReservationsCreateVoucherOld(HotelReservationsCreateVoucherDto _dto)
  9124. {
  9125. try
  9126. {
  9127. #region 参数验证
  9128. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9129. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9130. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9131. if (_dto.Id < 1) return Ok(JsonView(false, "Id为空"));
  9132. #region 团组操作权限验证 76 酒店预定模块
  9133. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9134. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9135. #endregion
  9136. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9137. #region 页面操作权限验证
  9138. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9139. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9140. #endregion
  9141. #endregion
  9142. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  9143. //判断数据是否完整
  9144. if (hr != null)
  9145. {
  9146. if (!string.IsNullOrEmpty(hr.DetermineNo))
  9147. {
  9148. string strFileName = "HotelStatement/";
  9149. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  9150. if (dele != null)
  9151. strFileName += dele.TourCode;
  9152. //载入模板
  9153. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  9154. Document doc = new Document(sss);
  9155. DocumentBuilder builder = new DocumentBuilder(doc);
  9156. #region 替换Word模板书签内容
  9157. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  9158. //入住卷预定号码
  9159. if (doc.Range.Bookmarks["VNO"] != null)
  9160. {
  9161. Bookmark mark = doc.Range.Bookmarks["VNO"];
  9162. mark.Text = hr.CheckNumber;
  9163. }
  9164. //酒店时间
  9165. if (doc.Range.Bookmarks["Date"] != null)
  9166. {
  9167. Bookmark mark = doc.Range.Bookmarks["Date"];
  9168. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  9169. }
  9170. //团号
  9171. if (doc.Range.Bookmarks["TNo"] != null)
  9172. {
  9173. Bookmark mark = doc.Range.Bookmarks["TNo"];
  9174. mark.Text = dele.TourCode;
  9175. }
  9176. //预定号码
  9177. if (doc.Range.Bookmarks["BookingId"] != null)
  9178. {
  9179. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  9180. mark.Text = hr.ReservationsNo;
  9181. }
  9182. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  9183. {
  9184. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  9185. mark.Text = hr.DetermineNo;
  9186. }
  9187. //酒店城市
  9188. if (doc.Range.Bookmarks["City"] != null)
  9189. {
  9190. Bookmark mark = doc.Range.Bookmarks["City"];
  9191. mark.Text = hr.City;
  9192. }
  9193. //酒店名称
  9194. if (doc.Range.Bookmarks["HName"] != null)
  9195. {
  9196. Bookmark mark = doc.Range.Bookmarks["HName"];
  9197. mark.Text = hr.HotelName;
  9198. }
  9199. //酒店地址
  9200. if (doc.Range.Bookmarks["Address"] != null)
  9201. {
  9202. Bookmark mark = doc.Range.Bookmarks["Address"];
  9203. mark.Text = hr.HotelAddress;
  9204. }
  9205. //酒店电话
  9206. if (doc.Range.Bookmarks["Tel"] != null)
  9207. {
  9208. Bookmark mark = doc.Range.Bookmarks["Tel"];
  9209. mark.Text = hr.HotelTel;
  9210. }
  9211. //酒店传真
  9212. if (doc.Range.Bookmarks["Fax"] != null)
  9213. {
  9214. Bookmark mark = doc.Range.Bookmarks["Fax"];
  9215. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  9216. {
  9217. mark.Text = hr.HotelFax;
  9218. }
  9219. }
  9220. //入住时间
  9221. if (doc.Range.Bookmarks["CIn"] != null)
  9222. {
  9223. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  9224. Bookmark mark = doc.Range.Bookmarks["CIn"];
  9225. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  9226. }
  9227. //退房时间
  9228. if (doc.Range.Bookmarks["COut"] != null)
  9229. {
  9230. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  9231. Bookmark mark = doc.Range.Bookmarks["COut"];
  9232. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  9233. }
  9234. //客户名称
  9235. if (doc.Range.Bookmarks["GName"] != null)
  9236. {
  9237. string guestName = "";
  9238. string[] clients = new string[] { };
  9239. if (hr.GuestName.Contains(","))
  9240. {
  9241. clients = hr.GuestName.Split(",");
  9242. }
  9243. else
  9244. {
  9245. clients = new string[] { hr.GuestName };
  9246. }
  9247. List<int> clientIds_int = new List<int>();
  9248. if (clients.Length > 0)
  9249. {
  9250. foreach (var item in clients)
  9251. {
  9252. if (item.IsNumeric())
  9253. {
  9254. clientIds_int.Add(int.Parse(item));
  9255. }
  9256. }
  9257. }
  9258. if (clientIds_int.Count > 0)
  9259. {
  9260. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  9261. foreach (var client in _clientDatas)
  9262. {
  9263. //男
  9264. if (client.Sex == 0) guestName += $"Mr.";
  9265. //女
  9266. else if (client.Sex == 1) guestName += $"Ms.";
  9267. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  9268. {
  9269. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  9270. }
  9271. //guestName += $"{client.Pinyin},";
  9272. }
  9273. if (guestName.Length > 0)
  9274. {
  9275. guestName = guestName.Substring(0, guestName.Length - 1);
  9276. }
  9277. }
  9278. else
  9279. {
  9280. guestName = hr.GuestName;
  9281. }
  9282. Bookmark mark = doc.Range.Bookmarks["GName"];
  9283. mark.Text = guestName;
  9284. }
  9285. //房间介绍
  9286. if (doc.Range.Bookmarks["ROOM"] != null)
  9287. {
  9288. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  9289. mark.Text = hr.RoomExplanation;
  9290. }
  9291. //报价描述
  9292. if (doc.Range.Bookmarks["NOTE"] != null)
  9293. {
  9294. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  9295. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  9296. if (ss != null)
  9297. mark.Text = ss.Name;
  9298. }
  9299. //入住时间
  9300. if (doc.Range.Bookmarks["CheckIn"] != null)
  9301. {
  9302. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  9303. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  9304. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  9305. }
  9306. //退房时间
  9307. if (doc.Range.Bookmarks["CheckOut"] != null)
  9308. {
  9309. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  9310. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  9311. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  9312. }
  9313. //日期
  9314. if (doc.Range.Bookmarks["DT"] != null)
  9315. {
  9316. Bookmark mark = doc.Range.Bookmarks["DT"];
  9317. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  9318. }
  9319. //名称
  9320. if (doc.Range.Bookmarks["VName"] != null)
  9321. {
  9322. Bookmark mark = doc.Range.Bookmarks["VName"];
  9323. mark.Text = hr.HotelName;
  9324. }
  9325. //号码
  9326. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  9327. {
  9328. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  9329. mark.Text = hr.CheckNumber;
  9330. }
  9331. #endregion
  9332. strFileName += "VOUCHER.doc";
  9333. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9334. doc.Save(fileDir);
  9335. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9336. return Ok(JsonView(true, "操作成功!", Url));
  9337. }
  9338. else
  9339. {
  9340. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  9341. }
  9342. }
  9343. else
  9344. {
  9345. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  9346. }
  9347. }
  9348. catch (Exception ex)
  9349. {
  9350. return Ok(JsonView(false, ex.Message));
  9351. }
  9352. }
  9353. /// <summary>
  9354. /// 酒店预订
  9355. /// 生成VOUCHER
  9356. /// 2024.05.06 之后版本
  9357. /// </summary>
  9358. /// <param name="_dto"></param>
  9359. /// <returns></returns>
  9360. [HttpPost]
  9361. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9362. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  9363. {
  9364. #region 参数验证
  9365. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9366. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9367. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9368. #region 团组操作权限验证 76 酒店预定模块
  9369. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9370. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9371. #endregion
  9372. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9373. #region 页面操作权限验证
  9374. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9375. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9376. #endregion
  9377. #endregion
  9378. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9379. //判断数据是否完整
  9380. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  9381. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9382. string strFileName = "HotelStatement/";
  9383. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9384. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  9385. #region 数据处理
  9386. List<int> guestIds = new List<int>();
  9387. int index = 0;
  9388. foreach (var item in hrDtas)
  9389. {
  9390. if (item.GuestName.Contains(","))
  9391. {
  9392. string[] guestIdArr = item.GuestName.Split(',');
  9393. foreach (var guestIdStr in guestIdArr)
  9394. {
  9395. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  9396. if (guestBool)
  9397. {
  9398. guestIds.Add(guestId);
  9399. }
  9400. }
  9401. }
  9402. else guestNames += item.GuestName;
  9403. var voucherInfo = new HotelVoucherInfoView()
  9404. {
  9405. HotelName = item.HotelName,
  9406. CheckInDate = item.CheckInDate,
  9407. CheckOutDate = item.CheckOutDate,
  9408. ConfirmationNumber = item.DetermineNo.Trim(),
  9409. RoomType = item.RoomExplanation
  9410. };
  9411. vouchers.Add(voucherInfo);
  9412. }
  9413. if (guestIds.Count > 0)
  9414. {
  9415. guestIds = guestIds.Distinct().ToList();
  9416. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  9417. if (guestDatas.Count > 0)
  9418. {
  9419. guestNames = "";
  9420. foreach (var guest in guestDatas)
  9421. {
  9422. string guestName = "";
  9423. if (guest.Sex == 0) guestName += @"MR.";
  9424. else if (guest.Sex == 1) guestName += @"MS.";
  9425. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9426. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9427. guestNames += @$"{guestName.Trim()}、";
  9428. }
  9429. if (guestNames.Length > 0)
  9430. {
  9431. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9432. }
  9433. }
  9434. }
  9435. #endregion
  9436. //载入模板
  9437. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  9438. Document doc = new Document(sss);
  9439. DocumentBuilder builder = new DocumentBuilder(doc);
  9440. if (doc.Range.Bookmarks["GuestName"] != null)
  9441. {
  9442. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9443. mark.Text = guestNames;
  9444. }
  9445. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9446. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9447. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9448. for (int i = 1; i <= vouchers.Count; i++)
  9449. {
  9450. HotelVoucherInfoView hviv = vouchers[i - 1];
  9451. builder.MoveToCell(0, i, 0, 0);
  9452. builder.Write(hviv.HotelName);
  9453. builder.MoveToCell(0, i, 1, 0);
  9454. builder.Write(hviv.CheckInDate);
  9455. builder.MoveToCell(0, i, 2, 0);
  9456. builder.Write(hviv.CheckOutDate);
  9457. builder.MoveToCell(0, i, 3, 0);
  9458. builder.Write(hviv.RoomType);
  9459. builder.MoveToCell(0, i, 4, 0);
  9460. builder.Write(hviv.ConfirmationNumber);
  9461. }
  9462. //删除多余行
  9463. int currRowIndex = vouchers.Count + 1;
  9464. int delRows = 21 - currRowIndex;
  9465. if (delRows > 0)
  9466. {
  9467. for (int i = 0; i < delRows; i++)
  9468. {
  9469. table.Rows.RemoveAt(currRowIndex);
  9470. //cultivateRowIndex++;
  9471. }
  9472. }
  9473. strFileName += "VOUCHER.docx";
  9474. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9475. doc.Save(fileDir);
  9476. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9477. return Ok(JsonView(true, "操作成功!", Url));
  9478. }
  9479. /// <summary>
  9480. /// 酒店预订
  9481. /// 生成VOUCHER 批量生成
  9482. /// New
  9483. /// </summary>
  9484. /// <param name="_dto"></param>
  9485. /// <returns></returns>
  9486. [HttpPost]
  9487. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9488. public async Task<IActionResult> PostHotelReservationsCreateVoucherBatchNew(HotelReservationsCreateVoucherDto _dto)
  9489. {
  9490. #region 参数验证
  9491. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9492. if (_dto.PageId < 1) _dto.PageId = 28;
  9493. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9494. #region 团组操作权限验证 76 酒店预定模块
  9495. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9496. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9497. #endregion
  9498. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9499. #region 页面操作权限验证
  9500. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9501. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9502. #endregion
  9503. #endregion
  9504. var hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>()
  9505. .Where(it => it.IsDel == 0 && it.DiId == _dto.DiId)
  9506. .OrderBy(x => x.CreateTime)
  9507. .ToListAsync();
  9508. //判断数据是否完整
  9509. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  9510. string strFileName = "HotelStatement/";
  9511. var dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  9512. if (dele != null)
  9513. strFileName += $"{dele?.TeamName ?? ""}_{dele.TourCode}_";
  9514. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToListAsync();
  9515. for (int i = 0; i < hrDtas.Count; i++)
  9516. {
  9517. string guestNames = string.Empty;
  9518. List<int> guestIds = new List<int>();
  9519. var item = hrDtas[i];
  9520. //处理客户姓名
  9521. if (item.GuestName.Contains(","))
  9522. {
  9523. string[] guestIdArr = item.GuestName.Split(',');
  9524. foreach (var guestIdStr in guestIdArr)
  9525. if (int.TryParse(guestIdStr, out int guestId))
  9526. guestIds.Add(guestId);
  9527. }
  9528. else {
  9529. //NaN
  9530. if (item.GuestName.Contains("NaN"))
  9531. {
  9532. guestNames += item.GuestName.Replace("NaN", "").Replace(",", "");
  9533. }
  9534. }
  9535. if (guestIds.Count > 0)
  9536. {
  9537. guestIds = guestIds.Distinct().ToList();
  9538. var guestDatas1 = guestDatas.Where(it => guestIds.Contains(it.Id)).ToList();
  9539. if (guestDatas1.Count > 0)
  9540. {
  9541. guestNames = "";
  9542. foreach (var guest in guestDatas1)
  9543. {
  9544. string guestName = "";
  9545. if (guest.Sex == 0) guestName += @"MR.";
  9546. else if (guest.Sex == 1) guestName += @"MS.";
  9547. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9548. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9549. guestNames += @$"{guestName.Trim()}、";
  9550. }
  9551. if (guestNames.Length > 0)
  9552. {
  9553. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9554. }
  9555. }
  9556. }
  9557. //if (!string.IsNullOrEmpty(guestNames))
  9558. //{
  9559. hrDtas[i].GuestName = guestNames;
  9560. //}
  9561. }
  9562. strFileName += $"VOUCHER_{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  9563. Document doc = new Document();
  9564. DocumentBuilder builder = new DocumentBuilder(doc);
  9565. try
  9566. {
  9567. builder.MoveToDocumentStart();
  9568. foreach (var item in hrDtas)
  9569. {
  9570. //标题
  9571. builder.ParagraphFormat.StyleIdentifier = StyleIdentifier.Title;
  9572. builder.ParagraphFormat.LineSpacing = 1;
  9573. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9574. builder.ParagraphFormat.Style.Font.Size = 9;
  9575. builder.ParagraphFormat.Style.Font.Bold = true;
  9576. builder.ParagraphFormat.Alignment = ParagraphAlignment.Center;
  9577. builder.Writeln(@$"ACCOMMODATION VOUCHER");
  9578. builder.ParagraphFormat.StyleIdentifier = StyleIdentifier.Title;
  9579. builder.ParagraphFormat.Alignment = ParagraphAlignment.Center;
  9580. builder.ParagraphFormat.LineSpacing = 1;
  9581. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9582. builder.ParagraphFormat.Style.Font.Size = 9;
  9583. builder.ParagraphFormat.Style.Font.Bold = true;
  9584. builder.Writeln(@$"VOUCHER No:{item.CheckNumber} DATE: {item.CreateTime.ToString("yyyy-MM-dd")}");
  9585. builder.StartTable();
  9586. // 设置边框颜色
  9587. builder.CellFormat.Borders.Top.Color = System.Drawing.Color.Black;
  9588. //设置边框样式
  9589. builder.CellFormat.Borders.LineStyle = Aspose.Words.LineStyle.Dot;
  9590. //表格
  9591. #region 第一行
  9592. builder.InsertCell();
  9593. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9594. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9595. //builder.CellFormat.AllowAutoFit = false;
  9596. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9597. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9598. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9599. builder.CellFormat.WrapText = true; //自动换行
  9600. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9601. builder.RowFormat.AllowBreakAcrossPages = false; //文字自适应大小
  9602. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9603. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9604. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9605. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9606. builder.Write("TOUR NO:");
  9607. builder.InsertCell();
  9608. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9609. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9610. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9611. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9612. builder.ParagraphFormat.Style.Font.Bold = false;
  9613. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9614. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9615. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9616. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9617. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9618. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9619. builder.Write($"{dele?.TourCode ?? "-"}");
  9620. builder.InsertCell();
  9621. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9622. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9623. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9624. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9625. builder.ParagraphFormat.Style.Font.Bold = false;
  9626. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9627. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9628. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9629. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9630. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9631. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9632. builder.Write($"CITY:");
  9633. builder.InsertCell();
  9634. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9635. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9636. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9637. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9638. builder.ParagraphFormat.Style.Font.Bold = false;
  9639. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9640. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9641. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9642. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9643. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9644. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9645. builder.Write($"{item.City}");
  9646. builder.EndRow();
  9647. #endregion
  9648. #region 第二行
  9649. builder.InsertCell();
  9650. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9651. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9652. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9653. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9654. builder.ParagraphFormat.Style.Font.Bold = false;
  9655. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9656. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9657. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9658. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9659. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9660. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9661. builder.Write("CONFIRMATION NO:");
  9662. builder.InsertCell();
  9663. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9664. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9665. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9666. builder.ParagraphFormat.Style.Font.Bold = false;
  9667. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9668. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9669. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9670. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9671. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9672. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9673. builder.CellFormat.VerticalMerge = CellMerge.None;
  9674. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9675. builder.Write($"{item.DetermineNo}");
  9676. builder.InsertCell();
  9677. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9678. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9679. builder.InsertCell();
  9680. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9681. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9682. builder.EndRow();
  9683. #endregion
  9684. #region 第三行
  9685. builder.InsertCell();
  9686. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9687. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9688. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9689. builder.ParagraphFormat.Style.Font.Bold = false;
  9690. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9691. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9692. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9693. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9694. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9695. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9696. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9697. builder.Write($"HOTEL NAME:");
  9698. builder.InsertCell();
  9699. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9700. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9701. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9702. builder.ParagraphFormat.Style.Font.Bold = false;
  9703. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9704. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9705. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9706. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9707. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9708. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9709. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9710. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9711. builder.Write($"{item.HotelName}");
  9712. builder.InsertCell();
  9713. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9714. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9715. builder.InsertCell();
  9716. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9717. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9718. builder.EndRow();
  9719. #endregion
  9720. #region 第四行
  9721. builder.InsertCell();
  9722. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9723. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9724. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9725. builder.ParagraphFormat.Style.Font.Bold = false;
  9726. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9727. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9728. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9729. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9730. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9731. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9732. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9733. builder.Write($"HOTEL ADDRESS:");
  9734. builder.InsertCell();
  9735. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9736. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9737. builder.ParagraphFormat.Style.Font.Size = 8;
  9738. builder.ParagraphFormat.Style.Font.Bold = false;
  9739. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9740. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9741. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9742. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9743. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9744. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9745. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9746. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9747. builder.Write($"{item.HotelAddress}");
  9748. builder.InsertCell();
  9749. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9750. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9751. builder.InsertCell();
  9752. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9753. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9754. builder.EndRow();
  9755. #endregion
  9756. #region 第五行
  9757. builder.InsertCell();
  9758. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9759. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9760. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9761. builder.ParagraphFormat.Style.Font.Bold = false;
  9762. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9763. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9764. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9765. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9766. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9767. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9768. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9769. builder.Write("TEL:");
  9770. builder.InsertCell();
  9771. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9772. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9773. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9774. builder.ParagraphFormat.Style.Font.Bold = false;
  9775. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9776. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9777. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9778. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9779. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9780. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9781. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9782. builder.Write($"{item.HotelTel}");
  9783. builder.InsertCell();
  9784. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9785. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9786. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9787. builder.ParagraphFormat.Style.Font.Bold = false;
  9788. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9789. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9790. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9791. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9792. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9793. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9794. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9795. builder.Write($"FAX:");
  9796. builder.InsertCell();
  9797. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9798. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9799. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9800. builder.ParagraphFormat.Style.Font.Bold = false;
  9801. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9802. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9803. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9804. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9805. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9806. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9807. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9808. builder.Write($"{item.HotelFax}");
  9809. builder.EndRow();
  9810. #endregion
  9811. #region 第六行
  9812. builder.InsertCell();
  9813. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9814. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9815. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9816. builder.ParagraphFormat.Style.Font.Bold = false;
  9817. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9818. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9819. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9820. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9821. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9822. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9823. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9824. builder.Write("CHECK IN:");
  9825. builder.InsertCell();
  9826. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9827. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9828. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9829. builder.ParagraphFormat.Style.Font.Bold = false;
  9830. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9831. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9832. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9833. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9834. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9835. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9836. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9837. DateTime dtCheckIn = Convert.ToDateTime(item.CheckInDate);
  9838. string checkInStr = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  9839. builder.Write($"{checkInStr}");
  9840. builder.InsertCell();
  9841. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9842. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9843. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9844. builder.ParagraphFormat.Style.Font.Bold = false;
  9845. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9846. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9847. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9848. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9849. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9850. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9851. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9852. builder.Write($"CHECK OUT:");
  9853. builder.InsertCell();
  9854. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9855. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9856. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9857. builder.ParagraphFormat.Style.Font.Bold = false;
  9858. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9859. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9860. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9861. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9862. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9863. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9864. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9865. DateTime dtCheckOut = Convert.ToDateTime(item.CheckOutDate);
  9866. string checkOutStr = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year + " ";
  9867. builder.Write($"{checkOutStr}");
  9868. builder.EndRow();
  9869. #endregion
  9870. #region 第七行
  9871. builder.InsertCell();
  9872. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9873. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9874. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9875. builder.ParagraphFormat.Style.Font.Bold = false;
  9876. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9877. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9878. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9879. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9880. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9881. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9882. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9883. builder.Write($"GUEST NAME:");
  9884. builder.InsertCell();
  9885. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9886. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9887. builder.ParagraphFormat.Style.Font.Size = 8;
  9888. builder.ParagraphFormat.Style.Font.Bold = false;
  9889. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9890. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9891. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9892. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9893. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9894. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9895. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9896. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9897. builder.Write($"{item.GuestName}");
  9898. builder.InsertCell();
  9899. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9900. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9901. builder.InsertCell();
  9902. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9903. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9904. builder.EndRow();
  9905. #endregion
  9906. #region 第八行
  9907. builder.InsertCell();
  9908. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9909. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9910. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9911. builder.ParagraphFormat.Style.Font.Bold = false;
  9912. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9913. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9914. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9915. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9916. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9917. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9918. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9919. builder.Write($"ROOM TYPE:");
  9920. builder.InsertCell();
  9921. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9922. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9923. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9924. builder.ParagraphFormat.Style.Font.Bold = false;
  9925. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9926. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9927. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9928. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9929. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9930. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9931. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9932. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9933. builder.Write($"{item.RoomExplanation}");
  9934. builder.InsertCell();
  9935. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9936. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9937. builder.InsertCell();
  9938. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9939. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9940. builder.EndRow();
  9941. #endregion
  9942. #region 第九行
  9943. builder.InsertCell();
  9944. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9945. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9946. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9947. builder.ParagraphFormat.Style.Font.Bold = false;
  9948. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9949. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9950. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9951. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9952. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9953. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9954. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9955. builder.Write($"NOTE:");
  9956. builder.InsertCell();
  9957. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9958. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9959. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9960. builder.ParagraphFormat.Style.Font.Bold = false;
  9961. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9962. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9963. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9964. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9965. builder.Write($"ROOM WITH BREAKFAST AND TAX ONLY.\r\nTHIS SERVICE IS PAYABLE BY C-TRIP. FOR EXTRA CHARGE TO BE COLLECTED FROM THE GUEST.");
  9966. builder.InsertCell();
  9967. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9968. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9969. builder.InsertCell();
  9970. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9971. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9972. builder.EndRow();
  9973. #endregion
  9974. builder.EndTable();
  9975. //换行
  9976. builder.Writeln("");
  9977. builder.Writeln("");
  9978. }
  9979. #region 获取文档中的所有表格 设置文字自适应
  9980. // 获取文档中的所有表格。
  9981. foreach (Table table in doc.GetChildNodes(NodeType.Table, true))
  9982. {
  9983. // 遍历表格中的所有行。
  9984. foreach (Aspose.Words.Tables.Row row in table.Rows)
  9985. {
  9986. foreach (Cell cell in row.Cells)
  9987. {
  9988. Aspose.Words.Tables.CellFormat cellFormat = cell.CellFormat;
  9989. cellFormat.Width = 0;
  9990. }
  9991. }
  9992. }
  9993. #endregion
  9994. #region 设置页眉
  9995. builder.MoveToHeaderFooter(HeaderFooterType.HeaderPrimary);
  9996. string voucherHeaderPath = $"./Images/VoucherHeader.png";
  9997. if (System.IO.File.Exists(voucherHeaderPath))
  9998. {
  9999. byte[] imageBytes = System.IO.File.ReadAllBytes(voucherHeaderPath);
  10000. //Image image = Image.FromStream(imageBytes, ImageType.Png);
  10001. //builder.InsertImage(imageBytes, RelativeHorizontalPosition.Margin, 0, RelativeVerticalPosition.Margin, 0, 81, 36, WrapType.None);
  10002. Shape shape = builder.InsertImage(imageBytes);
  10003. // 调整图片位置
  10004. shape.RelativeHorizontalPosition = RelativeHorizontalPosition.Page; // 将图片的水平位置设置为页面
  10005. shape.RelativeVerticalPosition = RelativeVerticalPosition.TopMargin; // 将图片的垂直位置设置为页眉上边距
  10006. shape.Top = 50; // 将图片距离页眉上边缘的距离
  10007. shape.Left = 0; // 将图片距离页面左边缘的距离
  10008. shape.Width = 81; // 设置图片宽度
  10009. shape.Height = 36; // 设置图片高度
  10010. }
  10011. //靠右
  10012. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;
  10013. //// 设置页脚上下边距
  10014. //builder.PageSetup.HeaderDistance = 42;
  10015. // 添加页眉线
  10016. Aspose.Words.Border borderHeader = null;
  10017. try
  10018. {
  10019. borderHeader = builder.ParagraphFormat.Borders.Bottom;
  10020. }
  10021. catch (Exception e)
  10022. {
  10023. // TODO Auto-generated catch block
  10024. //e.printStackTrace();
  10025. }
  10026. borderHeader.Shadow = true;
  10027. borderHeader.DistanceFromText = 2;
  10028. borderHeader.LineStyle = Aspose.Words.LineStyle.Single;
  10029. #endregion
  10030. }
  10031. catch (Exception ex)
  10032. {
  10033. }
  10034. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  10035. doc.Save(fileDir);
  10036. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  10037. return Ok(JsonView(true, "操作成功!", Url));
  10038. }
  10039. /// <summary>
  10040. /// 酒店预订
  10041. /// 生成 预定成本 Excel
  10042. /// </summary>
  10043. /// <param name="_dto"></param>
  10044. /// <returns></returns>
  10045. [HttpPost]
  10046. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10047. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  10048. {
  10049. #region 参数验证
  10050. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  10051. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  10052. if (!vadalitorRes.IsValid)
  10053. {
  10054. var errors = new StringBuilder();
  10055. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  10056. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  10057. }
  10058. #region 团组操作权限验证 76 酒店预定模块
  10059. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  10060. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  10061. #endregion
  10062. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10063. #region 页面操作权限验证
  10064. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10065. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10066. #endregion
  10067. #endregion
  10068. decimal _rate = 1.00M;
  10069. string _currency = "";
  10070. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  10071. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  10072. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  10073. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  10074. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  10075. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  10076. {
  10077. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  10078. }
  10079. _currency = _GroupCostParameter.Currency;
  10080. bool isIntType = int.TryParse(_currency, out int currId);
  10081. if (isIntType)
  10082. {
  10083. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  10084. }
  10085. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  10086. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  10087. if (currInfo == null)
  10088. {
  10089. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  10090. }
  10091. if (!_currency.ToUpper().Equals("CNY"))
  10092. {
  10093. _rate = _GroupCostParameter.Rate;
  10094. }
  10095. _rate = currInfo.Rate;
  10096. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  10097. string strFileName = "HotelStatement/";
  10098. string guestNames = ""; //格式Mr.xxx Ms.xxx
  10099. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  10100. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  10101. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  10102. #region 数据处理
  10103. foreach (var item in hrDtas)
  10104. {
  10105. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  10106. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  10107. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  10108. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  10109. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  10110. string roomCurr = currDatas.Find(it => it.Id == roomInfo?.Currency)?.Name ?? "";
  10111. string singleRoomFeeStr = string.Empty,
  10112. doubleRoomFeeStr = string.Empty,
  10113. suiteRoomFeeStr = string.Empty,
  10114. otherRoomFeeStr = string.Empty,
  10115. payMoneyStr = string.Empty,
  10116. cardPriceStr = string.Empty;
  10117. if (roomCurr.Equals(_currency))
  10118. {
  10119. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  10120. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  10121. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  10122. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  10123. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  10124. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  10125. }
  10126. else
  10127. {
  10128. singleRoomFeeStr = $"{((item.SingleRoomPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  10129. doubleRoomFeeStr = $"{((item.DoubleRoomPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  10130. suiteRoomFeeStr = $"{((item.SuiteRoomPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  10131. otherRoomFeeStr = $"{((item.OtherRoomPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  10132. payMoneyStr = $"{((ccpInfo.PayMoney * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  10133. cardPriceStr = $"{((item.CardPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  10134. }
  10135. string breakfastPriceStr = string.Empty,
  10136. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  10137. governmentRentStr = string.Empty,
  10138. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  10139. cityTaxStrStr = string.Empty,
  10140. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  10141. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  10142. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  10143. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  10144. int payDId = roomInfo?.PayDId ?? 0;
  10145. pcfds.Add(new HotelReservations_PCFD_View()
  10146. {
  10147. City = item.City,
  10148. HotelName = item.HotelName,
  10149. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  10150. // SingleRoomCount = item.SingleRoomCount,
  10151. SingleRoomPrice = singleRoomFeeStr,
  10152. // DoubleRoomCount = item.DoubleRoomCount,
  10153. DoubleRoomPrice = doubleRoomFeeStr,
  10154. //SuiteRoomCount = item.SuiteRoomCount,
  10155. SuiteRoomPrice = suiteRoomFeeStr,
  10156. OtherRoomPrice = otherRoomFeeStr,
  10157. //OtherRoomCount = item.OtherRoomCount,
  10158. BreakfastPrice = breakfastPriceStr,
  10159. GovernmentRent = governmentRentStr,
  10160. CityTax = cityTaxStrStr,
  10161. RoomExplanation = item.RoomExplanation,
  10162. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == payDId).First()?.Name ?? "",
  10163. PayTime = roomInfo?.ConsumptionDate,
  10164. BankNo = roomInfo?.BankNo,
  10165. PayMoney = payMoneyStr,
  10166. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  10167. ConsumptionPatterns = roomInfo?.ConsumptionPatterns,
  10168. CardPrice = cardPriceStr,
  10169. Remark = ccpInfo.Remark
  10170. });
  10171. }
  10172. #endregion
  10173. //载入模板
  10174. WorkbookDesigner designer = new WorkbookDesigner();
  10175. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  10176. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  10177. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  10178. designer.SetDataSource("TourNo", groupInfo.TourCode);
  10179. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  10180. designer.SetDataSource("Opertor", userInfo.CnName);
  10181. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  10182. dt.TableName = "ViewMyHotelReservations";
  10183. designer.SetDataSource(dt);
  10184. designer.Process();
  10185. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  10186. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  10187. designer.Workbook.Save(serverPath);
  10188. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  10189. #region 删除指定行
  10190. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  10191. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  10192. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  10193. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  10194. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  10195. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  10196. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  10197. cssIndex = dt.Columns["CityTax"].Ordinal,
  10198. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  10199. remarkIndex = dt.Columns["Remark"].Ordinal;
  10200. //删除指定列
  10201. foreach (DataRow item in dt.Rows)
  10202. {
  10203. string singleStr = item["SingleRoomPrice"].ToString();
  10204. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  10205. if (containsDigitButNotZero1) singleDel = false;
  10206. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  10207. string doubleStr = item["DoubleRoomPrice"].ToString();
  10208. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  10209. if (containsDigitButNotZero2) doubleDel = false;
  10210. string suiteStr = item["SuiteRoomPrice"].ToString();
  10211. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  10212. if (containsDigitButNotZero3) suiteDel = false;
  10213. string otherStr = item["OtherRoomPrice"].ToString();
  10214. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  10215. if (containsDigitButNotZero4) otherDel = false;
  10216. string zcStr = item["BreakfastPrice"].ToString();
  10217. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  10218. if (containsDigitButNotZero5) zcDel = false;
  10219. string dsStr = item["GovernmentRent"].ToString();
  10220. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  10221. if (containsDigitButNotZero6) dsDel = false;
  10222. string cssStr = item["CityTax"].ToString();
  10223. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  10224. if (containsDigitButNotZero7) cssDel = false;
  10225. string cpStr = item["ConsumptionPatterns"].ToString();
  10226. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  10227. string remarkStr = item["Remark"].ToString();
  10228. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  10229. }
  10230. DeleteColumn(serverPath, remarkIndex, remarkDel);
  10231. DeleteColumn(serverPath, cpIndex, cpDel);
  10232. DeleteColumn(serverPath, dsIndex, dsDel);
  10233. DeleteColumn(serverPath, cssIndex, cssDel);
  10234. DeleteColumn(serverPath, zcIndex, zcDel);
  10235. DeleteColumn(serverPath, otherIndex, otherDel);
  10236. DeleteColumn(serverPath, suiteIndex, suiteDel);
  10237. DeleteColumn(serverPath, doubleIndex, doubleDel);
  10238. DeleteColumn(serverPath, singleIndex, singleDel);
  10239. #endregion
  10240. //只保留第一个表格
  10241. DeleteSheet(serverPath);
  10242. return Ok(JsonView(true, "操作成功", url = rst));
  10243. }
  10244. /// <summary>
  10245. /// 删除指定列
  10246. /// </summary>
  10247. /// <param name="file"></param>
  10248. /// <param name="columnIndex"></param>
  10249. /// <param name="isDel"></param>
  10250. private void DeleteColumn(string file, int columnIndex, bool isDel)
  10251. {
  10252. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  10253. //wb.Save(file);
  10254. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  10255. if (sheet1 != null)
  10256. {
  10257. if (isDel)
  10258. {
  10259. Cells cells = sheet1.Cells;
  10260. cells.DeleteColumn(columnIndex);
  10261. }
  10262. }
  10263. wb.Save(file);
  10264. }
  10265. /// <summary>
  10266. /// 删除sheet
  10267. /// </summary>
  10268. /// <param name="file"></param>
  10269. /// <param name="sheetName"></param>
  10270. private void DeleteSheet(string file, string sheetName = "")
  10271. {
  10272. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  10273. //wb.Save(file);
  10274. List<string> sheets = new List<string>();
  10275. foreach (var item in wb.Worksheets)
  10276. {
  10277. sheets.Add(item.Name);
  10278. }
  10279. if (sheets.Count > 0)
  10280. {
  10281. sheets.RemoveAt(0);//不删除第一个sheet
  10282. foreach (var item in sheets)
  10283. {
  10284. wb.Worksheets.RemoveAt(item);
  10285. }
  10286. }
  10287. wb.Save(file);
  10288. }
  10289. /// <summary>
  10290. /// 酒店预订
  10291. /// 确认单
  10292. /// </summary>
  10293. /// <param name="_dto"></param>
  10294. /// <returns></returns>
  10295. [HttpPost]
  10296. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10297. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  10298. {
  10299. try
  10300. {
  10301. #region 参数验证
  10302. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  10303. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  10304. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  10305. #region 团组操作权限验证 76 酒店预定模块
  10306. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  10307. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  10308. #endregion
  10309. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10310. #region 页面操作权限验证
  10311. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10312. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10313. #endregion
  10314. #endregion
  10315. //团组信息
  10316. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  10317. //酒店数据
  10318. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  10319. if (listhoteldata.Count < 0)
  10320. {
  10321. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  10322. }
  10323. //利datatable存储
  10324. DataTable dt = new DataTable();
  10325. dt.Columns.Add("CheckInDate", typeof(string));
  10326. dt.Columns.Add("City", typeof(string));
  10327. dt.Columns.Add("Hotel", typeof(string));
  10328. dt.Columns.Add("Room", typeof(string));
  10329. for (int i = 0; i < listhoteldata.Count; i++)
  10330. {
  10331. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  10332. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  10333. while (dayStart < dayEnd)
  10334. {
  10335. string temp = "";
  10336. DataRow row = dt.NewRow();
  10337. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  10338. row["City"] = listhoteldata[i].City;
  10339. row["Hotel"] = listhoteldata[i].HotelName;
  10340. if (listhoteldata[i].SingleRoomCount > 0)
  10341. {
  10342. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  10343. }
  10344. if (listhoteldata[i].DoubleRoomCount > 0)
  10345. {
  10346. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  10347. }
  10348. if (listhoteldata[i].SuiteRoomCount > 0)
  10349. {
  10350. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  10351. }
  10352. if (listhoteldata[i].OtherRoomCount > 0)
  10353. {
  10354. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  10355. }
  10356. row["Room"] = temp;
  10357. dt.Rows.Add(row);
  10358. dayStart = dayStart.AddDays(1);
  10359. }
  10360. }
  10361. Dictionary<string, string> dic = new Dictionary<string, string>();
  10362. dic.Add("Dele", di.TeamName);
  10363. dic.Add("City", di.VisitCountry);
  10364. //模板路径
  10365. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  10366. //载入模板
  10367. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  10368. DocumentBuilder builder = new DocumentBuilder(doc);
  10369. foreach (var key in dic.Keys)
  10370. {
  10371. builder.MoveToBookmark(key);
  10372. builder.Write(dic[key]);
  10373. }
  10374. //获取word里所有表格
  10375. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10376. //获取所填表格的序数
  10377. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10378. var rowStart = tableOne.Rows[0]; //获取第1行
  10379. //循环赋值
  10380. for (int i = 0; i < dt.Rows.Count; i++)
  10381. {
  10382. builder.MoveToCell(0, i + 1, 0, 0);
  10383. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  10384. builder.MoveToCell(0, i + 1, 1, 0);
  10385. builder.Write(dt.Rows[i]["City"].ToString());
  10386. builder.MoveToCell(0, i + 1, 2, 0);
  10387. builder.Write(dt.Rows[i]["Hotel"].ToString());
  10388. builder.MoveToCell(0, i + 1, 3, 0);
  10389. builder.Write(dt.Rows[i]["Room"].ToString());
  10390. }
  10391. //删除多余行
  10392. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  10393. {
  10394. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  10395. }
  10396. string strFileName = di.TeamName + "酒店确认单.doc";
  10397. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  10398. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  10399. return Ok(JsonView(true, "成功", url));
  10400. }
  10401. catch (Exception ex)
  10402. {
  10403. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  10404. }
  10405. }
  10406. #endregion
  10407. #region 团组状态
  10408. /// <summary>
  10409. /// 团组状态列表 Page
  10410. /// </summary>
  10411. /// <param name="dto">团组列表请求dto</param>
  10412. /// <returns></returns>
  10413. [HttpPost]
  10414. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10415. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  10416. {
  10417. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  10418. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  10419. {
  10420. string sqlWhere = string.Empty;
  10421. if (dto.IsSure == 0) //未完成
  10422. {
  10423. sqlWhere += string.Format(@" And IsSure = 0");
  10424. }
  10425. else if (dto.IsSure == 1) //已完成
  10426. {
  10427. sqlWhere += string.Format(@" And IsSure = 1");
  10428. }
  10429. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  10430. {
  10431. string tj = dto.SearchCriteria;
  10432. 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}%')",
  10433. tj, tj, tj, tj, tj);
  10434. }
  10435. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  10436. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  10437. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  10438. From (
  10439. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  10440. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  10441. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  10442. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  10443. From Grp_DelegationInfo gdi
  10444. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  10445. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  10446. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  10447. Where gdi.IsDel = 0 {0}
  10448. ) temp ", sqlWhere);
  10449. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  10450. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  10451. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  10452. }
  10453. else
  10454. {
  10455. return Ok(JsonView(false, "查询失败"));
  10456. }
  10457. }
  10458. /// <summary>
  10459. /// 团组状态
  10460. /// 设置操作完成
  10461. /// </summary>
  10462. /// <param name="dto">团组列表请求dto</param>
  10463. /// <returns></returns>
  10464. [HttpPost]
  10465. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10466. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  10467. {
  10468. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  10469. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  10470. {
  10471. Id = dto.Id,
  10472. IsSure = 1
  10473. };
  10474. var result = await _sqlSugar.Updateable(_DelegationInfo)
  10475. .UpdateColumns(it => new { it.IsSure })
  10476. .WhereColumns(it => new { it.Id })
  10477. .ExecuteCommandAsync();
  10478. if (result > 0)
  10479. {
  10480. return Ok(JsonView(true, "操作完成!"));
  10481. }
  10482. return Ok(JsonView(false, "操作失败!"));
  10483. }
  10484. #endregion
  10485. #region 保险费用录入
  10486. /// <summary>
  10487. /// 根据团组Id查询保险费用列表
  10488. /// </summary>
  10489. /// <param name="dto"></param>
  10490. /// <returns></returns>
  10491. [HttpPost]
  10492. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10493. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  10494. {
  10495. try
  10496. {
  10497. Result groupData = await _customersRep.CustomersByDiId(dto);
  10498. if (groupData.Code != 0)
  10499. {
  10500. return Ok(JsonView(false, groupData.Msg));
  10501. }
  10502. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10503. }
  10504. catch (Exception ex)
  10505. {
  10506. return Ok(JsonView(false, ex.Message));
  10507. }
  10508. }
  10509. /// <summary>
  10510. /// 根据保险费用Id查询保险费用详细
  10511. /// </summary>
  10512. /// <param name="dto"></param>
  10513. /// <returns></returns>
  10514. [HttpPost]
  10515. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10516. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  10517. {
  10518. try
  10519. {
  10520. Result groupData = await _customersRep.CustomersById(dto);
  10521. if (groupData.Code != 0)
  10522. {
  10523. return Ok(JsonView(false, groupData.Msg));
  10524. }
  10525. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10526. }
  10527. catch (Exception ex)
  10528. {
  10529. return Ok(JsonView(false, ex.Message));
  10530. }
  10531. }
  10532. /// <summary>
  10533. /// 保险费用录入页面初始化绑定
  10534. /// </summary>
  10535. /// <param name="dto"></param>
  10536. /// <returns></returns>
  10537. [HttpPost]
  10538. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10539. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  10540. {
  10541. try
  10542. {
  10543. Result groupData = await _customersRep.CustomersInitialize(dto);
  10544. if (groupData.Code != 0)
  10545. {
  10546. return Ok(JsonView(false, groupData.Msg));
  10547. }
  10548. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10549. }
  10550. catch (Exception ex)
  10551. {
  10552. return Ok(JsonView(false, ex.Message));
  10553. }
  10554. }
  10555. /// <summary>
  10556. /// 保险费用操作(Status:1.新增,2.修改)
  10557. /// </summary>
  10558. /// <param name="dto"></param>
  10559. /// <returns></returns>
  10560. [HttpPost]
  10561. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10562. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  10563. {
  10564. try
  10565. {
  10566. Result groupData = await _customersRep.OpCustomers(dto);
  10567. if (groupData.Code != 0)
  10568. {
  10569. return Ok(JsonView(false, groupData.Msg));
  10570. }
  10571. #region 应用推送
  10572. try
  10573. {
  10574. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  10575. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  10576. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  10577. }
  10578. catch (Exception ex)
  10579. {
  10580. }
  10581. #endregion
  10582. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10583. }
  10584. catch (Exception ex)
  10585. {
  10586. return Ok(JsonView(false, ex.Message));
  10587. }
  10588. }
  10589. /// <summary>
  10590. /// 保险文件上传
  10591. /// </summary>
  10592. /// <param name="file"></param>
  10593. /// <returns></returns>
  10594. [HttpPost]
  10595. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10596. public async Task<IActionResult> UploadCus(IFormFile file)
  10597. {
  10598. try
  10599. {
  10600. if (file != null)
  10601. {
  10602. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  10603. //文件名称
  10604. string projectFileName = file.FileName;
  10605. //上传的文件的路径
  10606. string filePath = "";
  10607. if (!Directory.Exists(fileDir))
  10608. {
  10609. Directory.CreateDirectory(fileDir);
  10610. }
  10611. //上传的文件的路径
  10612. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  10613. using (FileStream fs = System.IO.File.Create(filePath))
  10614. {
  10615. file.CopyTo(fs);
  10616. fs.Flush();
  10617. }
  10618. return Ok(JsonView(true, "上传成功!", projectFileName));
  10619. }
  10620. else
  10621. {
  10622. return Ok(JsonView(false, "上传失败!"));
  10623. }
  10624. }
  10625. catch (Exception ex)
  10626. {
  10627. return Ok(JsonView(false, "程序错误!"));
  10628. throw;
  10629. }
  10630. }
  10631. /// <summary>
  10632. /// 保险删除指定文件
  10633. /// </summary>
  10634. /// <param name="dto"></param>
  10635. /// <returns></returns>
  10636. [HttpPost]
  10637. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10638. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  10639. {
  10640. try
  10641. {
  10642. string filePath = "";
  10643. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  10644. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  10645. //int id = 0;
  10646. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  10647. // 删除该文件
  10648. try
  10649. {
  10650. System.IO.File.Delete(filePath);
  10651. 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()
  10652. {
  10653. Attachment = "",
  10654. }).ExecuteCommandAsync();
  10655. if (result != 0)
  10656. {
  10657. return Ok(JsonView(true, "成功!"));
  10658. }
  10659. else
  10660. {
  10661. return Ok(JsonView(false, "失败!"));
  10662. }
  10663. }
  10664. catch (Exception)
  10665. {
  10666. 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()
  10667. {
  10668. Attachment = "",
  10669. }).ExecuteCommandAsync();
  10670. if (result != 0)
  10671. {
  10672. return Ok(JsonView(true, "成功!"));
  10673. }
  10674. else
  10675. {
  10676. return Ok(JsonView(false, "失败!"));
  10677. }
  10678. }
  10679. }
  10680. catch (Exception ex)
  10681. {
  10682. return Ok(JsonView(false, "程序错误!"));
  10683. throw;
  10684. }
  10685. }
  10686. /// <summary>
  10687. /// 保险费用操作(删除)
  10688. /// </summary>
  10689. /// <param name="dto"></param>
  10690. /// <returns></returns>
  10691. [HttpPost]
  10692. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10693. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  10694. {
  10695. try
  10696. {
  10697. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  10698. if (!res)
  10699. {
  10700. return Ok(JsonView(false, "删除失败"));
  10701. }
  10702. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  10703. {
  10704. IsDel = 1,
  10705. DeleteUserId = dto.DeleteUserId,
  10706. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  10707. }).ExecuteCommandAsync();
  10708. return Ok(JsonView(true, "删除成功!"));
  10709. }
  10710. catch (Exception ex)
  10711. {
  10712. return Ok(JsonView(false, "程序错误!"));
  10713. throw;
  10714. }
  10715. }
  10716. #endregion
  10717. #region 接团客户名单 PageId 104
  10718. /// <summary>
  10719. /// 接团客户名单
  10720. /// 迁移数据(慎用!)
  10721. /// </summary>
  10722. /// <param name="dto"></param>
  10723. /// <returns></returns>
  10724. [HttpPost]
  10725. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10726. public async Task<IActionResult> PostTourClientListChange()
  10727. {
  10728. try
  10729. {
  10730. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  10731. //var groupClinetData1
  10732. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  10733. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  10734. int updateCount = 0;
  10735. if (oldOAClientList.Count > 0)
  10736. {
  10737. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  10738. _sqlSugar.BeginTran();
  10739. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  10740. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  10741. foreach (var item in oldOAClientList)
  10742. {
  10743. int comId = 0;
  10744. string format = "yyyy-MM-dd HH:mm:ss";
  10745. string data11 = "1990-01-01 00:00";
  10746. var data1 = IsValidDate(item.OPdate, format);
  10747. if (data1) data11 = item.OPdate;
  10748. //客户公司验证
  10749. if (!string.IsNullOrEmpty(item.Company))
  10750. {
  10751. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  10752. if (clientComInfo == null) // add
  10753. {
  10754. var addInfo = new Crm_CustomerCompany()
  10755. {
  10756. CompanyAbbreviation = "",
  10757. CompanyFullName = item.Company,
  10758. Address = "",
  10759. PostCodes = "",
  10760. LastedOpUserId = item.OPer,
  10761. LastedOpDt = Convert.ToDateTime(data11),
  10762. CreateUserId = item.OPer,
  10763. CreateTime = Convert.ToDateTime(data11),
  10764. IsDel = 0
  10765. };
  10766. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  10767. if (comId1 > 0) comId = comId1;
  10768. }
  10769. else comId = clientComInfo.Id;
  10770. }
  10771. //客户人员验证
  10772. int clientId = 0;
  10773. string name = item.LastName + item.Name;
  10774. if (!string.IsNullOrEmpty(name))
  10775. {
  10776. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  10777. if (clientInfo == null)
  10778. {
  10779. DateTime? dateTime = null;
  10780. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  10781. if (isDt) dateTime = birthDayDt;
  10782. var addInfo1 = new Crm_DeleClient()
  10783. {
  10784. CrmCompanyId = comId,
  10785. DiId = -1,
  10786. LastName = item.LastName,
  10787. FirstName = item.Name,
  10788. OldName = "",
  10789. Pinyin = item.Pinyin,
  10790. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  10791. Marriage = 0,
  10792. Phone = item.Phone,
  10793. Job = item.Job,
  10794. BirthDay = dateTime
  10795. };
  10796. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  10797. if (clientId1 > 0) clientId = clientId1;
  10798. }
  10799. else clientId = clientInfo.Id;
  10800. }
  10801. if (clientId < 1)
  10802. {
  10803. continue;
  10804. }
  10805. int airType = 0;
  10806. if (item.AirType == "超经舱") airType = 459;
  10807. else if (item.AirType == "公务舱") airType = 458;
  10808. else if (item.AirType == "经济舱") airType = 460;
  10809. else if (item.AirType == "其他") airType = 565;
  10810. else if (item.AirType == "头等舱") airType = 457;
  10811. var _TourClientListEntity = new Grp_TourClientList()
  10812. {
  10813. DiId = item.Diid,
  10814. ClientId = clientId,
  10815. CreateUserId = item.OPer,
  10816. CreateTime = Convert.ToDateTime(data11),
  10817. Remark = item.Remark,
  10818. IsDel = item.Isdel,
  10819. ShippingSpaceTypeId = airType,
  10820. ShippingSpaceSpecialNeeds = item.AirRemark,
  10821. HotelSpecialNeeds = item.RoomType
  10822. };
  10823. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  10824. if (_TourClientList > 0)
  10825. {
  10826. updateCount++;
  10827. }
  10828. }
  10829. _sqlSugar.CommitTran();
  10830. }
  10831. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  10832. }
  10833. catch (Exception ex)
  10834. {
  10835. _sqlSugar.RollbackTran();
  10836. return Ok(JsonView(false, ex.Message));
  10837. }
  10838. return Ok(JsonView(true));
  10839. }
  10840. private bool IsValidDate(string dateString, string format)
  10841. {
  10842. DateTime dateValue;
  10843. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  10844. return valid;
  10845. }
  10846. /// <summary>
  10847. /// 接团客户名单
  10848. /// 根据团组Id查询List
  10849. /// </summary>
  10850. /// <param name="dto"></param>
  10851. /// <returns></returns>
  10852. [HttpPost]
  10853. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10854. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  10855. {
  10856. #region 参数验证
  10857. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  10858. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10859. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  10860. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10861. #region 页面操作权限验证
  10862. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10863. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10864. #endregion
  10865. #endregion
  10866. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  10867. if (viewData.Code != 0)
  10868. {
  10869. return Ok(JsonView(false, viewData.Msg));
  10870. }
  10871. return Ok(JsonView(viewData.Data));
  10872. }
  10873. /// <summary>
  10874. /// 接团客户名单
  10875. /// 基础数据 Init
  10876. /// </summary>
  10877. /// <param name="_dto"></param>
  10878. /// <returns></returns>
  10879. [HttpPost]
  10880. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10881. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  10882. {
  10883. #region 参数验证
  10884. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10885. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10886. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10887. #region 页面操作权限验证
  10888. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10889. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10890. #endregion
  10891. #endregion
  10892. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  10893. if (viewData.Code != 0)
  10894. {
  10895. return Ok(JsonView(false, viewData.Msg));
  10896. }
  10897. return Ok(JsonView(viewData.Data));
  10898. }
  10899. /// <summary>
  10900. /// 接团客户名单
  10901. /// 根据 Id查询 Details
  10902. /// </summary>
  10903. /// <param name="_dto"></param>
  10904. /// <returns></returns>
  10905. [HttpPost]
  10906. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10907. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  10908. {
  10909. #region 参数验证
  10910. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10911. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10912. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10913. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10914. #region 页面操作权限验证
  10915. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10916. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10917. #endregion
  10918. #endregion
  10919. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  10920. if (viewData.Code != 0)
  10921. {
  10922. return Ok(JsonView(false, viewData.Msg));
  10923. }
  10924. return Ok(JsonView(viewData.Data));
  10925. }
  10926. /// <summary>
  10927. /// 接团客户名单
  10928. /// Add Or Edit
  10929. /// </summary>
  10930. /// <param name="_dto"></param>
  10931. /// <returns></returns>
  10932. [HttpPost]
  10933. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10934. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  10935. {
  10936. #region 参数验证
  10937. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10938. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10939. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10940. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10941. #region 页面操作权限验证
  10942. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10943. if (_dto.Id == 0) //添加
  10944. {
  10945. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10946. }
  10947. else if (_dto.Id >= 0) //修改
  10948. {
  10949. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  10950. }
  10951. #endregion
  10952. #endregion
  10953. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  10954. if (viewData.Code != 0)
  10955. {
  10956. return Ok(JsonView(false, viewData.Msg));
  10957. }
  10958. return Ok(JsonView(true));
  10959. }
  10960. /// <summary>
  10961. /// 接团客户名单
  10962. /// AddMultiple(添加多个)
  10963. /// </summary>
  10964. /// <param name="_dto"></param>
  10965. /// <returns></returns>
  10966. [HttpPost]
  10967. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10968. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  10969. {
  10970. #region 参数验证
  10971. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10972. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10973. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10974. #region 页面操作权限验证
  10975. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10976. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10977. #endregion
  10978. #endregion
  10979. var viewData = await _tourClientListRep._AddMultiple(_dto);
  10980. if (viewData.Code != 0)
  10981. {
  10982. return Ok(JsonView(false, viewData.Msg));
  10983. }
  10984. return Ok(JsonView(true));
  10985. }
  10986. /// <summary>
  10987. /// 接团客户名单
  10988. /// Del
  10989. /// </summary>
  10990. /// <param name="_dto"></param>
  10991. /// <returns></returns>
  10992. [HttpPost]
  10993. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10994. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  10995. {
  10996. #region 参数验证
  10997. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10998. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10999. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11000. #region 页面操作权限验证
  11001. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  11002. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  11003. #endregion
  11004. #endregion
  11005. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  11006. if (viewData.Code != 0)
  11007. {
  11008. return Ok(JsonView(false, viewData.Msg));
  11009. }
  11010. return Ok(JsonView(true));
  11011. }
  11012. /// <summary>
  11013. /// 接团客户名单
  11014. /// 文件下载 客户名单
  11015. /// </summary>
  11016. /// <param name="_dto"></param>
  11017. /// <returns></returns>
  11018. [HttpPost]
  11019. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11020. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  11021. {
  11022. #region 参数验证
  11023. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  11024. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  11025. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  11026. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11027. #region 页面操作权限验证
  11028. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  11029. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  11030. #endregion
  11031. #endregion
  11032. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  11033. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  11034. From Grp_TourClientList tcl
  11035. Left Join
  11036. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  11037. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  11038. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  11039. From Crm_DeleClient dc
  11040. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  11041. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  11042. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  11043. Where dc.IsDel = 0) temp
  11044. On temp.DcId =tcl.ClientId
  11045. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  11046. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  11047. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  11048. //载入模板
  11049. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  11050. if (_dto.Language == 1)
  11051. {
  11052. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  11053. }
  11054. //载入模板
  11055. var doc = new Document(tempPath);
  11056. DocumentBuilder builder = new DocumentBuilder(doc);
  11057. //获取word里所有表格
  11058. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11059. //获取所填表格的序数
  11060. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11061. var rowStart = tableOne.Rows[0]; //获取第1行
  11062. if (_dto.Language == 0)
  11063. {
  11064. //循环赋值
  11065. for (int i = 0; i < DcList.Count; i++)
  11066. {
  11067. builder.MoveToCell(0, i + 1, 0, 0);
  11068. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  11069. builder.MoveToCell(0, i + 1, 1, 0);
  11070. int sex = DcList[i].Sex;
  11071. string sexStr = string.Empty;
  11072. if (sex == 0) sexStr = "男";
  11073. else if (sex == 1) sexStr = "女";
  11074. else sexStr = "未设置";
  11075. builder.Write(sexStr);
  11076. builder.MoveToCell(0, i + 1, 2, 0);
  11077. string birthDay = DcList[i].BirthDay;
  11078. string birthDayStr = string.Empty;
  11079. if (!string.IsNullOrEmpty(birthDay))
  11080. {
  11081. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  11082. }
  11083. builder.Write(birthDayStr);
  11084. builder.MoveToCell(0, i + 1, 3, 0);
  11085. string company = "";
  11086. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  11087. {
  11088. company = DcList[i].CompanyFullName.ToString();
  11089. }
  11090. builder.Write(company);
  11091. builder.MoveToCell(0, i + 1, 4, 0);
  11092. builder.Write(DcList[i].Job);
  11093. }
  11094. }
  11095. else if (_dto.Language == 1)
  11096. {
  11097. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  11098. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  11099. List<string> transArrayStr = new List<string>();
  11100. string transStrRes1 = "";
  11101. for (int i = 0; i < DcList.Count; i++)
  11102. {
  11103. var dc = DcList[i];
  11104. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  11105. if (dc.Job.Equals("暂无")) dc.Job = "-";
  11106. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  11107. if (DcList.Count - 1 == i) transStrRes1 += str1;
  11108. else transStrRes1 += $"{str1}|";
  11109. }
  11110. //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";
  11111. string transStrRes = "";
  11112. if (transStrRes1.Length > 0 )
  11113. {
  11114. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  11115. }
  11116. //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
  11117. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  11118. //List<string> transArray = new List<string> { };
  11119. List<TranslateInfo> transArray = new List<TranslateInfo>();
  11120. if (transStrRes.Contains("|"))
  11121. {
  11122. string[] transArray1 = transStrRes.Split('|');
  11123. if (transArray1.Length > 0)
  11124. {
  11125. foreach (var item in transArray1)
  11126. {
  11127. if (item.Contains("&"))
  11128. {
  11129. string[] transArray2 = item.Split('&');
  11130. int index = 0;
  11131. string companyName = "", job = "";
  11132. if (transArray2.Length > 0)
  11133. {
  11134. bool success = int.TryParse(transArray2[0].Trim(), out index);
  11135. if (1 < transArray2.Length) companyName = transArray2[1];
  11136. if (2 < transArray2.Length) job = transArray2[2];
  11137. }
  11138. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  11139. }
  11140. }
  11141. }
  11142. }
  11143. //循环赋值
  11144. for (int i = 0; i < DcList.Count; i++)
  11145. {
  11146. string PYName = "";
  11147. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  11148. {
  11149. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  11150. string PY_First = DcList[i].Pinyin.Split('/')[1];
  11151. PYName = PY_First + " " + PY_Last;
  11152. }
  11153. else
  11154. {
  11155. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  11156. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  11157. PYName = PY_First + " " + PY_Last;
  11158. }
  11159. builder.MoveToCell(0, i + 1, 0, 0);
  11160. builder.Write(PYName);
  11161. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  11162. builder.MoveToCell(0, i + 1, 1, 0);
  11163. builder.Write(sex);
  11164. DateTime birthDt;
  11165. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  11166. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  11167. builder.MoveToCell(0, i + 1, 2, 0);
  11168. builder.Write(birthday);
  11169. string company = string.Empty,job = string.Empty;
  11170. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  11171. if (dcTransInfo != null)
  11172. {
  11173. company = dcTransInfo.CompanyName;
  11174. job = dcTransInfo.Job;
  11175. }
  11176. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  11177. {
  11178. //查询对照表
  11179. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  11180. if (tempCec != null)
  11181. {
  11182. company = tempCec.enName;
  11183. }
  11184. //翻译
  11185. else
  11186. {
  11187. }
  11188. }
  11189. builder.MoveToCell(0, i + 1, 3, 0);
  11190. builder.Write(company);
  11191. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  11192. {
  11193. //查询对照表
  11194. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  11195. if (tempPec != null)
  11196. {
  11197. job = tempPec.enName;
  11198. }
  11199. //翻译
  11200. else
  11201. {
  11202. }
  11203. }
  11204. builder.MoveToCell(0, i + 1, 4, 0);
  11205. builder.Write(job);
  11206. }
  11207. }
  11208. //删除多余行
  11209. while (tableOne.Rows.Count > DcList.Count + 1)
  11210. {
  11211. tableOne.Rows.RemoveAt(DcList.Count + 1);
  11212. }
  11213. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  11214. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  11215. doc.Save(fileDir);
  11216. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  11217. return Ok(JsonView(true, "操作成功!", Url));
  11218. }
  11219. private class TranslateInfo
  11220. {
  11221. public int Index { get; set; }
  11222. public string CompanyName { get; set; }
  11223. public string Job { get; set; }
  11224. }
  11225. #endregion
  11226. #region 团组倒推表
  11227. /// <summary>
  11228. /// 倒推表基础数据
  11229. /// Init
  11230. /// </summary>
  11231. /// <param name="dto"></param>
  11232. /// <returns></returns>
  11233. [HttpPost]
  11234. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11235. public async Task<IActionResult> PostInvertedListInit()
  11236. {
  11237. var viewData = await _invertedListRep._Init();
  11238. if (viewData.Code != 0)
  11239. {
  11240. return Ok(JsonView(false, viewData.Msg));
  11241. }
  11242. return Ok(JsonView(viewData.Data));
  11243. }
  11244. /// <summary>
  11245. /// 倒推表
  11246. /// Info
  11247. /// </summary>
  11248. /// <param name="dto"></param>
  11249. /// <returns></returns>
  11250. [HttpPost]
  11251. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11252. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  11253. {
  11254. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  11255. if (viewData.Code != 0)
  11256. {
  11257. return Ok(JsonView(false, viewData.Msg));
  11258. }
  11259. return Ok(JsonView(viewData.Data));
  11260. }
  11261. /// <summary>
  11262. /// 倒推表
  11263. /// Create
  11264. /// </summary>
  11265. /// <param name="dto"></param>
  11266. /// <returns></returns>
  11267. [HttpPost]
  11268. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11269. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  11270. {
  11271. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  11272. if (viewData.Code != 0)
  11273. {
  11274. return Ok(JsonView(false, viewData.Msg));
  11275. }
  11276. return Ok(JsonView(viewData.Data));
  11277. }
  11278. /// <summary>
  11279. /// 倒推表
  11280. /// Update
  11281. /// </summary>
  11282. /// <param name="dto"></param>
  11283. /// <returns></returns>
  11284. [HttpPost]
  11285. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11286. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  11287. {
  11288. var viewData = await _invertedListRep._Update(dto);
  11289. if (viewData.Code != 0)
  11290. {
  11291. return Ok(JsonView(false, viewData.Msg));
  11292. }
  11293. return Ok(JsonView(viewData.Data));
  11294. }
  11295. /// <summary>
  11296. /// 倒推表
  11297. /// File Download
  11298. /// </summary>
  11299. /// <param name="dto"></param>
  11300. /// <returns></returns>
  11301. [HttpPost]
  11302. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11303. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  11304. {
  11305. var info2 = await _invertedListRep._Info(1, dto.DiId);
  11306. if (info2.Code != 0)
  11307. {
  11308. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  11309. }
  11310. var info1 = info2.Data as InvertedListInfoView;
  11311. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  11312. string teamName = "";
  11313. if (info != null) teamName = info.TeamName;
  11314. //载入模板
  11315. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  11316. DocumentBuilder builder = new DocumentBuilder(doc);
  11317. //利用键值对存放数据
  11318. Dictionary<string, string> dic = new Dictionary<string, string>();
  11319. dic.Add("TeamName", teamName);
  11320. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  11321. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  11322. dic.Add("BPRemark", info1.ApprovalDataRemark);
  11323. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  11324. dic.Add("SQRemark", info1.ApprovalRemark);
  11325. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  11326. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  11327. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  11328. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  11329. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  11330. dic.Add("QZRemark", info1.VisaInformationRemark);
  11331. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  11332. dic.Add("SQQZRemark", info1.SendVisaRemark);
  11333. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  11334. dic.Add("CQRemark", info1.IssueVisaRemark);
  11335. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  11336. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  11337. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  11338. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  11339. #region 填充word模板书签内容
  11340. foreach (var key in dic.Keys)
  11341. {
  11342. builder.MoveToBookmark(key);
  11343. builder.Write(dic[key]);
  11344. }
  11345. #endregion
  11346. var fileDir = AppSettingsHelper.Get("WordBasePath");
  11347. string fileName = $"{teamName}团出行准备流程表.doc";
  11348. string filePath = fileDir + $@"InvertedList/{fileName}";
  11349. doc.Save(filePath);
  11350. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  11351. return Ok(JsonView(true, "操作成功!", Url));
  11352. }
  11353. #endregion
  11354. #region 三公签证费用(签证费、代办费)
  11355. /// <summary>
  11356. /// 三公签证费用(签证费、代办费)
  11357. /// List
  11358. /// </summary>
  11359. /// <returns></returns>
  11360. [HttpPost]
  11361. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11362. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  11363. {
  11364. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  11365. if (_view.Code != 0)
  11366. {
  11367. return Ok(JsonView(false, _view.Msg));
  11368. }
  11369. return Ok(JsonView(true, "操作成功!", _view.Data));
  11370. }
  11371. /// <summary>
  11372. /// 三公签证费用(签证费、代办费)
  11373. /// Add Or Update
  11374. /// </summary>
  11375. /// <returns></returns>
  11376. [HttpPost]
  11377. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11378. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  11379. {
  11380. var _view = await _visaFeeInfoRep._Update(_dto);
  11381. if (_view.Code != 0)
  11382. {
  11383. return Ok(JsonView(false, _view.Msg));
  11384. }
  11385. return Ok(JsonView(true, _view.Msg));
  11386. }
  11387. #endregion
  11388. #region 酒店询价
  11389. /// <summary>
  11390. /// 酒店询价
  11391. /// Init
  11392. /// </summary>
  11393. /// <param name="dto"></param>
  11394. /// <returns></returns>
  11395. [HttpPost]
  11396. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11397. public async Task<IActionResult> PostHotelInquiryInit()
  11398. {
  11399. var res = await _hotelInquiryRep._Init();
  11400. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11401. return Ok(JsonView(true, res.Msg, res.Data));
  11402. }
  11403. /// <summary>
  11404. /// 酒店询价
  11405. /// page Item
  11406. /// </summary>
  11407. /// <param name="_dto"></param>
  11408. /// <returns></returns>
  11409. [HttpPost]
  11410. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11411. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  11412. {
  11413. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  11414. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11415. var view = res.Data as PageDataViewBase;
  11416. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  11417. }
  11418. /// <summary>
  11419. /// 酒店询价
  11420. /// info
  11421. /// </summary>
  11422. /// <param name="_dto"></param>
  11423. /// <returns></returns>
  11424. [HttpPost]
  11425. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11426. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  11427. {
  11428. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  11429. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11430. return Ok(JsonView(true, res.Msg, res.Data));
  11431. }
  11432. /// <summary>
  11433. /// 酒店询价
  11434. /// Add Or Edit
  11435. /// </summary>
  11436. /// <param name="_dto"></param>
  11437. /// <returns></returns>
  11438. [HttpPost]
  11439. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11440. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  11441. {
  11442. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  11443. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11444. return Ok(JsonView(true, res.Msg, res.Data));
  11445. }
  11446. /// <summary>
  11447. /// 酒店询价
  11448. /// Del
  11449. /// </summary>
  11450. /// <param name="_dto"></param>
  11451. /// <returns></returns>
  11452. [HttpPost]
  11453. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11454. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  11455. {
  11456. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  11457. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11458. return Ok(JsonView(true, res.Msg, res.Data));
  11459. }
  11460. #endregion
  11461. #region 下载匹配op行程单
  11462. /// <summary>
  11463. /// 匹配op行程单
  11464. /// Init
  11465. /// </summary>
  11466. /// <param name="dto">团组列表请求dto</param>
  11467. /// <returns></returns>
  11468. [HttpPost]
  11469. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11470. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  11471. {
  11472. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  11473. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  11474. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  11475. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  11476. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  11477. .Where(it => it.IsDel == 0)
  11478. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  11479. .OrderByDescending(it => it.CreateUserId)
  11480. .ToList();
  11481. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  11482. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11483. var diids = groupInfos.Select(it => it.Id).ToList();
  11484. List<string> countrys = new List<string>();
  11485. foreach (var item in country)
  11486. {
  11487. var data = _groupRepository.FormartTeamName(item);
  11488. var dataArray = _groupRepository.GroupSplitCountry(data);
  11489. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11490. }
  11491. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  11492. List<string> areaArray = new List<string>(); //GetGroupCityLine
  11493. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  11494. foreach (var item in areaItem)
  11495. {
  11496. string areaStr = item.Value;
  11497. if (!string.IsNullOrEmpty(areaStr))
  11498. {
  11499. string[] str1 = areaStr.Split("-");
  11500. if (str1.Length > 0)
  11501. {
  11502. areaArray.AddRange(str1);
  11503. }
  11504. }
  11505. }
  11506. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  11507. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  11508. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  11509. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  11510. .ToList();
  11511. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  11512. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  11513. .Where(it => countriesIds.Contains(it.Id))
  11514. .Select(it => new { it.Id, Name = it.Name_CN })
  11515. .ToList();
  11516. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  11517. .Select(it => it.TeamName).ToList();
  11518. stopwatch.Stop();
  11519. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  11520. }
  11521. ///// <summary>
  11522. ///// 匹配op行程单
  11523. ///// Init 查询区域数据
  11524. ///// </summary>
  11525. ///// <param name="dto">团组列表请求dto</param>
  11526. ///// <returns></returns>
  11527. //[HttpPost]
  11528. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11529. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  11530. //{
  11531. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  11532. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  11533. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  11534. // if (string.IsNullOrEmpty(countriesDataStr))
  11535. // {
  11536. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  11537. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  11538. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  11539. // }
  11540. // else
  11541. // {
  11542. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  11543. // }
  11544. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  11545. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  11546. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  11547. // List<dynamic> childList = new List<dynamic>();
  11548. // int parentId = dto.CountriesId;
  11549. // if (provinceData.Count > 1)
  11550. // {
  11551. // foreach (var item1 in provinceData)
  11552. // {
  11553. // List<dynamic> childList1 = new List<dynamic>();
  11554. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  11555. // foreach (var item2 in citiesData1)
  11556. // {
  11557. // List<dynamic> childList2 = new List<dynamic>();
  11558. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  11559. // foreach (var item3 in countiesData1)
  11560. // {
  11561. // childList2.Add(new
  11562. // {
  11563. // id = item3.Id,
  11564. // parentId = item2.Id,
  11565. // level = "district",
  11566. // name = item3.Name_CN,
  11567. // });
  11568. // }
  11569. // childList1.Add(new
  11570. // {
  11571. // id = item2.Id,
  11572. // parentId = item1.Id,
  11573. // level = "city",
  11574. // name = item2.Name_CN,
  11575. // childList = childList2
  11576. // });
  11577. // }
  11578. // childList.Add(new
  11579. // {
  11580. // id = item1.Id,
  11581. // parentId = parentId,
  11582. // level = "province",
  11583. // name = item1.Name_CN,
  11584. // childList = childList1
  11585. // });
  11586. // }
  11587. // //城市
  11588. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  11589. // foreach (var item2 in citiesData2)
  11590. // {
  11591. // List<dynamic> childList22 = new List<dynamic>();
  11592. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  11593. // foreach (var item3 in countiesData1)
  11594. // {
  11595. // childList22.Add(new
  11596. // {
  11597. // id = item3.Id,
  11598. // parentId = item2.Id,
  11599. // level = "district",
  11600. // name = item3.Name_CN,
  11601. // });
  11602. // }
  11603. // childList.Add(new
  11604. // {
  11605. // id = item2.Id,
  11606. // parentId = parentId,
  11607. // level = "city",
  11608. // name = item2.Name_CN,
  11609. // childList = childList22
  11610. // });
  11611. // }
  11612. // }
  11613. // else
  11614. // {
  11615. // foreach (var item2 in citiesData)
  11616. // {
  11617. // string cname = item2.Name_CN;
  11618. // List<dynamic> childList1 = new List<dynamic>();
  11619. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  11620. // foreach (var item3 in countiesData1)
  11621. // {
  11622. // childList1.Add(new
  11623. // {
  11624. // Id = item3.Id,
  11625. // parentId = item2.Id,
  11626. // level = "district",
  11627. // name = item3.Name_CN
  11628. // });
  11629. // }
  11630. // childList.Add(new
  11631. // {
  11632. // id = item2.Id,
  11633. // parentId = parentId,
  11634. // level = "city",
  11635. // name = item2.Name_CN,
  11636. // childList = childList1
  11637. // });
  11638. // }
  11639. // }
  11640. // stopwatch.Stop();
  11641. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  11642. //}
  11643. /// <summary>
  11644. /// 匹配op行程单
  11645. /// 接团信息列表 Page
  11646. /// </summary>
  11647. /// <param name="dto">团组列表请求dto</param>
  11648. /// <returns></returns>
  11649. [HttpPost]
  11650. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11651. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  11652. {
  11653. var swatch = new Stopwatch();
  11654. swatch.Start();
  11655. #region 参数验证
  11656. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  11657. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  11658. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11659. #region 页面操作权限验证
  11660. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  11661. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  11662. #endregion
  11663. #endregion
  11664. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  11665. {
  11666. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  11667. string sqlWhere = "";
  11668. if (!string.IsNullOrEmpty(dto.Country))
  11669. {
  11670. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  11671. }
  11672. if (!string.IsNullOrEmpty(dto.Area))
  11673. {
  11674. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  11675. }
  11676. if (!string.IsNullOrEmpty(dto.TeamName))
  11677. {
  11678. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  11679. }
  11680. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  11681. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  11682. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  11683. swatch.Stop();
  11684. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  11685. }
  11686. else
  11687. {
  11688. return Ok(JsonView(false, "查询失败"));
  11689. }
  11690. }
  11691. /// <summary>
  11692. /// 匹配op行程单
  11693. /// 行程单下载
  11694. /// </summary>
  11695. /// <param name="dto">团组列表请求dto</param>
  11696. /// <returns></returns>
  11697. [HttpPost]
  11698. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11699. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  11700. {
  11701. #region 参数验证
  11702. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  11703. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  11704. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11705. #region 页面操作权限验证
  11706. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  11707. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  11708. #endregion
  11709. #endregion
  11710. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  11711. {
  11712. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  11713. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  11714. }
  11715. else
  11716. {
  11717. return Ok(JsonView(false, "下载失败!"));
  11718. }
  11719. }
  11720. #endregion
  11721. #region 国家信息 数据 注释
  11722. //[HttpPost]
  11723. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  11724. //{
  11725. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  11726. // foreach (var item in dto)
  11727. // {
  11728. // infos.Add(new Grp_GroupsTaskAssignment()
  11729. // {
  11730. // DIId = item,
  11731. // CTId = 82,
  11732. // UId = 248,
  11733. // IsEnable = 1,
  11734. // CreateUserId = 233,
  11735. // CreateTime = DateTime.Now,
  11736. // IsDel = 0
  11737. // });
  11738. // infos.Add(new Grp_GroupsTaskAssignment()
  11739. // {
  11740. // DIId = item,
  11741. // CTId = 82,
  11742. // UId = 286,
  11743. // IsEnable = 1,
  11744. // CreateUserId = 233,
  11745. // CreateTime = DateTime.Now,
  11746. // IsDel = 0
  11747. // });
  11748. // }
  11749. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  11750. // return Ok("操作成功");
  11751. //}
  11752. //public class paramJsonDto
  11753. //{
  11754. // public List<CountriesInfo> str { get; set; }
  11755. //}
  11756. //[HttpPost]
  11757. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  11758. //{
  11759. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  11760. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  11761. // List<Sys_Cities> cities = new List<Sys_Cities>();
  11762. // List<Sys_Cities> districts = new List<Sys_Cities>();
  11763. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  11764. // _sqlSugar.BeginTran();
  11765. // int countitiesIndex = 0;
  11766. // foreach (var item in dto.str)
  11767. // {
  11768. // dynamic data = item.c;
  11769. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  11770. // if (data != null)
  11771. // {
  11772. // countitiesIndex++;
  11773. // foreach (var item1 in data)
  11774. // {
  11775. // string cnname = item1.cn;
  11776. // string enname = item1.en;
  11777. // Sys_Cities provinceInfo = new Sys_Cities()
  11778. // {
  11779. // CountriesId = countriesId,
  11780. // Name_CN = cnname,
  11781. // Name_EN = enname,
  11782. // ParentId = 0,
  11783. // IsCapital = 1,
  11784. // CreateUserId = 208,
  11785. // CreateTime = DateTime.Now,
  11786. // IsDel = 0
  11787. // };
  11788. // if (item1.lv == "province") //省份
  11789. // {
  11790. // provinceInfo.Level = 1;
  11791. // int provinceId = 0;
  11792. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  11793. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  11794. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  11795. // var data1 = item1.c;
  11796. // foreach (var item2 in data1)
  11797. // {
  11798. // if (item2.lv == "city")
  11799. // {
  11800. // string citycnname = item2.cn;
  11801. // string cityenname = item2.en;
  11802. // Sys_Cities cityInfo = new Sys_Cities()
  11803. // {
  11804. // CountriesId = countriesId,
  11805. // ParentId = provinceId,
  11806. // Level = 2,
  11807. // Name_CN = citycnname,
  11808. // Name_EN = cityenname,
  11809. // IsCapital = 1,
  11810. // CreateUserId = 208,
  11811. // CreateTime = DateTime.Now,
  11812. // IsDel = 0
  11813. // };
  11814. // if (item2.c != null)
  11815. // {
  11816. // int cityId = 0;
  11817. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  11818. // if (citiesInfo != null) cityId = citiesInfo.Id;
  11819. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  11820. // foreach (var item3 in item2.c)
  11821. // {
  11822. // if (item3.lv == "district")
  11823. // {
  11824. // var districtInfo = new Sys_Cities()
  11825. // {
  11826. // CountriesId = countriesId,
  11827. // Name_CN = item3.cn,
  11828. // Name_EN = item3.en,
  11829. // Level = 3,
  11830. // ParentId = cityId,
  11831. // IsCapital = 1,
  11832. // CreateUserId = 208,
  11833. // CreateTime = DateTime.Now,
  11834. // IsDel = 0
  11835. // };
  11836. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  11837. // //{
  11838. // districts.Add(districtInfo);
  11839. // //}
  11840. // }
  11841. // }
  11842. // }
  11843. // else
  11844. // {
  11845. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  11846. // //{
  11847. // cities.Add(cityInfo);
  11848. // //}
  11849. // }
  11850. // }
  11851. // }
  11852. // }
  11853. // else if (item1.lv == "city")//城市
  11854. // {
  11855. // provinceInfo.Level = 2;
  11856. // if (item1.c != null)
  11857. // {
  11858. // int cityId = 0;
  11859. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  11860. // if (citiesInfo != null) cityId = citiesInfo.Id;
  11861. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  11862. // foreach (var item3 in item1.c)
  11863. // {
  11864. // if (item3.lv == "district")
  11865. // {
  11866. // var districtInfo = new Sys_Cities()
  11867. // {
  11868. // CountriesId = countriesId,
  11869. // Name_CN = item3.cn,
  11870. // Name_EN = item3.en,
  11871. // Level = 3,
  11872. // ParentId = cityId,
  11873. // IsCapital = 1,
  11874. // CreateUserId = 208,
  11875. // CreateTime = DateTime.Now,
  11876. // IsDel = 0
  11877. // };
  11878. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  11879. // //{
  11880. // districts.Add(districtInfo);
  11881. // //}
  11882. // }
  11883. // }
  11884. // }
  11885. // else
  11886. // {
  11887. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  11888. // //{
  11889. // cities.Add(provinceInfo);
  11890. // //}
  11891. // }
  11892. // }
  11893. // }
  11894. // }
  11895. // }
  11896. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  11897. // cities = cities.Distinct().ToList();
  11898. // districts = districts.Distinct().ToList();
  11899. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  11900. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  11901. // cities.AddRange(districts);
  11902. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  11903. // //_sqlSugar.RollbackTran();
  11904. // _sqlSugar.CommitTran();
  11905. // return Ok(JsonView(false, "操作成功!"));
  11906. //}
  11907. //[HttpPost]
  11908. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  11909. //{
  11910. // List<CountitiesInfo> infos = dto.MyProperty;
  11911. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  11912. // _sqlSugar.BeginTran();
  11913. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  11914. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  11915. // foreach (var item in infos)
  11916. // {
  11917. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  11918. // if (countryInfo != null)
  11919. // {
  11920. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  11921. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  11922. // if (cityInfo1 != null)
  11923. // {
  11924. // cityInfo1.IsCapital = 0;
  11925. // cityInfos.Add(cityInfo1);
  11926. // }
  11927. // }
  11928. // }
  11929. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  11930. // .UpdateColumns(it => it.IsCapital)
  11931. // .WhereColumns(it => it.Id)
  11932. // .ExecuteCommand();
  11933. // //_sqlSugar.RollbackTran();
  11934. // _sqlSugar.CommitTran();
  11935. // return Ok(JsonView(false, "操作成功!"));
  11936. //}
  11937. //public class CounrtiesDto
  11938. //{
  11939. // public List<CountitiesInfo> MyProperty { get; set; }
  11940. //}
  11941. //public class CountitiesInfo
  11942. //{
  11943. // /// <summary>
  11944. // /// 圣约翰
  11945. // /// </summary>
  11946. // public string capital_name_chinese { get; set; }
  11947. // /// <summary>
  11948. // ///
  11949. // /// </summary>
  11950. // public string capital_name { get; set; }
  11951. // /// <summary>
  11952. // ///
  11953. // /// </summary>
  11954. // public string country_type { get; set; }
  11955. // /// <summary>
  11956. // /// 安提瓜和巴布达
  11957. // /// </summary>
  11958. // public string country_name_chinese { get; set; }
  11959. // /// <summary>
  11960. // /// 安提瓜和巴布达
  11961. // /// </summary>
  11962. // public string country_name_chinese_short { get; set; }
  11963. // /// <summary>
  11964. // /// 安提瓜和巴布达
  11965. // /// </summary>
  11966. // public string country_name_chinese_UN { get; set; }
  11967. // /// <summary>
  11968. // ///
  11969. // /// </summary>
  11970. // public string country_name_english_abbreviation { get; set; }
  11971. // /// <summary>
  11972. // ///
  11973. // /// </summary>
  11974. // public string country_name_english_formal { get; set; }
  11975. // /// <summary>
  11976. // ///
  11977. // /// </summary>
  11978. // public string country_name_english_UN { get; set; }
  11979. // /// <summary>
  11980. // ///
  11981. // /// </summary>
  11982. // public string continent_name { get; set; }
  11983. // /// <summary>
  11984. // ///
  11985. // /// </summary>
  11986. // public string subregion_name { get; set; }
  11987. // /// <summary>
  11988. // ///
  11989. // /// </summary>
  11990. // public string country_code2 { get; set; }
  11991. // /// <summary>
  11992. // ///
  11993. // /// </summary>
  11994. // public string country_code3 { get; set; }
  11995. // /// <summary>
  11996. // ///
  11997. // /// </summary>
  11998. // public string phone_code { get; set; }
  11999. //}
  12000. //public class CountriesInfo : BasicInfo
  12001. //{
  12002. // public List<CitiesInfo> c { get; set; }
  12003. //}
  12004. //public class CitiesInfo : BasicInfo
  12005. //{
  12006. // public List<AreaInfo> c { get; set; }
  12007. //}
  12008. //public class AreaInfo : BasicInfo
  12009. //{
  12010. // public List<AreaInfo> c { get; set; }
  12011. //}
  12012. //public class BasicInfo
  12013. //{
  12014. // public string code { get; set; }
  12015. // public string cn { get; set; }
  12016. // public string lv { get; set; }
  12017. // public string en { get; set; }
  12018. //}
  12019. #endregion
  12020. #region 查看邀请方
  12021. /// <summary>
  12022. /// 查看邀请方
  12023. /// 邀请方信息 Init
  12024. /// </summary>
  12025. /// <param name="dto"></param>
  12026. /// <returns></returns>
  12027. [HttpPost]
  12028. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12029. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  12030. {
  12031. string sqlWhere = string.Empty;
  12032. if (!string.IsNullOrEmpty(dto.Search))
  12033. {
  12034. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  12035. }
  12036. string sql = string.Format($@"Select
  12037. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  12038. Id,
  12039. UnitName
  12040. From Res_InvitationOfficialActivityData
  12041. Where IsDel = 0
  12042. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  12043. RefAsync<int> total = 0;
  12044. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12045. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  12046. }
  12047. /// <summary>
  12048. /// 查看邀请方
  12049. /// 国家信息 Init
  12050. /// </summary>
  12051. /// <param name="dto"></param>
  12052. /// <returns></returns>
  12053. [HttpPost]
  12054. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12055. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  12056. {
  12057. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  12058. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  12059. var diids = groupInfos.Select(it => it.Id).ToList();
  12060. List<string> countrys = new List<string>();
  12061. foreach (var item in country)
  12062. {
  12063. var data = _groupRepository.FormartTeamName(item);
  12064. var dataArray = _groupRepository.GroupSplitCountry(data);
  12065. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  12066. }
  12067. countrys = countrys.Distinct().ToList();
  12068. for (int i = 0; i < countrys.Count; i++)
  12069. {
  12070. string item = countrys[i];
  12071. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  12072. {
  12073. countrys.Remove(item);
  12074. i--;
  12075. }
  12076. }
  12077. RefAsync<int> total = 0;
  12078. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  12079. .Where(it => countrys.Contains(it.Name_CN))
  12080. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  12081. .Select(it => new { id = it.Id, name = it.Name_CN })
  12082. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12083. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  12084. }
  12085. /// <summary>
  12086. /// 查看邀请方
  12087. /// 城市信息 Init
  12088. /// </summary>
  12089. /// <param name="dto"></param>
  12090. /// <returns></returns>
  12091. [HttpPost]
  12092. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12093. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  12094. {
  12095. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  12096. RefAsync<int> total = 0;
  12097. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  12098. .Where(it => it.CountriesId == dto.CountiesId)
  12099. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  12100. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  12101. .Select(it => new { id = it.Id, name = it.Name_CN })
  12102. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12103. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  12104. }
  12105. /// <summary>
  12106. /// 查看邀请方
  12107. /// 团组名称 Init
  12108. /// </summary>
  12109. /// <param name="dto"></param>
  12110. /// <returns></returns>
  12111. [HttpPost]
  12112. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12113. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  12114. {
  12115. var watch = new Stopwatch();
  12116. watch.Start();
  12117. RefAsync<int> total = 0;
  12118. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  12119. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  12120. .Where((oa, di) => oa.IsDel == 0)
  12121. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  12122. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  12123. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  12124. .Distinct()
  12125. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12126. watch.Stop();
  12127. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  12128. }
  12129. /// <summary>
  12130. /// 查看邀请方
  12131. /// 团组 & 邀请方信息
  12132. /// </summary>
  12133. /// <param name="dto"></param>
  12134. /// <returns></returns>
  12135. [HttpPost]
  12136. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12137. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  12138. {
  12139. var watch = new Stopwatch();
  12140. watch.Start();
  12141. RefAsync<int> total = 0;
  12142. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  12143. .AS("Grp_DelegationInfo")
  12144. .Includes(x => x.InvitingInfos)
  12145. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  12146. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  12147. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  12148. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  12149. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  12150. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  12151. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12152. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  12153. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  12154. infos.ForEach(x =>
  12155. {
  12156. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  12157. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  12158. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  12159. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  12160. });
  12161. watch.Stop();
  12162. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  12163. }
  12164. #endregion
  12165. #region 报批行程
  12166. /// <summary>
  12167. /// 报批行程初始化
  12168. /// </summary>
  12169. /// <param name="dto"></param>
  12170. /// <returns></returns>
  12171. [HttpPost]
  12172. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  12173. {
  12174. const int chiNumber = 5;
  12175. var jw = JsonView(false);
  12176. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  12177. var group = groupList.First();
  12178. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  12179. group = groupList.First(x => x.Id == diid);
  12180. if (group == null)
  12181. {
  12182. jw.Msg = "暂无团组!";
  12183. return Ok(jw);
  12184. }
  12185. var data = new
  12186. {
  12187. groupList = groupList.Select(x => new
  12188. {
  12189. x.TeamName,
  12190. x.Id
  12191. }),
  12192. content = new ArrayList(),
  12193. groupInfo = new
  12194. {
  12195. group.VisitDays,
  12196. group.TourCode,
  12197. group.VisitPNumber,
  12198. group.TeamName,
  12199. group.Id,
  12200. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  12201. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  12202. },
  12203. };
  12204. var resultArr = new ArrayList();
  12205. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  12206. if (content.Count == 0)
  12207. {
  12208. var stay = "-";
  12209. var cityPath = "-";
  12210. //添加城市路径以及住宿地
  12211. //黑屏代码数据
  12212. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  12213. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  12214. {
  12215. jw = JsonView(true, "黑屏代码有误!", data);
  12216. return Ok(jw);
  12217. }
  12218. foreach (DataRow row in dtBlack.Rows)
  12219. {
  12220. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  12221. {
  12222. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  12223. return Ok(jw);
  12224. }
  12225. }
  12226. //黑屏代码获取时间区间
  12227. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  12228. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  12229. _sqlSugar.BeginTran();
  12230. for (int i = 0; i < timeArr.Count; i++)
  12231. {
  12232. stay = "-";
  12233. cityPath = "-";
  12234. DateTime NewData = DateTime.Parse(timeArr[i]);
  12235. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  12236. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  12237. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  12238. if (tbSelect.Length > 0)
  12239. {
  12240. List<string> threeCodeStr = new List<string>();
  12241. foreach (var item in tbSelect)
  12242. {
  12243. var threeCode = item["Three"].ToString() ?? "";
  12244. if (threeCode.Length == 6)
  12245. {
  12246. var start = threeCode.Substring(0, 3);
  12247. var end = threeCode.Substring(3, 3);
  12248. if (threeCodeStr.Count == 0)
  12249. {
  12250. threeCodeStr.Add(start);
  12251. threeCodeStr.Add(end);
  12252. }
  12253. else
  12254. {
  12255. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  12256. {
  12257. threeCodeStr.Add(end);
  12258. }
  12259. else
  12260. {
  12261. threeCodeStr.Add(start);
  12262. threeCodeStr.Add(end);
  12263. }
  12264. }
  12265. }
  12266. }
  12267. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  12268. var last = threeCodeStr.Last();
  12269. foreach (var item in threeCodeStr)
  12270. {
  12271. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  12272. if (item.Equals(last))
  12273. {
  12274. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  12275. }
  12276. }
  12277. cityPath = cityPath.Trim('-');
  12278. }
  12279. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  12280. appro.Diid = diid ?? -1;
  12281. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  12282. appro.Id = thisId;
  12283. appro.CreateUserId = dto.UserId;
  12284. appro.CreateTime = DateTime.Now;
  12285. content.Add(appro);
  12286. }
  12287. _sqlSugar.CommitTran();
  12288. }
  12289. foreach (var x in content)
  12290. {
  12291. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  12292. if (chiList.Count < chiNumber)
  12293. {
  12294. for (int i = chiList.Count; i < chiNumber; i++)
  12295. {
  12296. chiList.Add(new Grp_ApprovalTravelDetails());
  12297. }
  12298. }
  12299. resultArr.Add(new
  12300. {
  12301. x.Id,
  12302. x.Date,
  12303. x.Diid,
  12304. chiList = chiList.Select(x1 => new
  12305. {
  12306. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  12307. x1.Details,
  12308. x1.ParentId,
  12309. x1.Id
  12310. })
  12311. });
  12312. }
  12313. data = data with
  12314. {
  12315. content = resultArr,
  12316. };
  12317. jw = JsonView(true, "获取成功!", data);
  12318. return Ok(jw);
  12319. }
  12320. /// <summary>
  12321. /// 报批行程删除
  12322. /// </summary>
  12323. /// <param name="dto"></param>
  12324. /// <returns></returns>
  12325. [HttpPost]
  12326. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  12327. {
  12328. var jw = JsonView(false);
  12329. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  12330. if (group == null)
  12331. {
  12332. jw.Msg = "团组参数有误!";
  12333. return Ok(jw);
  12334. }
  12335. try
  12336. {
  12337. _sqlSugar.BeginTran();
  12338. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  12339. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  12340. {
  12341. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  12342. DeleteUserId = dto.uesrId,
  12343. IsDel = 1
  12344. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  12345. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  12346. {
  12347. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  12348. DeleteUserId = dto.uesrId,
  12349. IsDel = 1
  12350. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  12351. _sqlSugar.CommitTran();
  12352. jw = JsonView(true, "删除成功");
  12353. }
  12354. catch (Exception ex)
  12355. {
  12356. jw = JsonView(false, ex.Message);
  12357. }
  12358. return Ok(jw);
  12359. }
  12360. /// <summary>
  12361. /// 报批行程保存
  12362. /// </summary>
  12363. /// <param name="dto"></param>
  12364. /// <returns></returns>
  12365. [HttpPost]
  12366. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  12367. {
  12368. var jw = JsonView(false);
  12369. var Find = dto.Arr.Find(x => x.id == 0);
  12370. if (Find != null)
  12371. {
  12372. jw.Msg = "生成的ID为0!";
  12373. return Ok(jw);
  12374. }
  12375. foreach (var item in dto.Arr)
  12376. {
  12377. foreach (var chi in item.chiList)
  12378. {
  12379. if (chi.parentId == 0)
  12380. {
  12381. chi.parentId = item.id;
  12382. }
  12383. }
  12384. }
  12385. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  12386. _sqlSugar.BeginTran();
  12387. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  12388. {
  12389. var parentIds = dto.Arr.Select(x => x.id).ToList();
  12390. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  12391. {
  12392. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  12393. DeleteUserId = dto.UserId,
  12394. IsDel = 1
  12395. }).ExecuteCommand();
  12396. }
  12397. try
  12398. {
  12399. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  12400. {
  12401. CreateTime = DateTime.Now,
  12402. CreateUserId = dto.UserId,
  12403. Details = x.details,
  12404. ParentId = x.parentId,
  12405. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  12406. Remark = "",
  12407. IsDel = 0
  12408. }).ToList()).ExecuteCommand();
  12409. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  12410. {
  12411. Id = x.id,
  12412. Details = x.details,
  12413. ParentId = x.parentId,
  12414. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  12415. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  12416. {
  12417. Details = x.Details,
  12418. ParentId = x.ParentId,
  12419. Time = x.Time
  12420. }).ExecuteCommand();
  12421. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  12422. {
  12423. Id = x.id,
  12424. Date = x.date,
  12425. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  12426. {
  12427. Date = x.Date
  12428. }).ExecuteCommand();
  12429. _sqlSugar.CommitTran();
  12430. jw = JsonView(true, "保存成功!");
  12431. }
  12432. catch (Exception ex)
  12433. {
  12434. _sqlSugar.RollbackTran();
  12435. jw = JsonView(false, "保存失败!" + ex.Message);
  12436. }
  12437. return Ok(jw);
  12438. }
  12439. /// <summary>
  12440. /// 报批行程生成
  12441. /// </summary>
  12442. /// <param name="dto"></param>
  12443. /// <returns></returns>
  12444. [HttpPost]
  12445. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  12446. {
  12447. var jw = JsonView(false);
  12448. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  12449. if (group == null)
  12450. {
  12451. jw.Msg = "暂无该团组!";
  12452. return Ok(jw);
  12453. }
  12454. //黑屏代码数据
  12455. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  12456. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  12457. {
  12458. jw.Msg = "黑屏代码有误!";
  12459. return Ok(jw);
  12460. }
  12461. foreach (DataRow row in dtBlack.Rows)
  12462. {
  12463. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  12464. {
  12465. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  12466. return Ok(jw);
  12467. }
  12468. }
  12469. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  12470. var resultArr = new ArrayList();
  12471. if (officialActivitiesArr.Count == 0)
  12472. {
  12473. jw.Msg = "暂无公务出访信息!";
  12474. return Ok(jw);
  12475. }
  12476. try
  12477. {
  12478. _sqlSugar.BeginTran();
  12479. DeleteApprovalJourney(new
  12480. Domain.Dtos.Groups.DeleteApprovalJourney
  12481. {
  12482. Diid = dto.Diid,
  12483. uesrId = dto.Userid
  12484. });
  12485. var stay = "-";
  12486. var cityPath = "-";
  12487. //添加城市路径以及住宿地
  12488. //黑屏代码获取时间区间
  12489. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  12490. var empty = "【未收入该三字码!请机票同事录入】";
  12491. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  12492. for (int i = 0; i < timeArr.Count; i++)
  12493. {
  12494. stay = "-";
  12495. cityPath = "-";
  12496. var chiarr = new List<Grp_ApprovalTravelDetails>();
  12497. DateTime NewData = DateTime.Parse(timeArr[i]);
  12498. 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();
  12499. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  12500. if (tbSelect.Length > 0)
  12501. {
  12502. List<string> threeCodeStr = new List<string>();
  12503. bool isTrade = false;
  12504. string trip = string.Empty;
  12505. var rowLast = tbSelect.Last();
  12506. var rowFirst = tbSelect.First();
  12507. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  12508. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  12509. var takeOffTime = DateTime.Parse(timeArr[i]);
  12510. var fallToTime = DateTime.Parse(timeArr[i]);
  12511. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  12512. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  12513. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  12514. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  12515. foreach (var item in tbSelect)
  12516. {
  12517. var start = string.Empty;
  12518. var end = string.Empty;
  12519. var threeCode = item["Three"].ToString() ?? "";
  12520. if (threeCode.Length == 6)
  12521. {
  12522. start = threeCode.Substring(0, 3);
  12523. end = threeCode.Substring(3, 3);
  12524. if (threeCodeStr.Count == 0)
  12525. {
  12526. threeCodeStr.Add(start);
  12527. threeCodeStr.Add(end);
  12528. }
  12529. else
  12530. {
  12531. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  12532. {
  12533. threeCodeStr.Add(end);
  12534. }
  12535. else
  12536. {
  12537. threeCodeStr.Add(start);
  12538. threeCodeStr.Add(end);
  12539. }
  12540. }
  12541. }
  12542. //处理机票信息
  12543. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  12544. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  12545. if (start_Object == null)
  12546. {
  12547. start_Object = new Res_ThreeCode()
  12548. {
  12549. AirPort = empty,
  12550. AirPort_En = empty,
  12551. City = empty,
  12552. Country = empty,
  12553. Four = empty,
  12554. Three = empty,
  12555. };
  12556. }
  12557. if (end_Object == null)
  12558. {
  12559. end_Object = new Res_ThreeCode()
  12560. {
  12561. AirPort = empty,
  12562. AirPort_En = empty,
  12563. City = empty,
  12564. Country = empty,
  12565. Four = empty,
  12566. Three = empty,
  12567. };
  12568. }
  12569. //机型判断
  12570. string airModel = item["AirModel"].ToString();
  12571. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  12572. string flightTime = item["FlightTime"].ToString();
  12573. if (flightTime!.Contains(":"))
  12574. {
  12575. flightTime = flightTime.Replace(":", "小时");
  12576. flightTime += "分钟";
  12577. }
  12578. if (flightTime.Contains("H"))
  12579. {
  12580. flightTime = flightTime.Replace("H", "小时");
  12581. }
  12582. if (flightTime.Contains("M"))
  12583. {
  12584. flightTime = flightTime.Replace("M", "分钟");
  12585. }
  12586. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  12587. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  12588. {
  12589. flightTime = flightDataTime.Hour > 0
  12590. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  12591. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  12592. ? flightDataTime.Minute.ToString() + "分钟" : "";
  12593. }
  12594. //航班号
  12595. string flightcode = item["Fliagtcode"].ToString();
  12596. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  12597. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  12598. if (aircompany == null)
  12599. {
  12600. aircompany = new Res_AirCompany
  12601. {
  12602. CnName = hsEmpty,
  12603. EnName = hsEmpty,
  12604. ShortCode = hsEmpty,
  12605. };
  12606. }
  12607. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  12608. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  12609. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  12610. if (isTrade)
  12611. {
  12612. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  12613. }
  12614. else
  12615. {
  12616. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  12617. }
  12618. }
  12619. chiarr.Add(new Grp_ApprovalTravelDetails
  12620. {
  12621. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  12622. CreateTime = DateTime.Now,
  12623. CreateUserId = dto.Userid,
  12624. ParentId = 0,
  12625. Details = trip
  12626. });
  12627. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  12628. var last = threeCodeStr.Last();
  12629. foreach (var item in threeCodeStr)
  12630. {
  12631. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  12632. if (item.Equals(last))
  12633. {
  12634. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  12635. }
  12636. }
  12637. cityPath = cityPath.Trim('-');
  12638. }
  12639. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  12640. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  12641. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  12642. appro.Diid = dto.Diid;
  12643. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  12644. appro.Id = thisId;
  12645. appro.CreateUserId = dto.Userid;
  12646. appro.CreateTime = DateTime.Now;
  12647. foreach (var item in gwinfo)
  12648. {
  12649. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  12650. chi.Details = "拜访" + item.Client;
  12651. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  12652. {
  12653. chi.Details += "," + item.ReqSample;
  12654. }
  12655. chi.ParentId = thisId;
  12656. chi.Time = item.Time;
  12657. chiarr.Add(chi);
  12658. }
  12659. if (chiarr.Count < 5)
  12660. {
  12661. for (int j = chiarr.Count; j < 5; j++)
  12662. {
  12663. chiarr.Add(new
  12664. Grp_ApprovalTravelDetails());
  12665. }
  12666. }
  12667. resultArr.Add(new
  12668. {
  12669. appro.Id,
  12670. appro.Date,
  12671. appro.Diid,
  12672. chiList = chiarr.Select(x1 => new
  12673. {
  12674. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  12675. x1.Details,
  12676. x1.ParentId,
  12677. x1.Id
  12678. })
  12679. });
  12680. }
  12681. _sqlSugar.CommitTran();
  12682. jw = JsonView(true, "生成成功!", resultArr);
  12683. }
  12684. catch (Exception ex)
  12685. {
  12686. jw.Code = 400;
  12687. jw.Msg = "生成失败!" + ex.Message;
  12688. }
  12689. return Ok(jw);
  12690. }
  12691. /// <summary>
  12692. /// 报批行程word导出
  12693. /// </summary>
  12694. /// <param name="dto"></param>
  12695. /// <returns></returns>
  12696. [HttpPost]
  12697. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  12698. {
  12699. var jw = JsonView(false);
  12700. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  12701. if (group == null)
  12702. {
  12703. jw.Msg = "暂无该团组!";
  12704. return Ok(jw);
  12705. }
  12706. //模板路径
  12707. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  12708. //载入模板
  12709. Document doc = new Document(tempPath);
  12710. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  12711. //获取所填表格的序数
  12712. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  12713. Aspose.Words.Tables.Row titleRowClone = null;
  12714. Aspose.Words.Tables.Row CenterRowClone = null;
  12715. int index = 0;
  12716. int indexChi = 0;
  12717. int SetIndex = 0;
  12718. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  12719. //获取数据,放到datatable
  12720. foreach (var item in ApprovalTravelArr)
  12721. {
  12722. if (index > 0)
  12723. {
  12724. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  12725. tableOne.AppendChild(titleRowClone);
  12726. }
  12727. var textTime = item.Date;
  12728. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  12729. SetCells(tableOne, doc, SetIndex, 0, textTime);
  12730. SetIndex++;
  12731. if (ChiRep.Count > 0)
  12732. {
  12733. foreach (var itemChi in ChiRep)
  12734. {
  12735. var txtTime = itemChi.Time;
  12736. var txtDetail = itemChi.Details;
  12737. if (indexChi > 0)
  12738. {
  12739. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  12740. tableOne.AppendChild(CenterRowClone);
  12741. }
  12742. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  12743. {
  12744. SetCells(tableOne, doc, SetIndex, 0, "");
  12745. SetCells(tableOne, doc, SetIndex, 1, "");
  12746. indexChi++;
  12747. SetIndex++;
  12748. break;
  12749. }
  12750. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  12751. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  12752. indexChi++;
  12753. SetIndex++;
  12754. }
  12755. }
  12756. else
  12757. {
  12758. if (indexChi > 0)
  12759. {
  12760. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  12761. tableOne.AppendChild(CenterRowClone);
  12762. }
  12763. SetCells(tableOne, doc, SetIndex, 0, "");
  12764. SetCells(tableOne, doc, SetIndex, 1, "");
  12765. indexChi++;
  12766. SetIndex++;
  12767. }
  12768. index++;
  12769. }
  12770. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  12771. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  12772. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  12773. jw.Code = 200;
  12774. jw.Msg = "";
  12775. return Ok(jw);
  12776. }
  12777. private string intToString(int numberVal)
  12778. {
  12779. string numberval = numberVal.ToString();
  12780. Dictionary<char, string> Number = new Dictionary<char, string>();
  12781. Number.Add('1', "一");
  12782. Number.Add('2', "二");
  12783. Number.Add('3', "三");
  12784. Number.Add('4', "四");
  12785. Number.Add('5', "五");
  12786. Number.Add('6', "六");
  12787. Number.Add('7', "七");
  12788. Number.Add('8', "八");
  12789. Number.Add('9', "九");
  12790. string stringNumberVal = string.Empty;
  12791. for (int i = 0; i < numberval.Length; i++)
  12792. {
  12793. if (i == 0)
  12794. {
  12795. stringNumberVal += Number[numberval[i]];
  12796. }
  12797. else if (i >= 1)
  12798. {
  12799. if (numberval[i] == '0')
  12800. {
  12801. stringNumberVal = "十";
  12802. }
  12803. else
  12804. {
  12805. stringNumberVal += "十" + Number[numberval[i]];
  12806. }
  12807. }
  12808. }
  12809. return stringNumberVal;
  12810. }
  12811. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  12812. {
  12813. //获取table中的某个单元格,从0开始
  12814. Cell lshCell = table.Rows[rows].Cells[cells];
  12815. //将单元格中段落移除
  12816. foreach (Node item in lshCell.Paragraphs)
  12817. {
  12818. lshCell.Paragraphs.Remove(item);
  12819. }
  12820. if (val.Contains("\r\n"))
  12821. {
  12822. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  12823. foreach (var item in spArr)
  12824. {
  12825. //新建一个段落
  12826. Paragraph p = new Paragraph(doc);
  12827. var r = new Run(doc, item);
  12828. //把设置的值赋给之前新建的段落
  12829. p.AppendChild(r);
  12830. //将此段落加到单元格内
  12831. lshCell.AppendChild(p);
  12832. }
  12833. }
  12834. else
  12835. {
  12836. //新建一个段落
  12837. Paragraph p = new Paragraph(doc);
  12838. var r = new Run(doc, val);
  12839. //把设置的值赋给之前新建的段落
  12840. p.AppendChild(r);
  12841. //将此段落加到单元格内
  12842. lshCell.AppendChild(p);
  12843. }
  12844. }
  12845. [HttpPost]
  12846. public async Task<IActionResult> ServerHttp(string paramStr)
  12847. {
  12848. paramStr = paramStr.TrimEnd('\'');
  12849. paramStr = paramStr.TrimStart('\'');
  12850. JsonView jw = JsonView(false);
  12851. JObject param = JObject.Parse(paramStr);
  12852. if (!param.ContainsKey("url"))
  12853. {
  12854. jw.Msg = "url null";
  12855. return Ok(jw);
  12856. }
  12857. string url = param["url"]!.ToString();
  12858. var methon = "get";
  12859. Dictionary<string, string> bodyValues = null;
  12860. Dictionary<string, string> headValues = null;
  12861. if (param.ContainsKey("methon"))
  12862. {
  12863. methon = param["methon"]!.ToString();
  12864. }
  12865. if (param.ContainsKey("header"))
  12866. {
  12867. var header = param["header"]!.ToString();
  12868. JObject headerJobject = JObject.Parse(header);
  12869. headValues = new Dictionary<string, string>();
  12870. foreach (JProperty item in headerJobject.Properties())
  12871. {
  12872. var value = item.Value.ToString();
  12873. var head = item.Path;
  12874. headValues.Add(head, value);
  12875. }
  12876. }
  12877. if (param.ContainsKey("body"))
  12878. {
  12879. var body = param["body"]!.ToString();
  12880. bodyValues = new Dictionary<string, string>();
  12881. JObject bodyJobject = JObject.Parse(body);
  12882. foreach (JProperty item in bodyJobject.Properties())
  12883. {
  12884. var value = item.Value.ToString();
  12885. var head = item.Path;
  12886. bodyValues.Add(head, value);
  12887. }
  12888. }
  12889. HttpClient client = new HttpClient();
  12890. string responseString = string.Empty;
  12891. if (param.ContainsKey("isJson"))
  12892. {
  12893. }
  12894. if (headValues != null)
  12895. {
  12896. foreach (var item in headValues.Keys)
  12897. {
  12898. client.DefaultRequestHeaders.Add(item, headValues[item]);
  12899. }
  12900. }
  12901. try
  12902. {
  12903. if (methon == "get")
  12904. {
  12905. responseString = await client.GetStringAsync(url);
  12906. }
  12907. else if (methon == "post")
  12908. {
  12909. if (bodyValues == null)
  12910. {
  12911. jw.Msg = "methon post body null";
  12912. return Ok(jw);
  12913. }
  12914. // 数据转化为 key=val 格式
  12915. var content = new FormUrlEncodedContent(bodyValues);
  12916. var response = await client.PostAsync(url, content);
  12917. // 获取数据
  12918. responseString = await response.Content.ReadAsStringAsync();
  12919. }
  12920. else
  12921. {
  12922. jw.Msg = "methon error";
  12923. }
  12924. jw = JsonView(true, "success", responseString);
  12925. }
  12926. catch (Exception ex)
  12927. {
  12928. jw.Msg = "error " + ex.Message;
  12929. jw.Data = ex.StackTrace;
  12930. }
  12931. finally
  12932. {
  12933. client.Dispose();
  12934. }
  12935. return Ok(jw);
  12936. }
  12937. #endregion
  12938. // /// <summary>
  12939. // ///
  12940. // /// </summary>
  12941. // /// <param name="_dto"></param>
  12942. // /// <returns></returns>
  12943. // [HttpPost]
  12944. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12945. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12946. // {
  12947. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12948. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  12949. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  12950. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12951. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  12952. // dic_psg.Add("客人", 974);
  12953. // dic_psg.Add("司机", 975);
  12954. // dic_psg.Add("导游", 976);
  12955. // dic_psg.Add("公司内部人员", 977);
  12956. // dic_psg.Add("司机/导游/公司内部人员", 978);
  12957. // foreach (var item in list_visa)
  12958. // {
  12959. // Grp_VisaInfo temp = new Grp_VisaInfo();
  12960. // temp.Id = item.Id;
  12961. // temp.DIId = item.DIId;
  12962. // temp.VisaClient = item.VisaClient;
  12963. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  12964. // temp.VisaCurrency = item.VisaCurrency;
  12965. // temp.IsThird = item.IsThird;
  12966. // if (dic_psg.ContainsKey(item.PassengerType))
  12967. // {
  12968. // temp.PassengerType = dic_psg[item.PassengerType];
  12969. // }
  12970. // else {
  12971. // temp.PassengerType = -1;
  12972. // }
  12973. // temp.VisaNumber = item.VisaNumber;
  12974. // temp.VisaFreeNumber = item.VisaFreeNumber;
  12975. // temp.CreateUserId = item.Operators;
  12976. // DateTime dt_ct;
  12977. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  12978. // if (b_ct)
  12979. // {
  12980. // temp.CreateTime = dt_ct;
  12981. // }
  12982. // else
  12983. // {
  12984. // temp.CreateTime = DateTime.Now;
  12985. // }
  12986. // temp.DeleteTime = "";
  12987. // temp.DeleteUserId = 0;
  12988. // temp.Remark = item.Remark;
  12989. // if (string.IsNullOrEmpty(temp.Remark)) {
  12990. // temp.Remark = "";
  12991. // }
  12992. // temp.IsDel = item.IsDel;
  12993. // temp.VisaDescription = item.VisaAttachment;
  12994. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  12995. //([Id]
  12996. // ,[DIId]
  12997. // ,[VisaClient]
  12998. // ,[VisaPrice]
  12999. // ,[VisaCurrency]
  13000. // ,[IsThird]
  13001. // ,[PassengerType]
  13002. // ,[VisaNumber]
  13003. // ,[VisaFreeNumber]
  13004. // ,[CreateUserId]
  13005. // ,[CreateTime]
  13006. // ,[DeleteTime]
  13007. // ,[DeleteUserId]
  13008. // ,[Remark]
  13009. // ,[IsDel]
  13010. // ,[visaDescription])
  13011. // VALUES
  13012. // ({0},{1},'{2}',{3},{4}
  13013. //,{5},{6},{7},{8},{9}
  13014. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  13015. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  13016. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  13017. //);
  13018. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  13019. // }
  13020. // return Ok(JsonView(true, "操作成功!"));
  13021. // }
  13022. /// <summary>
  13023. /// 123132123
  13024. /// </summary>
  13025. /// <param name="_dto"></param>
  13026. /// <returns></returns>
  13027. [HttpPost]
  13028. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  13029. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  13030. {
  13031. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  13032. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  13033. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  13034. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  13035. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  13036. dicDetail.Add(789, 1034);
  13037. dicDetail.Add(790, 1035);
  13038. dicDetail.Add(791, 1036);
  13039. dicDetail.Add(792, 1037);
  13040. dicDetail.Add(793, 1038);
  13041. dicDetail.Add(794, 1039);
  13042. dicDetail.Add(795, 1040);
  13043. dicDetail.Add(796, 1041);
  13044. dicDetail.Add(797, 1042);
  13045. dicDetail.Add(798, 1043);
  13046. dicDetail.Add(801, 1044);
  13047. dicDetail.Add(802, 1045);
  13048. dicDetail.Add(803, 1046);
  13049. Dictionary<int, int> dic = new Dictionary<int, int>();
  13050. dic.Add(806, 1027);
  13051. dic.Add(807, 1028);
  13052. dic.Add(808, 1029);
  13053. dic.Add(809, 1030);
  13054. dic.Add(810, 1031);
  13055. dic.Add(811, 1032);
  13056. dic.Add(812, 1033);
  13057. foreach (var item in list_visa)
  13058. {
  13059. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  13060. temp.Coefficient = item.coefficient;
  13061. DateTime dtCrt;
  13062. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  13063. if (b1)
  13064. {
  13065. temp.CreateTime = dtCrt;
  13066. }
  13067. else
  13068. {
  13069. temp.CreateTime = DateTime.Now;
  13070. }
  13071. temp.CreateUserId = item.Operators;
  13072. temp.DeleteTime = "";
  13073. temp.DeleteUserId = 0;
  13074. temp.DiId = int.Parse(item.DIID);
  13075. temp.FilePath = item.FilePath;
  13076. temp.IsDel = item.IsDel;
  13077. temp.Price = item.Price;
  13078. temp.PriceCount = 1;
  13079. temp.PriceCurrency = item.Currency;
  13080. int detailId = 0;
  13081. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  13082. {
  13083. detailId = dicDetail[item.PriceTypeDetail];
  13084. }
  13085. temp.PriceDetailType = detailId;
  13086. temp.PriceDt = DateTime.Now;
  13087. temp.PriceName = item.PriceName;
  13088. temp.PriceSum = item.Price;
  13089. int tid = 0;
  13090. if (dic.ContainsKey(item.PriceType))
  13091. {
  13092. tid = dic[item.PriceType];
  13093. }
  13094. temp.PriceType = tid;
  13095. temp.Remark = item.Remark;
  13096. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  13097. }
  13098. return Ok(JsonView(true, "操作成功!"));
  13099. }
  13100. }
  13101. }