GroupsController.cs 711 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806148071480814809148101481114812148131481414815148161481714818148191482014821148221482314824148251482614827148281482914830148311483214833148341483514836148371483814839148401484114842148431484414845148461484714848148491485014851148521485314854148551485614857148581485914860148611486214863148641486514866148671486814869148701487114872148731487414875148761487714878148791488014881148821488314884148851488614887148881488914890148911489214893148941489514896148971489814899149001490114902149031490414905149061490714908149091491014911149121491314914149151491614917149181491914920149211492214923149241492514926149271492814929149301493114932149331493414935149361493714938149391494014941149421494314944149451494614947149481494914950149511495214953149541495514956149571495814959149601496114962149631496414965149661496714968149691497014971149721497314974149751497614977149781497914980149811498214983149841498514986149871498814989149901499114992149931499414995149961499714998149991500015001150021500315004150051500615007150081500915010150111501215013150141501515016150171501815019150201502115022150231502415025150261502715028150291503015031150321503315034150351503615037150381503915040150411504215043150441504515046150471504815049150501505115052150531505415055150561505715058150591506015061150621506315064150651506615067150681506915070150711507215073150741507515076150771507815079150801508115082150831508415085150861508715088150891509015091150921509315094150951509615097150981509915100151011510215103151041510515106151071510815109151101511115112151131511415115151161511715118151191512015121151221512315124151251512615127151281512915130151311513215133151341513515136151371513815139151401514115142151431514415145151461514715148151491515015151151521515315154151551515615157151581515915160151611516215163151641516515166151671516815169151701517115172151731517415175151761517715178151791518015181151821518315184151851518615187151881518915190151911519215193151941519515196151971519815199152001520115202152031520415205152061520715208152091521015211152121521315214152151521615217152181521915220152211522215223152241522515226152271522815229152301523115232152331523415235152361523715238152391524015241152421524315244152451524615247152481524915250152511525215253152541525515256152571525815259152601526115262152631526415265152661526715268152691527015271152721527315274152751527615277152781527915280152811528215283152841528515286152871528815289152901529115292152931529415295152961529715298152991530015301153021530315304153051530615307
  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.Financial;
  21. using OASystem.Domain.Dtos.Groups;
  22. using OASystem.Domain.Entities.Customer;
  23. using OASystem.Domain.Entities.Financial;
  24. using OASystem.Domain.Entities.Groups;
  25. using OASystem.Domain.ViewModels.Groups;
  26. using OASystem.Infrastructure.Repositories.Financial;
  27. using OASystem.Infrastructure.Repositories.Groups;
  28. using Quartz.Util;
  29. using SqlSugar;
  30. using SqlSugar.Extensions;
  31. using System.Collections;
  32. using System.Data;
  33. using System.Diagnostics;
  34. using System.Globalization;
  35. using System.IO;
  36. using System.Reflection.PortableExecutable;
  37. using Ubiety.Dns.Core;
  38. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  39. using Bookmark = Aspose.Words.Bookmark;
  40. using Cell = Aspose.Words.Tables.Cell;
  41. using Table = Aspose.Words.Tables.Table;
  42. namespace OASystem.API.Controllers
  43. {
  44. /// <summary>
  45. /// 团组相关
  46. /// </summary>
  47. //[Authorize]
  48. [Route("api/[controller]/[action]")]
  49. public class GroupsController : ControllerBase
  50. {
  51. private readonly ILogger<GroupsController> _logger;
  52. private readonly GrpScheduleRepository _grpScheduleRep;
  53. private readonly IMapper _mapper;
  54. private readonly DelegationInfoRepository _groupRepository;
  55. private readonly TaskAssignmentRepository _taskAssignmentRep;
  56. private readonly AirTicketResRepository _airTicketResRep;
  57. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  58. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  59. private readonly DelegationEnDataRepository _delegationEnDataRep;
  60. private readonly DelegationVisaRepository _delegationVisaRep;
  61. private readonly VisaPriceRepository _visaPriceRep;
  62. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  63. private readonly HotelPriceRepository _hotelPriceRep;
  64. private readonly CustomersRepository _customersRep;
  65. private readonly MessageRepository _message;
  66. private readonly SqlSugarClient _sqlSugar;
  67. private readonly TourClientListRepository _tourClientListRep;
  68. private readonly TeamRateRepository _teamRateRep;
  69. #region 成本相关
  70. private readonly CheckBoxsRepository _checkBoxs;
  71. private readonly GroupCostRepository _GroupCostRepository;
  72. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  73. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  74. #endregion
  75. private readonly SetDataRepository _setDataRep;
  76. private string url;
  77. private string path;
  78. private readonly EnterExitCostRepository _enterExitCostRep;
  79. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  80. private readonly UsersRepository _usersRep;
  81. private readonly IJuHeApiService _juHeApi;
  82. private readonly InvertedListRepository _invertedListRep;
  83. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  84. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  85. private readonly ThreeCodeRepository _threeCodeRepository;
  86. private readonly HotelInquiryRepository _hotelInquiryRep;
  87. private readonly FeeAuditRepository _feeAuditRep;
  88. private readonly VisaCommissionRepository _visaCommissionRep;
  89. private readonly ForeignReceivablesRepository _ffrRep; //对外收款账单仓库
  90. public GroupsController(ILogger<GroupsController> logger, IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  91. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  92. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  93. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  94. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  95. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  96. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  97. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  98. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep, VisaCommissionRepository visaCommissionRep, ForeignReceivablesRepository ffrRep)
  99. {
  100. _logger = logger;
  101. _mapper = mapper;
  102. _grpScheduleRep = grpScheduleRep;
  103. _groupRepository = groupRepository;
  104. _taskAssignmentRep = taskAssignmentRep;
  105. _airTicketResRep = airTicketResRep;
  106. _sqlSugar = sqlSugar;
  107. url = AppSettingsHelper.Get("ExcelBaseUrl");
  108. path = AppSettingsHelper.Get("ExcelBasePath");
  109. if (!System.IO.Directory.Exists(path))
  110. {
  111. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  112. }
  113. _decreasePaymentsRep = decreasePaymentsRep;
  114. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  115. _delegationEnDataRep = delegationEnDataRep;
  116. _enterExitCostRep = enterExitCostRep;
  117. _delegationVisaRep = delegationVisaRep;
  118. _message = message;
  119. _visaPriceRep = visaPriceRep;
  120. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  121. _checkBoxs = checkBoxs;
  122. _GroupCostRepository = GroupCostRepository;
  123. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  124. _GroupCostParameterRepository = GroupCostParameterRepository;
  125. _hotelPriceRep = hotelPriceRep;
  126. _customersRep = customersRep;
  127. _setDataRep = setDataRep;
  128. _tourClientListRep = tourClientListRep;
  129. _teamRateRep = teamRateRep;
  130. _hubContext = hubContext;
  131. _usersRep = usersRep;
  132. _juHeApi = juHeApi;
  133. _invertedListRep = invertedListRep;
  134. _visaFeeInfoRep = visaFeeInfoRep;
  135. _ticketBlackCodeRep = ticketBlackCodeRep;
  136. _hotelInquiryRep = hotelInquiryRep;
  137. _threeCodeRepository = threeCodeRepository;
  138. _feeAuditRep = feeAuditRep;
  139. _visaCommissionRep = visaCommissionRep;
  140. _ffrRep = ffrRep;
  141. }
  142. #region 流程管控
  143. /// <summary>
  144. /// 获取团组流程管控信息
  145. /// </summary>
  146. /// <param name="paras">参数Json字符串</param>
  147. /// <returns></returns>
  148. [HttpPost]
  149. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  150. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  151. {
  152. if (string.IsNullOrEmpty(_jsonDto.Paras))
  153. {
  154. return Ok(JsonView(false, "参数为空"));
  155. }
  156. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  157. if (_ScheduleDto != null)
  158. {
  159. if (_ScheduleDto.SearchType == 2)//获取列表
  160. {
  161. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  162. return Ok(JsonView(_grpScheduleViewList));
  163. }
  164. else//获取对象
  165. {
  166. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  167. if (_grpScheduleView != null)
  168. {
  169. return Ok(JsonView(_grpScheduleView));
  170. }
  171. }
  172. }
  173. else
  174. {
  175. return Ok(JsonView(false, "参数反序列化失败"));
  176. }
  177. return Ok(JsonView(false, "暂无数据!"));
  178. }
  179. /// <summary>
  180. /// 修改团组流程管控详细表数据
  181. /// </summary>
  182. /// <param name="paras"></param>
  183. /// <returns></returns>
  184. [HttpPost]
  185. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  186. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  187. {
  188. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  189. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  190. .SetColumns(it => it.Duty == _detail.Duty)
  191. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  192. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  193. .SetColumns(it => it.JobContent == _detail.JobContent)
  194. .SetColumns(it => it.Remark == _detail.Remark)
  195. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  196. .Where(s => s.Id == dto.Id)
  197. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  198. .ExecuteCommandAsync();
  199. if (result > 0)
  200. {
  201. return Ok(JsonView(true, "保存成功!"));
  202. }
  203. return Ok(JsonView(false, "保存失败!"));
  204. }
  205. /// <summary>
  206. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  207. /// </summary>
  208. /// <param name="dto"></param>
  209. /// <returns></returns>
  210. [HttpPost]
  211. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  212. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  213. {
  214. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  215. _detail.IsDel = 1;
  216. _detail.DeleteUserId = dto.Duty;
  217. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  218. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  219. .SetColumns(it => it.IsDel == _detail.IsDel)
  220. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  221. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  222. .Where(it => it.Id == dto.Id)
  223. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  224. //.WhereColumns(s => s.Id == dto.Id)
  225. .ExecuteCommandAsync();
  226. if (result > 0)
  227. {
  228. return Ok(JsonView(true, "删除成功!"));
  229. }
  230. return Ok(JsonView(false, "删除失败!"));
  231. }
  232. /// <summary>
  233. /// 增加团组流程管控详细表数据
  234. /// </summary>
  235. /// <param name="dto"></param>
  236. /// <returns></returns>
  237. [HttpPost]
  238. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  239. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  240. {
  241. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  242. if (DateTime.Now < _detail.ExpectBeginDt)
  243. {
  244. _detail.StepStatus = 0;
  245. }
  246. else
  247. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  248. _detail.StepStatus = 1;
  249. }
  250. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  251. if (result > 0)
  252. {
  253. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  254. return Ok(JsonView(true, "添加成功!", _result));
  255. }
  256. return Ok(JsonView(false, "添加失败!"));
  257. }
  258. #endregion
  259. #region 团组基本信息
  260. /// <summary>
  261. /// 接团信息列表
  262. /// </summary>
  263. /// <param name="dto">团组列表请求dto</param>
  264. /// <returns></returns>
  265. [HttpPost]
  266. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  267. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  268. {
  269. var groupData = await _groupRepository.GetGroupList(dto);
  270. if (groupData.Code != 0)
  271. {
  272. return Ok(JsonView(false, groupData.Msg));
  273. }
  274. return Ok(JsonView(groupData.Data));
  275. }
  276. /// <summary>
  277. /// 分页查询团组列表
  278. /// </summary>
  279. /// <param name="dto"></param>
  280. /// <returns></returns>
  281. [HttpPost]
  282. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  283. public async Task<IActionResult> QueryGroupListOffset(QueryGroupListOffsetDto dto)
  284. {
  285. var watch = new Stopwatch();
  286. watch.Start();
  287. RefAsync<int> total = 0;
  288. var countyDatas = await _sqlSugar.Queryable<Grp_DelegationInfo>()
  289. .Where((di) => di.IsDel == 0 && !string.IsNullOrWhiteSpace(di.TeamName))
  290. .WhereIF(!string.IsNullOrEmpty(dto.Search), (di) => di.TeamName.Contains(dto.Search))
  291. .OrderBy((di) => new { id = SqlFunc.Desc(di.Id) })
  292. .Select((di) => new { id = di.Id, name = di.TeamName, di.ClientName , di.VisitPNumber , di.VisitCountry, di.VisitDays, di.VisitStartDate , di.VisitEndDate, di.TourCode })
  293. .Distinct()
  294. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  295. watch.Stop();
  296. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  297. }
  298. /// <summary>
  299. /// 接团信息列表 Page
  300. /// </summary>
  301. /// <param name="dto">团组列表请求dto</param>
  302. /// <returns></returns>
  303. [HttpPost]
  304. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  305. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  306. {
  307. #region 参数验证
  308. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  309. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  310. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  311. #region 页面操作权限验证
  312. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  313. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  314. #endregion
  315. #endregion
  316. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  317. {
  318. string sqlWhere = string.Empty;
  319. if (dto.IsSure == 0) //未完成
  320. {
  321. sqlWhere += string.Format(@" And IsSure = 0");
  322. }
  323. else if (dto.IsSure == 1) //已完成
  324. {
  325. sqlWhere += string.Format(@" And IsSure = 1");
  326. }
  327. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  328. {
  329. string tj = dto.SearchCriteria;
  330. 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}%')",
  331. tj, tj, tj, tj, tj);
  332. }
  333. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  334. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  335. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  336. JietuanOperator,IsSure,CreateTime,IsBid
  337. From (
  338. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  339. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  340. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  341. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  342. su.CnName JietuanOperator,IsSure,gdi.CreateTime,gdi.IsBid
  343. From Grp_DelegationInfo gdi
  344. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  345. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  346. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  347. Where gdi.IsDel = 0 {0}
  348. ) temp", sqlWhere);
  349. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  350. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  351. #region 处理所属部门
  352. /*
  353. * 1.sq 和 gyy 等显示 市场部
  354. * 2.王鸽和主管及张总还有管理员号统一国交部
  355. * 2-1. 4 管理员 ,21 张海麟
  356. */
  357. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  358. List<int> userIds1 = new List<int>() { 4, 21 };
  359. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  360. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  361. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  362. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  363. .ToList();
  364. foreach (var item in _DelegationList)
  365. {
  366. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  367. }
  368. #endregion
  369. var _view = new
  370. {
  371. PageFuncAuth = pageFunAuthView,
  372. Data = _DelegationList
  373. };
  374. return Ok(JsonView(true, "查询成功!", _view, total));
  375. }
  376. else
  377. {
  378. return Ok(JsonView(false, "查询失败"));
  379. }
  380. }
  381. /// <summary>
  382. /// 团组列表
  383. /// </summary>
  384. /// <returns></returns>
  385. [HttpPost]
  386. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  387. {
  388. #region 参数验证
  389. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  390. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  391. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  392. #region 页面操作权限验证
  393. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  394. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  395. #endregion
  396. #endregion
  397. if (dto.PortType != 1 && dto.PortType != 2)
  398. {
  399. return Ok(JsonView(false, "查询失败!"));
  400. }
  401. string orderbyStr = "order by gdi.CreateTime Desc";
  402. string sqlWhere = string.Empty;
  403. if (dto.IsSure == 0) //未完成
  404. {
  405. sqlWhere += string.Format(@" And IsSure = 0");
  406. }
  407. else if (dto.IsSure == 1) //已完成
  408. {
  409. sqlWhere += string.Format(@" And IsSure = 1");
  410. }
  411. //团组类型
  412. if (dto.TeamDid > 0)
  413. {
  414. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  415. }
  416. //团组名称
  417. if (!string.IsNullOrEmpty(dto.TeamName))
  418. {
  419. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  420. }
  421. //客户名称
  422. if (!string.IsNullOrEmpty(dto.ClientName))
  423. {
  424. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  425. }
  426. //客户单位
  427. if (!string.IsNullOrEmpty(dto.ClientUnit))
  428. {
  429. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  430. }
  431. //出访时间
  432. if (!string.IsNullOrEmpty(dto.visitDataTime))
  433. {
  434. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  435. orderbyStr = "order by gdi.VisitDate";
  436. }
  437. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  438. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  439. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  440. JietuanOperator,IsSure,CreateTime
  441. From (
  442. Select row_number() over({0}) as Row_Number,
  443. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  444. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  445. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  446. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  447. From Grp_DelegationInfo gdi
  448. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  449. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  450. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  451. Where gdi.IsDel = 0 {1}
  452. ) temp ", orderbyStr, sqlWhere);
  453. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  454. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  455. #region 处理所属部门
  456. /*
  457. * 1.sq 和 gyy 等显示 市场部
  458. * 2.王鸽和主管及张总还有管理员号统一国交部
  459. * 2-1. 4 管理员 ,21 张海麟
  460. */
  461. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  462. List<int> userIds1 = new List<int>() { 4, 21 };
  463. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  464. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  465. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  466. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  467. .ToList();
  468. foreach (var item in _DelegationList)
  469. {
  470. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  471. }
  472. #endregion
  473. var _view = new
  474. {
  475. PageFuncAuth = pageFunAuthView,
  476. Data = _DelegationList
  477. };
  478. return Ok(JsonView(true, "查询成功!", _view, total));
  479. }
  480. /// <summary>
  481. /// 接团信息详情
  482. /// </summary>
  483. /// <param name="dto">团组info请求dto</param>
  484. /// <returns></returns>
  485. [HttpPost]
  486. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  487. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  488. {
  489. var groupData = await _groupRepository.GetGroupInfo(dto);
  490. if (groupData.Code != 0)
  491. {
  492. return Ok(JsonView(false, groupData.Msg));
  493. }
  494. return Ok(JsonView(groupData.Data));
  495. }
  496. /// <summary>
  497. /// 接团信息 编辑添加
  498. /// 基础信息数据源
  499. /// </summary>
  500. /// <param name="dto"></param>
  501. /// <returns></returns>
  502. [HttpPost]
  503. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  504. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  505. {
  506. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  507. if (groupData.Code != 0)
  508. {
  509. return Ok(JsonView(false, groupData.Msg));
  510. }
  511. return Ok(JsonView(groupData.Data));
  512. }
  513. /// <summary>
  514. /// 接团信息 操作(增改)
  515. /// </summary>
  516. /// <param name="dto"></param>
  517. /// <returns></returns>
  518. [HttpPost]
  519. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  520. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  521. {
  522. try
  523. {
  524. decimal ffrPrice = 0.00M;
  525. DateTime? visitDt = null;
  526. if (dto.Status == 2)
  527. {
  528. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(x => x.Id == dto.Id && x.IsDel == 0);
  529. if (groupInfo != null)
  530. {
  531. ffrPrice = groupInfo.PaymentMoney;
  532. visitDt = groupInfo.VisitDate.AddDays(-groupInfo.PayDay);
  533. }
  534. }
  535. var groupData = await _groupRepository.GroupOperation(dto);
  536. if (groupData.Code != 0)
  537. {
  538. return Ok(JsonView(false, groupData.Msg));
  539. }
  540. int diId = 0;
  541. //添加时 默认加入团组汇率
  542. if (dto.Status == 1) //添加
  543. {
  544. diId = groupData.Data;
  545. //添加默认币种
  546. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  547. //默认分配权限
  548. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  549. //消息提示 王鸽 主管号
  550. List<int> _managerIds = new List<int>() { 22, 32 };
  551. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  552. if (userIds.Count > 0)
  553. {
  554. userIds.Add(208);
  555. //创建团组管控
  556. GroupStepForDelegation.CreateWorkStep(diId);
  557. //发送消息
  558. string groupName = dto.TeamName;
  559. string createGroupUser = string.Empty;
  560. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  561. if (userInfo != null) createGroupUser = userInfo.CnName;
  562. string title = $"系统通知";
  563. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  564. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  565. }
  566. //默认创建倒推表
  567. await _invertedListRep._Create(dto.UserId, diId);
  568. }
  569. else if (dto.Status == 2)
  570. {
  571. diId = dto.Id;
  572. }
  573. #region 团组操作默认添加/修改收款账单
  574. if (dto.PayDay > 0 && dto.PaymentMoney > 0)
  575. {
  576. var ffrInfo = await _sqlSugar.Queryable<Fin_ForeignReceivables>()
  577. .Where(x => x.IsDel == 0 &&
  578. x.Diid == diId &&
  579. x.Remark.Equals("预付款")
  580. )
  581. .WhereIF(ffrPrice > 0 , x => x.ItemSumPrice == ffrPrice)
  582. .WhereIF(visitDt != null, x=> x.CreateTime == visitDt)
  583. .FirstAsync();
  584. ffrInfo = new Fin_ForeignReceivables()
  585. {
  586. Diid = diId,
  587. PriceName = dto.ClientUnit,
  588. Price = dto.PaymentMoney,
  589. Count = 1,
  590. Unit = $"元",
  591. ItemSumPrice = dto.PaymentMoney,
  592. Rate = 1.0000M,
  593. Currency = 836,
  594. AddingWay = 0,
  595. CreateUserId = dto.UserId,
  596. CreateTime = Convert.ToDateTime(dto.VisitDate).AddDays(-dto.PayDay),
  597. Remark = $"预付款"
  598. };
  599. if (ffrInfo == null) //Add
  600. {
  601. await _sqlSugar.Insertable(ffrInfo).ExecuteCommandAsync();
  602. }
  603. else //修改
  604. {
  605. await _sqlSugar.Updateable(ffrInfo)
  606. .UpdateColumns(x => new
  607. {
  608. x.PriceName,
  609. x.Price,
  610. x.ItemSumPrice,
  611. x.CreateTime,
  612. x.CreateUserId
  613. })
  614. .WhereColumns(x => x.Id)
  615. .ExecuteCommandAsync();
  616. }
  617. }
  618. #endregion
  619. return Ok(JsonView(true, "操作成功!", diId));
  620. }
  621. catch (Exception ex)
  622. {
  623. Logs("[response]" + JsonConvert.SerializeObject(dto));
  624. Logs(ex.Message);
  625. return Ok(JsonView(false, ex.Message));
  626. }
  627. }
  628. /// <summary>
  629. /// 接团流程操作(增改)
  630. /// 安卓端使用 建团时添加客户名单
  631. /// </summary>
  632. /// <param name="dto"></param>
  633. /// <returns></returns>
  634. [HttpPost]
  635. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  636. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  637. {
  638. try
  639. {
  640. #region 参数验证
  641. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  642. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  643. #region 页面操作权限验证
  644. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  645. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  646. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  647. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  648. #endregion
  649. #endregion
  650. _sqlSugar.BeginTran();
  651. decimal ffrPrice = 0.00M;
  652. DateTime? visitDt = null;
  653. if (dto.Status == 2)
  654. {
  655. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(x => x.Id == dto.Id && x.IsDel == 0);
  656. if (groupInfo != null)
  657. {
  658. ffrPrice = groupInfo.PaymentMoney;
  659. visitDt = groupInfo.VisitDate.AddDays(-groupInfo.PayDay);
  660. }
  661. }
  662. var _dto = new GroupOperationDto();
  663. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  664. var groupData = await _groupRepository.GroupOperation(_dto);
  665. if (groupData.Code != 0)
  666. {
  667. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  668. }
  669. int diId = 0;
  670. //添加时 默认加入团组汇率
  671. if (dto.Status == 1) //添加
  672. {
  673. diId = groupData.Data;
  674. //添加默认币种
  675. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  676. //默认分配权限
  677. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  678. //消息提示 王鸽 主管号
  679. List<int> _managerIds = new List<int>() { 22, 32 };
  680. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  681. if (userIds.Count > 0)
  682. {
  683. userIds.Add(208);
  684. //创建团组管控
  685. GroupStepForDelegation.CreateWorkStep(diId);
  686. //发送消息
  687. string groupName = dto.TeamName;
  688. string createGroupUser = string.Empty;
  689. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  690. if (userInfo != null) createGroupUser = userInfo.CnName;
  691. string title = $"系统通知";
  692. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  693. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  694. }
  695. //默认创建倒推表
  696. await _invertedListRep._Create(dto.UserId, diId);
  697. }
  698. if (dto.Status == 2)
  699. {
  700. diId = dto.Id;
  701. if (diId == 0)
  702. {
  703. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  704. }
  705. }
  706. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  707. if (viewData.Code != 0)
  708. {
  709. _sqlSugar.RollbackTran();
  710. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  711. }
  712. #region 团组操作默认添加/修改收款账单
  713. if (dto.PayDay > 0 && dto.PaymentMoney > 0)
  714. {
  715. var ffrInfo = await _sqlSugar.Queryable<Fin_ForeignReceivables>()
  716. .Where(x => x.IsDel == 0 &&
  717. x.Diid == diId &&
  718. x.Remark.Equals("预付款")
  719. )
  720. .WhereIF(ffrPrice > 0, x => x.ItemSumPrice == ffrPrice)
  721. .WhereIF(visitDt != null, x => x.CreateTime == visitDt)
  722. .FirstAsync();
  723. ffrInfo.Diid = diId;
  724. ffrInfo.PriceName = dto.ClientUnit;
  725. ffrInfo.Price = dto.PaymentMoney;
  726. ffrInfo.Count = 1;
  727. ffrInfo.Unit = $"元";
  728. ffrInfo.ItemSumPrice = dto.PaymentMoney;
  729. ffrInfo.Rate = 1.0000M;
  730. ffrInfo.Currency = 836;
  731. ffrInfo.AddingWay = 0;
  732. ffrInfo.CreateUserId = dto.UserId;
  733. ffrInfo.CreateTime = Convert.ToDateTime(dto.VisitDate).AddDays(-dto.PayDay);
  734. ffrInfo.Remark = $"预付款";
  735. if (ffrInfo == null) //Add
  736. {
  737. await _sqlSugar.Insertable(ffrInfo).ExecuteCommandAsync();
  738. }
  739. else //修改
  740. {
  741. await _sqlSugar.Updateable<Fin_ForeignReceivables>(ffrInfo)
  742. .UpdateColumns(x => new
  743. {
  744. x.PriceName,
  745. x.Price,
  746. x.ItemSumPrice,
  747. x.CreateTime,
  748. x.CreateUserId
  749. })
  750. .WhereColumns(x => x.Id)
  751. .ExecuteCommandAsync();
  752. }
  753. }
  754. #endregion
  755. _sqlSugar.CommitTran();
  756. return Ok(JsonView(true, "添加成功"));
  757. }
  758. catch (Exception ex)
  759. {
  760. _sqlSugar.RollbackTran();
  761. return Ok(JsonView(false, ex.Message));
  762. }
  763. }
  764. /// <summary>
  765. /// 接团信息 操作(删除)
  766. /// </summary>
  767. /// <param name="dto"></param>
  768. /// <returns></returns>
  769. [HttpPost]
  770. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  771. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  772. {
  773. try
  774. {
  775. var groupData = await _groupRepository.GroupDel(dto);
  776. if (groupData.Code != 0)
  777. {
  778. return Ok(JsonView(false, groupData.Msg));
  779. }
  780. return Ok(JsonView(true));
  781. }
  782. catch (Exception ex)
  783. {
  784. Logs("[response]" + JsonConvert.SerializeObject(dto));
  785. Logs(ex.Message);
  786. return Ok(JsonView(false, ex.Message));
  787. }
  788. }
  789. /// <summary>
  790. /// 获取团组销售报价号
  791. /// 团组添加时 使用
  792. /// </summary>
  793. /// <returns></returns>
  794. [HttpPost]
  795. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  796. public async Task<IActionResult> GetGroupSalesQuoteNo()
  797. {
  798. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  799. if (groupData.Code != 0)
  800. {
  801. return Ok(JsonView(false, groupData.Msg));
  802. }
  803. object salesQuoteNo = new
  804. {
  805. SalesQuoteNo = groupData.Data
  806. };
  807. return Ok(JsonView(salesQuoteNo));
  808. }
  809. /// <summary>
  810. /// 设置确认出团
  811. /// </summary>
  812. /// <param name="dto"></param>
  813. /// <returns></returns>
  814. [HttpPost]
  815. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  816. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  817. {
  818. var groupData = await _groupRepository.ConfirmationGroup(dto);
  819. if (groupData.Code != 0)
  820. {
  821. return Ok(JsonView(false, groupData.Msg));
  822. }
  823. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  824. #region OA消息推送
  825. try
  826. {
  827. string groupName = groupInfo.TeamName;
  828. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  829. List<int> userIds = new List<int>();
  830. listUser.ForEach(s => userIds.Add(s.Id));
  831. string title = $"系统通知";
  832. string content = $"团组[{groupName}]已确认出团!";
  833. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  834. }
  835. catch (Exception ex)
  836. {
  837. }
  838. #endregion
  839. #region 应用推送
  840. try
  841. {
  842. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  843. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  844. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  845. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  846. {
  847. List<string> userList = new List<string>() { users.QiyeChatUserId };
  848. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  849. }
  850. }
  851. catch (Exception ex)
  852. {
  853. }
  854. #endregion
  855. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  856. return Ok(JsonView(true, "操作成功!", groupData.Data));
  857. }
  858. /// <summary>
  859. /// 获取团组名称data And 签证国别Data
  860. /// </summary>
  861. /// <param name="dto"></param>
  862. /// <returns></returns>
  863. [HttpPost]
  864. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  865. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  866. {
  867. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  868. if (groupData.Code != 0)
  869. {
  870. return Ok(JsonView(false, groupData.Msg));
  871. }
  872. return Ok(JsonView(groupData.Data));
  873. }
  874. /// <summary>
  875. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  876. /// </summary>
  877. /// <returns></returns>
  878. [HttpPost]
  879. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  880. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  881. {
  882. try
  883. {
  884. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  885. if (groupData.Code != 0)
  886. {
  887. return Ok(JsonView(false, groupData.Msg));
  888. }
  889. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  890. }
  891. catch (Exception ex)
  892. {
  893. return Ok(JsonView(false, "程序错误!"));
  894. throw;
  895. }
  896. }
  897. /// <summary>
  898. /// 团组清单 Excel
  899. /// </summary>
  900. /// <param name="beginDt">开始时间 EG:“2024-01-01”</param>
  901. /// <param name="endDt">结束时间 EG;“2024-12-31”</param>
  902. /// <returns></returns>
  903. [HttpGet]
  904. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  905. public async Task<IActionResult> GroupListFile([FromQuery]string beginDt, [FromQuery] string endDt)
  906. {
  907. DateTime _beginDt, _endDt;
  908. bool beginBool = DateTime.TryParse($"{beginDt} 00:00:00", out _beginDt),
  909. endBool = DateTime.TryParse($"{endDt} 23:59:59", out _endDt);
  910. if (!beginBool && !endBool)
  911. {
  912. return Ok(JsonView(false, "开始或结束时间不正确!"));
  913. }
  914. string sql = string.Format(@"
  915. SELECT
  916. ROW_NUMBER,
  917. Id,
  918. SalesQuoteNo,
  919. TourCode,
  920. TeamTypeId,
  921. TeamType,
  922. TeamLevId,
  923. TeamLev,
  924. TeamName,
  925. ClientName,
  926. ClientUnit,
  927. VisitDate,
  928. VisitDays,
  929. VisitPNumber,
  930. JietuanOperatorId,
  931. JietuanOperator,
  932. IsSure,
  933. CreateTime,
  934. IsBid
  935. FROM
  936. (
  937. SELECT
  938. ROW_NUMBER() OVER(
  939. ORDER BY
  940. gdi.CreateTime Desc
  941. ) AS ROW_NUMBER,
  942. gdi.Id,
  943. SalesQuoteNo,
  944. TourCode,
  945. ssd.Id TeamTypeId,
  946. ssd.Name TeamType,
  947. ssd1.Id TeamLevId,
  948. ssd1.Name TeamLev,
  949. TeamName,
  950. ClientName,
  951. ClientUnit,
  952. VisitDate,
  953. VisitDays,
  954. VisitPNumber,
  955. JietuanOperator JietuanOperatorId,
  956. su.CnName JietuanOperator,
  957. IsSure,
  958. gdi.CreateTime,
  959. gdi.IsBid
  960. FROM
  961. Grp_DelegationInfo gdi
  962. LEFT JOIN Sys_SetData ssd ON gdi.TeamDid = ssd.Id
  963. LEFT JOIN Sys_SetData ssd1 ON gdi.TeamLevSId = ssd1.Id
  964. LEFT JOIN Sys_Users su ON gdi.JietuanOperator = su.Id
  965. WHERE
  966. gdi.IsDel = 0
  967. AND gdi.IsBid = 0
  968. AND gdi.CreateTime BETWEEN '{0}' AND '{1}'
  969. ) temp", _beginDt.ToString("yyyy-MM-dd HH:mm:ss"), _endDt.ToString("yyyy-MM-dd HH:mm:ss"));
  970. var groupList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToListAsync();
  971. #region 处理所属部门
  972. /*
  973. * 1.sq 和 gyy 等显示 市场部
  974. * 2.王鸽和主管及张总还有管理员号统一国交部
  975. * 2-1. 4 管理员 ,21 张海麟
  976. */
  977. List<int> userIds = groupList.Select(it => it.JietuanOperatorId).ToList();
  978. List<int> userIds1 = new List<int>() { 4, 21 };
  979. var userDepDatas = await _sqlSugar.Queryable<Sys_Users>()
  980. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  981. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  982. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  983. .ToListAsync();
  984. foreach (var item in groupList)
  985. {
  986. item.Department = userDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  987. }
  988. #endregion
  989. #region Excel
  990. var tempPath = AppSettingsHelper.Get("ExcelTempPath");
  991. var servicePath = AppSettingsHelper.Get("GrpFileBaseUrl");
  992. var savePath = AppSettingsHelper.Get("GrpListFileBasePath");
  993. var ftpPath = AppSettingsHelper.Get("GrpListFileFtpPath");
  994. var fileName = $"团组清单({beginDt}~{endDt}){DateTime.Now.ToString("yyyyMMddHHmmss")}.xlsx";
  995. //载入模板
  996. WorkbookDesigner designer = new WorkbookDesigner();
  997. designer.Workbook = new Workbook($"{tempPath}团组清单模板.xlsx");
  998. designer.SetDataSource("Titel", $"团组清单({beginDt}~{endDt})");
  999. DataTable dt = CommonFun.GetDataTableFromIList<DelegationListView>(groupList); ;
  1000. dt.TableName = "GroupList";
  1001. designer.SetDataSource(dt);
  1002. designer.Process();
  1003. if (!Directory.Exists(savePath))
  1004. {
  1005. Directory.CreateDirectory(savePath);
  1006. }
  1007. string serverPath = $"{savePath}{fileName}";
  1008. designer.Workbook.Save(serverPath);
  1009. string rst =$"{servicePath}{ftpPath}{fileName}";
  1010. #endregion
  1011. return Ok(JsonView(true, "操作成功!", rst));
  1012. }
  1013. #endregion
  1014. #region 团组&签证
  1015. /// <summary>
  1016. /// 根据团组Id获取签证客户信息List
  1017. /// </summary>
  1018. /// <param name="dto">请求dto</param>
  1019. /// <returns></returns>
  1020. [HttpPost]
  1021. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1022. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  1023. {
  1024. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  1025. if (groupData.Code != 0)
  1026. {
  1027. return Ok(JsonView(false, groupData.Msg));
  1028. }
  1029. return Ok(JsonView(groupData.Data));
  1030. }
  1031. /// <summary>
  1032. /// IOS获取团组签证拍照上传进度01(团组列表)
  1033. /// </summary>
  1034. /// <param name="dto">请求dto</param>
  1035. /// <returns></returns>
  1036. [HttpPost]
  1037. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1038. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  1039. {
  1040. if (dto == null)
  1041. {
  1042. return Ok(JsonView(false, "参数为空"));
  1043. }
  1044. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  1045. return Ok(JsonView(visaList));
  1046. }
  1047. /// <summary>
  1048. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  1049. /// </summary>
  1050. /// <returns></returns>
  1051. [HttpPost]
  1052. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1053. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  1054. {
  1055. if (dto == null)
  1056. {
  1057. return Ok(JsonView(false, "请求错误:"));
  1058. }
  1059. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  1060. return Ok(JsonView(list));
  1061. }
  1062. /// <summary>
  1063. /// IOS获取团组签证拍照上传进度03(相册)
  1064. /// </summary>
  1065. /// <returns></returns>
  1066. [HttpPost]
  1067. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1068. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  1069. {
  1070. if (dto == null)
  1071. {
  1072. return Ok(JsonView(false, "请求错误:"));
  1073. }
  1074. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  1075. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  1076. list.ForEach(s => s.url = url);
  1077. return Ok(JsonView(list));
  1078. }
  1079. /// <summary>
  1080. /// IOS获取团组签证拍照上传进度04(图片上传)
  1081. /// </summary>
  1082. /// <param name="dto"></param>
  1083. /// <returns></returns>
  1084. [HttpPost]
  1085. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1086. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  1087. {
  1088. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  1089. //if (!string.IsNullOrEmpty(result))
  1090. //{
  1091. //}
  1092. //else {
  1093. // return Ok(JsonView(false, "上传失败"));
  1094. //}
  1095. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  1096. int sucNum = 0;
  1097. try
  1098. {
  1099. foreach (var item in dto.base64DataList)
  1100. {
  1101. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  1102. string result = decodeBase64ToImage(item, imageName);
  1103. if (!string.IsNullOrEmpty(result))
  1104. {
  1105. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  1106. pic.CreateUserId = dto.CreateUserId;
  1107. pic.PicName = imageName;
  1108. pic.PicPath = result;
  1109. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  1110. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  1111. if (insertResult > 0)
  1112. {
  1113. sucNum++;
  1114. }
  1115. }
  1116. }
  1117. }
  1118. catch (Exception ex)
  1119. {
  1120. return Ok(JsonView(false, ex.Message));
  1121. }
  1122. string msg = string.Format(@"成功上传{0}张", sucNum);
  1123. return Ok(JsonView(true, msg));
  1124. }
  1125. private string decodeBase64ToImage(string base64DataURL, string imgName)
  1126. {
  1127. string filename = "";//声明一个string类型的相对路径
  1128. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  1129. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  1130. try//会有异常抛出,try,catch一下
  1131. {
  1132. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  1133. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  1134. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  1135. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  1136. //文件名称
  1137. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  1138. //上传的文件的路径
  1139. string filePath = "";
  1140. if (!Directory.Exists(fileDir))
  1141. {
  1142. Directory.CreateDirectory(fileDir);
  1143. }
  1144. //上传的文件的路径
  1145. filePath = fileDir + filename;
  1146. //string url = HttpRuntime.AppDomainAppPath.ToString();
  1147. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  1148. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  1149. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  1150. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  1151. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  1152. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  1153. ms.Close();//关闭当前流,并释放所有与之关联的资源
  1154. bitmap.Dispose();
  1155. }
  1156. catch (Exception e)
  1157. {
  1158. string massage = e.Message;
  1159. Logs("IOS图片上传Error:" + massage);
  1160. //filename = e.Message;
  1161. }
  1162. return filename;//返回相对路径
  1163. }
  1164. /// <summary>
  1165. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  1166. /// </summary>
  1167. /// <param name="dto"></param>
  1168. /// <returns></returns>
  1169. [HttpPost]
  1170. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1171. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  1172. {
  1173. if (dto == null)
  1174. {
  1175. return Ok(JsonView(false, "请求错误:"));
  1176. }
  1177. string msg = "参数错误";
  1178. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  1179. {
  1180. try
  1181. {
  1182. //_delegationVisaRep.BeginTran();
  1183. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  1184. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  1185. .Where(s => s.Id == dto.visaProgressCustomerId)
  1186. .ExecuteCommandAsync();
  1187. if (updCount > 0 && dto.publishCode == 1)
  1188. {
  1189. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  1190. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  1191. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  1192. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  1193. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  1194. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  1195. if (groupData == null)
  1196. {
  1197. _delegationVisaRep.RollbackTran();
  1198. }
  1199. string title = string.Format(@"[签证进度更新]");
  1200. string content = string.Format(@"测试文本");
  1201. bool rst = await _message.AddMsg(new MessageDto()
  1202. {
  1203. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  1204. IssuerId = dto.publisher,
  1205. Title = title,
  1206. Content = content,
  1207. ReleaseTime = DateTime.Now,
  1208. UIdList = new List<int> {
  1209. 234
  1210. }
  1211. });
  1212. if (rst)
  1213. {
  1214. return Ok(JsonView(true, "发送通知成功"));
  1215. }
  1216. }
  1217. //_delegationVisaRep.CommitTran();
  1218. }
  1219. catch (Exception)
  1220. {
  1221. //_delegationVisaRep.RollbackTran();
  1222. }
  1223. }
  1224. return Ok(JsonView(true, msg));
  1225. }
  1226. #endregion
  1227. #region 团组任务分配
  1228. /// <summary>
  1229. /// 团组任务分配初始化
  1230. /// </summary>
  1231. /// <param name="dto"></param>
  1232. /// <returns></returns>
  1233. [HttpPost]
  1234. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1235. public async Task<IActionResult> GetTaskAssignmen()
  1236. {
  1237. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1238. if (groupData.Code != 0)
  1239. {
  1240. return Ok(JsonView(false, groupData.Msg));
  1241. }
  1242. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1243. }
  1244. /// <summary>
  1245. /// 团组任务分配查询
  1246. /// </summary>
  1247. /// <param name="dto"></param>
  1248. /// <returns></returns>
  1249. [HttpPost]
  1250. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1251. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1252. {
  1253. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1254. if (groupData.Code != 0)
  1255. {
  1256. return Ok(JsonView(false, groupData.Msg));
  1257. }
  1258. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1259. }
  1260. /// <summary>
  1261. /// 团组任务分配操作
  1262. /// </summary>
  1263. /// <param name="dto"></param>
  1264. /// <returns></returns>
  1265. [HttpPost]
  1266. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1267. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1268. {
  1269. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1270. if (groupData.Code != 0)
  1271. {
  1272. return Ok(JsonView(false, groupData.Msg));
  1273. }
  1274. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1275. }
  1276. /// <summary>
  1277. /// 团组任务分配
  1278. /// 批量分配
  1279. /// 查询团组
  1280. /// </summary>
  1281. /// <param name="dto"></param>
  1282. /// <returns></returns>
  1283. [HttpPost]
  1284. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1285. public async Task<IActionResult> TaskAllocationGroupSelect(TaskAllocationGroupSelectDto dto)
  1286. {
  1287. //参数验证
  1288. if (dto.PortType < 1 || dto.PortType > 3) return Ok(JsonView(false, MsgTips.Port));
  1289. if (!DateTime.TryParse(dto.VisitBeginDt,out _) || !DateTime.TryParse(dto.VisitEndDt,out _))
  1290. return Ok(JsonView(false, "团组出访开始/结束日期格式不正确!"));
  1291. return Ok(await _taskAssignmentRep.TaskAllocationGroupSelect(dto));
  1292. }
  1293. /// <summary>
  1294. /// 团组任务分配
  1295. /// 批量分配
  1296. /// </summary>
  1297. /// <param name="dto"></param>
  1298. /// <returns></returns>
  1299. [HttpPost]
  1300. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1301. public async Task<IActionResult> TaskAllocationBulkAdd(TaskAllocationBulkAddDto dto)
  1302. {
  1303. //参数验证
  1304. if (dto.UserIds.Length < 1 ) return Ok(JsonView(false, $"请选择分配人员!"));
  1305. if (dto.PermissionTypeIds.Length < 1) return Ok(JsonView(false, $"请选择分配类型!"));
  1306. if (dto.GroupIds.Length < 1) return Ok(JsonView(false, "请选择分配团组Id"));
  1307. if (dto.CurrUserId < 1) return Ok(JsonView(false, "请传入有效的CurrUserId数组参数"));
  1308. return Ok(await _taskAssignmentRep.TaskAllocationBulkAdd(dto));
  1309. }
  1310. #endregion
  1311. #region 团组费用审核
  1312. /// <summary>
  1313. /// 费用审核
  1314. /// 团组列表 Page
  1315. /// </summary>
  1316. /// <param name="_dto">团组列表请求dto</param>
  1317. /// <returns></returns>
  1318. [HttpPost]
  1319. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1320. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1321. {
  1322. #region 参数验证
  1323. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1324. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1325. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1326. #region 页面操作权限验证
  1327. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1328. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1329. #endregion
  1330. #endregion
  1331. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1332. {
  1333. string sqlWhere = string.Empty;
  1334. if (_dto.IsSure == 0) //未完成
  1335. {
  1336. sqlWhere += string.Format(@" And IsSure = 0");
  1337. }
  1338. else if (_dto.IsSure == 1) //已完成
  1339. {
  1340. sqlWhere += string.Format(@" And IsSure = 1");
  1341. }
  1342. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1343. {
  1344. string tj = _dto.SearchCriteria;
  1345. 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}%')",
  1346. tj, tj, tj, tj, tj);
  1347. }
  1348. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1349. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1350. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1351. From (
  1352. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1353. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1354. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1355. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1356. From Grp_DelegationInfo gdi
  1357. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1358. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1359. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1360. Where gdi.IsDel = 0 {0}
  1361. ) temp ", sqlWhere);
  1362. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1363. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1364. var _view = new
  1365. {
  1366. PageFuncAuth = pageFunAuthView,
  1367. Data = _DelegationList
  1368. };
  1369. return Ok(JsonView(true, "查询成功!", _view, total));
  1370. }
  1371. else
  1372. {
  1373. return Ok(JsonView(false, "查询失败"));
  1374. }
  1375. }
  1376. /// <summary>
  1377. /// 获取团组费用审核
  1378. /// </summary>
  1379. /// <param name="paras">参数Json字符串</param>
  1380. /// <returns></returns>
  1381. [HttpPost]
  1382. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1383. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1384. {
  1385. try
  1386. {
  1387. #region 参数验证
  1388. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1389. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1390. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1391. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1392. #region 页面操作权限验证
  1393. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1394. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1395. #endregion
  1396. #endregion
  1397. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1398. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1399. #region 费用清单
  1400. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1401. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1402. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1403. List<Grp_CreditCardPayment> entityList = _groupRepository
  1404. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1405. .Where(exp.ToExpression())
  1406. .ToList();
  1407. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1408. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1409. /*
  1410. * 76://酒店预订
  1411. */
  1412. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1413. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1414. .ToListAsync();
  1415. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1416. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1417. .ToListAsync();
  1418. /*
  1419. * 79://车/导游地接
  1420. */
  1421. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1422. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1423. .ToListAsync();
  1424. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1425. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1426. .ToListAsync();
  1427. /*
  1428. * 80: //签证
  1429. */
  1430. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1431. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1432. .ToListAsync();
  1433. /*
  1434. *81: //邀请/公务活动
  1435. */
  1436. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1437. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1438. .ToListAsync();
  1439. /*
  1440. * 82: //团组客户保险
  1441. */
  1442. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1443. /*
  1444. * Lable = 85 机票预订
  1445. */
  1446. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1447. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1448. .ToListAsync();
  1449. /*
  1450. * 85 机票预定
  1451. */
  1452. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1453. /*
  1454. * 98 其他款项
  1455. */
  1456. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1457. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1458. .ToListAsync();
  1459. /*
  1460. * 285:收款退还
  1461. */
  1462. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1463. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1464. .ToListAsync();
  1465. /*
  1466. * 1015: //超支费用
  1467. */
  1468. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1469. /*
  1470. * 币种信息
  1471. */
  1472. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1473. /*
  1474. * 车/导游地接 费用类型
  1475. */
  1476. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1477. /*
  1478. * 车/导游地接 费用类型
  1479. */
  1480. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1481. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1482. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1483. /*
  1484. * 用户信息
  1485. */
  1486. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1487. /*
  1488. * 费用模块
  1489. */
  1490. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1491. string priceModule = string.Empty;
  1492. if (sdPriceName != null)
  1493. {
  1494. priceModule = sdPriceName.Name;
  1495. }
  1496. /*
  1497. * 成本信息
  1498. */
  1499. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1500. decimal _groupRate = 0.0000M;
  1501. string _groupCurrencyCode = "-";
  1502. if (groupCost != null)
  1503. {
  1504. _groupRate = groupCost.Rate;
  1505. if (int.TryParse(groupCost.Currency, out int _currency))
  1506. {
  1507. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1508. }
  1509. else _groupCurrencyCode = groupCost.Currency;
  1510. }
  1511. string costContentSql = $"Select * From Grp_GroupCost";
  1512. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1513. //处理日期为空的天数
  1514. for (int i = 0; i < groupCostDetails.Count; i++)
  1515. if (i != 0)
  1516. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1517. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1518. /*
  1519. * 处理详情数据
  1520. */
  1521. foreach (var entity in entityList)
  1522. {
  1523. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1524. _detail.Id = entity.Id;
  1525. _detail.PriceName = priceModule;
  1526. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1527. if (_detail.PayType.Equals("现金")) _detail.CardType = "-";
  1528. else _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1529. /*
  1530. * 应付款金额
  1531. */
  1532. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1533. string PaymentCurrency_WaitPay = "Unknown";
  1534. string hotelCurrncyCode = "Unknown";
  1535. string hotelCurrncyName = "Unknown";
  1536. if (sdPaymentCurrency_WaitPay != null)
  1537. {
  1538. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1539. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1540. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1541. if (hotelCurrncyCode.Equals("CNY"))
  1542. {
  1543. entity.DayRate = 1.0000M;
  1544. }
  1545. }
  1546. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1547. /*
  1548. * 此次付款金额
  1549. */
  1550. decimal CurrPayStr = 0.00M,
  1551. OriginalCurrPay = 0.00M;
  1552. if (entity.PayPercentage == 0)
  1553. {
  1554. if (entity.PayThenMoney != 0)
  1555. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1556. }
  1557. else
  1558. {
  1559. if (entity.PayMoney != 0)
  1560. {
  1561. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1562. }
  1563. }
  1564. if (_dto.Label == 79)
  1565. {
  1566. string original = string.Empty;
  1567. if (hotelCurrncyCode.Equals("CNY"))
  1568. {
  1569. OriginalCurrPay = CurrPayStr;
  1570. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1571. }
  1572. else
  1573. {
  1574. OriginalCurrPay = ((entity.PayMoney / 100) * entity.PayPercentage).ConvertToDecimal1();
  1575. //760 EUR(7600.00 CNY)
  1576. _detail.CurrPay = $"{OriginalCurrPay.ToString("#0.00")} {hotelCurrncyCode}({CurrPayStr.ToString("#0.00")} CNY)";
  1577. }
  1578. }
  1579. else
  1580. {
  1581. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1582. }
  1583. /*
  1584. * 剩余尾款
  1585. */
  1586. decimal BalanceStr = 0;
  1587. if (CurrPayStr != 0)
  1588. {
  1589. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1590. BalanceStr = 0;
  1591. else
  1592. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1593. }
  1594. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1595. /*
  1596. * Bus名称
  1597. */
  1598. _detail.BusName = "待增加";
  1599. /*
  1600. *费用所属
  1601. */
  1602. switch (entity.CTable)
  1603. {
  1604. case 76://酒店预订
  1605. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1606. if (hotelReservations != null)
  1607. {
  1608. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1609. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1610. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1611. string roomFeeStr = "", roomFeestr1 = "";
  1612. //是否比较房型价格
  1613. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1614. //roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1615. roomFeeStr += $"<br/>";
  1616. if (hotelReservations.SingleRoomPrice > 0)
  1617. {
  1618. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}<br/>";
  1619. __isSingle = true;
  1620. }
  1621. if (hotelReservations.DoubleRoomPrice > 0)
  1622. {
  1623. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}<br/>";
  1624. __isDouble = true;
  1625. }
  1626. if (hotelReservations.SuiteRoomPrice > 0)
  1627. {
  1628. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}<br/>";
  1629. __isSuite = true;
  1630. }
  1631. if (hotelReservations.OtherRoomPrice > 0)
  1632. {
  1633. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}";
  1634. __isOther = true;
  1635. }
  1636. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1637. else roomFeeStr += " 0.00 * 0";
  1638. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1639. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1640. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1641. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1642. /*
  1643. * 费用类型
  1644. * 1:房费
  1645. * 2:早餐
  1646. * 3:地税
  1647. * 4:城市税
  1648. * </summary>
  1649. */
  1650. //地税
  1651. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1652. if (governmentRentData != null)
  1653. {
  1654. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1655. governmentRentFee = governmentRentData.Price;
  1656. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1657. if (governmentRentCurrData != null)
  1658. {
  1659. governmentRentCode = governmentRentCurrData.Name;
  1660. governmentRentName = $"({governmentRentCurrData.Remark})";
  1661. }
  1662. }
  1663. //城市税
  1664. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1665. if (cityTaxData != null)
  1666. {
  1667. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1668. cityTaxFee = cityTaxData.Price;
  1669. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1670. if (cityTaxCurrData != null)
  1671. {
  1672. cityTaxCode = cityTaxCurrData.Name;
  1673. cityTaxName = $"({cityTaxCurrData.Remark})";
  1674. }
  1675. }
  1676. //酒店早餐
  1677. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1678. if (breakfastData != null)
  1679. {
  1680. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1681. breakfastFee = breakfastData.Price;
  1682. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1683. if (breakfastCurrData != null)
  1684. {
  1685. breakfastCode = breakfastCurrData.Name;
  1686. breakfastName = $"({breakfastCurrData.Remark})";
  1687. }
  1688. }
  1689. //房间费用
  1690. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1691. if (roomData != null)
  1692. {
  1693. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1694. if (_detail.PayType.Equals("现金")) _detail.CardType = "-";
  1695. else _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1696. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1697. roomFee = roomData.Price;
  1698. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1699. if (roomCurrData != null)
  1700. {
  1701. roomCode = roomCurrData.Name;
  1702. roomName = $"({roomCurrData.Remark})";
  1703. }
  1704. }
  1705. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1706. string hotelCostStr = "";
  1707. decimal hotelCsotTotal = 0.00M;
  1708. if (groupCost != null)
  1709. {
  1710. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1711. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1712. }
  1713. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1714. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1715. string hotelCost_day = "";
  1716. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1717. foreach (var item in hotelCostDetails1)
  1718. {
  1719. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1720. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1721. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1722. //else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1723. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1724. //else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1725. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1726. //else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1727. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1728. //else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1729. hotelCost_day += @$"</br>";
  1730. }
  1731. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1732. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1733. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1734. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1735. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1736. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1737. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1738. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1739. $"房间说明: {hotelReservations.Remark} <br/>" +
  1740. $"房间费用: {roomCode} {roomName} 当时汇率:{roomData?.Rate.ToString("#0.0000")}{roomFeeStr} 是否由地接代付:{roomBool}<br/><br/>" +
  1741. $"{hotelBreakfastStr}" +
  1742. $"{hotelGovernmentRentStr}" +
  1743. $"{hotelCityTaxStr}";
  1744. _detail.PriceNameContent = hotelReservations.HotelName;
  1745. }
  1746. break;
  1747. case 79://车/导游地接
  1748. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1749. if (touristGuideGroundReservations != null)
  1750. {
  1751. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1752. {
  1753. _detail.BusName = touristGuideGroundReservations.BusName;
  1754. }
  1755. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1756. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1757. //if (isInt)
  1758. //{
  1759. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1760. // if (cityInfo != null)
  1761. // {
  1762. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1763. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1764. // if (carFeeItem != null)
  1765. // {
  1766. // nameContent += $@"({carFeeItem.Name})";
  1767. // }
  1768. // _detail.PriceNameContent = nameContent;
  1769. // }
  1770. //}
  1771. //else
  1772. //{
  1773. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1774. //}
  1775. var touristGuideGroundReservationsContents =
  1776. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1777. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1778. foreach (var item in touristGuideGroundReservationsContents)
  1779. {
  1780. string typeName = "Unknown";
  1781. string carCurrencyCode = "Unknown";
  1782. string carCurrencyName = "Unknown";
  1783. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1784. if (carTypeData != null) typeName = carTypeData.Name;
  1785. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1786. if (currencyData != null)
  1787. {
  1788. carCurrencyCode = currencyData.Name;
  1789. carCurrencyName = currencyData.Remark;
  1790. }
  1791. //op、成本 币种是否一致
  1792. bool IsCurrencyAgreement = false;
  1793. if (carCurrencyCode.Equals(_groupCurrencyCode)) IsCurrencyAgreement = true;
  1794. string opCostStr = string.Empty;
  1795. decimal opCostTypePrice = 0.00M;
  1796. #region 处理成本各项费用
  1797. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1798. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1799. if (opCost.Count > 0)
  1800. {
  1801. switch (item.SId)
  1802. {
  1803. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1804. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1805. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1806. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1807. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1808. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1809. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1810. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1811. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1812. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1813. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1814. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1815. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1816. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1817. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1818. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1819. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1820. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1821. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1822. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1823. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1824. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1825. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1826. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1827. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1828. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1829. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1830. }
  1831. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1832. if (!IsCurrencyAgreement) opCostStr += $" ≈ {(opCostTypePrice * _groupRate).ToString("#0.00")} CNY";
  1833. }
  1834. #endregion
  1835. string opTypeStr = $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")})" ;
  1836. if (!IsCurrencyAgreement) opTypeStr += $" ≈ {(item.Price * entity.DayRate).ToString("#0.00")} CNY";
  1837. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1838. $"{opTypeStr} {opCostStr}<br/>" +
  1839. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1840. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1841. }
  1842. _detail.PriceMsgContent = priceMsg;
  1843. }
  1844. break;
  1845. case 80: //签证
  1846. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1847. if (visaInfo != null)
  1848. {
  1849. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1850. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1851. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1852. }
  1853. break;
  1854. case 81: //邀请/公务活动
  1855. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1856. if (_ioa != null)
  1857. {
  1858. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1859. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1860. sendCurrName = "Unknown", //快递费用币种 Name
  1861. sendCurrCode = "Unknown", //快递费用币种 Code
  1862. eventsCurrName = "Unknown", //公务活动费币种 Name
  1863. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1864. translateCurrName = "Unknown", //公务翻译费 Name
  1865. translateCurrCode = "Unknown"; //公务翻译费 Code
  1866. #region 处理费用币种
  1867. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1868. if (inviteCurrData != null)
  1869. {
  1870. inviteCurrName = inviteCurrData.Remark;
  1871. inviteCurrCode = inviteCurrData.Name;
  1872. }
  1873. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1874. if (sendCurrData != null)
  1875. {
  1876. sendCurrName = sendCurrData.Remark;
  1877. sendCurrCode = sendCurrData.Name;
  1878. }
  1879. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1880. if (eventsCurrData != null)
  1881. {
  1882. eventsCurrName = eventsCurrData.Remark;
  1883. eventsCurrCode = eventsCurrData.Name;
  1884. }
  1885. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1886. if (translateCurrData != null)
  1887. {
  1888. translateCurrName = translateCurrData.Remark;
  1889. translateCurrCode = translateCurrData.Name;
  1890. }
  1891. #endregion
  1892. _detail.PriceNameContent = _ioa.InviterArea;
  1893. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1894. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1895. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1896. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1897. $@"备注:" + _ioa.Remark + "<br/>";
  1898. }
  1899. break;
  1900. case 82: //团组客户保险
  1901. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1902. if (customers != null)
  1903. {
  1904. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1905. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1906. }
  1907. break;
  1908. case 85: //机票预订
  1909. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1910. if (jpRes != null)
  1911. {
  1912. string FlightsDescription = jpRes.FlightsDescription;
  1913. string PriceDescription = jpRes.PriceDescription;
  1914. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1915. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1916. }
  1917. break;
  1918. case 98://其他款项
  1919. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1920. if (gdpRes != null)
  1921. {
  1922. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1923. _detail.PriceNameContent = gdpRes.PriceName;
  1924. }
  1925. break;
  1926. case 285://收款退还
  1927. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1928. if (refundAndOtherMoney != null)
  1929. {
  1930. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1931. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1932. }
  1933. break;
  1934. case 751://酒店早餐
  1935. break;
  1936. case 1015://超支费用
  1937. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1938. if (groupExtraCost != null)
  1939. {
  1940. _detail.PriceNameContent = groupExtraCost.PriceName;
  1941. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1942. }
  1943. break;
  1944. default:
  1945. break;
  1946. }
  1947. /*
  1948. * 申请人
  1949. */
  1950. string operatorName = " - ";
  1951. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1952. if (_opUser != null)
  1953. {
  1954. operatorName = _opUser.CnName;
  1955. }
  1956. _detail.OperatorName = operatorName;
  1957. /*
  1958. * 审核人
  1959. */
  1960. string auditOperatorName = "Unknown";
  1961. if (entity.AuditGMOperate == 0)
  1962. auditOperatorName = " - ";
  1963. else if (entity.AuditGMOperate == 4)
  1964. auditOperatorName = "自动审核";
  1965. else
  1966. {
  1967. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1968. if (_adUser != null)
  1969. {
  1970. auditOperatorName = _adUser.CnName;
  1971. }
  1972. }
  1973. _detail.AuditOperatorName = auditOperatorName;
  1974. /*
  1975. * 超预算比例
  1976. */
  1977. string overBudgetStr = "";
  1978. if (entity.ExceedBudget == -1)
  1979. overBudgetStr = sdPriceName.Name + "尚无预算";
  1980. else if (entity.ExceedBudget == 0)
  1981. {
  1982. if (entity.CTable == 76 || entity.CTable == 79)
  1983. {
  1984. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1985. else overBudgetStr = _feeAuditRep.IsOverBudget(entity.CTable, entity.DIId, entity.CId);
  1986. }
  1987. else
  1988. {
  1989. overBudgetStr = "未超预算";
  1990. }
  1991. }
  1992. else
  1993. overBudgetStr = entity.ExceedBudget.ToString("P");
  1994. _detail.OverBudget = overBudgetStr;
  1995. /*
  1996. * 已审核金额
  1997. */
  1998. decimal auditFee = 0.00M;
  1999. if (entity.IsAuditGM == 1 || entity.IsAuditGM == 3) auditFee = CurrPayStr;
  2000. /*
  2001. * 费用总计
  2002. */
  2003. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  2004. {
  2005. CurrencyId = entity.PaymentCurrency,
  2006. CurrencyName = PaymentCurrency_WaitPay,
  2007. AmountPayable = entity.PayMoney,
  2008. ThisPayment = OriginalCurrPay,
  2009. BalancePayment = BalanceStr,
  2010. AuditedFunds = auditFee
  2011. });
  2012. _detail.IsAuditGM = entity.IsAuditGM;
  2013. detailList.Add(_detail);
  2014. }
  2015. #endregion
  2016. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  2017. /*
  2018. * 下方描述处理
  2019. */
  2020. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  2021. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  2022. if (ccpCurrencyPrice != null)
  2023. {
  2024. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  2025. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  2026. }
  2027. else
  2028. {
  2029. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  2030. }
  2031. string amountPayableStr = string.Format(@"应付款总金额: ");
  2032. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  2033. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  2034. string auditedFundsStr = string.Format(@"已审费用总额: ");
  2035. foreach (var item in nonDuplicat)
  2036. {
  2037. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  2038. if (strs.Count > 0)
  2039. {
  2040. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  2041. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  2042. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  2043. amountPayableStr += string.Format(@"{0}{1}&nbsp;|&nbsp;", amountPayable.ToString("#0.00"), item.CurrencyName);
  2044. //单独处理此次付款金额
  2045. if (item.CurrencyId == 836) //人民币
  2046. {
  2047. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|&nbsp;", thisPayment.ToString("#0.00"), item.CurrencyName);
  2048. }
  2049. else
  2050. {
  2051. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|&nbsp;", thisPayment.ToString("#0.00"), item.CurrencyName);
  2052. }
  2053. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|&nbsp;", balancePayment.ToString("#0.00"), item.CurrencyName);
  2054. //单独处理已审核费用
  2055. if (item.CurrencyId == 836) //人民币
  2056. {
  2057. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  2058. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  2059. }
  2060. else
  2061. {
  2062. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  2063. }
  2064. }
  2065. }
  2066. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  2067. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  2068. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  2069. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  2070. var _view1 = new
  2071. {
  2072. PageFuncAuth = pageFunAuthView,
  2073. Data = _view
  2074. };
  2075. return Ok(JsonView(_view1));
  2076. }
  2077. catch (Exception ex)
  2078. {
  2079. return Ok(JsonView(false, ex.Message));
  2080. }
  2081. }
  2082. /// <summary>
  2083. /// 费用审核
  2084. /// 修改团组费用审核状态
  2085. /// </summary>
  2086. /// <param name="_dto">参数Json字符串</param>
  2087. /// <returns></returns>
  2088. [HttpPost]
  2089. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2090. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  2091. {
  2092. #region 参数验证
  2093. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  2094. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  2095. #endregion
  2096. #region 页面操作权限验证
  2097. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  2098. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  2099. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  2100. #endregion
  2101. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  2102. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  2103. DateTime dtNow = DateTime.Now;
  2104. _groupRepository.BeginTran();
  2105. int rst = 0;
  2106. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  2107. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  2108. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  2109. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  2110. List<dynamic> msgDatas = new List<dynamic>();
  2111. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  2112. foreach (var item in idList)
  2113. {
  2114. int CreditId = int.Parse(item);
  2115. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  2116. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  2117. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  2118. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  2119. .Where(s => s.Id == CreditId)
  2120. .ExecuteCommandAsync();
  2121. if (result < 1)
  2122. {
  2123. rst = -1;
  2124. _groupRepository.RollbackTran();
  2125. return Ok(JsonView(false, "操作失败并回滚!"));
  2126. }
  2127. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  2128. if (creditData != null)
  2129. {
  2130. #region 应用通知配置
  2131. try
  2132. {
  2133. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  2134. }
  2135. catch (Exception ex)
  2136. {
  2137. }
  2138. #endregion
  2139. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  2140. string groupNameStr = string.Empty;
  2141. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  2142. if (groupData != null) groupNameStr = groupData.TeamName;
  2143. string creditTypeStr = string.Empty;
  2144. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  2145. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  2146. string creditCurrency = string.Empty;
  2147. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  2148. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  2149. if (creditCurrency.Equals("CNY"))
  2150. {
  2151. creditData.DayRate = 1.0000M;
  2152. }
  2153. if (creditData.PayPercentage == 0.00M)
  2154. {
  2155. creditData.PayPercentage = 100M;
  2156. }
  2157. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  2158. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  2159. string msgContent = "";
  2160. if (creditCurrency.Equals("CNY"))
  2161. {
  2162. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  2163. }
  2164. else
  2165. {
  2166. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  2167. }
  2168. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  2169. }
  2170. }
  2171. if (rst == 0)
  2172. {
  2173. _groupRepository.CommitTran();
  2174. foreach (var item in msgDatas)
  2175. {
  2176. //发送消息
  2177. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  2178. }
  2179. #region 应用推送
  2180. try
  2181. {
  2182. foreach (var ccpId in dic_ccp_user.Keys)
  2183. {
  2184. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  2185. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  2186. }
  2187. }
  2188. catch (Exception)
  2189. {
  2190. }
  2191. #endregion
  2192. return Ok(JsonView(true, "操作成功!"));
  2193. }
  2194. return Ok(JsonView(false, "操作失败!"));
  2195. }
  2196. #endregion
  2197. #region 机票费用录入
  2198. /// <summary>
  2199. /// 机票录入当前登录人可操作团组
  2200. /// </summary>
  2201. /// <param name="dto"></param>
  2202. /// <returns></returns>
  2203. [HttpPost]
  2204. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2205. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  2206. {
  2207. try
  2208. {
  2209. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  2210. if (groupData.Code != 0)
  2211. {
  2212. return Ok(JsonView(false, groupData.Msg));
  2213. }
  2214. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2215. }
  2216. catch (Exception ex)
  2217. {
  2218. return Ok(JsonView(false, "程序错误!"));
  2219. throw;
  2220. }
  2221. }
  2222. /// <summary>
  2223. /// 机票费用录入列表
  2224. /// </summary>
  2225. /// <param name="dto"></param>
  2226. /// <returns></returns>
  2227. [HttpPost]
  2228. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2229. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  2230. {
  2231. try
  2232. {
  2233. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  2234. if (groupData.Code != 0)
  2235. {
  2236. return Ok(JsonView(false, groupData.Msg));
  2237. }
  2238. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2239. }
  2240. catch (Exception ex)
  2241. {
  2242. return Ok(JsonView(false, ex.Message));
  2243. throw;
  2244. }
  2245. }
  2246. /// <summary>
  2247. /// 根据id查询费用录入信息
  2248. /// </summary>
  2249. /// <param name="dto"></param>
  2250. /// <returns></returns>
  2251. [HttpPost]
  2252. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2253. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  2254. {
  2255. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  2256. if (groupData.Code != 0)
  2257. {
  2258. return Ok(JsonView(false, groupData.Msg));
  2259. }
  2260. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2261. }
  2262. /// <summary>
  2263. /// 机票费用录入操作(Status:1.新增,2.修改)
  2264. /// </summary>
  2265. /// <param name="dto"></param>
  2266. /// <returns></returns>
  2267. [HttpPost]
  2268. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2269. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  2270. {
  2271. try
  2272. {
  2273. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  2274. if (groupData.Code != 0)
  2275. {
  2276. return Ok(JsonView(false, groupData.Msg));
  2277. }
  2278. #region 应用推送
  2279. try
  2280. {
  2281. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2282. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2283. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2284. }
  2285. catch (Exception ex)
  2286. {
  2287. }
  2288. #endregion
  2289. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2290. }
  2291. catch (Exception ex)
  2292. {
  2293. return Ok(JsonView(false, "程序错误!"));
  2294. throw;
  2295. }
  2296. }
  2297. /// <summary>
  2298. /// 根据舱位类型查询接团客户名单信息
  2299. /// </summary>
  2300. /// <param name="dto"></param>
  2301. /// <returns></returns>
  2302. [HttpPost]
  2303. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2304. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2305. {
  2306. try
  2307. {
  2308. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2309. if (crm_Groups.Count != 0)
  2310. {
  2311. List<dynamic> Customer = new List<dynamic>();
  2312. foreach (var item in crm_Groups)
  2313. {
  2314. var data = new
  2315. {
  2316. Id = item.Id,
  2317. Pinyin = item.Pinyin,
  2318. Name = item.LastName + item.FirstName
  2319. };
  2320. Customer.Add(data);
  2321. }
  2322. return Ok(JsonView(true, "查询成功!", Customer));
  2323. }
  2324. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2325. }
  2326. catch (Exception ex)
  2327. {
  2328. return Ok(JsonView(false, "程序错误!"));
  2329. throw;
  2330. }
  2331. }
  2332. /// <summary>
  2333. /// 根据团号获取客户信息
  2334. /// </summary>
  2335. /// <param name="dto"></param>
  2336. /// <returns></returns>
  2337. [HttpPost]
  2338. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2339. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2340. {
  2341. var jw = JsonView(false);
  2342. if (dto.DIID < 1)
  2343. {
  2344. jw.Msg += "请输入正确的diid";
  2345. return Ok(jw);
  2346. }
  2347. var arr = getSimplClientList(dto.DIID);
  2348. jw = JsonView(true, "获取成功!", arr);
  2349. return Ok(jw);
  2350. }
  2351. private List<SimplClientInfo> getSimplClientList(int diId)
  2352. {
  2353. 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);
  2354. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2355. return arr;
  2356. }
  2357. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2358. {
  2359. string result = origin;
  2360. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2361. {
  2362. string[] temparr = origin.Split(',');
  2363. string fistrStr = temparr[0];
  2364. int count = temparr.Count();
  2365. int tempId;
  2366. bool success = int.TryParse(fistrStr, out tempId);
  2367. if (success)
  2368. {
  2369. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2370. if (tempInfo != null)
  2371. {
  2372. if (count > 1)
  2373. {
  2374. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2375. }
  2376. else
  2377. {
  2378. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2379. }
  2380. }
  2381. }
  2382. }
  2383. return result;
  2384. }
  2385. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2386. {
  2387. string result = origin;
  2388. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2389. {
  2390. string[] temparr = origin.Split(',');
  2391. result = "";
  2392. foreach (var item in temparr)
  2393. {
  2394. int tempId;
  2395. bool success = int.TryParse(item, out tempId);
  2396. if (success)
  2397. {
  2398. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2399. if (tempInfo != null)
  2400. {
  2401. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2402. }
  2403. }
  2404. }
  2405. }
  2406. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2407. return result;
  2408. }
  2409. /// <summary>
  2410. /// 机票费用录入,删除
  2411. /// </summary>
  2412. /// <param name="dto"></param>
  2413. /// <returns></returns>
  2414. [HttpPost]
  2415. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2416. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2417. {
  2418. try
  2419. {
  2420. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2421. if (res)
  2422. {
  2423. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2424. {
  2425. IsDel = 1,
  2426. DeleteUserId = dto.DeleteUserId,
  2427. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2428. }).ExecuteCommandAsync();
  2429. return Ok(JsonView(true, "删除成功!"));
  2430. }
  2431. return Ok(JsonView(false, "删除失败!"));
  2432. }
  2433. catch (Exception ex)
  2434. {
  2435. return Ok(JsonView(false, "程序错误!"));
  2436. throw;
  2437. }
  2438. }
  2439. /// <summary>
  2440. /// 导出机票录入报表
  2441. /// </summary>
  2442. /// <param name="dto"></param>
  2443. /// <returns></returns>
  2444. [HttpPost]
  2445. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2446. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2447. {
  2448. try
  2449. {
  2450. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2451. if (groupData.Code != 0)
  2452. {
  2453. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2454. }
  2455. else
  2456. {
  2457. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2458. if (AirTicketReservations.Count != 0)
  2459. {
  2460. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2461. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2462. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2463. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2464. WorkbookDesigner designer = new WorkbookDesigner();
  2465. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2466. decimal countCost = 0;
  2467. foreach (var item in AirTicketReservations)
  2468. {
  2469. #region 处理客人姓名
  2470. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2471. item.ClientName = clientNames;
  2472. #endregion
  2473. if (item.BankType == "其他")
  2474. {
  2475. item.BankNo = "--";
  2476. }
  2477. else
  2478. {
  2479. if (!string.IsNullOrEmpty(item.BankType))
  2480. {
  2481. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2482. }
  2483. }
  2484. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2485. item.Price = System.Decimal.Round(item.Price, 2);
  2486. countCost += Convert.ToDecimal(item.Price);
  2487. }
  2488. designer.SetDataSource("Export", AirTicketReservations);
  2489. designer.SetDataSource("ExportDiCode", diCode);
  2490. designer.SetDataSource("ExportDiName", diName);
  2491. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2492. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2493. designer.Process();
  2494. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2495. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2496. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2497. return Ok(JsonView(true, "成功", url = rst));
  2498. }
  2499. else
  2500. {
  2501. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2502. }
  2503. }
  2504. }
  2505. catch (Exception ex)
  2506. {
  2507. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2508. throw;
  2509. }
  2510. }
  2511. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2512. /// <summary>
  2513. /// 行程单导出
  2514. /// </summary>
  2515. /// <param name="dto"></param>
  2516. /// <returns></returns>
  2517. [HttpPost]
  2518. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2519. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2520. {
  2521. try
  2522. {
  2523. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2524. if (groupData.Code != 0)
  2525. {
  2526. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2527. }
  2528. else
  2529. {
  2530. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2531. if (dto.Language == "CN")
  2532. {
  2533. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2534. DocumentBuilder builder = new DocumentBuilder(doc);
  2535. int tableIndex = 0;//表格索引
  2536. //得到文档中的第一个表格
  2537. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2538. foreach (var item in _AirTicketReservations)
  2539. {
  2540. #region 处理固定数据
  2541. string[] FlightsCode = item.FlightsCode.Split('/');
  2542. if (FlightsCode.Length != 0)
  2543. {
  2544. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2545. if (_AirCompany != null)
  2546. {
  2547. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2548. }
  2549. else
  2550. {
  2551. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2552. }
  2553. }
  2554. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2555. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2556. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2557. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2558. string name = "";
  2559. foreach (string clientName in nameArray)
  2560. {
  2561. if (!name.Contains(clientName))
  2562. {
  2563. name += clientName + ",";
  2564. }
  2565. }
  2566. if (!string.IsNullOrWhiteSpace(name))
  2567. {
  2568. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2569. }
  2570. else
  2571. {
  2572. table.Range.Bookmarks["ClientName"].Text = "--";
  2573. }
  2574. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2575. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2576. table.Range.Bookmarks["JointTicket"].Text = "--";
  2577. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2578. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2579. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2580. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2581. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2582. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2583. #endregion
  2584. #region 循环数据处理
  2585. List<AirInfo> airs = new List<AirInfo>();
  2586. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2587. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2588. for (int i = 0; i < FlightsCode.Length; i++)
  2589. {
  2590. AirInfo air = new AirInfo();
  2591. string[] tempstr = DayArray[i]
  2592. .Replace("\r\n", string.Empty)
  2593. .Replace("\\r\\n", string.Empty)
  2594. .TrimStart().TrimEnd()
  2595. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2596. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2597. string starCity = "";
  2598. if (star_Three != null)
  2599. {
  2600. starCity = star_Three.AirPort;
  2601. }
  2602. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2603. string EndCity = "";
  2604. if (End_Three != null)
  2605. {
  2606. EndCity = End_Three.AirPort;
  2607. }
  2608. air.Destination = starCity + "/" + EndCity;
  2609. air.Flight = FlightsCode[i];
  2610. air.SeatingClass = item.CTypeName;
  2611. string dateTime = tempstr[2];
  2612. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2613. air.FlightDate = DateTemp;
  2614. air.DepartureTime = tempstr[5];
  2615. air.LandingTime = tempstr[6];
  2616. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2617. air.TicketStatus = "--";
  2618. air.Luggage = "--";
  2619. air.DepartureTerminal = "--";
  2620. air.LandingTerminal = "--";
  2621. airs.Add(air);
  2622. }
  2623. int row = 13;
  2624. for (int i = 0; i < airs.Count; i++)
  2625. {
  2626. if (airs.Count > 2)
  2627. {
  2628. for (int j = 0; j < airs.Count - 2; j++)
  2629. {
  2630. var CopyRow = table.Rows[12].Clone(true);
  2631. table.Rows.Add(CopyRow);
  2632. }
  2633. }
  2634. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2635. int index = 0;
  2636. foreach (PropertyInfo property in properties)
  2637. {
  2638. string value = property.GetValue(airs[i]).ToString();
  2639. Cell ishcel0 = table.Rows[row].Cells[index];
  2640. Paragraph p = new Paragraph(doc);
  2641. string s = value;
  2642. p.AppendChild(new Run(doc, s));
  2643. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2644. ishcel0.AppendChild(p);
  2645. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2646. index++;
  2647. }
  2648. row++;
  2649. }
  2650. #endregion
  2651. Paragraph lastParagraph = new Paragraph(doc);
  2652. //第一个表格末尾加段落
  2653. table.ParentNode.InsertAfter(lastParagraph, table);
  2654. //复制第一个表格
  2655. Table cloneTable = (Table)table.Clone(true);
  2656. //在文档末尾段落后面加入复制的表格
  2657. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2658. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2659. {
  2660. int rownewsIndex = 13;
  2661. for (int i = 0; i < 2; i++)
  2662. {
  2663. var CopyRow = table.Rows[12].Clone(true);
  2664. table.Rows.RemoveAt(13);
  2665. table.Rows.Add(CopyRow);
  2666. rownewsIndex++;
  2667. }
  2668. }
  2669. else
  2670. {
  2671. table.Rows.RemoveAt(12);
  2672. }
  2673. cloneTable.Rows.RemoveAt(12);
  2674. }
  2675. if (_AirTicketReservations.Count != 0)
  2676. {
  2677. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2678. if (FlightsCode.Length != 0)
  2679. {
  2680. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2681. if (_AirCompany != null)
  2682. {
  2683. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2684. }
  2685. else
  2686. {
  2687. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2688. }
  2689. }
  2690. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2691. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2692. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2693. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2694. string name = "";
  2695. foreach (string clientName in nameArray)
  2696. {
  2697. if (!name.Contains(clientName))
  2698. {
  2699. name += clientName + ",";
  2700. }
  2701. }
  2702. if (!string.IsNullOrWhiteSpace(name))
  2703. {
  2704. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2705. }
  2706. else
  2707. {
  2708. table.Range.Bookmarks["ClientName"].Text = "--";
  2709. }
  2710. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2711. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2712. table.Range.Bookmarks["JointTicket"].Text = "--";
  2713. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2714. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2715. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2716. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2717. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2718. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2719. }
  2720. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2721. //保存合并后的文档
  2722. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2723. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2724. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2725. return Ok(JsonView(true, "成功!", rst));
  2726. }
  2727. else
  2728. {
  2729. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2730. DocumentBuilder builder = new DocumentBuilder(doc);
  2731. int tableIndex = 0;//表格索引
  2732. //得到文档中的第一个表格
  2733. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2734. List<string> texts = new List<string>();
  2735. foreach (var item in _AirTicketReservations)
  2736. {
  2737. string[] FlightsCode = item.FlightsCode.Split('/');
  2738. if (FlightsCode.Length != 0)
  2739. {
  2740. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2741. if (_AirCompany != null)
  2742. {
  2743. if (!transDic.ContainsKey(_AirCompany.CnName))
  2744. {
  2745. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2746. }
  2747. }
  2748. else
  2749. {
  2750. if (!transDic.ContainsKey("--"))
  2751. {
  2752. transDic.Add("--", "--");
  2753. }
  2754. }
  2755. }
  2756. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2757. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2758. string name = "";
  2759. foreach (string clientName in nameArray)
  2760. {
  2761. name += clientName + ",";
  2762. }
  2763. if (!texts.Contains(name))
  2764. {
  2765. texts.Add(name);
  2766. }
  2767. List<AirInfo> airs = new List<AirInfo>();
  2768. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2769. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2770. for (int i = 0; i < FlightsCode.Length; i++)
  2771. {
  2772. AirInfo air = new AirInfo();
  2773. string[] tempstr = DayArray[i]
  2774. .Replace("\r\n", string.Empty)
  2775. .Replace("\\r\\n", string.Empty)
  2776. .TrimStart().TrimEnd()
  2777. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2778. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2779. if (star_Three != null)
  2780. {
  2781. if (!transDic.ContainsKey(star_Three.AirPort))
  2782. {
  2783. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2784. }
  2785. }
  2786. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2787. if (End_Three != null)
  2788. {
  2789. if (!transDic.ContainsKey(End_Three.AirPort))
  2790. {
  2791. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2792. }
  2793. }
  2794. if (!texts.Contains(item.CTypeName))
  2795. {
  2796. texts.Add(item.CTypeName);
  2797. }
  2798. }
  2799. }
  2800. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2801. if (transData.Count > 0)
  2802. {
  2803. foreach (TranslateResult item in transData)
  2804. {
  2805. if (!transDic.ContainsKey(item.Query))
  2806. {
  2807. transDic.Add(item.Query, item.Translation);
  2808. }
  2809. }
  2810. }
  2811. foreach (var item in _AirTicketReservations)
  2812. {
  2813. #region 处理固定数据
  2814. string[] FlightsCode = item.FlightsCode.Split('/');
  2815. if (FlightsCode.Length != 0)
  2816. {
  2817. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2818. if (_AirCompany != null)
  2819. {
  2820. string str = "--";
  2821. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2822. if (!string.IsNullOrEmpty(translateResult))
  2823. {
  2824. str = translateResult;
  2825. str = _airTicketResRep.Processing(str);
  2826. }
  2827. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2828. }
  2829. else
  2830. {
  2831. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2832. }
  2833. }
  2834. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2835. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2836. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2837. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2838. string names = "";
  2839. foreach (string clientName in nameArray)
  2840. {
  2841. names += clientName + ",";
  2842. }
  2843. if (!string.IsNullOrWhiteSpace(names))
  2844. {
  2845. string str = "--";
  2846. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2847. if (!string.IsNullOrEmpty(translateResult))
  2848. {
  2849. str = translateResult;
  2850. str = _airTicketResRep.Processing(str);
  2851. }
  2852. table.Range.Bookmarks["ClientName"].Text = str;
  2853. }
  2854. else
  2855. {
  2856. table.Range.Bookmarks["ClientName"].Text = "--";
  2857. }
  2858. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2859. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2860. table.Range.Bookmarks["JointTicket"].Text = "--";
  2861. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2862. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2863. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2864. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2865. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2866. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2867. #endregion
  2868. #region 循环数据处理
  2869. List<AirInfo> airs = new List<AirInfo>();
  2870. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2871. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2872. for (int i = 0; i < FlightsCode.Length; i++)
  2873. {
  2874. AirInfo air = new AirInfo();
  2875. string[] tempstr = DayArray[i]
  2876. .Replace("\r\n", string.Empty)
  2877. .Replace("\\r\\n", string.Empty)
  2878. .TrimStart().TrimEnd()
  2879. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2880. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2881. string starCity = "";
  2882. if (star_Three != null)
  2883. {
  2884. string str2 = "--";
  2885. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2886. if (!string.IsNullOrEmpty(translateResult2))
  2887. {
  2888. str2 = translateResult2;
  2889. str2 = _airTicketResRep.Processing(str2);
  2890. }
  2891. starCity = str2;
  2892. }
  2893. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2894. string EndCity = "";
  2895. if (End_Three != null)
  2896. {
  2897. string str1 = "--";
  2898. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2899. if (!string.IsNullOrEmpty(translateResult1))
  2900. {
  2901. str1 = translateResult1;
  2902. str1 = _airTicketResRep.Processing(str1);
  2903. }
  2904. EndCity = str1;
  2905. }
  2906. air.Destination = starCity + "/" + EndCity;
  2907. air.Flight = FlightsCode[i];
  2908. string str = "--";
  2909. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2910. if (!string.IsNullOrEmpty(translateResult))
  2911. {
  2912. str = translateResult;
  2913. str = _airTicketResRep.Processing(str);
  2914. }
  2915. air.SeatingClass = str;
  2916. string dateTime = tempstr[2];
  2917. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2918. air.FlightDate = DateTemp;
  2919. air.DepartureTime = tempstr[5];
  2920. air.LandingTime = tempstr[6];
  2921. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2922. air.TicketStatus = "--";
  2923. air.Luggage = "--";
  2924. air.DepartureTerminal = "--";
  2925. air.LandingTerminal = "--";
  2926. airs.Add(air);
  2927. }
  2928. int row = 13;
  2929. for (int i = 0; i < airs.Count; i++)
  2930. {
  2931. if (airs.Count > 2)
  2932. {
  2933. for (int j = 0; j < airs.Count - 2; j++)
  2934. {
  2935. var CopyRow = table.Rows[12].Clone(true);
  2936. table.Rows.Add(CopyRow);
  2937. }
  2938. }
  2939. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2940. int index = 0;
  2941. foreach (PropertyInfo property in properties)
  2942. {
  2943. string value = property.GetValue(airs[i]).ToString();
  2944. Cell ishcel0 = table.Rows[row].Cells[index];
  2945. Paragraph p = new Paragraph(doc);
  2946. string s = value;
  2947. p.AppendChild(new Run(doc, s));
  2948. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2949. ishcel0.AppendChild(p);
  2950. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2951. //ishcel0.CellFormat.VerticalAlignment=
  2952. index++;
  2953. }
  2954. row++;
  2955. }
  2956. #endregion
  2957. Paragraph lastParagraph = new Paragraph(doc);
  2958. //第一个表格末尾加段落
  2959. table.ParentNode.InsertAfter(lastParagraph, table);
  2960. //复制第一个表格
  2961. Table cloneTable = (Table)table.Clone(true);
  2962. //在文档末尾段落后面加入复制的表格
  2963. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2964. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2965. {
  2966. int rownewsIndex = 13;
  2967. for (int i = 0; i < 2; i++)
  2968. {
  2969. var CopyRow = table.Rows[12].Clone(true);
  2970. table.Rows.RemoveAt(13);
  2971. table.Rows.Add(CopyRow);
  2972. rownewsIndex++;
  2973. }
  2974. }
  2975. else
  2976. {
  2977. table.Rows.RemoveAt(12);
  2978. }
  2979. cloneTable.Rows.RemoveAt(12);
  2980. }
  2981. if (_AirTicketReservations.Count != 0)
  2982. {
  2983. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2984. if (FlightsCode.Length != 0)
  2985. {
  2986. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2987. if (_AirCompany != null)
  2988. {
  2989. string str = "--";
  2990. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2991. if (!string.IsNullOrEmpty(translateResult))
  2992. {
  2993. str = translateResult;
  2994. str = _airTicketResRep.Processing(str);
  2995. }
  2996. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2997. }
  2998. else
  2999. {
  3000. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  3001. }
  3002. }
  3003. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  3004. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  3005. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  3006. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  3007. string names = "";
  3008. foreach (string clientName in nameArray)
  3009. {
  3010. names += clientName + ",";
  3011. }
  3012. if (!string.IsNullOrWhiteSpace(names))
  3013. {
  3014. string str = "--";
  3015. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  3016. if (!string.IsNullOrEmpty(translateResult))
  3017. {
  3018. str = translateResult;
  3019. str = _airTicketResRep.Processing(str);
  3020. }
  3021. table.Range.Bookmarks["ClientName"].Text = str;
  3022. }
  3023. else
  3024. {
  3025. table.Range.Bookmarks["ClientName"].Text = "--";
  3026. }
  3027. table.Range.Bookmarks["TicketNumber"].Text = "--";
  3028. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  3029. table.Range.Bookmarks["JointTicket"].Text = "--";
  3030. table.Range.Bookmarks["TimeIssue"].Text = "--";
  3031. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  3032. table.Range.Bookmarks["NavigationCode"].Text = "--";
  3033. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  3034. table.Range.Bookmarks["AgentPhone"].Text = "--";
  3035. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  3036. }
  3037. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  3038. //保存合并后的文档
  3039. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  3040. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  3041. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  3042. return Ok(JsonView(true, "成功!", rst));
  3043. }
  3044. }
  3045. }
  3046. catch (Exception ex)
  3047. {
  3048. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  3049. throw;
  3050. }
  3051. }
  3052. #endregion
  3053. #region 团组增减款项 --> 其他款项
  3054. /// <summary>
  3055. /// 团组增减款项下拉框绑定
  3056. /// </summary>
  3057. /// <param name="dto"></param>
  3058. /// <returns></returns>
  3059. [HttpPost]
  3060. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3061. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  3062. {
  3063. #region 参数验证
  3064. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3065. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  3066. #endregion
  3067. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  3068. }
  3069. /// <summary>
  3070. /// 根据团组Id查询团组增减款项
  3071. /// </summary>
  3072. /// <param name="dto"></param>
  3073. /// <returns></returns>
  3074. [HttpPost]
  3075. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3076. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  3077. {
  3078. #region 参数验证
  3079. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3080. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3081. #endregion
  3082. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  3083. }
  3084. /// <summary>
  3085. /// 团组增减款项操作(Status:1.新增,2.修改)
  3086. /// </summary>
  3087. /// <param name="dto"></param>
  3088. /// <returns></returns>
  3089. [HttpPost]
  3090. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3091. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  3092. {
  3093. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  3094. if (groupData.Code != 200)
  3095. {
  3096. return Ok(JsonView(false, groupData.Msg));
  3097. }
  3098. #region 应用推送
  3099. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3100. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3101. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3102. #endregion
  3103. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3104. }
  3105. /// <summary>
  3106. /// 团组增减款项操作 删除
  3107. /// </summary>
  3108. /// <param name="dto"></param>
  3109. /// <returns></returns>
  3110. [HttpPost]
  3111. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3112. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  3113. {
  3114. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  3115. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  3116. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  3117. if (res.Code == 0)
  3118. {
  3119. return Ok(JsonView(true, "删除成功!"));
  3120. }
  3121. return Ok(JsonView(false, "删除失败!"));
  3122. }
  3123. /// <summary>
  3124. /// 根据团组增减款项Id查询
  3125. /// </summary>
  3126. /// <param name="dto"></param>
  3127. /// <returns></returns>
  3128. [HttpPost]
  3129. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3130. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  3131. {
  3132. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  3133. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  3134. }
  3135. /// <summary>
  3136. /// 查询供应商名称
  3137. /// </summary>
  3138. /// <param name="dto"></param>
  3139. /// <returns></returns>
  3140. [HttpPost]
  3141. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  3142. {
  3143. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  3144. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  3145. ?? new List<Grp_DecreasePayments>();
  3146. dbResult = dbResult.Distinct(new
  3147. ProductComparer()).ToList();
  3148. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  3149. {
  3150. x.Id,
  3151. x.SupplierAddress,
  3152. x.SupplierArea,
  3153. x.SupplierContact,
  3154. x.SupplierContactNumber,
  3155. x.SupplierEmail,
  3156. x.SupplierName,
  3157. x.SupplierSocialAccount,
  3158. x.SupplierTypeId,
  3159. }).ToList());
  3160. return Ok(jw);
  3161. }
  3162. #endregion
  3163. #region 文件上传、删除
  3164. /// <summary>
  3165. /// region 文件上传 可以带参数
  3166. /// </summary>
  3167. /// <param name="file"></param>
  3168. /// <returns></returns>
  3169. [HttpPost]
  3170. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3171. public async Task<IActionResult> UploadProject(IFormFile file)
  3172. {
  3173. //var TypeName = Request.Headers["TypeName"].ToString();
  3174. //if (file == null) return Ok(JsonView(false, "文件不存在!"));
  3175. //var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3176. ////文件名称
  3177. //string projectFileName = file.FileName;
  3178. ////上传的文件的路径
  3179. //string filePath = $"{fileDir}/{projectFileName}";
  3180. //if (TypeName == "A")//A代表团组增减款项
  3181. //{
  3182. // filePath = fileDir + $@"\团组增减款项相关文件";
  3183. // if (!Directory.Exists(filePath))
  3184. // {
  3185. // Directory.CreateDirectory(filePath);
  3186. // }
  3187. // //上传的文件的路径
  3188. // filePath += $@"\{projectFileName}";
  3189. //}
  3190. //else if (TypeName == "B")//B代表商邀相关文件
  3191. //{
  3192. // //上传的文件的路径
  3193. // filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  3194. // if (!Directory.Exists(filePath))
  3195. // {
  3196. // Directory.CreateDirectory(filePath);
  3197. // }
  3198. // //上传的文件的路径
  3199. // filePath = $@"\{projectFileName}";
  3200. //}
  3201. //try
  3202. //{
  3203. // using (FileStream fs = System.IO.File.Create(filePath))
  3204. // {
  3205. // file.CopyTo(fs);
  3206. // fs.Flush();
  3207. // }
  3208. //}
  3209. //catch (Exception ex)
  3210. //{
  3211. // return Ok(JsonView(false, $"文件上传失败! Error:{ex.Message}"));
  3212. //}
  3213. //return Ok(JsonView(true, "上传成功!", projectFileName));
  3214. try
  3215. {
  3216. var TypeName = Request.Headers["TypeName"].ToString();
  3217. if (file != null)
  3218. {
  3219. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3220. //文件名称
  3221. string projectFileName = file.FileName;
  3222. //上传的文件的路径
  3223. string filePath = $"{fileDir}/{projectFileName}";
  3224. if (TypeName == "A")//A代表团组增减款项
  3225. {
  3226. if (!Directory.Exists(fileDir))
  3227. {
  3228. Directory.CreateDirectory(fileDir);
  3229. }
  3230. //上传的文件的路径
  3231. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  3232. }
  3233. else if (TypeName == "B")//B代表商邀相关文件
  3234. {
  3235. if (!Directory.Exists(fileDir))
  3236. {
  3237. Directory.CreateDirectory(fileDir);
  3238. }
  3239. //上传的文件的路径
  3240. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  3241. }
  3242. using (FileStream fs = System.IO.File.Create(filePath))
  3243. {
  3244. file.CopyTo(fs);
  3245. fs.Flush();
  3246. }
  3247. return Ok(JsonView(true, "上传成功!", projectFileName));
  3248. }
  3249. else
  3250. {
  3251. return Ok(JsonView(false, "上传失败!"));
  3252. }
  3253. }
  3254. catch (Exception ex)
  3255. {
  3256. return Ok(JsonView(false, "程序错误!"));
  3257. }
  3258. }
  3259. /// <summary>
  3260. /// 删除指定文件
  3261. /// </summary>
  3262. /// <param name="dto"></param>
  3263. /// <returns></returns>
  3264. [HttpPost]
  3265. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3266. public async Task<IActionResult> DelFile(DelFileDto dto)
  3267. {
  3268. try
  3269. {
  3270. var TypeName = Request.Headers["TypeName"].ToString();
  3271. string filePath = "";
  3272. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3273. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  3274. int id = 0;
  3275. if (TypeName == "A")
  3276. {
  3277. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  3278. // 删除该文件
  3279. System.IO.File.Delete(filePath);
  3280. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  3281. }
  3282. else if (TypeName == "B")
  3283. {
  3284. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  3285. // 删除该文件
  3286. System.IO.File.Delete(filePath);
  3287. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  3288. }
  3289. if (id != 0)
  3290. {
  3291. return Ok(JsonView(true, "成功!"));
  3292. }
  3293. else
  3294. {
  3295. return Ok(JsonView(false, "失败!"));
  3296. }
  3297. }
  3298. catch (Exception ex)
  3299. {
  3300. return Ok(JsonView(false, "程序错误!"));
  3301. throw;
  3302. }
  3303. }
  3304. #endregion
  3305. #region 商邀费用录入
  3306. /// <summary>
  3307. /// 根据团组Id查询商邀费用列表
  3308. /// </summary>
  3309. /// <param name="dto"></param>
  3310. /// <returns></returns>
  3311. [HttpPost]
  3312. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3313. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  3314. {
  3315. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3316. if (groupData.Code != 0)
  3317. {
  3318. return Ok(JsonView(false, groupData.Msg));
  3319. }
  3320. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3321. }
  3322. //
  3323. /// <summary>
  3324. /// 商邀费用 Info Page 基础数据源
  3325. /// </summary>
  3326. /// <param name="dto"></param>
  3327. /// <returns></returns>
  3328. [HttpPost]
  3329. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3330. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3331. {
  3332. try
  3333. {
  3334. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3335. if (groupData.Code != 0)
  3336. {
  3337. return Ok(JsonView(false, groupData.Msg));
  3338. }
  3339. return Ok(JsonView(true, "操作成功", groupData.Data));
  3340. }
  3341. catch (Exception ex)
  3342. {
  3343. return Ok(JsonView(false, ex.Message));
  3344. throw;
  3345. }
  3346. }
  3347. /// <summary>
  3348. /// 根据商邀费用ID查询C表和商邀费用数据
  3349. /// </summary>
  3350. /// <param name="dto"></param>
  3351. /// <returns></returns>
  3352. [HttpPost]
  3353. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3354. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3355. {
  3356. try
  3357. {
  3358. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3359. if (groupData.Code != 0)
  3360. {
  3361. return Ok(JsonView(false, groupData.Msg));
  3362. }
  3363. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3364. }
  3365. catch (Exception ex)
  3366. {
  3367. return Ok(JsonView(false, ex.Message));
  3368. throw;
  3369. }
  3370. }
  3371. /// <summary>
  3372. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3373. /// </summary>
  3374. /// <param name="dto"></param>
  3375. /// <returns></returns>
  3376. [HttpPost]
  3377. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3378. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3379. {
  3380. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3381. if (groupData.Code != 0)
  3382. {
  3383. return Ok(JsonView(false, groupData.Msg));
  3384. }
  3385. #region 应用推送
  3386. try
  3387. {
  3388. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3389. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3390. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3391. }
  3392. catch (Exception ex)
  3393. {
  3394. }
  3395. #endregion
  3396. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3397. }
  3398. /// <summary>
  3399. /// 商邀删除
  3400. /// </summary>
  3401. /// <param name="dto"></param>
  3402. /// <returns></returns>
  3403. [HttpPost]
  3404. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3405. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3406. {
  3407. try
  3408. {
  3409. _sqlSugar.BeginTran();
  3410. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3411. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3412. {
  3413. IsDel = 1,
  3414. DeleteUserId = dto.DeleteUserId,
  3415. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3416. })
  3417. .Where(it => it.Id == dto.Id)
  3418. .ExecuteCommand();
  3419. if (res1 > 0)
  3420. {
  3421. int _diId = 0;
  3422. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3423. if (_ioaInfo != null)
  3424. {
  3425. _diId = _ioaInfo.DiId;
  3426. }
  3427. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3428. .SetColumns(a => new Grp_CreditCardPayment()
  3429. {
  3430. IsDel = 1,
  3431. DeleteUserId = dto.DeleteUserId,
  3432. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3433. })
  3434. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3435. .ExecuteCommand();
  3436. if (res2 > 0)
  3437. {
  3438. _sqlSugar.CommitTran();
  3439. return Ok(JsonView(true, "删除成功!"));
  3440. }
  3441. }
  3442. _sqlSugar.RollbackTran();
  3443. return Ok(JsonView(false, "删除失败"));
  3444. }
  3445. catch (Exception ex)
  3446. {
  3447. _sqlSugar.RollbackTran();
  3448. return Ok(JsonView(false, ex.Message));
  3449. }
  3450. }
  3451. /// <summary>
  3452. /// 团组模块文件上传
  3453. /// </summary>
  3454. /// <param name="dto"></param>
  3455. /// <returns></returns>
  3456. [HttpPost]
  3457. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3458. {
  3459. var jw = JsonView(false);
  3460. long M = 1024 * 1024;
  3461. if (dto.Files == null || dto.Files.Count == 0)
  3462. {
  3463. jw.Msg = "无文件信息!";
  3464. return Ok(jw);
  3465. }
  3466. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3467. {
  3468. jw.Msg = "文件大小超过20M!";
  3469. return Ok(jw);
  3470. }
  3471. //var nameSp = dto.File.FileName.Split(".");
  3472. //if (nameSp.Length < 2)
  3473. //{
  3474. // jw.Msg = "拓展名称有误!";
  3475. // return Ok(jw);
  3476. //}
  3477. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3478. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3479. //{
  3480. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3481. // return Ok(jw);
  3482. //}
  3483. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3484. if (Ctable == null)
  3485. {
  3486. jw.Msg = "Ctable指向有误!";
  3487. return Ok(jw);
  3488. }
  3489. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3490. if (groupInfo == null)
  3491. {
  3492. jw.Msg = "团组信息不存在!";
  3493. return Ok(jw);
  3494. }
  3495. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3496. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3497. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3498. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3499. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3500. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3501. try
  3502. {
  3503. if (!Directory.Exists(fileBase))
  3504. {
  3505. Directory.CreateDirectory(fileBase);
  3506. }
  3507. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3508. foreach (var fileStream in dto.Files)
  3509. {
  3510. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3511. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3512. {
  3513. Cid = dto.Cid,
  3514. CreateTime = DateTime.Now,
  3515. CreateUserId = dto.Userid,
  3516. Ctable = dto.Ctable,
  3517. Diid = dto.Diid,
  3518. IsDel = 0,
  3519. FilePath = saveFilePath,
  3520. FileName = fileStream.FileName
  3521. };
  3522. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3523. {
  3524. fileStream.CopyTo(fs);
  3525. fs.Flush();
  3526. }
  3527. saveArr.Add(file);
  3528. }
  3529. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3530. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3531. jw = JsonView(true, "保存成功!", new
  3532. {
  3533. count = addResult,
  3534. filesName = saveArr.Select(x => x.FileName)
  3535. }) ;
  3536. }
  3537. catch (Exception ex)
  3538. {
  3539. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3540. {
  3541. count = 0,
  3542. filesName = new string[0],
  3543. }) ;
  3544. }
  3545. return Ok(jw);
  3546. }
  3547. /// <summary>
  3548. /// 查询各模块已保存文件
  3549. /// </summary>
  3550. /// <param name="dto"></param>
  3551. /// <returns></returns>
  3552. [HttpPost]
  3553. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3554. {
  3555. var expression = Expressionable.Create<Grp_GroupModelFile>()
  3556. .AndIF(dto.UserId != -1 , x => x.CreateUserId == dto.UserId);
  3557. var visaIds = _sqlSugar.Queryable<Sys_Users>().Where(x => x.JobPostId == 26).Select(x=>x.Id).ToList();
  3558. if (visaIds.Contains(dto.UserId) && dto.Ctable == 80)
  3559. {
  3560. expression = Expressionable.Create<Grp_GroupModelFile>()
  3561. .And(x=>visaIds.Contains(x.CreateUserId));
  3562. }
  3563. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3564. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3565. .Where(expression.ToExpression())
  3566. .ToList();
  3567. //.ToPageList(pagenumber, pageSize, ref totalCount, ref totalPage)
  3568. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3569. {
  3570. x.FileName,
  3571. x.Id,
  3572. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"), AppSettingsHelper.Get("GrpFileFtpPath")),
  3573. CreateTime = x.CreateTime.ToString("yyyy-MM-dd HH-mm"),
  3574. })));
  3575. }
  3576. /// <summary>
  3577. /// 下载该团组下的所有文件
  3578. /// </summary>
  3579. /// <param name="dto"></param>
  3580. /// <returns></returns>
  3581. [HttpPost]
  3582. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3583. {
  3584. var jw = JsonView(false);
  3585. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3586. if (groupInfo == null)
  3587. {
  3588. jw.Msg = "团组信息不存在!";
  3589. return Ok(jw);
  3590. }
  3591. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3592. var isModule = Convert.ToBoolean(dto.isModule);
  3593. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3594. IOOperatorHelper io = new IOOperatorHelper();
  3595. if (isModule)
  3596. {
  3597. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3598. foreach (var moduleArr in moduleGroup)
  3599. {
  3600. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3601. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3602. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3603. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3604. foreach (var item in moduleArr)
  3605. {
  3606. if (System.IO.File.Exists(item.FilePath))
  3607. {
  3608. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3609. {
  3610. byte[] bytes = new byte[fileStream.Length];
  3611. fileStream.Read(bytes, 0, bytes.Length);
  3612. fileStream.Close();
  3613. Stream stream = new MemoryStream(bytes);
  3614. chiZips.Add(item.FileName, stream);
  3615. }
  3616. }
  3617. }
  3618. if (chiZips.Count > 0)
  3619. {
  3620. var byts = io.ConvertZipStream(chiZips);
  3621. Stream stream = new MemoryStream(byts);
  3622. Zips.Add(key.Name+"_.zip", stream);
  3623. }
  3624. }
  3625. }
  3626. else
  3627. {
  3628. foreach (var item in dbQuery)
  3629. {
  3630. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3631. {
  3632. byte[] bytes = new byte[fileStream.Length];
  3633. fileStream.Read(bytes, 0, bytes.Length);
  3634. fileStream.Close();
  3635. Stream stream = new MemoryStream(bytes);
  3636. while (Zips.Keys.Contains(item.FileName))
  3637. {
  3638. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3639. }
  3640. Zips.Add(item.FileName, stream);
  3641. }
  3642. }
  3643. }
  3644. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3645. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3646. if (Zips.Count > 0)
  3647. {
  3648. var byts = io.ConvertZipStream(Zips);
  3649. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3650. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3651. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3652. }
  3653. else
  3654. {
  3655. jw.Msg = "暂无生成文件!";
  3656. }
  3657. return Ok(jw);
  3658. }
  3659. /// <summary>
  3660. /// 下载该团组下此模块的所有文件
  3661. /// </summary>
  3662. /// <param name="dto"></param>
  3663. /// <returns></returns>
  3664. [HttpPost]
  3665. public IActionResult ExportGroupByModule(ExportGroupByModuleDto dto)
  3666. {
  3667. var jw = JsonView(false);
  3668. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3669. if (groupInfo == null)
  3670. {
  3671. jw.Msg = "团组信息不存在!";
  3672. return Ok(jw);
  3673. }
  3674. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid && x.Ctable == dto.Ctable).ToList();
  3675. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == dto.Ctable
  3676. && x.IsDel == 0);
  3677. if (key == null)
  3678. {
  3679. jw.Msg = "Ctable指向错误!";
  3680. return Ok(jw);
  3681. }
  3682. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3683. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3684. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3685. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3686. IOOperatorHelper io = new IOOperatorHelper();
  3687. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3688. foreach (var item in dbQuery)
  3689. {
  3690. if (System.IO.File.Exists(item.FilePath))
  3691. {
  3692. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3693. {
  3694. byte[] bytes = new byte[fileStream.Length];
  3695. fileStream.Read(bytes, 0, bytes.Length);
  3696. fileStream.Close();
  3697. Stream stream = new MemoryStream(bytes);
  3698. while (Zips.Keys.Contains(item.FileName))
  3699. {
  3700. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3701. }
  3702. Zips.Add(item.FileName, stream);
  3703. }
  3704. }
  3705. }
  3706. if (Zips.Count > 0)
  3707. {
  3708. var byts = io.ConvertZipStream(Zips);
  3709. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3710. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_{key.Name}_.Zip");
  3711. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_{key.Name}_.Zip" });
  3712. }
  3713. else
  3714. {
  3715. jw.Msg = "暂无生成文件!";
  3716. }
  3717. return Ok(jw);
  3718. }
  3719. /// <summary>
  3720. /// 删除该团组下的指定文件
  3721. /// </summary>
  3722. /// <param name="dto"></param>
  3723. /// <returns></returns>
  3724. [HttpPost]
  3725. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3726. {
  3727. var jw = JsonView(false);
  3728. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3729. if (sing == null)
  3730. {
  3731. jw.Msg = "暂无";
  3732. return Ok(jw);
  3733. }
  3734. if (System.IO.File.Exists(sing.FilePath))
  3735. {
  3736. try
  3737. {
  3738. System.IO.File.Delete(sing.FilePath);
  3739. }
  3740. catch (Exception ex)
  3741. {
  3742. jw.Msg = "删除失败!" + ex.Message;
  3743. return Ok(jw);
  3744. }
  3745. }
  3746. sing.IsDel = 1;
  3747. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3748. sing.DeleteUserId = dto.UserId;
  3749. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3750. jw = JsonView(true, "删除成功!");
  3751. return Ok(jw);
  3752. }
  3753. #endregion
  3754. #region 团组英文资料
  3755. /// <summary>
  3756. /// 查询团组英文所有资料
  3757. /// </summary>
  3758. /// <param name="dto"></param>
  3759. /// <returns></returns>
  3760. [HttpPost]
  3761. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3762. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3763. {
  3764. try
  3765. {
  3766. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3767. if (groupData.Code != 0)
  3768. {
  3769. return Ok(JsonView(false, groupData.Msg));
  3770. }
  3771. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3772. }
  3773. catch (Exception ex)
  3774. {
  3775. return Ok(JsonView(false, "程序错误!"));
  3776. throw;
  3777. }
  3778. }
  3779. /// <summary>
  3780. /// 团组英文资料操作(Status:1.新增,2.修改)
  3781. /// </summary>
  3782. /// <param name="dto"></param>
  3783. /// <returns></returns>
  3784. [HttpPost]
  3785. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3786. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3787. {
  3788. try
  3789. {
  3790. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3791. if (groupData.Code != 0)
  3792. {
  3793. return Ok(JsonView(false, groupData.Msg));
  3794. }
  3795. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3796. }
  3797. catch (Exception ex)
  3798. {
  3799. return Ok(JsonView(false, "程序错误!"));
  3800. throw;
  3801. }
  3802. }
  3803. /// <summary>
  3804. /// 团组英文资料Id查询数据
  3805. /// </summary>
  3806. /// <param name="dto"></param>
  3807. /// <returns></returns>
  3808. [HttpPost]
  3809. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3810. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3811. {
  3812. try
  3813. {
  3814. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3815. if (_DelegationEnData != null)
  3816. {
  3817. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3818. }
  3819. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3820. }
  3821. catch (Exception ex)
  3822. {
  3823. return Ok(JsonView(false, "程序错误!"));
  3824. throw;
  3825. }
  3826. }
  3827. /// <summary>
  3828. /// 团组英文资料删除
  3829. /// </summary>
  3830. /// <param name="dto"></param>
  3831. /// <returns></returns>
  3832. [HttpPost]
  3833. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3834. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3835. {
  3836. try
  3837. {
  3838. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3839. if (!res)
  3840. {
  3841. return Ok(JsonView(false, "删除失败"));
  3842. }
  3843. return Ok(JsonView(true, "删除成功!"));
  3844. }
  3845. catch (Exception ex)
  3846. {
  3847. return Ok(JsonView(false, "程序错误!"));
  3848. throw;
  3849. }
  3850. }
  3851. #endregion
  3852. #region 导出邀请函
  3853. /// <summary>
  3854. /// 导出邀请函页面初始化
  3855. /// </summary>
  3856. /// <param name="dto"></param>
  3857. /// <returns></returns>
  3858. [HttpPost]
  3859. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3860. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3861. {
  3862. try
  3863. {
  3864. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3865. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3866. if (dto.DiId == 0)
  3867. {
  3868. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3869. }
  3870. else
  3871. {
  3872. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3873. }
  3874. return Ok(JsonView(true, "查询成功!", new
  3875. {
  3876. deleClient = crm_Deles,
  3877. delegations = grp_Delegations
  3878. }));
  3879. }
  3880. catch (Exception ex)
  3881. {
  3882. return Ok(JsonView(false, "程序错误!"));
  3883. throw;
  3884. }
  3885. }
  3886. /// <summary>
  3887. /// 导出邀请函
  3888. /// </summary>
  3889. /// <param name="dto"></param>
  3890. /// <returns></returns>
  3891. [HttpPost]
  3892. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3893. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3894. {
  3895. #region 参数验证
  3896. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3897. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3898. #endregion
  3899. try
  3900. {
  3901. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3902. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3903. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3904. From Grp_TourClientList tcl
  3905. Left Join
  3906. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3907. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3908. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3909. From Crm_DeleClient dc
  3910. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3911. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3912. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3913. Where dc.IsDel = 0) temp
  3914. On temp.DcId =tcl.ClientId
  3915. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3916. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3917. List<string> texts = new List<string>();
  3918. if (datas.Count != 0)
  3919. {
  3920. foreach (TourClientListDetailsView item in datas)
  3921. {
  3922. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3923. {
  3924. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3925. }
  3926. else
  3927. {
  3928. string name = item.LastName + item.FirstName;
  3929. texts.Add(name);
  3930. }
  3931. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3932. {
  3933. if (!transDic.ContainsKey(item.Job))
  3934. {
  3935. texts.Add(item.Job);
  3936. }
  3937. }
  3938. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3939. {
  3940. texts.Add(item.CompanyFullName);
  3941. }
  3942. }
  3943. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3944. if (transData.Count > 0)
  3945. {
  3946. foreach (TranslateResult item in transData)
  3947. {
  3948. if (!transDic.ContainsKey(item.Query))
  3949. {
  3950. transDic.Add(item.Query, item.Translation);
  3951. }
  3952. }
  3953. }
  3954. List<GuestList> list = new List<GuestList>();
  3955. foreach (TourClientListDetailsView dele in datas)
  3956. {
  3957. GuestList guestList = new GuestList();
  3958. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3959. {
  3960. guestList.Name = dele.Pinyin;
  3961. }
  3962. else
  3963. {
  3964. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3965. guestList.Name = Name;
  3966. }
  3967. if (dele.Sex == 0)
  3968. {
  3969. guestList.Sex = "Male";
  3970. }
  3971. else if (dele.Sex == 1)
  3972. {
  3973. guestList.Sex = "Female";
  3974. }
  3975. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3976. if (!string.IsNullOrEmpty(dele.Job))
  3977. {
  3978. guestList.Job = dele.Job;
  3979. }
  3980. list.Add(guestList);
  3981. }
  3982. //载入模板
  3983. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3984. DocumentBuilder builder = new DocumentBuilder(doc);
  3985. //获取word里所有表格
  3986. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3987. //获取所填表格的序数
  3988. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3989. var rowStart = tableOne.Rows[0]; //获取第1行
  3990. //循环赋值
  3991. for (int i = 0; i < list.Count; i++)
  3992. {
  3993. builder.MoveToCell(0, i + 1, 0, 0);
  3994. builder.Write(list[i].Name.ToString());
  3995. builder.MoveToCell(0, i + 1, 1, 0);
  3996. builder.Write(list[i].Sex.ToString());
  3997. builder.MoveToCell(0, i + 1, 2, 0);
  3998. builder.Write(list[i].DOB.ToString());
  3999. builder.MoveToCell(0, i + 1, 3, 0);
  4000. builder.Write(list[i].Job.ToString());
  4001. }
  4002. //删除多余行
  4003. while (tableOne.Rows.Count > list.Count + 1)
  4004. {
  4005. tableOne.Rows.RemoveAt(list.Count + 1);
  4006. }
  4007. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  4008. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  4009. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  4010. doc.Save(filePath);
  4011. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  4012. return Ok(JsonView(true, "操作成功!", Url));
  4013. }
  4014. else
  4015. {
  4016. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  4017. }
  4018. }
  4019. catch (Exception ex)
  4020. {
  4021. return Ok(JsonView(false, ex.Message));
  4022. throw;
  4023. }
  4024. }
  4025. #endregion
  4026. #region 团组经理模块 出入境费用
  4027. ///// <summary>
  4028. ///// 团组模块 - 出入境费用
  4029. ///// </summary>
  4030. ///// <returns></returns>
  4031. //[HttpPost]
  4032. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4033. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  4034. //{
  4035. // try
  4036. // {
  4037. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  4038. // if (data.Code != 0)
  4039. // {
  4040. // return Ok(JsonView(false, data.Msg));
  4041. // }
  4042. // return Ok(JsonView(true, "查询成功!"));
  4043. // }
  4044. // catch (Exception ex)
  4045. // {
  4046. // return Ok(JsonView(false, ex.Message));
  4047. // throw;
  4048. // }
  4049. //}
  4050. /// <summary>
  4051. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  4052. /// </summary>
  4053. /// <returns></returns>
  4054. [HttpPost]
  4055. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4056. public async Task<IActionResult> SetDayAndCostAreaChange()
  4057. {
  4058. try
  4059. {
  4060. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  4061. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  4062. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  4063. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  4064. foreach (var item in unite) //处理交集数据
  4065. {
  4066. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  4067. }
  4068. foreach (var item in merge) //处理差集数据
  4069. {
  4070. int nationalTravelFeeId = 0;
  4071. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  4072. if (cityData != null) nationalTravelFeeId = cityData.Id;
  4073. else
  4074. {
  4075. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  4076. if (countryData != null) nationalTravelFeeId = countryData.Id;
  4077. }
  4078. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  4079. }
  4080. //只更新dayAndCost 的 nationalTravelFeeId;
  4081. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  4082. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  4083. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  4084. }
  4085. catch (Exception ex)
  4086. {
  4087. return Ok(JsonView(false, ex.Message));
  4088. throw;
  4089. }
  4090. }
  4091. /// <summary>
  4092. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  4093. /// </summary>
  4094. /// <returns></returns>
  4095. [HttpPost]
  4096. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4097. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  4098. {
  4099. try
  4100. {
  4101. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  4102. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  4103. //SetDataInfoView
  4104. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  4105. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  4106. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  4107. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  4108. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  4109. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  4110. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  4111. //默认币种显示
  4112. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  4113. {
  4114. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  4115. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  4116. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  4117. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  4118. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  4119. };
  4120. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  4121. if (_currencyRate.Count > 0)
  4122. {
  4123. foreach (var item in _currencyInfos)
  4124. {
  4125. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  4126. if (rateInfo != null)
  4127. {
  4128. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  4129. rate1 *= 1.035M;
  4130. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  4131. }
  4132. }
  4133. }
  4134. return Ok(JsonView(true, "查询成功!", new
  4135. {
  4136. GroupNameData = groupNameData.Data,
  4137. CurrencyData = _CurrencyData,
  4138. WordTypeData = _WordTypeData,
  4139. ExcelTypeData = _ExcelTypeData,
  4140. CurrencyInit = _currencyInfos
  4141. }));
  4142. }
  4143. catch (Exception ex)
  4144. {
  4145. return Ok(JsonView(false, ex.Message));
  4146. throw;
  4147. }
  4148. }
  4149. /// <summary>
  4150. /// 团组模块 - 出入境费用
  4151. /// 实时汇率 tips
  4152. /// 签证费用 tips
  4153. /// </summary>
  4154. /// <returns></returns>
  4155. [HttpPost]
  4156. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4157. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  4158. {
  4159. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  4160. //默认币种显示
  4161. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  4162. {
  4163. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  4164. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  4165. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  4166. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  4167. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  4168. };
  4169. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  4170. List<dynamic> reteInfos = new List<dynamic>();
  4171. if (_currencyRate.Count > 0)
  4172. {
  4173. foreach (var item in _currencyInfos)
  4174. {
  4175. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  4176. if (rateInfo != null)
  4177. {
  4178. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  4179. decimal rate1 = item.Rate;
  4180. rate1 *= 1.03M;
  4181. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  4182. reteInfos.Add(new
  4183. {
  4184. currCode = item.CurrencyCode,
  4185. currName = item.CurrencyName,
  4186. rate = rate2,
  4187. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  4188. });
  4189. }
  4190. }
  4191. }
  4192. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  4193. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  4194. return Ok(JsonView(true, "查询成功!", new
  4195. {
  4196. //GroupNameData = groupNameData.Data,
  4197. visaData = visaData.Data,
  4198. airData = airData.Data,
  4199. reteInfos = reteInfos
  4200. }));
  4201. }
  4202. /// <summary>
  4203. /// 团组模块 - 出入境费用 - Info
  4204. /// </summary>
  4205. /// <returns></returns>
  4206. [HttpPost]
  4207. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4208. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  4209. {
  4210. try
  4211. {
  4212. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  4213. if (data.Code != 0)
  4214. {
  4215. return Ok(JsonView(false, data.Msg));
  4216. }
  4217. return Ok(JsonView(true, "查询成功!", data.Data));
  4218. }
  4219. catch (Exception ex)
  4220. {
  4221. return Ok(JsonView(false, ex.Message));
  4222. }
  4223. }
  4224. /// <summary>
  4225. /// 团组模块 - 出入境费用 - Add And Update
  4226. /// </summary>
  4227. /// <returns></returns>
  4228. [HttpPost]
  4229. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4230. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  4231. {
  4232. try
  4233. {
  4234. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4235. if (data.Code != 0)
  4236. {
  4237. return Ok(JsonView(false, data.Msg));
  4238. }
  4239. //生成默认文件pdf并且通知人员
  4240. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  4241. {
  4242. DiId = dto.DiId,
  4243. ExportType = 1,
  4244. SubTypeId = 1005
  4245. }, "pdf");
  4246. //发送通知
  4247. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  4248. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  4249. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  4250. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  4251. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  4252. return Ok(JsonView(true, data.Msg, data.Data));
  4253. }
  4254. catch (Exception ex)
  4255. {
  4256. return Ok(JsonView(false, ex.Message));
  4257. }
  4258. }
  4259. /// <summary>
  4260. /// 团组模块 - 出入境费用 - Confirm 费用
  4261. /// </summary>
  4262. /// <returns></returns>
  4263. [HttpPost]
  4264. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4265. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  4266. {
  4267. //TODO:测试完毕需把对应的用户ID更改
  4268. //1、数据表添加字段
  4269. //2、更改字段接口()
  4270. var _view = await _enterExitCostRep.ConfirmCost(dto);
  4271. //3、确认成功 给财务发送消息
  4272. if (_view.Code == 200)
  4273. {
  4274. if (dto.Type == 1)
  4275. {
  4276. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  4277. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  4278. }
  4279. }
  4280. return Ok(_view);
  4281. }
  4282. /// <summary>
  4283. /// 团组模块 - 出入境费用 - File downlaod
  4284. /// </summary>
  4285. /// <param name="dto"></param>
  4286. /// <returns></returns>
  4287. [HttpPost]
  4288. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4289. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  4290. {
  4291. try
  4292. {
  4293. if (dto.DiId < 1)
  4294. {
  4295. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4296. }
  4297. if (dto.ExportType < 1)
  4298. {
  4299. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  4300. }
  4301. if (dto.SubTypeId < 1)
  4302. {
  4303. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  4304. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  4305. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  4306. 3 团组成员名单 1 团组成员名单"));
  4307. }
  4308. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4309. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  4310. if (_EnterExitCosts == null)
  4311. {
  4312. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  4313. }
  4314. //数据源
  4315. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  4316. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  4317. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  4318. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  4319. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  4320. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  4321. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  4322. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  4323. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  4324. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  4325. .Select((tcl, dc, cc) => new
  4326. {
  4327. Name = dc.LastName + dc.FirstName,
  4328. Sex = dc.Sex,
  4329. Birthday = dc.BirthDay,
  4330. Company = cc.CompanyFullName,
  4331. Job = dc.Job
  4332. })
  4333. .ToList();
  4334. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4335. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  4336. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  4337. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  4338. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  4339. if (dto.ExportType == 1) //明细表
  4340. {
  4341. if (dto.SubTypeId == 1005) //1005(默认明细表)
  4342. {
  4343. //获取模板
  4344. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  4345. //载入模板
  4346. Document doc = new Document(tempPath);
  4347. DocumentBuilder builder = new DocumentBuilder(doc);
  4348. //利用键值对存放数据
  4349. Dictionary<string, string> dic = new Dictionary<string, string>();
  4350. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  4351. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  4352. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  4353. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  4354. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  4355. //境内费用(其他费用)
  4356. if (_EnterExitCosts.ChoiceOne == 1)
  4357. {
  4358. string row1_1 = "";
  4359. if (_EnterExitCosts.Visa > 0)
  4360. {
  4361. //insidePayTotal += _EnterExitCosts.Visa;
  4362. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  4363. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  4364. {
  4365. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  4366. }
  4367. }
  4368. string row1_2 = "";
  4369. if (_EnterExitCosts.YiMiao > 0)
  4370. {
  4371. //insidePayTotal += _EnterExitCosts.YiMiao;
  4372. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  4373. }
  4374. if (_EnterExitCosts.HeSuan > 0)
  4375. {
  4376. //insidePayTotal += _EnterExitCosts.HeSuan;
  4377. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4378. }
  4379. if (_EnterExitCosts.Service > 0)
  4380. {
  4381. //insidePayTotal += _EnterExitCosts.Service;
  4382. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4383. }
  4384. string row1_3 = "";
  4385. if (_EnterExitCosts.Safe > 0)
  4386. {
  4387. //insidePayTotal += _EnterExitCosts.Safe;
  4388. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4389. }
  4390. if (_EnterExitCosts.Ticket > 0)
  4391. {
  4392. //insidePayTotal += _EnterExitCosts.Ticket;
  4393. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4394. }
  4395. string row1 = "";
  4396. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4397. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4398. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4399. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4400. dic.Add("Row1Str", row1);
  4401. }
  4402. string airTotalStr = string.Empty,
  4403. airPriceStr = string.Empty;
  4404. //经济舱
  4405. if (_EnterExitCosts.SumJJC == 1)
  4406. {
  4407. airTotalStr += $"{_EnterExitCosts.OutsideJJPay.ToString("#0.00")}元/人(经济舱)";
  4408. airPriceStr += $"{_EnterExitCosts.AirJJ.ToString("#0.00")}元/人(经济舱)";
  4409. }
  4410. //公务舱
  4411. if (_EnterExitCosts.SumGWC == 1)
  4412. {
  4413. airTotalStr += $" {_EnterExitCosts.OutsideGWPay.ToString("#0.00")} 元/人(公务舱)";
  4414. airPriceStr += $" {_EnterExitCosts.AirGW.ToString("#0.00")} 元/人(公务舱)";
  4415. }
  4416. //头等舱
  4417. if (_EnterExitCosts.SumTDC == 1)
  4418. {
  4419. airTotalStr += $" {_EnterExitCosts.OutsideTDPay.ToString("#0.00")} 元/人(头等舱)";
  4420. airPriceStr += $" {_EnterExitCosts.AirTD.ToString("#0.00")} 元/人(头等舱)";
  4421. }
  4422. dic.Add("AirTotalStr", airTotalStr);
  4423. dic.Add("AirPriceStr", airPriceStr);
  4424. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4425. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4426. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4427. int table1Row = 0,
  4428. table2Row = 0,
  4429. table3Row = 0,
  4430. table4Row = 0;
  4431. //住宿费
  4432. if (_EnterExitCosts.ChoiceThree == 1)
  4433. {
  4434. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4435. table1Row = dac1.Count;
  4436. #region 填充word表格内容
  4437. for (int i = 0; i < dac1.Count; i++)
  4438. {
  4439. Grp_DayAndCost dac = dac1[i];
  4440. if (dac == null) continue;
  4441. builder.MoveToCell(0, i, 0, 0);
  4442. builder.Write("第" + dac.Days.ToString() + "晚:");
  4443. builder.MoveToCell(0, i, 1, 0);
  4444. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4445. //builder.Write(dac.Place == null ? "" : dac.Place);
  4446. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4447. builder.MoveToCell(0, i, 2, 0);
  4448. builder.Write("费用标准:");
  4449. string curr = "";
  4450. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4451. if (currData != null)
  4452. {
  4453. curr = currData.Name;
  4454. }
  4455. builder.MoveToCell(0, i, 3, 0);
  4456. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4457. builder.MoveToCell(0, i, 4, 0);
  4458. builder.Write("费用小计:");
  4459. builder.MoveToCell(0, i, 5, 0);
  4460. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4461. }
  4462. #endregion
  4463. }else dic.Add("SubZS","0.00");
  4464. //删除多余行
  4465. while (table1.Rows.Count > table1Row)
  4466. {
  4467. table1.Rows.RemoveAt(table1Row);
  4468. }
  4469. //伙食费
  4470. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4471. if (_EnterExitCosts.ChoiceFour == 1)
  4472. {
  4473. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4474. table2Row = dac2.Count;
  4475. #region 填充word表格内容
  4476. for (int i = 0; i < dac2.Count; i++)
  4477. {
  4478. Grp_DayAndCost dac = dac2[i];
  4479. if (dac == null) continue;
  4480. builder.MoveToCell(1, i, 0, 0);
  4481. builder.Write("第" + dac.Days.ToString() + "天:");
  4482. builder.MoveToCell(1, i, 1, 0);
  4483. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4484. builder.MoveToCell(1, i, 2, 0);
  4485. builder.Write("费用标准:");
  4486. string curr = "";
  4487. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4488. if (currData != null)
  4489. {
  4490. curr = currData.Name;
  4491. }
  4492. builder.MoveToCell(1, i, 3, 0);
  4493. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4494. builder.MoveToCell(1, i, 4, 0);
  4495. builder.Write("费用小计:");
  4496. builder.MoveToCell(1, i, 5, 0);
  4497. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4498. }
  4499. #endregion
  4500. }else dic.Add("SubHS","0.00");
  4501. //删除多余行
  4502. while (table2.Rows.Count > table2Row)
  4503. {
  4504. table2.Rows.RemoveAt(table2Row);
  4505. }
  4506. //公杂费
  4507. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4508. if (_EnterExitCosts.ChoiceFive == 1)
  4509. {
  4510. dic.Add("SubGZF", miscellaneousFeeTotal.ToString("#0.00"));
  4511. table3Row = dac3.Count;
  4512. #region 填充word表格内容
  4513. for (int i = 0; i < dac3.Count; i++)
  4514. {
  4515. Grp_DayAndCost dac = dac3[i];
  4516. if (dac == null) continue;
  4517. builder.MoveToCell(2, i, 0, 0);
  4518. builder.Write("第" + dac.Days.ToString() + "天:");
  4519. builder.MoveToCell(2, i, 1, 0);
  4520. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4521. builder.MoveToCell(2, i, 2, 0);
  4522. builder.Write("费用标准:");
  4523. string curr = "";
  4524. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4525. if (currData != null)
  4526. {
  4527. curr = currData.Name;
  4528. }
  4529. builder.MoveToCell(2, i, 3, 0);
  4530. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4531. builder.MoveToCell(2, i, 4, 0);
  4532. builder.Write("费用小计:");
  4533. builder.MoveToCell(2, i, 5, 0);
  4534. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4535. }
  4536. //删除多余行
  4537. while (table3.Rows.Count > table3Row)
  4538. {
  4539. table3.Rows.RemoveAt(table3Row);
  4540. }
  4541. #endregion
  4542. }else dic.Add("SubGZF", "0.00");
  4543. //删除多余行
  4544. while (table3.Rows.Count > table3Row)
  4545. {
  4546. table3.Rows.RemoveAt(table3Row);
  4547. }
  4548. //培训费
  4549. Aspose.Words.Tables.Table table4 = allTables[3] as Aspose.Words.Tables.Table;
  4550. if (_EnterExitCosts.ChoiceSix == 1)
  4551. {
  4552. string pxStr = $"六、培训费合计: {tainFeeTotal.ToString("#0.00")} 元/人";
  4553. dic.Add("SubPX", pxStr);
  4554. table4Row = dac4.Count;
  4555. #region 填充word表格内容
  4556. for (int i = 0; i < dac4.Count; i++)
  4557. {
  4558. Grp_DayAndCost dac = dac4[i];
  4559. if (dac == null) continue;
  4560. builder.MoveToCell(3, i, 0, 0);
  4561. builder.Write("第" + dac.Days.ToString() + "天:");
  4562. builder.MoveToCell(3, i, 1, 0);
  4563. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4564. builder.MoveToCell(3, i, 2, 0);
  4565. builder.Write("费用标准:");
  4566. string curr = "";
  4567. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4568. if (currData != null)
  4569. {
  4570. curr = currData.Name;
  4571. }
  4572. builder.MoveToCell(3, i, 3, 0);
  4573. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4574. builder.MoveToCell(3, i, 4, 0);
  4575. builder.Write("费用小计:");
  4576. builder.MoveToCell(3, i, 5, 0);
  4577. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4578. }
  4579. #endregion
  4580. }
  4581. //else dic.Add("SubPX","0.00");
  4582. //删除多余行
  4583. while (table4.Rows.Count > table4Row)
  4584. {
  4585. table4.Rows.RemoveAt(table4Row);
  4586. }
  4587. decimal otherFeeTotal = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal;
  4588. decimal subJJC = 0.00M,
  4589. subGWC = 0.00M,
  4590. subTDC = 0.00M;
  4591. //经济舱
  4592. if (_EnterExitCosts.SumJJC == 1) subJJC = otherFeeTotal + _EnterExitCosts.OutsideJJPay;
  4593. //公务舱
  4594. if (_EnterExitCosts.SumGWC == 1) subGWC = otherFeeTotal + _EnterExitCosts.OutsideGWPay;
  4595. //头等舱
  4596. if (_EnterExitCosts.SumTDC == 1) subTDC = otherFeeTotal + _EnterExitCosts.OutsideTDPay;
  4597. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4598. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4599. dic.Add("SubTDC", subTDC.ToString("#0.00"));
  4600. #region 填充word模板书签内容
  4601. foreach (var key in dic.Keys)
  4602. {
  4603. builder.MoveToBookmark(key);
  4604. builder.Write(dic[key]);
  4605. }
  4606. #endregion
  4607. //文件名
  4608. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4609. AsposeHelper.removewatermark_v2180();
  4610. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4611. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4612. return Ok(JsonView(true, "成功", new { Url = url }));
  4613. }
  4614. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4615. {
  4616. //获取模板
  4617. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4618. //载入模板
  4619. Document doc = new Document(tempPath);
  4620. DocumentBuilder builder = new DocumentBuilder(doc);
  4621. Dictionary<string, string> dic = new Dictionary<string, string>();
  4622. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4623. {
  4624. List<string> list = new List<string>();
  4625. try
  4626. {
  4627. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4628. foreach (var item in spilitArr)
  4629. {
  4630. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4631. var depCode = spDotandEmpty[2].Substring(0, 3);
  4632. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4633. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4634. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4635. list.Add(depName);
  4636. list.Add(arrName);
  4637. }
  4638. list = list.Distinct().ToList();
  4639. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4640. }
  4641. catch (Exception)
  4642. {
  4643. dic.Add("ReturnCode", "行程录入不正确!");
  4644. }
  4645. }
  4646. else
  4647. {
  4648. dic.Add("ReturnCode", "未录入行程!");
  4649. }
  4650. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4651. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4652. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4653. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4654. {
  4655. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4656. dic.Add("Day", sp.Days.ToString());
  4657. }
  4658. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4659. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4660. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4661. //dic.Add("Names", Names);
  4662. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4663. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4664. decimal dac1totalPrice = 0.00M;
  4665. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4666. foreach (var dac in dac1)
  4667. {
  4668. if (dac.SubTotal == 0.00M)
  4669. {
  4670. continue;
  4671. }
  4672. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4673. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4674. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4675. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4676. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4677. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4678. builder.Write(currency);//币种
  4679. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4680. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4681. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4682. builder.Write("");//人数
  4683. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4684. builder.Write("");//天数
  4685. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4686. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4687. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4688. decimal rate = 0.00M;
  4689. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4690. builder.Write(rate.ToString("#0.0000"));//汇率
  4691. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4692. decimal rbmPrice = dac.SubTotal;
  4693. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4694. accommodationStartIndex++;
  4695. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4696. }
  4697. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4698. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4699. {
  4700. table1.Rows.RemoveAt(i - 1);
  4701. foodandotherStartIndex--;
  4702. }
  4703. if (dac2.Count == dac3.Count)//国家 币种 金额
  4704. {
  4705. for (int i = 0; i < dac2.Count; i++)
  4706. {
  4707. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4708. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4709. }
  4710. }
  4711. decimal dac2totalPrice = 0.00M;
  4712. foreach (var dac in dac2)
  4713. {
  4714. if (dac.SubTotal == 0)
  4715. {
  4716. continue;
  4717. }
  4718. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4719. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4720. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4721. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4722. builder.Write(currency);//币种
  4723. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4724. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4725. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4726. builder.Write("");//人数
  4727. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4728. builder.Write("");//天数
  4729. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4730. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4731. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4732. decimal rate = 0.00M;
  4733. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4734. builder.Write(rate.ToString("#0.0000"));//汇率
  4735. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4736. decimal rbmPrice = dac.SubTotal;
  4737. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4738. foodandotherStartIndex++;
  4739. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4740. }
  4741. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4742. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4743. {
  4744. table1.Rows.RemoveAt(i - 1);
  4745. }
  4746. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4747. string otherFeeStr = "";
  4748. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4749. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4750. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4751. if (otherFeeStr.Length > 0)
  4752. {
  4753. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4754. otherFeeStr = $"({otherFeeStr})";
  4755. dic.Add("OtherFeeStr", otherFeeStr);
  4756. }
  4757. //总计
  4758. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4759. //国际旅费
  4760. string outsideAir = string.Empty;
  4761. string allPriceAir = string.Empty;
  4762. if (_EnterExitCosts.SumJJC == 1)
  4763. {
  4764. outsideAir += string.Format(@"经济舱:{0} 元/人;", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4765. allPriceAir += string.Format(@"经济舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4766. }
  4767. if (_EnterExitCosts.SumGWC == 1)
  4768. {
  4769. outsideAir += string.Format(@"公务舱:{0} 元/人;", _EnterExitCosts.AirGW.ToString("#0.00"));
  4770. allPriceAir += string.Format(@"公务舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideGWPay).ToString("#0.00"));
  4771. }
  4772. if (_EnterExitCosts.SumTDC == 1)
  4773. {
  4774. outsideAir += string.Format(@"头等舱:{0} 元/人;", _EnterExitCosts.AirTD.ToString("#0.00"));
  4775. allPriceAir += string.Format(@"头等舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideTDPay).ToString("#0.00"));
  4776. }
  4777. dic.Add("InTravelPrice", $"({outsideAir})");
  4778. dic.Add("FinalSumPrice", $"({allPriceAir})");
  4779. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4780. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4781. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4782. foreach (var key in dic.Keys)
  4783. {
  4784. builder.MoveToBookmark(key);
  4785. builder.Write(dic[key]);
  4786. }
  4787. //模板文件名
  4788. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  4789. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4790. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4791. return Ok(JsonView(true, "成功", new { Url = url }));
  4792. }
  4793. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4794. {
  4795. //获取模板
  4796. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4797. //载入模板
  4798. WorkbookDesigner designer = new WorkbookDesigner();
  4799. designer.Workbook = new Workbook(tempPath);
  4800. Dictionary<string, string> dic = new Dictionary<string, string>();
  4801. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4802. {
  4803. List<string> list = new List<string>();
  4804. try
  4805. {
  4806. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4807. foreach (var item in spilitArr)
  4808. {
  4809. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4810. var depCode = spDotandEmpty[2].Substring(0, 3);
  4811. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4812. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4813. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4814. list.Add(depName);
  4815. list.Add(arrName);
  4816. }
  4817. list = list.Distinct().ToList();
  4818. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4819. }
  4820. catch (Exception)
  4821. {
  4822. dic.Add("ReturnCode", "行程录入不正确!");
  4823. }
  4824. }
  4825. else
  4826. {
  4827. dic.Add("ReturnCode", "未录入行程!");
  4828. }
  4829. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4830. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4831. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4832. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4833. {
  4834. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4835. dic.Add("Day", sp.Days.ToString());
  4836. }
  4837. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4838. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4839. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4840. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4841. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4842. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4843. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4844. designer.SetDataSource("Name", Names);
  4845. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4846. designer.SetDataSource("Day", dic["Day"] + "天");
  4847. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4848. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4849. int startIndex = 10;
  4850. const int startIndexcopy = 10;
  4851. if (dac2.Count == dac3.Count)//国家 币种 金额
  4852. {
  4853. for (int i = 0; i < dac2.Count; i++)
  4854. {
  4855. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4856. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4857. }
  4858. }
  4859. DataTable dtdac1 = new DataTable();
  4860. List<string> place = new List<string>();
  4861. dtdac1.Columns.AddRange(new DataColumn[] {
  4862. new DataColumn(){ ColumnName = "city"},
  4863. new DataColumn(){ ColumnName = "curr"},
  4864. new DataColumn(){ ColumnName = "criterion"},
  4865. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4866. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4867. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4868. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4869. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4870. });
  4871. DataTable dtdac2 = new DataTable();
  4872. dtdac2.Columns.AddRange(new DataColumn[] {
  4873. new DataColumn(){ ColumnName = "city"},
  4874. new DataColumn(){ ColumnName = "curr"},
  4875. new DataColumn(){ ColumnName = "criterion"},
  4876. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4877. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4878. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4879. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4880. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4881. });
  4882. dtdac1.TableName = "tb1";
  4883. dtdac2.TableName = "tb2";
  4884. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4885. foreach (var item in dac1)
  4886. {
  4887. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4888. if (place.Contains(item.Place))
  4889. {
  4890. continue;
  4891. }
  4892. DataRow row = dtdac1.NewRow();
  4893. row["city"] = item.Place;
  4894. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4895. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4896. row["curr"] = currency;
  4897. row["rate"] = rate.ToString("#0.0000");
  4898. row["criterion"] = item.Cost.ToString("#0.00");
  4899. row["number"] = 1;
  4900. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4901. //row["costRMB"] = rbmPrice;
  4902. dtdac1.Rows.Add(row);
  4903. place.Add(item.Place);
  4904. }
  4905. place = new List<string>();
  4906. foreach (var item in dac2)
  4907. {
  4908. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4909. if (place.Contains(item.Place))
  4910. {
  4911. continue;
  4912. }
  4913. DataRow row = dtdac2.NewRow();
  4914. row["city"] = item.Place;
  4915. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4916. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4917. row["curr"] = currency;
  4918. row["rate"] = rate.ToString("#0.0000");
  4919. row["criterion"] = item.Cost.ToString("#0.00");
  4920. row["number"] = 1;
  4921. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4922. //row["cost"] = item.SubTotal;
  4923. //row["costRMB"] = rbmPrice;
  4924. dtdac2.Rows.Add(row);
  4925. place.Add(item.Place);
  4926. //dac2totalPrice += rbmPrice;
  4927. }
  4928. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4929. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4930. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4931. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4932. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4933. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4934. string cell4Str1 = string.Empty;
  4935. if (_EnterExitCosts.SumJJC == 1) cell4Str1 += $"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人;";
  4936. if (_EnterExitCosts.SumGWC == 1) cell4Str1 += $"公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人;";
  4937. if (_EnterExitCosts.SumTDC == 1) cell4Str1 += $"公务舱:{_EnterExitCosts.AirTD.ToString("#0.00")} 元/人;";
  4938. string cell4Str = $" 4.国际旅费:{cell4Str1}";
  4939. string cellStr = $" 5.其他费用(";
  4940. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4941. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4942. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4943. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4944. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4945. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4946. if (cellStr.Length > 8)
  4947. {
  4948. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4949. }
  4950. cellStr += ")";
  4951. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4952. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay + otherFee;
  4953. decimal pxFee = dac4.Sum(it => it.Cost);
  4954. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay;
  4955. string celllastStr1 = "";
  4956. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4957. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4958. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4959. celllastStr1 += $",国际旅费 元";
  4960. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4961. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4962. designer.SetDataSource("cell4Str", cell4Str);
  4963. designer.SetDataSource("cellStr", cellStr);
  4964. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4965. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay).ToString("#0.00"));
  4966. designer.SetDataSource("celllastStr", celllastStr);
  4967. Workbook wb = designer.Workbook;
  4968. var sheet = wb.Worksheets[0];
  4969. //绑定datatable数据集
  4970. designer.SetDataSource(dtdac1);
  4971. designer.SetDataSource(dtdac2);
  4972. designer.Process();
  4973. var rowStart = dtdac1.Rows.Count;
  4974. while (rowStart > 0)
  4975. {
  4976. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4977. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4978. startIndex++;
  4979. rowStart--;
  4980. }
  4981. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4982. startIndex += 1; //总计行
  4983. rowStart = dtdac2.Rows.Count;
  4984. while (rowStart > 0)
  4985. {
  4986. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4987. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4988. startIndex++;
  4989. rowStart--;
  4990. }
  4991. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4992. wb.CalculateFormula(true);
  4993. //模板文件名
  4994. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  4995. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4996. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4997. return Ok(JsonView(true, "成功", new { Url = url }));
  4998. }
  4999. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  5000. {
  5001. //获取模板
  5002. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  5003. //载入模板
  5004. Document doc = new Document(tempPath);
  5005. DocumentBuilder builder = new DocumentBuilder(doc);
  5006. Dictionary<string, string> dic = new Dictionary<string, string>();
  5007. dic.Add("GroupName", _DelegationInfo.TeamName);
  5008. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  5009. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  5010. string missionLeaderJob = "";//负责人job
  5011. int groupNumber = 0; //团人数
  5012. if (DeleClientList.Count > 0)
  5013. {
  5014. missionLeader = DeleClientList[0]?.Name ?? "";
  5015. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  5016. }
  5017. dic.Add("MissionLeader", missionLeader); //团负责人
  5018. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  5019. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  5020. #region MyRegion
  5021. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  5022. //{
  5023. // List<string> list = new List<string>();
  5024. // try
  5025. // {
  5026. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  5027. // foreach (var item in spilitArr)
  5028. // {
  5029. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  5030. // var depCode = spDotandEmpty[2].Substring(0, 3);
  5031. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  5032. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  5033. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  5034. // list.Add(depName);
  5035. // list.Add(arrName);
  5036. // }
  5037. // list = list.Distinct().ToList();
  5038. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  5039. // }
  5040. // catch (Exception)
  5041. // {
  5042. // dic.Add("ReturnCode", "行程录入不正确!");
  5043. // }
  5044. //}
  5045. //else
  5046. //{
  5047. // dic.Add("ReturnCode", "未录入行程!");
  5048. //}
  5049. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  5050. dic.Add("ReturnCode", string.Join("、", countrys));
  5051. #endregion
  5052. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  5053. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  5054. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  5055. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  5056. //{
  5057. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  5058. // dic.Add("Day", sp.Days.ToString());
  5059. //}
  5060. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  5061. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  5062. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  5063. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5064. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  5065. //培训人员名单
  5066. int cultivateRowIndex = 7;
  5067. foreach (var item in DeleClientList)
  5068. {
  5069. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  5070. builder.Write(item.Name);
  5071. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  5072. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  5073. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  5074. string birthDay = "";
  5075. if (item.Birthday != null)
  5076. {
  5077. DateTime dt = Convert.ToDateTime(item.Birthday);
  5078. birthDay = $"{dt.Year}.{dt.Month}";
  5079. }
  5080. builder.Write(birthDay);
  5081. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  5082. builder.Write(item.Company);
  5083. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  5084. builder.Write(item.Job);
  5085. cultivateRowIndex++;
  5086. }
  5087. //删除多余行
  5088. //cultivateRowIndex -= 2;
  5089. int delRows = 10 + 7 - cultivateRowIndex;
  5090. if (delRows > 0)
  5091. {
  5092. for (int i = 0; i < delRows; i++)
  5093. {
  5094. table1.Rows.RemoveAt(cultivateRowIndex);
  5095. //cultivateRowIndex++;
  5096. }
  5097. }
  5098. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  5099. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  5100. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  5101. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  5102. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  5103. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  5104. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  5105. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  5106. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  5107. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  5108. //其他费用
  5109. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  5110. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  5111. //其他费用合计
  5112. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  5113. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  5114. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  5115. //公务舱合计
  5116. //国际旅费
  5117. string outsideJJ = "";
  5118. string allPriceJJ = "";
  5119. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  5120. {
  5121. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  5122. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  5123. }
  5124. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  5125. {
  5126. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  5127. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  5128. }
  5129. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  5130. {
  5131. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  5132. dic.Add("AirFeeTotal", airFeeTotalStr);
  5133. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  5134. dic.Add("FeeTotal", feeTotalStr);
  5135. }
  5136. foreach (var key in dic.Keys)
  5137. {
  5138. builder.MoveToBookmark(key);
  5139. builder.Write(dic[key]);
  5140. }
  5141. //模板文件名
  5142. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  5143. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5144. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5145. return Ok(JsonView(true, "成功", new { Url = url }));
  5146. }
  5147. }
  5148. else if (dto.ExportType == 2) //表格
  5149. {
  5150. //利用键值对存放数据
  5151. Dictionary<string, string> dic = new Dictionary<string, string>();
  5152. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  5153. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  5154. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  5155. dic.Add("Day", sp.Days.ToString());
  5156. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  5157. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  5158. {
  5159. //获取模板
  5160. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  5161. //载入模板
  5162. Document doc = new Document(tempPath);
  5163. DocumentBuilder builder = new DocumentBuilder(doc);
  5164. dic.Add("TeamName", _DelegationInfo.TeamName);
  5165. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  5166. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  5167. string missionLeaderName = "",
  5168. missionLeaderJob = "";
  5169. if (DeleClientList.Count > 0)
  5170. {
  5171. missionLeaderName = DeleClientList[0].Name;
  5172. missionLeaderJob = DeleClientList[0].Job;
  5173. }
  5174. dic.Add("MissionLeaderName", missionLeaderName);
  5175. dic.Add("MissionLeaderJob", missionLeaderJob);
  5176. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  5177. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  5178. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5179. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  5180. int rowCount = 10;//总人数行
  5181. int startRowIndex = 7; //起始行
  5182. for (int i = 0; i < DeleClientList.Count; i++)
  5183. {
  5184. builder.MoveToCell(0, startRowIndex, 0, 0);
  5185. builder.Write(DeleClientList[i].Name); //出国人员姓名
  5186. builder.MoveToCell(0, startRowIndex, 1, 0);
  5187. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  5188. builder.Write(sex);//性别
  5189. builder.MoveToCell(0, startRowIndex, 2, 0);
  5190. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  5191. builder.MoveToCell(0, startRowIndex, 3, 0);
  5192. builder.Write(DeleClientList[i].Company);//工作单位
  5193. builder.MoveToCell(0, startRowIndex, 4, 0);
  5194. builder.Write(DeleClientList[i].Job);//职务及级别
  5195. builder.MoveToCell(0, startRowIndex, 5, 0);
  5196. builder.Write("");//人员属性
  5197. builder.MoveToCell(0, startRowIndex, 6, 0);
  5198. builder.Write("");//上次出国时间
  5199. startRowIndex++;
  5200. }
  5201. int nullRow = rowCount - DeleClientList.Count;//空行
  5202. for (int i = 0; i < nullRow; i++)
  5203. {
  5204. table1.Rows.Remove(table1.Rows[startRowIndex]);
  5205. }
  5206. foreach (var key in dic.Keys)
  5207. {
  5208. builder.MoveToBookmark(key);
  5209. builder.Write(dic[key]);
  5210. }
  5211. //模板文件名
  5212. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  5213. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5214. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5215. return Ok(JsonView(true, "成功", new { Url = url }));
  5216. }
  5217. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  5218. {
  5219. //获取模板
  5220. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  5221. //载入模板
  5222. Document doc = new Document(tempPath);
  5223. DocumentBuilder builder = new DocumentBuilder(doc);
  5224. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  5225. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  5226. dic.Add("Names", Names);
  5227. int accommodationRows = 12, foodandotherRows = 12;
  5228. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  5229. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  5230. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5231. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  5232. int accommodationStartIndex = 6;
  5233. decimal dac1totalPrice = 0.00M;
  5234. foreach (var dac in dac1)
  5235. {
  5236. if (dac.SubTotal == 0)
  5237. {
  5238. continue;
  5239. }
  5240. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  5241. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  5242. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  5243. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  5244. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  5245. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  5246. builder.Write(currency);//币种
  5247. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  5248. builder.Write(dac.Cost.ToString("#0.00"));//标准
  5249. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  5250. builder.Write("");//人数
  5251. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  5252. builder.Write("");//天数
  5253. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  5254. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  5255. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  5256. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  5257. builder.Write(rate.ToString("#0.0000"));//汇率
  5258. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  5259. decimal rbmPrice = rate * dac.SubTotal;
  5260. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  5261. accommodationStartIndex++;
  5262. dac1totalPrice += rbmPrice;
  5263. }
  5264. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  5265. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  5266. builder.Write("小计");
  5267. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  5268. builder.Write(dac1totalPrice.ToString("#0.00"));
  5269. accommodationStartIndex++;
  5270. int nullRow = accommodationRows - dac1.Count;
  5271. //删除空行
  5272. //if (nullRow > 0)
  5273. //{
  5274. // int rowIndex = accommodationStartIndex;
  5275. // for (int i = 0; i < nullRow; i++)
  5276. // {
  5277. // Aspose.Words.Tables.Row row = table1.Rows[rowIndex];
  5278. // row.Remove();
  5279. // rowIndex++;
  5280. // }
  5281. //}
  5282. if (dac2.Count == dac3.Count)//国家 币种 金额
  5283. {
  5284. for (int i = 0; i < dac2.Count; i++)
  5285. {
  5286. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  5287. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  5288. }
  5289. }
  5290. int foodandotherStartIndex = 19;//
  5291. decimal dac2totalPrice = 0.00M;
  5292. foreach (var dac in dac2)
  5293. {
  5294. if (dac.SubTotal == 0)
  5295. {
  5296. continue;
  5297. }
  5298. //foodandotherStartIndex = 12;
  5299. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  5300. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  5301. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  5302. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  5303. builder.Write(currency);//币种
  5304. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  5305. builder.Write(dac.Cost.ToString("#0.00"));//标准
  5306. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  5307. builder.Write("");//人数
  5308. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  5309. builder.Write("");//天数
  5310. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  5311. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  5312. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  5313. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  5314. builder.Write(rate.ToString("#0.0000"));//汇率
  5315. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  5316. decimal rbmPrice = rate * dac.SubTotal;
  5317. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  5318. foodandotherStartIndex++;
  5319. dac2totalPrice += rbmPrice;
  5320. }
  5321. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  5322. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  5323. //删除空行
  5324. //if (dac2.Count < foodandotherRows)
  5325. //{
  5326. // while (table2.Rows.Count > dac2.Count)
  5327. // {
  5328. // table2.Rows.RemoveAt(dac2.Count);
  5329. // }
  5330. //}
  5331. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  5332. string otherFeeStr = "";
  5333. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  5334. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  5335. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  5336. if (otherFeeStr.Length > 0)
  5337. {
  5338. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  5339. otherFeeStr = $"({otherFeeStr})";
  5340. dic.Add("OtherFeeStr", otherFeeStr);
  5341. }
  5342. foreach (var key in dic.Keys)
  5343. {
  5344. builder.MoveToBookmark(key);
  5345. builder.Write(dic[key]);
  5346. }
  5347. //模板文件名
  5348. string strFileName = $"省级单位出(境)经费报销单{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  5349. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5350. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5351. return Ok(JsonView(true, "成功", new { Url = url }));
  5352. }
  5353. }
  5354. else if (dto.ExportType == 3)
  5355. {
  5356. if (dto.SubTypeId == 1) //团组成员名单
  5357. {
  5358. if (DeleClientList.Count < 1)
  5359. {
  5360. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  5361. }
  5362. //获取模板
  5363. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  5364. //载入模板
  5365. Document doc = new Document(tempPath);
  5366. DocumentBuilder builder = new DocumentBuilder(doc);
  5367. //获取word里所有表格
  5368. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5369. //获取所填表格的序数
  5370. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5371. var rowStart = tableOne.Rows[0]; //获取第1行
  5372. //循环赋值
  5373. for (int i = 0; i < DeleClientList.Count; i++)
  5374. {
  5375. builder.MoveToCell(0, i + 1, 0, 0);
  5376. builder.Write(DeleClientList[i].Name);
  5377. builder.MoveToCell(0, i + 1, 1, 0);
  5378. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  5379. builder.Write(sex);
  5380. builder.MoveToCell(0, i + 1, 2, 0);
  5381. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  5382. builder.MoveToCell(0, i + 1, 3, 0);
  5383. builder.Write(DeleClientList[i].Company);
  5384. builder.MoveToCell(0, i + 1, 4, 0);
  5385. builder.Write(DeleClientList[i].Job);
  5386. }
  5387. //删除多余行
  5388. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  5389. {
  5390. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  5391. }
  5392. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  5393. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  5394. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  5395. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5396. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5397. return Ok(JsonView(true, "成功", new { Url = url }));
  5398. }
  5399. }
  5400. return Ok(JsonView(false, "操作失败!"));
  5401. }
  5402. catch (Exception ex)
  5403. {
  5404. return Ok(JsonView(false, ex.Message));
  5405. }
  5406. }
  5407. /// <summary>
  5408. /// 获取三公费用标准city
  5409. /// </summary>
  5410. /// <param name="placeData"></param>
  5411. /// <param name="nationalTravelFeeId"></param>
  5412. /// <returns></returns>
  5413. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  5414. {
  5415. string _city = string.Empty;
  5416. if (placeData.Count < 1) return _city;
  5417. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  5418. if (data == null) return _city;
  5419. string country = data.Country;
  5420. string city = data.City;
  5421. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  5422. else _city = city;
  5423. return _city;
  5424. }
  5425. /// <summary>
  5426. /// 团组模块 - 出入境费用 - 明细表导出
  5427. /// </summary>
  5428. /// <returns></returns>
  5429. [HttpPost]
  5430. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5431. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  5432. {
  5433. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  5434. if (data.Code != 0)
  5435. {
  5436. return Ok(JsonView(false, data.Msg));
  5437. }
  5438. return Ok(JsonView(true, data.Msg, data.Data));
  5439. }
  5440. /// <summary>
  5441. /// 团组模块 - 出入境费用 - 一键清空
  5442. /// </summary>
  5443. /// <returns></returns>
  5444. [HttpPost]
  5445. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5446. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  5447. {
  5448. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  5449. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  5450. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  5451. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  5452. if (_view.Code == 0)
  5453. {
  5454. return Ok(JsonView(true, "操作成功"));
  5455. }
  5456. return Ok(JsonView(false, "操作失败"));
  5457. }
  5458. /// <summary>
  5459. /// 团组模块 - 出入境费用 - 子项删除
  5460. /// </summary>
  5461. /// <returns></returns>
  5462. [HttpPost]
  5463. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5464. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  5465. {
  5466. try
  5467. {
  5468. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  5469. if (data.Code != 0)
  5470. {
  5471. return Ok(JsonView(false, data.Msg));
  5472. }
  5473. return Ok(JsonView(true, "操作成功!", data.Data));
  5474. }
  5475. catch (Exception ex)
  5476. {
  5477. return Ok(JsonView(false, ex.Message));
  5478. }
  5479. }
  5480. /// <summary>
  5481. /// 团组模块 - 出入境国家费用标准 List
  5482. /// </summary>
  5483. /// <returns></returns>
  5484. [HttpPost]
  5485. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5486. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5487. {
  5488. try
  5489. {
  5490. Stopwatch sw = new Stopwatch();
  5491. sw.Start();
  5492. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5493. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5494. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5495. Where gntf.Isdel = 0");
  5496. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5497. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5498. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5499. //foreach (var item in nationalTravel)
  5500. //{
  5501. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5502. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5503. // if (otherData != null)
  5504. // {
  5505. // cityData.Remove(otherData);
  5506. // cityData.Add(otherData);
  5507. // }
  5508. // nationalTravelFeeData1.Add(new
  5509. // {
  5510. // Country = item.Country,
  5511. // CityData = cityData
  5512. // });
  5513. //}
  5514. sw.Stop();
  5515. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5516. }
  5517. catch (Exception ex)
  5518. {
  5519. return Ok(JsonView(false, ex.Message));
  5520. throw;
  5521. }
  5522. }
  5523. /// <summary>
  5524. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5525. /// </summary>
  5526. /// <returns></returns>
  5527. [HttpPost]
  5528. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5529. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5530. {
  5531. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5532. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5533. List<string> countryData = new List<string>();
  5534. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5535. countryData = countryData.Distinct().ToList();
  5536. List<dynamic> dataSource = new List<dynamic>();
  5537. foreach (var item in countryData)
  5538. {
  5539. List<string> cityData1 = new List<string>();
  5540. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5541. var countryData2 = new
  5542. {
  5543. CountryName = item,
  5544. CityData = cityData1
  5545. };
  5546. dataSource.Add(countryData2);
  5547. }
  5548. return Ok(JsonView(true, "查询成功!", dataSource));
  5549. }
  5550. /// <summary>
  5551. /// 团组模块 - 出入境国家费用标准 Page List
  5552. /// </summary>
  5553. /// <returns></returns>
  5554. [HttpPost]
  5555. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5556. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5557. {
  5558. int portId = dto.PortType;
  5559. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5560. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5561. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5562. string whereSql = string.Empty;
  5563. if (!string.IsNullOrEmpty(dto.Country))
  5564. {
  5565. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5566. }
  5567. if (!string.IsNullOrEmpty(dto.City))
  5568. {
  5569. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5570. }
  5571. string pageSql = string.Format(@"Select * From (
  5572. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5573. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5574. From Grp_NationalTravelFee gntf
  5575. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5576. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5577. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5578. RefAsync<int> total = 0;
  5579. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5580. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5581. }
  5582. /// <summary>
  5583. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5584. /// </summary>
  5585. /// <returns></returns>
  5586. [HttpPost]
  5587. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5588. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5589. {
  5590. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5591. int portId = dto.PortType;
  5592. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5593. string whereSql = string.Empty;
  5594. if (!string.IsNullOrEmpty(dto.Country))
  5595. {
  5596. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5597. }
  5598. if (!string.IsNullOrEmpty(dto.City))
  5599. {
  5600. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5601. }
  5602. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5603. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5604. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5605. From Grp_NationalTravelFee gntf
  5606. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5607. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5608. Where gntf.Isdel = 0 {0} ", whereSql);
  5609. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5610. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5611. }
  5612. /// <summary>
  5613. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5614. /// </summary>
  5615. /// <returns></returns>
  5616. [HttpPost]
  5617. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5618. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5619. {
  5620. try
  5621. {
  5622. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5623. if (data.Code != 0)
  5624. {
  5625. return Ok(JsonView(false, data.Msg));
  5626. }
  5627. return Ok(JsonView(true, "操作成功!", data.Data));
  5628. }
  5629. catch (Exception ex)
  5630. {
  5631. return Ok(JsonView(false, ex.Message));
  5632. }
  5633. }
  5634. /// <summary>
  5635. /// 团组模块 - 出入境国家费用标准 - Del
  5636. /// </summary>
  5637. /// <returns></returns>
  5638. [HttpPost]
  5639. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5640. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5641. {
  5642. try
  5643. {
  5644. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5645. {
  5646. Id = dto.Id,
  5647. DeleteUserId = dto.DeleteUserId,
  5648. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5649. IsDel = 1
  5650. };
  5651. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5652. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5653. .WhereColumns(it => new { it.Id })
  5654. .ExecuteCommandAsync();
  5655. if (delStatus <= 0)
  5656. {
  5657. return Ok(JsonView(false, "删除失败!"));
  5658. }
  5659. return Ok(JsonView(true, "操作成功!"));
  5660. }
  5661. catch (Exception ex)
  5662. {
  5663. return Ok(JsonView(false, ex.Message));
  5664. }
  5665. }
  5666. #endregion
  5667. #region 签证费用录入
  5668. /// <summary>
  5669. /// 根据diid查询签证费用列表
  5670. /// </summary>
  5671. /// <param name="dto"></param>
  5672. /// <returns></returns>
  5673. [HttpPost]
  5674. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5675. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5676. {
  5677. try
  5678. {
  5679. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5680. if (groupData.Code != 0)
  5681. {
  5682. return Ok(JsonView(false, groupData.Msg));
  5683. }
  5684. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5685. }
  5686. catch (Exception ex)
  5687. {
  5688. return Ok(JsonView(false, ex.Message));
  5689. }
  5690. }
  5691. /// <summary>
  5692. /// 根据签证费用Id查询单条数据及c表数据
  5693. /// </summary>
  5694. /// <param name="dto"></param>
  5695. /// <returns></returns>
  5696. [HttpPost]
  5697. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5698. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5699. {
  5700. try
  5701. {
  5702. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5703. if (groupData.Code != 0)
  5704. {
  5705. return Ok(JsonView(false, groupData.Msg));
  5706. }
  5707. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5708. }
  5709. catch (Exception ex)
  5710. {
  5711. return Ok(JsonView(false, ex.Message));
  5712. }
  5713. }
  5714. /// <summary>
  5715. /// 签证费用删除
  5716. /// </summary>
  5717. /// <param name="dto"></param>
  5718. /// <returns></returns>
  5719. [HttpPost]
  5720. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5721. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5722. {
  5723. _sqlSugar.BeginTran();
  5724. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5725. if (!res)
  5726. {
  5727. _sqlSugar.RollbackTran();
  5728. return Ok(JsonView(false, "删除失败"));
  5729. }
  5730. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5731. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5732. .SetColumns(a => new Grp_CreditCardPayment()
  5733. {
  5734. IsDel = 1,
  5735. DeleteUserId = dto.DeleteUserId,
  5736. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5737. })
  5738. .ExecuteCommand();
  5739. if (resSub < 1)
  5740. {
  5741. _sqlSugar.RollbackTran();
  5742. return Ok(JsonView(false, "删除失败"));
  5743. }
  5744. _sqlSugar.CommitTran();
  5745. return Ok(JsonView(true, "删除成功!"));
  5746. }
  5747. /// <summary>
  5748. /// 签证费用录入下拉框初始化
  5749. /// </summary>
  5750. /// <returns></returns>
  5751. [HttpPost]
  5752. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5753. public async Task<IActionResult> VisaPriceAddSelect()
  5754. {
  5755. //支付方式
  5756. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5757. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5758. //币种
  5759. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5760. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5761. //乘客类型
  5762. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5763. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5764. //卡类型
  5765. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5766. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5767. var data = new
  5768. {
  5769. Payment = _Payment,
  5770. CurrencyList = _CurrencyList,
  5771. PassengerType = _PassengerType,
  5772. BankCard = _BankCard
  5773. };
  5774. return Ok(JsonView(true, "查询成功!", data));
  5775. }
  5776. /// <summary>
  5777. /// 签证费用录入操作(Status:1.新增,2.修改)
  5778. /// </summary>
  5779. /// <param name="dto"></param>
  5780. /// <returns></returns>
  5781. [HttpPost]
  5782. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5783. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5784. {
  5785. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5786. if (groupData.Code != 0)
  5787. {
  5788. return Ok(JsonView(false, groupData.Msg));
  5789. }
  5790. #region 应用推送
  5791. try
  5792. {
  5793. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5794. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5795. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5796. }
  5797. catch (Exception ex)
  5798. {
  5799. }
  5800. #endregion
  5801. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5802. }
  5803. #endregion
  5804. #region 签证提成录入
  5805. /// <summary>
  5806. /// 签证提成录入
  5807. /// 基础数据
  5808. /// </summary>
  5809. /// <param name="_dto"></param>
  5810. /// <returns></returns>
  5811. [HttpGet]
  5812. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5813. public async Task<IActionResult> VisaCommissionInit()
  5814. {
  5815. return Ok(await _visaCommissionRep.Init());
  5816. }
  5817. /// <summary>
  5818. /// 签证提成录入
  5819. /// Item
  5820. /// </summary>
  5821. /// <param name="_dto"></param>
  5822. /// <returns></returns>
  5823. [HttpPost]
  5824. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5825. public async Task<IActionResult> VisaCommissionItem(VisaCommissionItemDto _dto)
  5826. {
  5827. var validator = new VisaCommissionItemDtoValidator();
  5828. var validatorRes = await validator.ValidateAsync(_dto);
  5829. if (!validatorRes.IsValid)
  5830. {
  5831. StringBuilder sb = new StringBuilder();
  5832. foreach (var item in validatorRes.Errors)
  5833. {
  5834. sb.AppendLine(item.ErrorMessage);
  5835. }
  5836. return Ok(JsonView(false, sb.ToString()));
  5837. }
  5838. return Ok(await _visaCommissionRep.Item(_dto));
  5839. }
  5840. /// <summary>
  5841. /// 签证提成录入
  5842. /// Save
  5843. /// </summary>
  5844. /// <param name="_dto"></param>
  5845. /// <returns></returns>
  5846. [HttpPost]
  5847. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5848. public async Task<IActionResult> VisaCommissionSave(VisaCommissionSaveDto _dto)
  5849. {
  5850. //参数验证
  5851. if (_dto.Items.Length < 1) return Ok(JsonView(false, "请输入有效的请求!"));
  5852. foreach (var item in _dto.Items)
  5853. {
  5854. if (item.CurrUserId < 1) return Ok(JsonView(false, "请输入有效的CurrUserId!"));
  5855. if (item.DiId < 1) return Ok(JsonView(false, "请输入有效的DiId!"));
  5856. if (string.IsNullOrEmpty( item.Country) ) return Ok(JsonView(false, "国家为空!"));
  5857. //if (item.Quantity < 1) return Ok(JsonView(false, "请输入有效的Qauntity!"));
  5858. }
  5859. return Ok(await _visaCommissionRep.Save(_dto));
  5860. }
  5861. /// <summary>
  5862. /// 签证提成录入
  5863. /// Create
  5864. /// </summary>
  5865. /// <param name="_dto"></param>
  5866. /// <returns></returns>
  5867. [HttpPost]
  5868. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5869. public async Task<IActionResult> VisaCommissionCreate(VisaCommissionCreateDto _dto)
  5870. {
  5871. var validator = new VisaCommissionCreateDtoValidator();
  5872. var validatorRes = await validator.ValidateAsync(_dto);
  5873. if (!validatorRes.IsValid)
  5874. {
  5875. StringBuilder sb = new StringBuilder();
  5876. foreach (var item in validatorRes.Errors)
  5877. {
  5878. sb.AppendLine(item.ErrorMessage);
  5879. }
  5880. return Ok(JsonView(false, sb.ToString()));
  5881. }
  5882. return Ok(await _visaCommissionRep.Create(_dto));
  5883. }
  5884. /// <summary>
  5885. /// 签证提成录入
  5886. /// Put(编辑)
  5887. /// </summary>
  5888. /// <param name="id"></param>
  5889. /// <param name="_dto"></param>
  5890. /// <returns></returns>
  5891. [HttpPut]
  5892. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5893. public async Task<IActionResult> VisaCommissionEdit(int id,VisaCommissionCreateDto _dto)
  5894. {
  5895. if (id < 1) return Ok(JsonView(false, "请输入正确的id参数!"));
  5896. var validator = new VisaCommissionCreateDtoValidator();
  5897. var validatorRes = await validator.ValidateAsync(_dto);
  5898. if (!validatorRes.IsValid)
  5899. {
  5900. StringBuilder sb = new StringBuilder();
  5901. foreach (var item in validatorRes.Errors)
  5902. {
  5903. sb.AppendLine(item.ErrorMessage);
  5904. }
  5905. return Ok(JsonView(false, sb.ToString()));
  5906. }
  5907. return Ok(await _visaCommissionRep.Edit(id,_dto));
  5908. }
  5909. /// <summary>
  5910. /// 签证提成录入
  5911. /// Del
  5912. /// </summary>
  5913. /// <param name="id"></param>
  5914. /// <param name="currUserId"></param>
  5915. /// <returns></returns>
  5916. [HttpPost]
  5917. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5918. public async Task<IActionResult> VisaCommissionDel(int id,int currUserId)
  5919. {
  5920. if (id < 1) return Ok(JsonView(false, "请输入正确的id参数!"));
  5921. if (currUserId < 1) return Ok(JsonView(false, "请输入正确的currUserId参数!"));
  5922. return Ok(await _visaCommissionRep.Del(id, currUserId));
  5923. }
  5924. #endregion
  5925. #region op费用录入
  5926. /// <summary>
  5927. /// 根据diid查询op费用列表
  5928. /// </summary>
  5929. /// <param name="dto"></param>
  5930. /// <returns></returns>
  5931. [HttpPost]
  5932. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5933. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5934. {
  5935. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5936. if (groupData.Code != 0)
  5937. {
  5938. return Ok(JsonView(false, groupData.Msg));
  5939. }
  5940. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5941. }
  5942. /// <summary>
  5943. /// 根据op费用Id查询单条数据及c表数据
  5944. /// </summary>
  5945. /// <param name="dto"></param>
  5946. /// <returns></returns>
  5947. [HttpPost]
  5948. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5949. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5950. {
  5951. try
  5952. {
  5953. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5954. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5955. var data = new
  5956. {
  5957. CarTouristGuideGround = _groupData,
  5958. CreditCardPayment = _creditCardPayment
  5959. };
  5960. return Ok(JsonView(true, "查询成功!", data));
  5961. }
  5962. catch (Exception ex)
  5963. {
  5964. return Ok(JsonView(false, "程序错误!"));
  5965. }
  5966. }
  5967. /// <summary>
  5968. /// op费用删除
  5969. /// </summary>
  5970. /// <param name="dto"></param>
  5971. /// <returns></returns>
  5972. [HttpPost]
  5973. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5974. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5975. {
  5976. try
  5977. {
  5978. _sqlSugar.BeginTran();
  5979. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5980. if (!res)
  5981. {
  5982. return Ok(JsonView(false, "删除失败"));
  5983. }
  5984. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5985. {
  5986. IsDel = 1,
  5987. DeleteUserId = dto.DeleteUserId,
  5988. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5989. }).ExecuteCommandAsync();
  5990. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5991. {
  5992. IsDel = 1,
  5993. DeleteUserId = dto.DeleteUserId,
  5994. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5995. }).ExecuteCommandAsync();
  5996. #region 删除超支相关数据
  5997. //删除导入的超支数据
  5998. var ids = _sqlSugar.Queryable<Fin_LocalGuideRelevancyOverspend>().Where(x => x.LocalGuideId == dto.Id && x.IsDel == 0).Select(x => x.OverspendId).ToList();
  5999. var count = _sqlSugar.Updateable<Fin_GroupExtraCost>().Where(x => ids.Contains(x.Id) && x.IsDel == 0).SetColumns(x => new Fin_GroupExtraCost
  6000. {
  6001. IsDel = 1,
  6002. DeleteUserId = dto.DeleteUserId,
  6003. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  6004. }).ExecuteCommand();
  6005. count = _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(x => x.CTable == 1015 && x.IsDel == 0 && ids.Contains(x.CId)).SetColumns(x => new Grp_CreditCardPayment
  6006. {
  6007. IsDel = 1,
  6008. DeleteUserId = dto.DeleteUserId,
  6009. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  6010. }).ExecuteCommand() ;
  6011. count = _sqlSugar.Updateable<Fin_LocalGuideRelevancyOverspend>().Where(x=>x.IsDel == 0 && x.LocalGuideId == dto.Id).SetColumns(x => new Fin_LocalGuideRelevancyOverspend
  6012. {
  6013. IsDel = 1,
  6014. DeleteUserId = dto.DeleteUserId,
  6015. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  6016. }).ExecuteCommand();
  6017. #endregion
  6018. _sqlSugar.CommitTran();
  6019. return Ok(JsonView(true, "删除成功!"));
  6020. }
  6021. catch (Exception ex)
  6022. {
  6023. _sqlSugar.RollbackTran();
  6024. return Ok(JsonView(false, "程序错误!" + ex.Message));
  6025. }
  6026. }
  6027. /// <summary>
  6028. /// op费用录入操作(Status:1.新增,2.修改)
  6029. /// </summary>
  6030. /// <param name="dto"></param>
  6031. /// <returns></returns>
  6032. [HttpPost]
  6033. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  6034. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  6035. {
  6036. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  6037. if (groupData.Code != 0)
  6038. {
  6039. return Ok(JsonView(false, groupData.Msg));
  6040. }
  6041. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  6042. }
  6043. /// <summary>
  6044. /// 填写费用详细页面初始化绑定
  6045. /// </summary>
  6046. /// <param name="dto"></param>
  6047. /// <returns></returns>
  6048. [HttpPost]
  6049. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  6050. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  6051. {
  6052. try
  6053. {
  6054. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  6055. if (groupData.Code != 0)
  6056. {
  6057. return Ok(JsonView(false, groupData.Msg));
  6058. }
  6059. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  6060. }
  6061. catch (Exception ex)
  6062. {
  6063. return Ok(JsonView(false, ex.Message));
  6064. }
  6065. }
  6066. /// <summary>
  6067. /// 根据op费用Id查询详细数据
  6068. /// </summary>
  6069. /// <param name="dto"></param>
  6070. /// <returns></returns>
  6071. [HttpPost]
  6072. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  6073. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  6074. {
  6075. try
  6076. {
  6077. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  6078. if (groupData.Code != 0)
  6079. {
  6080. return Ok(JsonView(false, groupData.Msg));
  6081. }
  6082. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  6083. }
  6084. catch (Exception ex)
  6085. {
  6086. return Ok(JsonView(false, ex.Message));
  6087. }
  6088. }
  6089. /// <summary>
  6090. /// OP费用录入填写详情
  6091. /// </summary>
  6092. /// <param name="dto"></param>
  6093. /// <returns></returns>
  6094. [HttpPost]
  6095. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  6096. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  6097. {
  6098. try
  6099. {
  6100. #region 参数校验
  6101. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  6102. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  6103. if (di == null) return Ok(JsonView(false, "团组错误!"));
  6104. #endregion
  6105. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  6106. if (groupData.Code != 0)
  6107. {
  6108. return Ok(JsonView(false, groupData.Msg));
  6109. }
  6110. //自动审核
  6111. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  6112. #region 应用推送
  6113. try
  6114. {
  6115. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  6116. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  6117. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  6118. }
  6119. catch (Exception ex)
  6120. {
  6121. }
  6122. #endregion
  6123. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  6124. }
  6125. catch (Exception ex)
  6126. {
  6127. return Ok(JsonView(false, ex.Message));
  6128. }
  6129. }
  6130. /// <summary>
  6131. /// 获取三公详细所有城市
  6132. /// </summary>
  6133. /// <returns></returns>
  6134. [HttpGet]
  6135. public IActionResult OpCarCityResult()
  6136. {
  6137. var jw = JsonView(false);
  6138. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  6139. {
  6140. x.Id,
  6141. x.Country,
  6142. x.City,
  6143. }).ToList();
  6144. if (data.Count > 0)
  6145. {
  6146. jw = JsonView(true, "获取成功!", data);
  6147. }
  6148. else
  6149. {
  6150. jw.Msg = "城市数据为空!";
  6151. jw.Data = new string[0];
  6152. }
  6153. return Ok(jw);
  6154. }
  6155. /// <summary>
  6156. /// 导出地接费用明细
  6157. /// </summary>
  6158. /// <param name="dto"></param>
  6159. /// <returns></returns>
  6160. [HttpPost]
  6161. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  6162. {
  6163. var jw = JsonView(false);
  6164. if (dto.Diid < 1)
  6165. {
  6166. jw.Msg = "请输入正确的diid!";
  6167. return Ok(jw);
  6168. }
  6169. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  6170. if (group == null)
  6171. {
  6172. jw.Msg = "未找到团组信息!";
  6173. return Ok(jw);
  6174. }
  6175. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  6176. if (localGuideArr.Count == 0)
  6177. {
  6178. jw.Msg = "该团组暂无地接信息!";
  6179. return Ok(jw);
  6180. }
  6181. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  6182. var overspendSoure = new Dictionary<int, int>
  6183. {
  6184. { 91, 982 }, //车
  6185. { 92 , 1059} ,//导游
  6186. { 994 , 1073}, //翻译
  6187. { 988 , 1074 }, //早餐
  6188. { 93 , 1075 }, //午餐
  6189. { 989 , 1076 }, //晚餐
  6190. };
  6191. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  6192. foreach (var groupArr in localGroup)
  6193. {
  6194. var keyValue = groupArr.Key;
  6195. if (int.TryParse(keyValue, out int cityid))
  6196. {
  6197. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  6198. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  6199. }
  6200. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  6201. foreach (var item in groupArr)
  6202. {
  6203. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  6204. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  6205. new Grp_CarTouristGuideGroundReservationsContentExtend
  6206. {
  6207. Count = a.Count,
  6208. CreateTime = a.CreateTime,
  6209. CreateUserId = a.CreateUserId,
  6210. CTGGRId = a.CTGGRId,
  6211. Currency = a.Currency,
  6212. DatePrice = a.DatePrice,
  6213. DeleteTime = a.DeleteTime,
  6214. DeleteUserId = a.DeleteUserId,
  6215. DiId = a.DiId,
  6216. Id = a.Id,
  6217. IsDel = a.IsDel,
  6218. Price = a.Price,
  6219. PriceContent = a.PriceContent,
  6220. Remark = a.Remark,
  6221. SId = a.SId,
  6222. SidName = b.Name,
  6223. Units = a.Units,
  6224. }
  6225. ).ToList();
  6226. if (content.Count > 0)
  6227. {
  6228. contentArr.Add(content);
  6229. }
  6230. }
  6231. //open excel
  6232. //set excel
  6233. //save excel
  6234. try
  6235. {
  6236. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  6237. IWorkbook workbook;
  6238. if (Path.GetExtension(filePath).ToLower() == ".xls")
  6239. {
  6240. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  6241. }
  6242. else
  6243. {
  6244. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  6245. }
  6246. ISheet sheet = workbook.GetSheetAt(0);
  6247. var rowStartIndex = 2;
  6248. var clounmCount = 10;
  6249. var initStyleRow = sheet.GetRow(2);
  6250. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  6251. //var overspendArrDetail =
  6252. var existsId = new List<CarCompare>();
  6253. var lastElem = arr.Last();
  6254. var thisSid = -1;
  6255. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  6256. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  6257. {
  6258. Name = "未知币种!",
  6259. Remark = "未知币种!",
  6260. };
  6261. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  6262. Action cloneRowFn = () =>
  6263. {
  6264. rowStartIndex++;
  6265. var cloneRow = sheet.CreateRow(rowStartIndex);
  6266. // 复制样式
  6267. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  6268. {
  6269. ICell sourceCell = initStyleRow.GetCell(i);
  6270. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  6271. // 确保单元格存在样式
  6272. if (sourceCell.CellStyle != null)
  6273. {
  6274. targetCell.CellStyle = sourceCell.CellStyle;
  6275. }
  6276. }
  6277. };
  6278. var mergeRow = () =>
  6279. {
  6280. for (int i = 2; i < sheet.LastRowNum; i++)
  6281. {
  6282. var row = sheet.GetRow(i);
  6283. var cellFirst = row.GetCell(0);
  6284. var thisIndex = i + 1;
  6285. while (thisIndex < sheet.LastRowNum)
  6286. {
  6287. var nextRow = sheet.GetRow(thisIndex);
  6288. var nextCellFirst = nextRow.GetCell(0);
  6289. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  6290. {
  6291. thisIndex++;
  6292. }
  6293. else
  6294. {
  6295. break;
  6296. }
  6297. }
  6298. thisIndex--;
  6299. if (thisIndex != i)
  6300. {
  6301. //合并row
  6302. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6303. i, // 起始行索引(0-based)
  6304. thisIndex, // 结束行索引(0-based)
  6305. 0, // 起始列索引(0-based)
  6306. 0 // 结束列索引(0-based)
  6307. );
  6308. sheet.AddMergedRegion(cellRangeAddress);
  6309. i = thisIndex;
  6310. }
  6311. }
  6312. };
  6313. var chaoshiNumber = 0;
  6314. var totalNumber = 0.00M;
  6315. string lastStr = "";
  6316. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  6317. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  6318. {
  6319. b.IsAuditGM,
  6320. x.Id,
  6321. x.Area,
  6322. b.PayPercentage,
  6323. b.PayMoney,
  6324. }).ToList();
  6325. string yesPayment = "", noPayment = "";
  6326. foreach (var item in queryCarArrByCityAndDiid)
  6327. {
  6328. if (item.IsAuditGM == 1)
  6329. {
  6330. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  6331. }
  6332. else
  6333. {
  6334. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  6335. }
  6336. }
  6337. lastStr = yesPayment + noPayment;
  6338. foreach (var item in arr)
  6339. {
  6340. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  6341. {
  6342. if (thisSid != item.SId)
  6343. {
  6344. if (thisSid == -1)
  6345. {
  6346. thisSid = item.SId;
  6347. }
  6348. else
  6349. {
  6350. //合并小计行
  6351. //创建合并区域的实例
  6352. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6353. rowStartIndex, // 起始行索引(0-based)
  6354. rowStartIndex, // 结束行索引(0-based)
  6355. 0, // 起始列索引(0-based)
  6356. 3 // 结束列索引(0-based)
  6357. );
  6358. sheet.AddMergedRegion(cellRangeAddress);
  6359. var CellStyle = workbook.CreateCellStyle();
  6360. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6361. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  6362. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  6363. for (int i = 0; i <= clounmCount; i++)
  6364. {
  6365. if (i > 6)
  6366. {
  6367. var CellStyle1 = workbook.CreateCellStyle();
  6368. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6369. IFont Font = workbook.CreateFont(); // 创建字体
  6370. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  6371. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6372. CellStyle1.SetFont(Font);
  6373. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  6374. }
  6375. else
  6376. {
  6377. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6378. }
  6379. }
  6380. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6381. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6382. //超时合计
  6383. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6384. //超时数
  6385. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6386. //超时合计费用
  6387. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6388. thisSid = item.SId;
  6389. cloneRowFn();
  6390. chaoshiNumber = 0;
  6391. totalNumber = 0;
  6392. }
  6393. }
  6394. IRow row = sheet.GetRow(rowStartIndex);
  6395. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6396. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  6397. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  6398. if (isOpenOverspendSoure)
  6399. {
  6400. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6401. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  6402. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  6403. }
  6404. for (int i = 0; i <= clounmCount; i++)
  6405. {
  6406. var cell = row.GetCell(i);
  6407. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  6408. if (cell == null)
  6409. {
  6410. cell = row.CreateCell(i);
  6411. }
  6412. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  6413. fontRed.CloneStyleFrom(cell.CellStyle);
  6414. IFont Font = workbook.CreateFont(); // 创建字体
  6415. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  6416. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6417. fontRed.SetFont(Font);
  6418. byte[] rgb = new byte[3] { 255, 242, 204 };
  6419. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  6420. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  6421. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  6422. if (workbook is XSSFWorkbook)
  6423. {
  6424. BackgroundColor255_242_204.FillForegroundColor = 0;
  6425. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  6426. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  6427. }
  6428. else
  6429. {
  6430. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  6431. }
  6432. if (i == 1 || i > 6)
  6433. {
  6434. if (i > 6)
  6435. {
  6436. fontRed.FillForegroundColor = 0;
  6437. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  6438. fontRed.FillPattern = FillPattern.SolidForeground;
  6439. }
  6440. cell.CellStyle = fontRed;
  6441. }
  6442. if (i > 2 && i < 7)
  6443. {
  6444. cell.CellStyle = BackgroundColor255_242_204;
  6445. }
  6446. cell.SetCellValue(setCellValue); //写入单元格
  6447. }
  6448. if (overspendSoure.ContainsKey(thisSid))
  6449. {
  6450. var overspendId = overspendSoure[thisSid];
  6451. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6452. }
  6453. cloneRowFn();
  6454. existsId.Add(new CarCompare
  6455. {
  6456. DataPrice = item.DatePrice.ObjToDate(),
  6457. Sid = item.SId
  6458. });
  6459. }
  6460. if (item.Equals(lastElem))
  6461. {
  6462. //合并小计行
  6463. //创建合并区域的实例
  6464. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6465. rowStartIndex, // 起始行索引(0-based)
  6466. rowStartIndex, // 结束行索引(0-based)
  6467. 0, // 起始列索引(0-based)
  6468. 3 // 结束列索引(0-based)
  6469. );
  6470. sheet.AddMergedRegion(cellRangeAddress);
  6471. var CellStyle = workbook.CreateCellStyle();
  6472. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6473. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  6474. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  6475. for (int i = 0; i <= clounmCount; i++)
  6476. {
  6477. if (i > 6)
  6478. {
  6479. var CellStyle1 = workbook.CreateCellStyle();
  6480. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6481. IFont Font = workbook.CreateFont(); // 创建字体
  6482. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  6483. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6484. CellStyle1.SetFont(Font);
  6485. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  6486. }
  6487. else
  6488. {
  6489. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6490. }
  6491. }
  6492. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6493. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6494. //超时合计
  6495. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6496. //超时数
  6497. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6498. //超时合计费用
  6499. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6500. cloneRowFn();
  6501. // 创建合并区域的实例
  6502. cellRangeAddress = new CellRangeAddress(
  6503. rowStartIndex, // 起始行索引(0-based)
  6504. rowStartIndex, // 结束行索引(0-based)
  6505. 0, // 起始列索引(0-based)
  6506. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  6507. );
  6508. // 添加合并区域
  6509. sheet.AddMergedRegion(cellRangeAddress);
  6510. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  6511. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  6512. }
  6513. }
  6514. mergeRow();
  6515. // 保存修改后的Excel文件到新文件
  6516. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  6517. // new FileStream(newFilePath, FileMode.CreateNew)
  6518. using (var stream = new MemoryStream())
  6519. {
  6520. workbook.Write(stream, true);
  6521. stream.Flush();
  6522. stream.Seek(0, SeekOrigin.Begin);
  6523. MemoryStream memoryStream = new MemoryStream();
  6524. stream.CopyTo(memoryStream);
  6525. memoryStream.Seek(0, SeekOrigin.Begin);
  6526. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  6527. }
  6528. workbook.Close();
  6529. workbook.Dispose();
  6530. }
  6531. catch (Exception ex)
  6532. {
  6533. jw.Msg = "出现异常!" + ex.Message;
  6534. return Ok(jw);
  6535. }
  6536. }
  6537. if (Zips.Count > 0)
  6538. {
  6539. IOOperatorHelper io = new IOOperatorHelper();
  6540. var byts = io.ConvertZipStream(Zips);
  6541. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  6542. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  6543. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  6544. }
  6545. else
  6546. {
  6547. jw.Msg = "暂无生成文件!";
  6548. }
  6549. return Ok(jw);
  6550. }
  6551. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  6552. {
  6553. string outStr = string.Empty;
  6554. switch (i)
  6555. {
  6556. case 0:
  6557. outStr = arr[0].SidName;
  6558. break;
  6559. case 1:
  6560. outStr = arr[0].DataPriceStr;
  6561. break;
  6562. case 2:
  6563. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  6564. break;
  6565. case 4:
  6566. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  6567. break;
  6568. case 7:
  6569. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6570. {
  6571. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  6572. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  6573. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  6574. }
  6575. break;
  6576. case 8:
  6577. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6578. {
  6579. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  6580. }
  6581. break;
  6582. case 9:
  6583. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6584. {
  6585. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  6586. }
  6587. break;
  6588. case 10:
  6589. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6590. {
  6591. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6592. }
  6593. break;
  6594. }
  6595. return outStr;
  6596. }
  6597. #region OP行程单
  6598. /// <summary>
  6599. /// OP行程单初始化
  6600. /// </summary>
  6601. /// <param name="dto"></param>
  6602. /// <returns></returns>
  6603. [HttpPost]
  6604. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6605. {
  6606. var jw = JsonView(false);
  6607. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6608. var group = groupList.First();
  6609. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6610. if (group == null)
  6611. {
  6612. jw.Msg = "暂无团组!";
  6613. return Ok(jw);
  6614. }
  6615. group = groupList.Find(x => x.Id == diid);
  6616. if (group == null)
  6617. {
  6618. jw.Msg = "请输入正确的团组ID!";
  6619. return Ok(jw);
  6620. }
  6621. string city = string.Empty;
  6622. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6623. if (blackCode.Count > 0)
  6624. {
  6625. var black = blackCode.First();
  6626. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6627. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6628. if (blackSp.Length > 0)
  6629. {
  6630. try
  6631. {
  6632. var cityArrCode = new List<string>(20);
  6633. foreach (var item in blackSp)
  6634. {
  6635. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6636. var IndexSelect = itemSp[2];
  6637. var cityArrCodeLength = cityArrCode.Count - 1;
  6638. var startCity = IndexSelect.Substring(0, 3);
  6639. if (cityArrCodeLength > 0)
  6640. {
  6641. var arrEndCity = cityArrCode[cityArrCodeLength];
  6642. if (arrEndCity != startCity)
  6643. {
  6644. cityArrCode.Add(startCity.ToUpper());
  6645. }
  6646. }
  6647. else
  6648. {
  6649. cityArrCode.Add(startCity.ToUpper());
  6650. }
  6651. var endCity = IndexSelect.Substring(3, 3);
  6652. cityArrCode.Add(endCity.ToUpper());
  6653. }
  6654. var cityThree = string.Empty;
  6655. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6656. cityThree = cityThree.TrimEnd(',');
  6657. if (string.IsNullOrWhiteSpace(cityThree))
  6658. {
  6659. throw new
  6660. Exception("error");
  6661. }
  6662. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6663. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6664. foreach (var item in cityArrCode)
  6665. {
  6666. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6667. if (find != null)
  6668. {
  6669. city += find.City + "/";
  6670. }
  6671. else
  6672. {
  6673. city += item + "三字码未收入/";
  6674. }
  6675. }
  6676. city = city.TrimEnd('/');
  6677. }
  6678. catch (Exception e)
  6679. {
  6680. city = "黑屏代码格式不正确!";
  6681. }
  6682. }
  6683. }
  6684. else
  6685. {
  6686. city = "未录入黑屏代码";
  6687. }
  6688. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6689. {
  6690. Date = x.Date,
  6691. Days = x.Days,
  6692. Diffgroup = x.Diffgroup,
  6693. Diid = x.Diid,
  6694. Traffic_First = x.Traffic_First,
  6695. Traffic_Second = x.Traffic_Second,
  6696. Trip = x.Trip,
  6697. WeekDay = x.WeekDay,
  6698. Id = x.Id
  6699. }).ToList();
  6700. jw.Data = new
  6701. {
  6702. groupList = groupList.Select(x => new
  6703. {
  6704. x.Id,
  6705. x.TeamName,
  6706. x.TourCode
  6707. }).ToList(),
  6708. groupInfo = new
  6709. {
  6710. group.VisitDays,
  6711. group.TourCode,
  6712. group.VisitPNumber,
  6713. group.TeamName,
  6714. city
  6715. },
  6716. OpTravelList
  6717. };
  6718. jw.Code = 200;
  6719. jw.Msg = "操作成功!";
  6720. return Ok(jw);
  6721. }
  6722. /// <summary>
  6723. /// 删除团组行程单
  6724. /// </summary>
  6725. /// <returns></returns>
  6726. [HttpPost]
  6727. public IActionResult DelTravel(DelOpTravelDto dto)
  6728. {
  6729. var jw = JsonView(false);
  6730. if (dto.UserId <= 0 || dto.Diid <= 0)
  6731. {
  6732. jw.Msg = "请输入正确的参数!";
  6733. return Ok(jw);
  6734. }
  6735. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6736. .SetColumns(x => new Grp_TravelList
  6737. {
  6738. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6739. DeleteUserId = dto.UserId,
  6740. IsDel = 1,
  6741. }).ExecuteCommand();
  6742. jw = JsonView(true);
  6743. return Ok(jw);
  6744. }
  6745. /// <summary>
  6746. /// 行程单保存
  6747. /// </summary>
  6748. /// <returns></returns>
  6749. [HttpPost]
  6750. public IActionResult TravelSave(TravelSaveDto dto)
  6751. {
  6752. var jw = JsonView(false);
  6753. if (dto.Arr.Count > 0)
  6754. {
  6755. try
  6756. {
  6757. _sqlSugar.BeginTran();
  6758. foreach (var item in dto.Arr)
  6759. {
  6760. if (item.Id == 0)
  6761. {
  6762. throw new Exception("请传入正确的Id");
  6763. }
  6764. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6765. .SetColumns(x => new Grp_TravelList
  6766. {
  6767. Trip = item.Trip
  6768. }).ExecuteCommand();
  6769. }
  6770. _sqlSugar.CommitTran();
  6771. jw = JsonView(true);
  6772. }
  6773. catch (Exception ex)
  6774. {
  6775. _sqlSugar.RollbackTran();
  6776. jw.Msg = "程序异常!" + ex.Message;
  6777. }
  6778. }
  6779. else
  6780. {
  6781. jw.Msg = "请传入正确的参数!";
  6782. }
  6783. return Ok(jw);
  6784. }
  6785. /// <summary>
  6786. /// 导出行程单
  6787. /// </summary>
  6788. /// <param name="dto"></param>
  6789. /// <returns></returns>
  6790. [HttpPost]
  6791. public IActionResult ExportTravel(ExportTravelDto dto)
  6792. {
  6793. var jw = JsonView(false);
  6794. jw.Data = "";
  6795. int diid = 0;
  6796. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6797. if (Find == null)
  6798. {
  6799. jw.Msg = "请选择正确的团组!";
  6800. return Ok(jw);
  6801. }
  6802. else
  6803. {
  6804. diid = Find.Id;
  6805. }
  6806. //数据源
  6807. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6808. DataTable dtBlack = null;
  6809. try
  6810. {
  6811. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6812. }
  6813. catch (Exception)
  6814. {
  6815. jw.Msg = "机票黑屏代码有误!";
  6816. return Ok(jw);
  6817. }
  6818. string CityStr = string.Empty;
  6819. if (dtBlack.Rows.Count == 0)
  6820. {
  6821. jw.Msg = "机票黑屏代码有误!";
  6822. return Ok(jw);
  6823. }
  6824. else
  6825. {
  6826. foreach (DataRow row in dtBlack.Rows)
  6827. {
  6828. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6829. {
  6830. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6831. return Ok(jw);
  6832. }
  6833. }
  6834. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6835. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6836. }
  6837. //创建数据源Table
  6838. DataTable dtSource = new DataTable();
  6839. dtSource.Columns.Add("Days", typeof(string));
  6840. dtSource.Columns.Add("Date", typeof(string));
  6841. dtSource.Columns.Add("Week", typeof(string));
  6842. dtSource.Columns.Add("Traffic", typeof(string));
  6843. dtSource.Columns.Add("Trip", typeof(string));
  6844. //获取数据,放到datatable
  6845. foreach (var item in _travelList)
  6846. {
  6847. DataRow dr = dtSource.NewRow();
  6848. dr["Days"] = item.Days;
  6849. dr["Date"] = item.Date;
  6850. dr["Week"] = item.WeekDay;
  6851. dr["Traffic"] = item.Traffic_First
  6852. + "\r\n"
  6853. + item.Traffic_Second;
  6854. dr["Trip"] = item.Trip;
  6855. dtSource.Rows.Add(dr);
  6856. }
  6857. Dictionary<string, string> dic = new Dictionary<string, string>();
  6858. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6859. dic.Add("City", CityStr);
  6860. dic.Add("Days", Find.VisitDays.ToString());
  6861. dic.Add("DeleCode", Find.TourCode);
  6862. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6863. //模板路径
  6864. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6865. //载入模板
  6866. Document doc = null;
  6867. DocumentBuilder builder = null;
  6868. try
  6869. {
  6870. //载入模板
  6871. doc = new Document(tempPath);
  6872. builder = new DocumentBuilder(doc);
  6873. }
  6874. catch (Exception)
  6875. {
  6876. jw.Msg = "模板位置不存在!";
  6877. return Ok(jw);
  6878. }
  6879. foreach (var key in dic.Keys)
  6880. {
  6881. Bookmark bookmark = doc.Range.Bookmarks[key];
  6882. if (bookmark != null)
  6883. {
  6884. builder.MoveToBookmark(key);
  6885. builder.Write(dic[key]);
  6886. }
  6887. }
  6888. //获取word里所有表格
  6889. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6890. //获取所填表格的序数
  6891. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6892. try
  6893. {
  6894. //循环赋值
  6895. for (int i = 0; i < dtSource.Rows.Count; i++)
  6896. {
  6897. builder.MoveToCell(0, i + 1, 0, 0);
  6898. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6899. builder.MoveToCell(0, i + 1, 1, 0);
  6900. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6901. builder.MoveToCell(0, i + 1, 2, 0);
  6902. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6903. var trip = dtSource.Rows[i]["Trip"].ToString();
  6904. builder.MoveToCell(0, i + 1, 3, 0);
  6905. builder.Write(trip);
  6906. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6907. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6908. // 获取特定索引的段落
  6909. Paragraph paragraph = (Paragraph)paragraphs[0];
  6910. Run run = paragraph.Runs[0];
  6911. Aspose.Words.Font font = run.Font;
  6912. font.Name = "黑体";
  6913. //设置双休红色
  6914. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6915. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6916. paragraph = (Paragraph)paragraphs[1];
  6917. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6918. {
  6919. run = paragraph.Runs[0];
  6920. font = run.Font;
  6921. font.Color = Color.Red;
  6922. }
  6923. }
  6924. }
  6925. catch (Exception ex)
  6926. {
  6927. }
  6928. //删除多余行
  6929. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6930. {
  6931. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6932. }
  6933. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6934. if (!Directory.Exists(savePath))
  6935. {
  6936. try
  6937. {
  6938. Directory.CreateDirectory(savePath);
  6939. }
  6940. catch
  6941. {
  6942. }
  6943. }
  6944. string path = savePath + Find.TeamName + "出访日程";
  6945. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6946. try
  6947. {
  6948. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6949. string postfix = ".docx";
  6950. if (dto.IsPDF == 1)
  6951. {
  6952. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6953. postfix = ".pdf";
  6954. }
  6955. doc.Save(path + postfix, saveFormat);
  6956. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6957. }
  6958. catch (Exception)
  6959. {
  6960. jw = JsonView(false);
  6961. }
  6962. return Ok(jw);
  6963. }
  6964. /// <summary>
  6965. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6966. /// </summary>
  6967. /// <param name="num"></param>
  6968. /// <returns></returns>
  6969. string GetNum(string num)
  6970. {
  6971. string str = "";
  6972. switch (num)
  6973. {
  6974. case "1":
  6975. str = "一";
  6976. break;
  6977. case "2":
  6978. str = "二";
  6979. break;
  6980. case "3":
  6981. str = "三";
  6982. break;
  6983. case "4":
  6984. str = "四";
  6985. break;
  6986. case "5":
  6987. str = "五";
  6988. break;
  6989. case "6":
  6990. str = "六";
  6991. break;
  6992. case "7":
  6993. str = "七";
  6994. break;
  6995. case "8":
  6996. str = "八";
  6997. break;
  6998. case "9":
  6999. str = "九";
  7000. break;
  7001. case "10":
  7002. str = "十";
  7003. break;
  7004. case "11":
  7005. str = "十一";
  7006. break;
  7007. case "12":
  7008. str = "十二";
  7009. break;
  7010. case "一":
  7011. str = "1";
  7012. break;
  7013. case "二":
  7014. str = "2";
  7015. break;
  7016. case "三":
  7017. str = "3";
  7018. break;
  7019. case "四":
  7020. str = "4";
  7021. break;
  7022. case "五":
  7023. str = "5";
  7024. break;
  7025. case "六":
  7026. str = "6";
  7027. break;
  7028. case "七":
  7029. str = "7";
  7030. break;
  7031. case "八":
  7032. str = "8";
  7033. break;
  7034. case "九":
  7035. str = "9";
  7036. break;
  7037. case "十":
  7038. str = "10";
  7039. break;
  7040. case "十一":
  7041. str = "11";
  7042. break;
  7043. case "十二":
  7044. str = "12";
  7045. break;
  7046. }
  7047. return str;
  7048. }
  7049. #endregion
  7050. #endregion
  7051. #region 团组成本
  7052. /// <summary>
  7053. /// 团组成本数据初始化
  7054. /// </summary>
  7055. /// <param name="dto"></param>
  7056. /// <returns></returns>
  7057. [HttpPost]
  7058. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  7059. {
  7060. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  7061. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  7062. WHEN COUNT(*) >= 0 THEN 'True'
  7063. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  7064. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  7065. ").ToList(); //团组列表
  7066. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  7067. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  7068. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  7069. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  7070. if (groupinfoValue != null)
  7071. {
  7072. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  7073. var spArr = new string[1] { countryArr };
  7074. if (countryArr.Contains("|"))
  7075. {
  7076. spArr = countryArr.Split("|");
  7077. }
  7078. else if (countryArr.Contains("、"))
  7079. {
  7080. spArr = countryArr.Split("、");
  7081. }
  7082. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  7083. {
  7084. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  7085. if (dbQueryCountry != null)
  7086. {
  7087. visaCountryInfoArr.Add(dbQueryCountry);
  7088. }
  7089. }
  7090. }
  7091. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  7092. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  7093. var create = _GroupCostRepository.
  7094. CreateGroupCostByBlackCode(dto.Diid);
  7095. if (groupCost.Count == 0 && create.Code == 0)
  7096. {
  7097. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  7098. }
  7099. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  7100. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  7101. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  7102. groupCostMap = groupCostMap.Select(x =>
  7103. {
  7104. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  7105. {
  7106. x.Date = dataForamt.ToString("yyyy-MM-dd");
  7107. }
  7108. return x;
  7109. }).ToList();
  7110. //GroupCostParameter.Add(new
  7111. // Grp_GroupCostParameter());
  7112. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  7113. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  7114. return Ok(JsonView(new
  7115. {
  7116. groupList,
  7117. groupInfo,
  7118. groupChecks,
  7119. groupCost = groupCostMap,
  7120. hotelNumber,
  7121. GroupCostParameter = GroupCostParameterMap,
  7122. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  7123. {
  7124. x.VisaCountry,
  7125. x.VisaPrice,
  7126. x.Id,
  7127. }).ToList(),
  7128. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  7129. blackCodeIsTrue = create.Code == 0 ? true : false,
  7130. hotelIsTrue = hotelIsTrue,
  7131. }));
  7132. }
  7133. /// <summary>
  7134. /// 团组成本信息保存
  7135. /// </summary>
  7136. /// <param name="dto"></param>
  7137. /// <returns></returns>
  7138. [HttpPost]
  7139. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  7140. {
  7141. if (dto.Diid <= 0 || dto.Userid <= 0)
  7142. {
  7143. return Ok(JsonView(false));
  7144. }
  7145. JsonView jw = null;
  7146. bool isTrue = false;
  7147. #region 复制团组成本
  7148. //if (dto.Diid == 2581)
  7149. //{
  7150. // dto.Diid = 2599;
  7151. // dto.CheckBoxs.ForEach(x =>
  7152. // {
  7153. // x.Diid = 2599;
  7154. // });
  7155. // dto.GroupCosts.ForEach(x =>
  7156. // {
  7157. // x.Diid = 2599;
  7158. // });
  7159. // dto.CostTypeHotelNumbers.ForEach(x =>
  7160. // {
  7161. // x.Diid = 2599;
  7162. // });
  7163. // dto.GroupCostParameters.ForEach(x =>
  7164. // {
  7165. // x.DiId = 2599;
  7166. // });
  7167. //}
  7168. #endregion
  7169. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  7170. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  7171. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  7172. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  7173. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  7174. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  7175. try
  7176. {
  7177. _sqlSugar.BeginTran();
  7178. isTrue = await _GroupCostRepository.
  7179. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  7180. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  7181. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  7182. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  7183. _sqlSugar.CommitTran();
  7184. jw = JsonView(true, "保存成功!", isTrue);
  7185. }
  7186. catch (Exception)
  7187. {
  7188. _sqlSugar.RollbackTran();
  7189. jw = JsonView(false);
  7190. }
  7191. return Ok(jw);
  7192. }
  7193. /// <summary>
  7194. /// 司兼导数据
  7195. /// </summary>
  7196. /// <param name="dto"></param>
  7197. /// <returns></returns>
  7198. [HttpPost]
  7199. public IActionResult GetCarGuides(CarGuidesDto dto)
  7200. {
  7201. JsonView jw = null;
  7202. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  7203. jw = JsonView(true, "获取成功!", Data);
  7204. return Ok(jw);
  7205. }
  7206. /// <summary>
  7207. /// 导游数据
  7208. /// </summary>
  7209. /// <param name="dto"></param>
  7210. /// <returns></returns>
  7211. [HttpPost]
  7212. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  7213. {
  7214. JsonView jw = null;
  7215. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  7216. // 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
  7217. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  7218. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  7219. jw = JsonView(true, "获取成功!", Data);
  7220. return Ok(jw);
  7221. }
  7222. /// <summary>
  7223. /// 成本车数据
  7224. /// </summary>
  7225. /// <param name="dto"></param>
  7226. /// <returns></returns>
  7227. [HttpPost]
  7228. public IActionResult GetCarInfo(CarGuidesDto dto)
  7229. {
  7230. JsonView jw = null;
  7231. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  7232. jw = JsonView(true, "获取成功!", Data);
  7233. return Ok(jw);
  7234. }
  7235. /// <summary>
  7236. /// 景点数据
  7237. /// </summary>
  7238. /// <param name="dto"></param>
  7239. /// <returns></returns>
  7240. [HttpPost]
  7241. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  7242. {
  7243. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  7244. return Ok(JsonView(true, "获取成功!", Data));
  7245. }
  7246. /// <summary>
  7247. /// 成本通知
  7248. /// </summary>
  7249. /// <param name="dto"></param>
  7250. /// <returns></returns>
  7251. [HttpPost]
  7252. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  7253. {
  7254. if (dto.Diid < 0)
  7255. {
  7256. return Ok(JsonView(false));
  7257. }
  7258. JsonView jw = null;
  7259. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  7260. if (GroupCostParameter != null)
  7261. {
  7262. int IsShare = 0;
  7263. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  7264. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  7265. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  7266. string msg = string.Empty;
  7267. if (isTrue)
  7268. {
  7269. if (IsShare == 0)
  7270. {
  7271. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  7272. }
  7273. else
  7274. {
  7275. #region 企微通知对应岗位用户
  7276. try
  7277. {
  7278. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  7279. }
  7280. catch (Exception ex)
  7281. {
  7282. }
  7283. #endregion
  7284. msg = "通知成功,其他模块操作人员可见此成本信息!";
  7285. }
  7286. jw = JsonView(isTrue, msg, new { IsShare });
  7287. }
  7288. else
  7289. {
  7290. msg = "修改失败!";
  7291. jw = JsonView(isTrue, msg);
  7292. }
  7293. }
  7294. else
  7295. {
  7296. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  7297. }
  7298. return Ok(jw);
  7299. }
  7300. /// <summary>
  7301. /// 导出报价单
  7302. /// </summary>
  7303. /// <param name="dto"></param>
  7304. /// <returns></returns>
  7305. [HttpPost]
  7306. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  7307. {
  7308. if (dto.Diid == 0)
  7309. {
  7310. return Ok(JsonView(false, "请传递团组id"));
  7311. }
  7312. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7313. if (deleInfo.Code != 0)
  7314. {
  7315. return Ok(JsonView(false, "团组信息查询失败!"));
  7316. }
  7317. var di = deleInfo.Data as DelegationInfoWebView;
  7318. if (di != null)
  7319. {
  7320. di.TeamName = di.TeamName.Replace("|","、");
  7321. di.VisitCountry = di.VisitCountry.Replace("|", "、");
  7322. //文件名
  7323. string strFileName = di.TeamName + "-收款账单.doc";
  7324. //获取模板
  7325. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  7326. //载入模板
  7327. Document doc = new Document(tmppath);
  7328. decimal TotalPrice = 0.00M;
  7329. string itemStr = string.Empty;
  7330. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  7331. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  7332. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  7333. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  7334. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  7335. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  7336. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  7337. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  7338. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  7339. foreach (var cost in groupCostType)
  7340. {
  7341. var List = cost.ToList();
  7342. if (cost.Key == "A")
  7343. {
  7344. foreach (var ListItem in List)
  7345. {
  7346. if (ListItem.number > 0)
  7347. {
  7348. if (ListItem.code.Contains("TBR"))
  7349. {
  7350. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7351. }
  7352. else
  7353. {
  7354. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7355. }
  7356. TotalPrice += (ListItem.number * ListItem.price);
  7357. }
  7358. }
  7359. }
  7360. else
  7361. {
  7362. itemStr = itemStr.Insert(0, "A段\r\n");
  7363. itemStr += "B段\r\n";
  7364. foreach (var ListItem in List)
  7365. {
  7366. if (ListItem.number > 0)
  7367. {
  7368. if (ListItem.code.Contains("TBR"))
  7369. {
  7370. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7371. }
  7372. else
  7373. {
  7374. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7375. }
  7376. TotalPrice += (ListItem.number * ListItem.price);
  7377. }
  7378. }
  7379. }
  7380. }
  7381. #region 替换Word模板书签内容
  7382. Dictionary<string, string> marks = new Dictionary<string, string>();
  7383. marks.Add("To", di.ClientUnit);//付款方
  7384. marks.Add("ToTel", di.TellPhone);//付款方电话
  7385. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  7386. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  7387. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  7388. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  7389. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  7390. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  7391. marks.Add("PayItemContent", itemStr);//详细信息
  7392. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  7393. #endregion
  7394. ////注
  7395. //if (doc.Range.Bookmarks["Attention"] != null)
  7396. //{
  7397. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  7398. // mark.Text = frList[0].Attention;
  7399. //}
  7400. foreach (var item in marks.Keys)
  7401. {
  7402. if (doc.Range.Bookmarks[item] != null)
  7403. {
  7404. Bookmark mark = doc.Range.Bookmarks[item];
  7405. mark.Text = marks[item];
  7406. }
  7407. }
  7408. byte[] bytes = null;
  7409. using (MemoryStream stream = new MemoryStream())
  7410. {
  7411. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7412. bytes = stream.ToArray();
  7413. }
  7414. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  7415. return Ok(JsonView(true, "", new
  7416. {
  7417. Data = bytes,
  7418. strFileName,
  7419. }));
  7420. }
  7421. else
  7422. {
  7423. return Ok(JsonView(false, "团组信息不存在!"));
  7424. }
  7425. }
  7426. /// <summary>
  7427. /// 导出团组成本
  7428. /// </summary>
  7429. /// <param name="dto"></param>
  7430. /// <returns></returns>
  7431. [HttpPost]
  7432. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  7433. {
  7434. var jw = JsonView(false);
  7435. if (dto.Diid == 0)
  7436. {
  7437. return Ok(JsonView(false, "请传递团组id"));
  7438. }
  7439. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7440. if (deleInfo.Code != 0)
  7441. {
  7442. return Ok(JsonView(false, "团组信息查询失败!"));
  7443. }
  7444. var di = deleInfo.Data as DelegationInfoWebView;
  7445. if (di == null)
  7446. {
  7447. return Ok(JsonView(false, "团组信息查询失败!"));
  7448. }
  7449. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  7450. WorkbookDesigner designer = new WorkbookDesigner();
  7451. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  7452. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  7453. for (int i = 0; i < List_GC.Count; i++)
  7454. {
  7455. GroupCost_Excel gc = new GroupCost_Excel();
  7456. gc.Id = List_GC[i].Id;
  7457. gc.Diid = List_GC[i].Diid.ToString();
  7458. gc.DAY = List_GC[i].DAY;
  7459. string week = "";
  7460. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  7461. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  7462. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  7463. gc.ITIN = List_GC[i].ITIN;
  7464. gc.CarType = List_GC[i].CarType;
  7465. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  7466. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  7467. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  7468. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  7469. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  7470. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  7471. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  7472. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  7473. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  7474. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  7475. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  7476. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  7477. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7478. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7479. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  7480. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  7481. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  7482. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  7483. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  7484. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  7485. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  7486. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  7487. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  7488. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  7489. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  7490. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  7491. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  7492. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  7493. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  7494. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  7495. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  7496. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  7497. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  7498. List_GC1.Add(gc);
  7499. }
  7500. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  7501. dt.TableName = "TB";
  7502. //报表标题等不用dt的值
  7503. designer.SetDataSource("TeamName", dto.title.TeamName);
  7504. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  7505. designer.SetDataSource("Tax", dto.title.Tax);
  7506. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  7507. designer.SetDataSource("Currency", dto.title.Currency);
  7508. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  7509. designer.SetDataSource("Rate", dto.title.Rate);
  7510. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  7511. var Aparams = hotels.Find(x => x.Type == "Default");
  7512. if (Aparams == null)
  7513. {
  7514. return Ok(jw);
  7515. }
  7516. //酒店数量
  7517. var txtSGRNumber = Aparams.SGR.ToString();
  7518. var txtTBRNumber = Aparams.TBR.ToString();
  7519. var txtJSESNumber = Aparams.JSES.ToString();
  7520. var txtSUITENumbe = Aparams.SUITE.ToString();
  7521. if (dto.costType == "B")
  7522. {
  7523. Aparams = hotels.Find(x => x.Type == "A");
  7524. var Bparams = hotels.Find(x => x.Type == "B");
  7525. if (Aparams == null || Bparams == null)
  7526. {
  7527. return Ok(jw);
  7528. }
  7529. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  7530. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  7531. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  7532. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  7533. }
  7534. designer.SetDataSource("SGRNumber", txtSGRNumber);
  7535. designer.SetDataSource("TBRNumber", txtTBRNumber);
  7536. designer.SetDataSource("JSESNumber", txtJSESNumber);
  7537. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  7538. var ws = designer.Workbook.Worksheets[0];
  7539. int Row = List_GC.Count;
  7540. int startIndex = 11;
  7541. int HideRows = 0;
  7542. List<int> hideRowsList = new List<int>();
  7543. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  7544. #region A段left数据
  7545. var left = dto.leftInfo.Find(x => x.Type == "A");
  7546. if (left == null)
  7547. {
  7548. return Ok(jw);
  7549. }
  7550. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  7551. if (leftBindData != null)
  7552. {
  7553. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  7554. designer.SetDataSource("VisaRS", leftBindData.rs);
  7555. designer.SetDataSource("VisaXS", leftBindData.xs);
  7556. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7557. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7558. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7559. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7560. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7561. }
  7562. else
  7563. {
  7564. hideRowsList.Add(Row + startIndex + HideRows);
  7565. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7566. }
  7567. HideRows += 2;
  7568. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  7569. if (leftBindData != null)
  7570. {
  7571. designer.SetDataSource("BXDRCB", leftBindData.cb);
  7572. designer.SetDataSource("BXRS", leftBindData.rs);
  7573. designer.SetDataSource("BXXS", leftBindData.xs);
  7574. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7575. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7576. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7577. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7578. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7579. }
  7580. else
  7581. {
  7582. hideRowsList.Add(Row + startIndex + HideRows);
  7583. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7584. }
  7585. HideRows += 2;
  7586. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7587. if (leftBindData != null)
  7588. {
  7589. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7590. designer.SetDataSource("HSRS", leftBindData.rs);
  7591. designer.SetDataSource("HSXS", leftBindData.xs);
  7592. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7593. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7594. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7595. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7596. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7597. }
  7598. else
  7599. {
  7600. hideRowsList.Add(Row + startIndex + HideRows);
  7601. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7602. }
  7603. HideRows += 2;
  7604. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7605. if (leftBindData != null)
  7606. {
  7607. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7608. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7609. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7610. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7611. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7612. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7613. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7614. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7615. }
  7616. else
  7617. {
  7618. hideRowsList.Add(Row + startIndex + HideRows);
  7619. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7620. }
  7621. HideRows += 2;
  7622. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7623. if (leftBindData != null)
  7624. {
  7625. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7626. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7627. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7628. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7629. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7630. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7631. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7632. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7633. }
  7634. else
  7635. {
  7636. hideRowsList.Add(Row + startIndex + HideRows);
  7637. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7638. }
  7639. HideRows += 2;
  7640. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("头等舱"));
  7641. if (leftBindData != null)
  7642. {
  7643. designer.SetDataSource("JPTDCCB", leftBindData.cb);
  7644. designer.SetDataSource("JPTDCPNum", leftBindData.rs);
  7645. designer.SetDataSource("JPTDCXS", leftBindData.xs);
  7646. designer.SetDataSource("JPTDCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7647. designer.SetDataSource("JPTDCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7648. designer.SetDataSource("JPTDCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7649. designer.SetDataSource("JPTDCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7650. designer.SetDataSource("JPTDCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7651. }
  7652. else
  7653. {
  7654. hideRowsList.Add(Row + startIndex + HideRows);
  7655. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7656. }
  7657. HideRows += 2;
  7658. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7659. if (leftBindData != null)
  7660. {
  7661. ////TBR
  7662. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7663. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7664. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7665. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7666. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7667. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7668. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7669. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7670. }
  7671. else
  7672. {
  7673. hideRowsList.Add(Row + startIndex + HideRows);
  7674. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7675. }
  7676. HideRows += 2;
  7677. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7678. if (leftBindData != null)
  7679. {
  7680. ////SGR
  7681. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7682. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7683. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7684. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7685. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7686. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7687. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7688. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7689. }
  7690. else
  7691. {
  7692. hideRowsList.Add(Row + startIndex + HideRows);
  7693. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7694. }
  7695. HideRows += 2;
  7696. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7697. if (leftBindData != null)
  7698. {
  7699. ////JS/ES
  7700. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7701. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7702. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7703. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7704. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7705. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7706. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7707. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7708. }
  7709. else
  7710. {
  7711. hideRowsList.Add(Row + startIndex + HideRows);
  7712. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7713. }
  7714. HideRows += 2;
  7715. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7716. if (leftBindData != null)
  7717. {
  7718. ////SUITE
  7719. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7720. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7721. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7722. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7723. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7724. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7725. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7726. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7727. }
  7728. else
  7729. {
  7730. hideRowsList.Add(Row + startIndex + HideRows);
  7731. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7732. }
  7733. HideRows += 2;
  7734. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7735. if (leftBindData != null)
  7736. {
  7737. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7738. designer.SetDataSource("DJRS", leftBindData.rs);
  7739. designer.SetDataSource("DJXS", leftBindData.xs);
  7740. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7741. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7742. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7743. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7744. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7745. }
  7746. else
  7747. {
  7748. hideRowsList.Add(Row + startIndex + HideRows);
  7749. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7750. }
  7751. HideRows += 2;
  7752. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7753. if (leftBindData != null)
  7754. {
  7755. designer.SetDataSource("HCPCB", leftBindData.cb);
  7756. designer.SetDataSource("HCPRS", leftBindData.rs);
  7757. designer.SetDataSource("HCPXS", leftBindData.xs);
  7758. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7759. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7760. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7761. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7762. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7763. }
  7764. else
  7765. {
  7766. hideRowsList.Add(Row + startIndex + HideRows);
  7767. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7768. }
  7769. HideRows += 2;
  7770. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7771. if (leftBindData != null)
  7772. {
  7773. designer.SetDataSource("CPCB", leftBindData.cb);
  7774. designer.SetDataSource("CPRS", leftBindData.rs);
  7775. designer.SetDataSource("CPXS", leftBindData.xs);
  7776. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7777. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7778. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7779. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7780. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7781. }
  7782. else
  7783. {
  7784. hideRowsList.Add(Row + startIndex + HideRows);
  7785. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7786. }
  7787. HideRows += 2;
  7788. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7789. if (leftBindData != null)
  7790. {
  7791. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7792. designer.SetDataSource("GWRS", leftBindData.rs);
  7793. designer.SetDataSource("GWXS", leftBindData.xs);
  7794. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7795. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7796. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7797. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7798. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7799. }
  7800. else
  7801. {
  7802. hideRowsList.Add(Row + startIndex + HideRows);
  7803. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7804. }
  7805. HideRows += 2;
  7806. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7807. if (leftBindData != null)
  7808. {
  7809. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7810. designer.SetDataSource("LYJRS", leftBindData.rs);
  7811. designer.SetDataSource("LYJXS", leftBindData.xs);
  7812. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7813. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7814. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7815. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7816. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7817. }
  7818. else
  7819. {
  7820. hideRowsList.Add(Row + startIndex + HideRows);
  7821. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7822. }
  7823. #endregion
  7824. #region A段Right信息
  7825. var right = dto.rightInfo.Find(x => x.Type == "A");
  7826. if (right == null)
  7827. {
  7828. return Ok(jw);
  7829. }
  7830. HideRows += 4;
  7831. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7832. if (rightBindData != null)
  7833. {
  7834. //经济舱 + 双人间 TBR
  7835. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7836. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7837. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7838. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7839. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7840. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7841. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7842. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7843. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7844. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7845. }
  7846. else
  7847. {
  7848. hideRowsList.Add(Row + startIndex + HideRows);
  7849. }
  7850. HideRows += 2;
  7851. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7852. if (rightBindData != null)
  7853. {
  7854. //经济舱 + 单人间 SGR
  7855. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7856. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7857. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7858. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7859. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7860. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7861. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7862. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7863. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7864. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7865. }
  7866. else
  7867. {
  7868. hideRowsList.Add(Row + startIndex + HideRows);
  7869. }
  7870. HideRows += 2;
  7871. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7872. if (rightBindData != null)
  7873. {
  7874. //公务舱 + 单人间 SGR
  7875. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7876. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7877. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7878. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7879. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7880. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7881. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7882. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7883. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7884. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7885. }
  7886. else
  7887. {
  7888. hideRowsList.Add(Row + startIndex + HideRows);
  7889. }
  7890. HideRows += 2;
  7891. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7892. if (rightBindData != null)
  7893. {
  7894. //公务舱 + 小套房 JSES
  7895. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7896. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7897. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7898. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7899. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7900. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7901. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7902. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7903. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7904. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7905. }
  7906. else
  7907. {
  7908. hideRowsList.Add(Row + startIndex + HideRows);
  7909. }
  7910. HideRows += 2;
  7911. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7912. if (rightBindData != null)
  7913. {
  7914. //公务舱 + 小套房 JSES
  7915. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7916. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7917. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7918. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7919. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7920. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7921. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7922. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7923. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7924. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7925. }
  7926. else
  7927. {
  7928. hideRowsList.Add(Row + startIndex + HideRows);
  7929. }
  7930. HideRows += 2;
  7931. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7932. if (rightBindData != null)
  7933. {
  7934. //经济舱 + 大套房
  7935. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7936. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7937. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7938. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7939. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7940. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7941. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7942. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7943. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7944. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7945. }
  7946. else
  7947. {
  7948. hideRowsList.Add(Row + startIndex + HideRows);
  7949. }
  7950. HideRows += 2;
  7951. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 JS/ES"));
  7952. if (rightBindData != null)
  7953. {
  7954. //头等舱 + 小套房 JSES
  7955. designer.SetDataSource("lblTDCJSESDRCB", rightBindData.cb);
  7956. designer.SetDataSource("txtTDCJSESRS", rightBindData.rs);
  7957. designer.SetDataSource("lblTDCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7958. designer.SetDataSource("lblTDCJSESDRBJ", rightBindData.bj);
  7959. designer.SetDataSource("lblTDCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7960. designer.SetDataSource("lblTDCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7961. designer.SetDataSource("lblTDCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7962. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7963. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7964. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7965. }
  7966. else
  7967. {
  7968. hideRowsList.Add(Row + startIndex + HideRows);
  7969. }
  7970. HideRows += 2;
  7971. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 SUITE"));
  7972. if (rightBindData != null)
  7973. {
  7974. //头等舱 + 大套房
  7975. designer.SetDataSource("lblTDCSUITEDRCB", rightBindData.cb);
  7976. designer.SetDataSource("txtTDCSUITERS", rightBindData.rs);
  7977. designer.SetDataSource("lblTDCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7978. designer.SetDataSource("lblTDCSUITEDRBJ", rightBindData.bj);
  7979. designer.SetDataSource("lblTDCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7980. designer.SetDataSource("lblTDCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7981. designer.SetDataSource("lblTDCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7982. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7983. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7984. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7985. }
  7986. else
  7987. {
  7988. hideRowsList.Add(Row + startIndex + HideRows);
  7989. }
  7990. #endregion
  7991. #region B段标题清空
  7992. designer.SetDataSource("CostBDRCB", "");
  7993. designer.SetDataSource("CostBRS", "");
  7994. designer.SetDataSource("CostBXS", "");
  7995. designer.SetDataSource("CostBZCB", "");
  7996. designer.SetDataSource("CostBDRBJ", "");
  7997. designer.SetDataSource("CostBZBJ", "");
  7998. designer.SetDataSource("CostBDRLR", "");
  7999. designer.SetDataSource("CostBZLR", "");
  8000. designer.SetDataSource("CostBDRCBOM", "");
  8001. designer.SetDataSource("CostBRSOM", "");
  8002. designer.SetDataSource("CostBZCBOM", "");
  8003. designer.SetDataSource("CostBDRBJOM", "");
  8004. designer.SetDataSource("CostBZBJOM", "");
  8005. designer.SetDataSource("CostBDRLROM", "");
  8006. designer.SetDataSource("CostBZLROM", "");
  8007. #endregion
  8008. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  8009. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  8010. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  8011. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  8012. designer.SetDataSource("DJName", "地接(CNY)");
  8013. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  8014. designer.SetDataSource("CPName", "地接-船票(CNY)");
  8015. designer.SetDataSource("GWName", "公务(CNY)");
  8016. designer.SetDataSource("YQHName", "邀请函(CNY)");
  8017. designer.SetDataSource("LYJName", "零用金(CNY)");
  8018. designer.SetDataSource("HSName", "核酸检测(CNY)");
  8019. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  8020. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  8021. designer.SetDataSource("AirTDCName", "机票-头等舱(CNY)");
  8022. designer.SetDataSource("BXName", "保险(CNY)");
  8023. designer.SetDataSource("VisaName", "签证(CNY)");
  8024. #region B段基本数据
  8025. if (dto.costType == "B")
  8026. {
  8027. left = dto.leftInfo.Find(x => x.Type == "B");
  8028. if (left == null)
  8029. {
  8030. return Ok(jw);
  8031. }
  8032. #region B段left数据
  8033. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  8034. if (leftBindData != null)
  8035. {
  8036. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  8037. designer.SetDataSource("BHSRS", leftBindData.rs);
  8038. designer.SetDataSource("BHSXS", leftBindData.xs);
  8039. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8040. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8041. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8042. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8043. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8044. }
  8045. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  8046. if (leftBindData != null)
  8047. {
  8048. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  8049. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  8050. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  8051. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8052. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8053. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8054. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8055. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8056. }
  8057. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  8058. if (leftBindData != null)
  8059. {
  8060. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  8061. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  8062. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  8063. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8064. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8065. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8066. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8067. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8068. }
  8069. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("头等舱"));
  8070. if (leftBindData != null)
  8071. {
  8072. designer.SetDataSource("BJPTDCCB", leftBindData.cb);
  8073. designer.SetDataSource("BJPTDCPNum", leftBindData.rs);
  8074. designer.SetDataSource("BJPTDCXS", leftBindData.xs);
  8075. designer.SetDataSource("BJPTDCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8076. designer.SetDataSource("BJPTDCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8077. designer.SetDataSource("BJPTDCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8078. designer.SetDataSource("BJPTDCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8079. designer.SetDataSource("BJPTDCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8080. }
  8081. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  8082. if (leftBindData != null)
  8083. {
  8084. designer.SetDataSource("BHCPCB", leftBindData.cb);
  8085. designer.SetDataSource("BHCPRS", leftBindData.rs);
  8086. designer.SetDataSource("BHCPXS", leftBindData.xs);
  8087. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8088. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8089. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8090. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8091. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8092. }
  8093. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  8094. if (leftBindData != null)
  8095. {
  8096. designer.SetDataSource("BCPCB", leftBindData.cb);
  8097. designer.SetDataSource("BCPRS", leftBindData.rs);
  8098. designer.SetDataSource("BCPXS", leftBindData.xs);
  8099. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8100. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8101. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8102. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8103. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8104. }
  8105. //TBR
  8106. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  8107. if (leftBindData != null)
  8108. {
  8109. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  8110. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  8111. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  8112. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8113. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8114. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8115. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8116. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8117. }
  8118. //SGR
  8119. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  8120. if (leftBindData != null)
  8121. {
  8122. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  8123. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  8124. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  8125. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8126. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8127. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8128. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8129. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8130. }
  8131. //JS/ES
  8132. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  8133. if (leftBindData != null)
  8134. {
  8135. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  8136. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  8137. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  8138. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8139. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8140. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8141. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8142. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8143. }
  8144. //SUITE
  8145. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  8146. if (leftBindData != null)
  8147. {
  8148. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  8149. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  8150. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  8151. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8152. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8153. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8154. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8155. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8156. }
  8157. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  8158. if (leftBindData != null)
  8159. {
  8160. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  8161. designer.SetDataSource("BDJRS", leftBindData.rs);
  8162. designer.SetDataSource("BDJXS", leftBindData.xs);
  8163. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8164. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8165. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8166. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8167. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8168. }
  8169. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  8170. if (leftBindData != null)
  8171. {
  8172. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  8173. designer.SetDataSource("BGWRS", leftBindData.rs);
  8174. designer.SetDataSource("BGWXS", leftBindData.xs);
  8175. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8176. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8177. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8178. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8179. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8180. }
  8181. #region 优化方案
  8182. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  8183. //excelBind.Add("零用金", new {
  8184. //cb="",
  8185. //rs="",
  8186. //xs ="",
  8187. //zcb = "",
  8188. //});
  8189. #endregion
  8190. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  8191. if (leftBindData != null)
  8192. {
  8193. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  8194. designer.SetDataSource("BLYJRS", leftBindData.rs);
  8195. designer.SetDataSource("BLYJXS", leftBindData.xs);
  8196. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  8197. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  8198. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  8199. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  8200. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  8201. }
  8202. #endregion
  8203. #region B段Right信息
  8204. right = dto.rightInfo.Find(x => x.Type == "B");
  8205. if (right == null)
  8206. {
  8207. return Ok(jw);
  8208. }
  8209. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  8210. if (rightBindData != null)
  8211. {
  8212. //经济舱 + 双人间 TBR
  8213. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  8214. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  8215. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8216. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  8217. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8218. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8219. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8220. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8221. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8222. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8223. }
  8224. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  8225. if (rightBindData != null)
  8226. {
  8227. //经济舱 + 单人间 SGR
  8228. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  8229. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  8230. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8231. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  8232. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8233. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8234. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8235. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8236. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8237. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8238. }
  8239. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  8240. if (rightBindData != null)
  8241. {
  8242. //公务舱 + 单人间 SGR
  8243. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  8244. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  8245. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8246. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  8247. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8248. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8249. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8250. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8251. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8252. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8253. }
  8254. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  8255. if (rightBindData != null)
  8256. {
  8257. //公务舱 + 小套房 JSES
  8258. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  8259. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  8260. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8261. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  8262. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8263. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8264. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8265. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8266. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8267. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8268. }
  8269. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  8270. if (rightBindData != null)
  8271. {
  8272. //公务舱 + 小套房 JSES
  8273. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  8274. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  8275. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8276. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  8277. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8278. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8279. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8280. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8281. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8282. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8283. }
  8284. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  8285. if (rightBindData != null)
  8286. {
  8287. //经济舱 + 大套房
  8288. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  8289. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  8290. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8291. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  8292. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8293. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8294. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8295. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8296. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8297. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8298. }
  8299. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 JS/ES"));
  8300. if (rightBindData != null)
  8301. {
  8302. //头等舱 + 小套房 JSES
  8303. designer.SetDataSource("BlblTDCJSESDRCB", rightBindData.cb);
  8304. designer.SetDataSource("BtxtTDCJSESRS", rightBindData.rs);
  8305. designer.SetDataSource("BlblTDCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8306. designer.SetDataSource("BlblTDCJSESDRBJ", rightBindData.bj);
  8307. designer.SetDataSource("BlblTDCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8308. designer.SetDataSource("BlblTDCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8309. designer.SetDataSource("BlblTDCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8310. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8311. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8312. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8313. }
  8314. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 SUITE"));
  8315. if (rightBindData != null)
  8316. {
  8317. //头等舱 + 大套房
  8318. designer.SetDataSource("BlblTDCSUITEDRCB", rightBindData.cb);
  8319. designer.SetDataSource("BtxtTDCSUITERS", rightBindData.rs);
  8320. designer.SetDataSource("BlblTDCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8321. designer.SetDataSource("BlblTDCSUITEDRBJ", rightBindData.bj);
  8322. designer.SetDataSource("BlblTDCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8323. designer.SetDataSource("BlblTDCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8324. designer.SetDataSource("BlblTDCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8325. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8326. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8327. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8328. }
  8329. #endregion
  8330. #region 标题
  8331. designer.SetDataSource("CostBDRCB", "单人成本");
  8332. designer.SetDataSource("CostBRS", "人数");
  8333. designer.SetDataSource("CostBXS", "系数");
  8334. designer.SetDataSource("CostBZCB", "总成本");
  8335. designer.SetDataSource("CostBDRBJ", "单人报价");
  8336. designer.SetDataSource("CostBZBJ", "总报价");
  8337. designer.SetDataSource("CostBDRLR", "单人利润");
  8338. designer.SetDataSource("CostBZLR", "总利润");
  8339. designer.SetDataSource("CostBDRCBOM", "单人成本");
  8340. designer.SetDataSource("CostBRSOM", "人数");
  8341. designer.SetDataSource("CostBZCBOM", "总成本");
  8342. designer.SetDataSource("CostBDRBJOM", "单人报价");
  8343. designer.SetDataSource("CostBZBJOM", "总报价");
  8344. designer.SetDataSource("CostBDRLROM", "单人利润");
  8345. designer.SetDataSource("CostBZLROM", "总利润");
  8346. #endregion
  8347. }
  8348. #endregion
  8349. designer.SetDataSource("TzZCB2", TzZCB2);
  8350. designer.SetDataSource("TzZBJ2", TzZBJ2);
  8351. designer.SetDataSource("TzZLR2", TzZLR2);
  8352. string[] dataSourceKeys = new string[]
  8353. {
  8354. "VF",
  8355. "TGS",
  8356. "TGOF",
  8357. "TGM",
  8358. "TGA",
  8359. "TGTF",
  8360. "TGEF",
  8361. "CFM",
  8362. "CFOF",
  8363. "B",
  8364. "L",
  8365. "D",
  8366. "TBR",
  8367. "SGR",
  8368. "JSES",
  8369. "Suite",
  8370. "TV",
  8371. "1L",
  8372. "IF",
  8373. "EF",
  8374. "BRF",
  8375. "TE",
  8376. "TGT",
  8377. "DRVT",
  8378. "PC",
  8379. "TLF",
  8380. "ECT"
  8381. };
  8382. foreach (var item in dataSourceKeys)
  8383. {
  8384. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  8385. if (find != null)
  8386. {
  8387. designer.SetDataSource(item, find.text);
  8388. }
  8389. else
  8390. {
  8391. designer.SetDataSource(item, 0);
  8392. }
  8393. }
  8394. designer.SetDataSource(dt);
  8395. //根据数据源处理生成报表内容
  8396. designer.Process();
  8397. designer.Workbook.Worksheets[0].Name = "清单";
  8398. Worksheet sheet = designer.Workbook.Worksheets[0];
  8399. foreach (var Rowindex in hideRowsList)
  8400. {
  8401. ws.Cells.HideRows(Rowindex, 2);
  8402. }
  8403. byte[] bytes = null;
  8404. string strFileName = di.TeamName + "-团组-成本.xls";
  8405. using (MemoryStream stream = new MemoryStream())
  8406. {
  8407. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  8408. bytes = stream.ToArray();
  8409. }
  8410. return Ok(JsonView(true, "", new
  8411. {
  8412. Data = bytes,
  8413. strFileName,
  8414. }));
  8415. }
  8416. /// <summary>
  8417. /// 导出客户报表
  8418. /// </summary>
  8419. /// <returns></returns>
  8420. [HttpPost]
  8421. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  8422. {
  8423. var jw = JsonView(false);
  8424. if (dto.Diid == 0)
  8425. {
  8426. return Ok(JsonView(false, "请传递团组id"));
  8427. }
  8428. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  8429. if (deleInfo.Code != 0)
  8430. {
  8431. return Ok(JsonView(false, "团组信息查询失败!"));
  8432. }
  8433. var di = deleInfo.Data as DelegationInfoWebView;
  8434. if (di == null)
  8435. {
  8436. return Ok(JsonView(false, "团组信息查询失败!"));
  8437. }
  8438. //文件名
  8439. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  8440. //获取模板
  8441. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  8442. //载入模板
  8443. Document doc = new Document(tmppath);
  8444. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  8445. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  8446. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  8447. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  8448. var AParameter = ParameterList.Find(x => x.CostType == "A");
  8449. var BParameter = ParameterList.Find(x => x.CostType == "B");
  8450. if (AParameter == null)
  8451. {
  8452. return Ok(JsonView(false, "系数不存在!"));
  8453. }
  8454. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  8455. , TzAirDesc, TzZCost;
  8456. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  8457. = TzAirDesc = TzZCost = string.Empty;
  8458. TzNumber = AParameter.CostTypenumber.ToString();
  8459. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  8460. CarGuides1 = dto.CarGuides1;
  8461. Meal = dto.Meal;
  8462. SubsidizedMeals = dto.SubsidizedMeals;
  8463. NightRepair = dto.NightRepair;
  8464. AttractionsTickets = dto.AttractionsTickets;
  8465. MiscellaneousFees = dto.MiscellaneousFees;
  8466. ATip = dto.ATip;
  8467. TzHotelDesc = "";
  8468. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  8469. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  8470. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  8471. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  8472. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  8473. TzAirDesc = "";
  8474. TzZCost = dto.TzZCost;
  8475. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  8476. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  8477. var index = 1;
  8478. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  8479. foreach (var item in TzHotelDescArr)
  8480. {
  8481. if (AinfoArr != null)
  8482. {
  8483. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8484. if (Ainfo != null)
  8485. {
  8486. if (int.Parse(Ainfo.rs) <= 0)
  8487. {
  8488. continue;
  8489. }
  8490. var hotelText = string.Empty;
  8491. switch (item)
  8492. {
  8493. case "SGR":
  8494. hotelText = "单人间";
  8495. break;
  8496. case "JSES":
  8497. hotelText = "小套房";
  8498. break;
  8499. case "SUITE":
  8500. hotelText = "套房";
  8501. break;
  8502. case "TBR":
  8503. hotelText = "双人间";
  8504. break;
  8505. }
  8506. if (item != "TBR")
  8507. {
  8508. 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";
  8509. }
  8510. else
  8511. {
  8512. 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";
  8513. }
  8514. index++;
  8515. }
  8516. }
  8517. }
  8518. index = 1;
  8519. foreach (var item in TzAirDescArr)
  8520. {
  8521. if (AinfoArr != null)
  8522. {
  8523. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8524. if (Ainfo != null)
  8525. {
  8526. if (int.Parse(Ainfo.rs) <= 0)
  8527. {
  8528. continue;
  8529. }
  8530. 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";
  8531. index++;
  8532. }
  8533. }
  8534. }
  8535. if (dto.costType == "B")
  8536. {
  8537. if (BParameter == null)
  8538. {
  8539. return Ok(JsonView(false, "B段系数不存在!"));
  8540. }
  8541. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  8542. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  8543. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  8544. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  8545. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  8546. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  8547. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  8548. foreach (var item in TzHotelDescArr)
  8549. {
  8550. if (AinfoArr != null)
  8551. {
  8552. TzHotelDesc += "B段信息 \r\n";
  8553. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8554. if (Ainfo != null)
  8555. {
  8556. if (int.Parse(Ainfo.rs) <= 0)
  8557. {
  8558. continue;
  8559. }
  8560. var hotelText = string.Empty;
  8561. switch (item)
  8562. {
  8563. case "SGR":
  8564. hotelText = "单人间";
  8565. break;
  8566. case "JSES":
  8567. hotelText = "小套房";
  8568. break;
  8569. case "SUITE":
  8570. hotelText = "套房";
  8571. break;
  8572. case "TBR":
  8573. hotelText = "双人间";
  8574. break;
  8575. }
  8576. if (item != "TBR")
  8577. {
  8578. 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";
  8579. }
  8580. else
  8581. {
  8582. 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";
  8583. }
  8584. index++;
  8585. }
  8586. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  8587. }
  8588. }
  8589. index = 1;
  8590. foreach (var item in TzAirDescArr)
  8591. {
  8592. if (AinfoArr != null)
  8593. {
  8594. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8595. if (Ainfo != null)
  8596. {
  8597. if (int.Parse(Ainfo.rs) <= 0)
  8598. {
  8599. continue;
  8600. }
  8601. 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";
  8602. index++;
  8603. }
  8604. }
  8605. }
  8606. }
  8607. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  8608. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  8609. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  8610. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  8611. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  8612. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  8613. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  8614. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  8615. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  8616. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  8617. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  8618. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  8619. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  8620. DickeyValue.Add("Visa", Visa); // 签证单人报价
  8621. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  8622. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  8623. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  8624. DickeyValue.Add("TzZCost", TzZCost);
  8625. foreach (var key in DickeyValue.Keys)
  8626. {
  8627. if (doc.Range.Bookmarks[key] != null)
  8628. {
  8629. Bookmark mark = doc.Range.Bookmarks[key];
  8630. mark.Text = DickeyValue[key];
  8631. }
  8632. }
  8633. byte[] bytes = null;
  8634. string strFileName = di.TeamName + "-客户报价.doc";
  8635. using (MemoryStream stream = new MemoryStream())
  8636. {
  8637. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  8638. bytes = stream.ToArray();
  8639. }
  8640. return Ok(JsonView(true, "", new
  8641. {
  8642. Data = bytes,
  8643. strFileName,
  8644. }));
  8645. }
  8646. /// <summary>
  8647. /// 团组成本 各模块(酒店,地接,机票)成本提示
  8648. /// </summary>
  8649. /// <param name="dto"></param>
  8650. /// <returns></returns>
  8651. [HttpPost]
  8652. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8653. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  8654. {
  8655. try
  8656. {
  8657. #region 参数验证
  8658. if (dto.DiId < 0)
  8659. {
  8660. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  8661. }
  8662. List<int> cTableIds = new List<int>() {
  8663. 76 ,//酒店预订
  8664. 77 ,//行程
  8665. 79 ,//车/导游地接
  8666. 80 ,//签证
  8667. 81 ,//邀请/公务活
  8668. 82 ,//团组客户保险
  8669. 85 ,//机票预订
  8670. 98 ,//其他款项
  8671. 285 ,//收款退还
  8672. 751 ,//酒店早餐
  8673. 1015 // 超支费用
  8674. };
  8675. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  8676. {
  8677. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  8678. }
  8679. #endregion
  8680. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  8681. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  8682. if (_GroupCostParameters.Count <= 0)
  8683. {
  8684. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  8685. }
  8686. if (_GroupCostParameters[0].IsShare == 0)
  8687. {
  8688. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  8689. }
  8690. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8691. //处理date为空问题
  8692. if (_GroupCosts.Count > 0)
  8693. {
  8694. for (int i = 0; i < _GroupCosts.Count; i++)
  8695. {
  8696. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8697. {
  8698. if (i > 0)
  8699. {
  8700. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8701. }
  8702. }
  8703. }
  8704. }
  8705. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8706. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8707. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8708. string currCode = "";
  8709. #region currCode 验证
  8710. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8711. if (isInt)
  8712. {
  8713. var currData = currDatas.Find(it => it.Id == intCurrency);
  8714. if (currData != null)
  8715. {
  8716. currCode = currData.Name;
  8717. }
  8718. }
  8719. else
  8720. {
  8721. currCode = _GroupCostParameters[0].Currency.Trim();
  8722. }
  8723. #endregion
  8724. //op,酒店单段模式存储
  8725. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8726. {
  8727. CurrencyCode = currCode,
  8728. Rate = _GroupCostParameters[0].Rate,
  8729. CostType = _GroupCostParameters[0].CostType,
  8730. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8731. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8732. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8733. };
  8734. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8735. if (_GroupCostParameters.Count == 2)
  8736. {
  8737. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8738. }
  8739. foreach (var item in _GroupCostParameters)
  8740. {
  8741. decimal _rate = 1;
  8742. decimal _rate1 = item.Rate;
  8743. decimal _scale = 1;
  8744. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8745. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8746. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8747. //if (userInfo != null)
  8748. //{
  8749. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8750. // {
  8751. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8752. // {
  8753. // _scale = 1.00M;
  8754. // }
  8755. // }
  8756. //}
  8757. #endregion
  8758. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8759. {
  8760. CurrencyCode = currCode,
  8761. Rate = _rate1,
  8762. CostType = item.CostType,
  8763. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8764. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8765. CostTypeNumber = item.CostTypenumber
  8766. };
  8767. if (_GroupCostParameters.Count > 1)
  8768. {
  8769. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8770. }
  8771. else
  8772. {
  8773. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8774. }
  8775. if (dto.CTable == 79)//
  8776. {
  8777. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8778. modulePromptInfo.TotalCost = item.DJCB;
  8779. }
  8780. List<string> costTypes = new List<string>() { "A", "B" };
  8781. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8782. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8783. if (_GroupCostsDuplicates.Count() == 1)
  8784. {
  8785. _GroupCostsTypeData = _GroupCosts;
  8786. }
  8787. else
  8788. {
  8789. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8790. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8791. }
  8792. /*
  8793. * 76 酒店预订
  8794. * 77 行程
  8795. * 79 车/导游地接
  8796. * 80 签证
  8797. * 81 邀请/公务活动
  8798. * 82 团组客户保险
  8799. * 85 机票预订
  8800. * 98 其他款项
  8801. * 285 收款退还
  8802. * 751 酒店早餐
  8803. * 1015 超支费用
  8804. */
  8805. switch (dto.CTable)
  8806. {
  8807. case 76: // 酒店预订
  8808. _ModuleSubPromptInfo.AddRange(
  8809. _GroupCostsTypeData.Select(it => new
  8810. {
  8811. it.DAY,
  8812. it.Date,
  8813. it.ACCON,
  8814. it.ITIN,
  8815. it.SGR,
  8816. it.TBR,
  8817. it.JS_ES,
  8818. it.Suite
  8819. })
  8820. );
  8821. break;
  8822. case 79: // 车/导游地接
  8823. _ModuleSubPromptInfo.AddRange(
  8824. _GroupCostsTypeData.Select(it => new
  8825. {
  8826. Date = it.Date, //日期
  8827. CarFee = it.CarCost * _rate * _scale, //车费用
  8828. CarType = it.CarType, //车型
  8829. DriverFee = it.CFS * _rate * _scale, //司机工资
  8830. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8831. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8832. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8833. GuideFee = it.TGS * _rate * _scale, //导游费用
  8834. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8835. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8836. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8837. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8838. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8839. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8840. Breakfast = it.B * _rate * _scale, //早餐费
  8841. Lunch = it.L * _rate * _scale, //午餐费
  8842. Dinner = it.D * _rate * _scale, //晚餐费
  8843. OfficialActivitiesFee = it.TV * _rate * _scale,//会务活动费 --新加
  8844. OfficialTransFee = it.IF * _rate * _scale, //公务翻译费 --新加
  8845. InvitationFee = it.iL * _rate * _scale, //邀请函费用 --新加
  8846. TicketFee = it.EF * _rate * _scale, //门票费
  8847. TicketRemark = it.EFR, //门票费描述
  8848. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8849. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8850. SpentCash = it.PC * _rate * _scale, //零用金
  8851. LeadersFee = it.TLF * _rate * _scale, //领队费
  8852. ActivitiesFee = it.ECT * _rate * _scale, //会务费 --新加
  8853. })
  8854. );
  8855. break;
  8856. case 85: // 机票
  8857. List<dynamic> datas = new List<dynamic>();
  8858. datas.Add(
  8859. new
  8860. {
  8861. AirType = "经济舱",
  8862. AirNum = item.JJCRS,
  8863. AirDRCB = item.JJCCB,
  8864. AirZCB = (item.JJCRS * item.JJCCB)
  8865. }
  8866. );
  8867. datas.Add(
  8868. new
  8869. {
  8870. AirType = "公务舱",
  8871. AirNum = item.GWCRS,
  8872. AirDRCB = item.GWCCB,
  8873. AirZCB = (item.GWCRS * item.GWCCB)
  8874. }
  8875. );
  8876. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8877. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8878. modulePromptInfo.Data = new
  8879. {
  8880. airFeeData = datas,
  8881. airInitData = initDatas
  8882. };
  8883. _ModulePromptInfos.Add(modulePromptInfo);
  8884. break;
  8885. default:
  8886. break;
  8887. }
  8888. }
  8889. if (dto.CTable != 85)
  8890. {
  8891. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8892. _ModulePromptInfos.Add(_ModulePromptInfo);
  8893. }
  8894. _view.ModulePromptInfos = _ModulePromptInfos;
  8895. return Ok(JsonView(true, "操作成功!", _view));
  8896. }
  8897. catch (Exception ex)
  8898. {
  8899. return Ok(JsonView(false, ex.Message));
  8900. }
  8901. }
  8902. /// <summary>
  8903. /// 根据黑屏代码重新生成行程
  8904. /// </summary>
  8905. /// <param name="dto"></param>
  8906. /// <returns></returns>
  8907. [HttpPost]
  8908. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8909. {
  8910. var jw = JsonView(false);
  8911. var Create = _GroupCostRepository.
  8912. CreateGroupCostByBlackCode(dto.Diid);
  8913. jw.Msg = Create.Msg;
  8914. if (Create.Code == 0)
  8915. {
  8916. jw.Code = 200;
  8917. jw.Data = new
  8918. {
  8919. groupCost = Create.Data,
  8920. blackCodeIsTrue = true
  8921. };
  8922. }
  8923. else
  8924. {
  8925. jw.Code = 400;
  8926. jw.Data = new
  8927. {
  8928. groupCost = Create.Data,
  8929. blackCodeIsTrue = false,
  8930. };
  8931. }
  8932. return Ok(jw);
  8933. }
  8934. /// <summary>
  8935. /// 成本获取OP历史车费用
  8936. /// </summary>
  8937. /// <param name="dto"></param>
  8938. /// <returns></returns>
  8939. [HttpPost]
  8940. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8941. {
  8942. var jw = JsonView(false);
  8943. try
  8944. {
  8945. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8946. //获取现有所有车的数据
  8947. if (!dto.Param.IsNullOrWhiteSpace())
  8948. {
  8949. string sql = $@"
  8950. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8951. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8952. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8953. 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
  8954. AND gctggr.ServiceEndTime is not NULL
  8955. ORDER by gctggrc.id DESC
  8956. ";
  8957. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8958. var numeberResult = await Task.Run(() =>
  8959. {
  8960. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8961. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8962. return numberArr;
  8963. });
  8964. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8965. foreach (var item in numeberResult)
  8966. {
  8967. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8968. {
  8969. Country = "数据异常!",
  8970. City = string.Empty,
  8971. };
  8972. item.Area = find.Country + " " + find.City;
  8973. }
  8974. dbResult.AddRange(numeberResult);
  8975. if (dto.Param.Contains("、"))
  8976. {
  8977. var sp = dto.Param.Split("、");
  8978. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8979. .Where(x =>
  8980. {
  8981. return System.Array.Exists(sp, e =>
  8982. {
  8983. bool where = false;
  8984. if (x.Area != null)
  8985. {
  8986. where = x.Area.Contains(e);
  8987. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8988. {
  8989. return false;
  8990. }
  8991. }
  8992. if (x.PriceName != null && !where)
  8993. {
  8994. where = x.PriceName.Contains(e);
  8995. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8996. {
  8997. return false;
  8998. }
  8999. }
  9000. return where;
  9001. });
  9002. }).ToList();
  9003. }
  9004. else
  9005. {
  9006. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  9007. .Where(x =>
  9008. {
  9009. bool where = false;
  9010. if (x.Area != null)
  9011. {
  9012. where = x.Area.Contains(dto.Param);
  9013. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  9014. {
  9015. return false;
  9016. }
  9017. }
  9018. if (x.PriceName != null && !where)
  9019. {
  9020. where = x.PriceName.Contains(dto.Param);
  9021. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  9022. {
  9023. return false;
  9024. }
  9025. }
  9026. return where;
  9027. }
  9028. )
  9029. .ToList();
  9030. }
  9031. }
  9032. var view = dbResult.Select(x =>
  9033. {
  9034. decimal dp = 0.00M;
  9035. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  9036. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  9037. if (string.IsNullOrWhiteSpace(x.DatePrice))
  9038. {
  9039. if (startB && endB)
  9040. {
  9041. var timesp = endD.Subtract(startD);
  9042. if ((timesp.Days + 1) != 0)
  9043. {
  9044. dp = x.Price / (timesp.Days + 1);
  9045. }
  9046. }
  9047. }
  9048. else
  9049. {
  9050. dp = x.Price;
  9051. }
  9052. return new
  9053. {
  9054. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  9055. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  9056. x.Area,
  9057. x.id,
  9058. price = x.Price.ToString("F2"),
  9059. x.PriceName,
  9060. x.PriceContent,
  9061. x.TeamName,
  9062. x.DatePrice,
  9063. dayPrice = dp.ToString("F2"),
  9064. };
  9065. }).OrderByDescending(x => x.id).ToList();
  9066. jw = JsonView(true, "获取成功!", view);
  9067. }
  9068. catch (Exception e)
  9069. {
  9070. jw = JsonView(false, e.Message);
  9071. }
  9072. return Ok(jw);
  9073. }
  9074. #endregion
  9075. #region 酒店预订 新 雷怡 2023-12-28 17:45
  9076. /// <summary>
  9077. /// 酒店预订
  9078. /// 酒店费用列表 根据团组Id查询
  9079. /// </summary>
  9080. /// <param name="_dto"></param>
  9081. /// <returns></returns>
  9082. [HttpPost]
  9083. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9084. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  9085. {
  9086. #region 参数验证
  9087. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9088. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9089. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9090. #region 团组操作权限验证 76 酒店预定模块
  9091. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9092. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9093. #endregion
  9094. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9095. #region 页面操作权限验证
  9096. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9097. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9098. #endregion
  9099. #endregion
  9100. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  9101. }
  9102. /// <summary>
  9103. /// 酒店预订
  9104. /// 基础数据
  9105. /// </summary>
  9106. /// <param name="_dto"></param>
  9107. /// <returns></returns>
  9108. [HttpPost]
  9109. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9110. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  9111. {
  9112. #region 参数验证
  9113. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9114. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9115. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9116. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9117. #region 页面操作权限验证
  9118. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9119. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9120. #endregion
  9121. #region 团组操作权限验证 76 酒店预定模块
  9122. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9123. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9124. #endregion
  9125. #endregion
  9126. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  9127. }
  9128. /// <summary>
  9129. /// 酒店预订
  9130. /// 创建 入住卷号码
  9131. /// </summary>
  9132. /// <param name="_dto"></param>
  9133. /// <returns></returns>
  9134. [HttpPost]
  9135. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9136. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  9137. {
  9138. #region 参数验证
  9139. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9140. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9141. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9142. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9143. #region 页面操作权限验证
  9144. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9145. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9146. #endregion
  9147. #region 团组操作权限验证 76 酒店预定模块
  9148. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9149. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9150. #endregion
  9151. #endregion
  9152. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  9153. if (data.Code != 0)
  9154. {
  9155. return Ok(JsonView(false, data.Msg));
  9156. }
  9157. return Ok(JsonView(true, data.Msg, data.Data));
  9158. }
  9159. /// <summary>
  9160. /// 酒店预订
  9161. /// 详情
  9162. /// </summary>
  9163. /// <param name="_dto"></param>
  9164. /// <returns></returns>
  9165. [HttpPost]
  9166. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9167. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  9168. {
  9169. #region 参数验证
  9170. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  9171. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9172. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  9173. #region 团组操作权限验证 76 酒店预定模块
  9174. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9175. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9176. #endregion
  9177. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9178. #region 页面操作权限验证
  9179. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9180. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9181. #endregion
  9182. #endregion
  9183. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  9184. }
  9185. /// <summary>
  9186. /// 酒店预订
  9187. /// Add Or Edit
  9188. /// </summary>
  9189. /// <param name="_dto"></param>
  9190. /// <returns></returns>
  9191. [HttpPost]
  9192. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9193. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  9194. {
  9195. #region 参数验证
  9196. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9197. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9198. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9199. #region 团组操作权限验证 76 酒店预定模块
  9200. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9201. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9202. #endregion
  9203. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9204. #region 页面操作权限验证
  9205. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9206. if (_dto.Id == 0) // Add
  9207. {
  9208. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9209. }
  9210. else if (_dto.Id > 1) // Edit
  9211. {
  9212. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9213. }
  9214. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  9215. #endregion
  9216. #endregion
  9217. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  9218. if (_view.Code != 200)
  9219. {
  9220. return Ok(_view);
  9221. }
  9222. #region 应用推送
  9223. try
  9224. {
  9225. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  9226. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  9227. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  9228. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9229. //自动审核
  9230. var autoAdit = await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  9231. //if (autoAdit.Code != 200) _view.Msg += $"\r\n{autoAdit.Msg}";
  9232. _logger.LogInformation($"【酒店自动审核】【{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}】执行调用 调用结果:{JsonConvert.SerializeObject(autoAdit)}");
  9233. }
  9234. catch (Exception ex)
  9235. {
  9236. }
  9237. #endregion
  9238. return Ok(_view);
  9239. }
  9240. /// <summary>
  9241. /// 酒店自动审核测试
  9242. /// Add Or Edit
  9243. /// </summary>
  9244. /// <param name="_dto"></param>
  9245. /// <returns></returns>
  9246. [HttpPost]
  9247. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9248. public async Task<IActionResult> PostHotelAutoAuditTest(int diid,int dataId)
  9249. {
  9250. #region 应用推送
  9251. try
  9252. {
  9253. //自动审核
  9254. await _feeAuditRep.FeeAutomaticAudit(1, diid, dataId);
  9255. }
  9256. catch (Exception ex)
  9257. {
  9258. return Ok(JsonView(false, "操作失败"));
  9259. }
  9260. #endregion
  9261. return Ok(JsonView(false,"操作成功"));
  9262. }
  9263. /// <summary>
  9264. /// 酒店预订
  9265. /// Del
  9266. /// </summary>
  9267. /// <param name="_dto"></param>
  9268. /// <returns></returns>
  9269. [HttpPost]
  9270. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9271. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  9272. {
  9273. #region 参数验证
  9274. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9275. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9276. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9277. #region 团组操作权限验证 76 酒店预定模块
  9278. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9279. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9280. #endregion
  9281. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9282. #region 页面操作权限验证
  9283. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9284. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9285. #endregion
  9286. #endregion
  9287. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  9288. }
  9289. /// <summary>
  9290. /// 酒店预订
  9291. /// 生成VOUCHER
  9292. /// 2024.05.06 之前版本
  9293. /// </summary>
  9294. /// <param name="_dto"></param>
  9295. /// <returns></returns>
  9296. [HttpPost]
  9297. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9298. public async Task<IActionResult> PostHotelReservationsCreateVoucherOld(HotelReservationsCreateVoucherDto _dto)
  9299. {
  9300. try
  9301. {
  9302. #region 参数验证
  9303. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9304. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9305. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9306. if (_dto.Id < 1) return Ok(JsonView(false, "Id为空"));
  9307. #region 团组操作权限验证 76 酒店预定模块
  9308. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9309. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9310. #endregion
  9311. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9312. #region 页面操作权限验证
  9313. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9314. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9315. #endregion
  9316. #endregion
  9317. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  9318. //判断数据是否完整
  9319. if (hr != null)
  9320. {
  9321. if (!string.IsNullOrEmpty(hr.DetermineNo))
  9322. {
  9323. string strFileName = "HotelStatement/";
  9324. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  9325. if (dele != null)
  9326. strFileName += dele.TourCode;
  9327. //载入模板
  9328. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  9329. Document doc = new Document(sss);
  9330. DocumentBuilder builder = new DocumentBuilder(doc);
  9331. #region 替换Word模板书签内容
  9332. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  9333. //入住卷预定号码
  9334. if (doc.Range.Bookmarks["VNO"] != null)
  9335. {
  9336. Bookmark mark = doc.Range.Bookmarks["VNO"];
  9337. mark.Text = hr.CheckNumber;
  9338. }
  9339. //酒店时间
  9340. if (doc.Range.Bookmarks["Date"] != null)
  9341. {
  9342. Bookmark mark = doc.Range.Bookmarks["Date"];
  9343. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  9344. }
  9345. //团号
  9346. if (doc.Range.Bookmarks["TNo"] != null)
  9347. {
  9348. Bookmark mark = doc.Range.Bookmarks["TNo"];
  9349. mark.Text = dele.TourCode;
  9350. }
  9351. //预定号码
  9352. if (doc.Range.Bookmarks["BookingId"] != null)
  9353. {
  9354. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  9355. mark.Text = hr.ReservationsNo;
  9356. }
  9357. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  9358. {
  9359. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  9360. mark.Text = hr.DetermineNo;
  9361. }
  9362. //酒店城市
  9363. if (doc.Range.Bookmarks["City"] != null)
  9364. {
  9365. Bookmark mark = doc.Range.Bookmarks["City"];
  9366. mark.Text = hr.City;
  9367. }
  9368. //酒店名称
  9369. if (doc.Range.Bookmarks["HName"] != null)
  9370. {
  9371. Bookmark mark = doc.Range.Bookmarks["HName"];
  9372. mark.Text = hr.HotelName;
  9373. }
  9374. //酒店地址
  9375. if (doc.Range.Bookmarks["Address"] != null)
  9376. {
  9377. Bookmark mark = doc.Range.Bookmarks["Address"];
  9378. mark.Text = hr.HotelAddress;
  9379. }
  9380. //酒店电话
  9381. if (doc.Range.Bookmarks["Tel"] != null)
  9382. {
  9383. Bookmark mark = doc.Range.Bookmarks["Tel"];
  9384. mark.Text = hr.HotelTel;
  9385. }
  9386. //酒店传真
  9387. if (doc.Range.Bookmarks["Fax"] != null)
  9388. {
  9389. Bookmark mark = doc.Range.Bookmarks["Fax"];
  9390. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  9391. {
  9392. mark.Text = hr.HotelFax;
  9393. }
  9394. }
  9395. //入住时间
  9396. if (doc.Range.Bookmarks["CIn"] != null)
  9397. {
  9398. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  9399. Bookmark mark = doc.Range.Bookmarks["CIn"];
  9400. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  9401. }
  9402. //退房时间
  9403. if (doc.Range.Bookmarks["COut"] != null)
  9404. {
  9405. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  9406. Bookmark mark = doc.Range.Bookmarks["COut"];
  9407. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  9408. }
  9409. //客户名称
  9410. if (doc.Range.Bookmarks["GName"] != null)
  9411. {
  9412. string guestName = "";
  9413. string[] clients = new string[] { };
  9414. if (hr.GuestName.Contains(","))
  9415. {
  9416. clients = hr.GuestName.Split(",");
  9417. }
  9418. else
  9419. {
  9420. clients = new string[] { hr.GuestName };
  9421. }
  9422. List<int> clientIds_int = new List<int>();
  9423. if (clients.Length > 0)
  9424. {
  9425. foreach (var item in clients)
  9426. {
  9427. if (item.IsNumeric())
  9428. {
  9429. clientIds_int.Add(int.Parse(item));
  9430. }
  9431. }
  9432. }
  9433. if (clientIds_int.Count > 0)
  9434. {
  9435. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  9436. foreach (var client in _clientDatas)
  9437. {
  9438. //男
  9439. if (client.Sex == 0) guestName += $"Mr.";
  9440. //女
  9441. else if (client.Sex == 1) guestName += $"Ms.";
  9442. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  9443. {
  9444. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  9445. }
  9446. //guestName += $"{client.Pinyin},";
  9447. }
  9448. if (guestName.Length > 0)
  9449. {
  9450. guestName = guestName.Substring(0, guestName.Length - 1);
  9451. }
  9452. }
  9453. else
  9454. {
  9455. guestName = hr.GuestName;
  9456. }
  9457. Bookmark mark = doc.Range.Bookmarks["GName"];
  9458. mark.Text = guestName;
  9459. }
  9460. //房间介绍
  9461. if (doc.Range.Bookmarks["ROOM"] != null)
  9462. {
  9463. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  9464. mark.Text = hr.RoomExplanation;
  9465. }
  9466. //报价描述
  9467. if (doc.Range.Bookmarks["NOTE"] != null)
  9468. {
  9469. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  9470. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  9471. if (ss != null)
  9472. mark.Text = ss.Name;
  9473. }
  9474. //入住时间
  9475. if (doc.Range.Bookmarks["CheckIn"] != null)
  9476. {
  9477. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  9478. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  9479. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  9480. }
  9481. //退房时间
  9482. if (doc.Range.Bookmarks["CheckOut"] != null)
  9483. {
  9484. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  9485. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  9486. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  9487. }
  9488. //日期
  9489. if (doc.Range.Bookmarks["DT"] != null)
  9490. {
  9491. Bookmark mark = doc.Range.Bookmarks["DT"];
  9492. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  9493. }
  9494. //名称
  9495. if (doc.Range.Bookmarks["VName"] != null)
  9496. {
  9497. Bookmark mark = doc.Range.Bookmarks["VName"];
  9498. mark.Text = hr.HotelName;
  9499. }
  9500. //号码
  9501. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  9502. {
  9503. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  9504. mark.Text = hr.CheckNumber;
  9505. }
  9506. #endregion
  9507. strFileName += "VOUCHER.doc";
  9508. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9509. doc.Save(fileDir);
  9510. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9511. return Ok(JsonView(true, "操作成功!", Url));
  9512. }
  9513. else
  9514. {
  9515. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  9516. }
  9517. }
  9518. else
  9519. {
  9520. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  9521. }
  9522. }
  9523. catch (Exception ex)
  9524. {
  9525. return Ok(JsonView(false, ex.Message));
  9526. }
  9527. }
  9528. /// <summary>
  9529. /// 酒店预订
  9530. /// 生成VOUCHER
  9531. /// 2024.05.06 之后版本
  9532. /// </summary>
  9533. /// <param name="_dto"></param>
  9534. /// <returns></returns>
  9535. [HttpPost]
  9536. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9537. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  9538. {
  9539. #region 参数验证
  9540. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9541. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9542. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9543. #region 团组操作权限验证 76 酒店预定模块
  9544. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9545. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9546. #endregion
  9547. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9548. #region 页面操作权限验证
  9549. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9550. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9551. #endregion
  9552. #endregion
  9553. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9554. //判断数据是否完整
  9555. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  9556. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9557. string strFileName = "HotelStatement/";
  9558. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9559. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  9560. #region 数据处理
  9561. List<int> guestIds = new List<int>();
  9562. int index = 0;
  9563. foreach (var item in hrDtas)
  9564. {
  9565. if (item.GuestName.Contains(","))
  9566. {
  9567. string[] guestIdArr = item.GuestName.Split(',');
  9568. foreach (var guestIdStr in guestIdArr)
  9569. {
  9570. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  9571. if (guestBool)
  9572. {
  9573. guestIds.Add(guestId);
  9574. }
  9575. }
  9576. }
  9577. else guestNames += item.GuestName;
  9578. var voucherInfo = new HotelVoucherInfoView()
  9579. {
  9580. HotelName = item.HotelName,
  9581. CheckInDate = item.CheckInDate,
  9582. CheckOutDate = item.CheckOutDate,
  9583. ConfirmationNumber = item.DetermineNo.Trim(),
  9584. RoomType = item.RoomExplanation
  9585. };
  9586. vouchers.Add(voucherInfo);
  9587. }
  9588. if (guestIds.Count > 0)
  9589. {
  9590. guestIds = guestIds.Distinct().ToList();
  9591. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  9592. if (guestDatas.Count > 0)
  9593. {
  9594. guestNames = "";
  9595. foreach (var guest in guestDatas)
  9596. {
  9597. string guestName = "";
  9598. if (guest.Sex == 0) guestName += @"MR.";
  9599. else if (guest.Sex == 1) guestName += @"MS.";
  9600. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9601. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9602. guestNames += @$"{guestName.Trim()}、";
  9603. }
  9604. if (guestNames.Length > 0)
  9605. {
  9606. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9607. }
  9608. }
  9609. }
  9610. #endregion
  9611. //载入模板
  9612. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  9613. Document doc = new Document(sss);
  9614. DocumentBuilder builder = new DocumentBuilder(doc);
  9615. if (doc.Range.Bookmarks["GuestName"] != null)
  9616. {
  9617. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9618. mark.Text = guestNames;
  9619. }
  9620. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9621. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9622. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9623. for (int i = 1; i <= vouchers.Count; i++)
  9624. {
  9625. HotelVoucherInfoView hviv = vouchers[i - 1];
  9626. builder.MoveToCell(0, i, 0, 0);
  9627. builder.Write(hviv.HotelName);
  9628. builder.MoveToCell(0, i, 1, 0);
  9629. builder.Write(hviv.CheckInDate);
  9630. builder.MoveToCell(0, i, 2, 0);
  9631. builder.Write(hviv.CheckOutDate);
  9632. builder.MoveToCell(0, i, 3, 0);
  9633. builder.Write(hviv.RoomType);
  9634. builder.MoveToCell(0, i, 4, 0);
  9635. builder.Write(hviv.ConfirmationNumber);
  9636. }
  9637. //删除多余行
  9638. int currRowIndex = vouchers.Count + 1;
  9639. int delRows = 21 - currRowIndex;
  9640. if (delRows > 0)
  9641. {
  9642. for (int i = 0; i < delRows; i++)
  9643. {
  9644. table.Rows.RemoveAt(currRowIndex);
  9645. //cultivateRowIndex++;
  9646. }
  9647. }
  9648. strFileName += "VOUCHER.docx";
  9649. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9650. doc.Save(fileDir);
  9651. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9652. return Ok(JsonView(true, "操作成功!", Url));
  9653. }
  9654. /// <summary>
  9655. /// 酒店预订
  9656. /// 生成VOUCHER 批量生成
  9657. /// New
  9658. /// </summary>
  9659. /// <param name="_dto"></param>
  9660. /// <returns></returns>
  9661. [HttpPost]
  9662. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9663. public async Task<IActionResult> PostHotelReservationsCreateVoucherBatchNew(HotelReservationsCreateVoucherDto _dto)
  9664. {
  9665. #region 参数验证
  9666. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9667. if (_dto.PageId < 1) _dto.PageId = 28;
  9668. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9669. #region 团组操作权限验证 76 酒店预定模块
  9670. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9671. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9672. #endregion
  9673. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9674. #region 页面操作权限验证
  9675. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9676. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9677. #endregion
  9678. #endregion
  9679. var hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>()
  9680. .Where(it => it.IsDel == 0 && it.DiId == _dto.DiId)
  9681. .OrderBy(x => x.CheckInDate)
  9682. .ToListAsync();
  9683. //判断数据是否完整
  9684. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  9685. string strFileName = "HotelStatement/";
  9686. var dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  9687. if (dele != null)
  9688. strFileName += $"{dele?.TeamName ?? ""}_{dele.TourCode}_";
  9689. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToListAsync();
  9690. for (int i = 0; i < hrDtas.Count; i++)
  9691. {
  9692. string guestNames = string.Empty;
  9693. List<int> guestIds = new List<int>();
  9694. var item = hrDtas[i];
  9695. //处理客户姓名
  9696. if (item.GuestName.Contains(","))
  9697. {
  9698. string[] guestIdArr = item.GuestName.Split(',');
  9699. foreach (var guestIdStr in guestIdArr)
  9700. if (int.TryParse(guestIdStr, out int guestId))
  9701. guestIds.Add(guestId);
  9702. }
  9703. else {
  9704. bool guestIdBool = int.TryParse(item.GuestName,out int guestId);
  9705. if (guestIdBool)
  9706. {
  9707. guestIds.Add(guestId);
  9708. }
  9709. //NaN
  9710. if (item.GuestName.Contains("NaN"))
  9711. {
  9712. guestNames += item.GuestName.Replace("NaN", "").Replace(",", "");
  9713. }
  9714. }
  9715. if (guestIds.Count > 0)
  9716. {
  9717. guestIds = guestIds.Distinct().ToList();
  9718. var guestDatas1 = guestDatas.Where(it => guestIds.Contains(it.Id)).ToList();
  9719. if (guestDatas1.Count > 0)
  9720. {
  9721. guestNames = "";
  9722. foreach (var guest in guestDatas1)
  9723. {
  9724. string guestName = "";
  9725. if (guest.Sex == 0) guestName += @"MR.";
  9726. else if (guest.Sex == 1) guestName += @"MS.";
  9727. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9728. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9729. guestNames += @$"{guestName.Trim()}、";
  9730. }
  9731. if (guestNames.Length > 0)
  9732. {
  9733. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9734. }
  9735. }
  9736. }
  9737. //if (!string.IsNullOrEmpty(guestNames))
  9738. //{
  9739. hrDtas[i].GuestName = guestNames;
  9740. //}
  9741. }
  9742. strFileName += $"VOUCHER_{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  9743. Document doc = new Document();
  9744. DocumentBuilder builder = new DocumentBuilder(doc);
  9745. try
  9746. {
  9747. builder.MoveToDocumentStart();
  9748. foreach (var item in hrDtas)
  9749. {
  9750. //标题
  9751. builder.ParagraphFormat.StyleIdentifier = StyleIdentifier.Title;
  9752. builder.ParagraphFormat.LineSpacing = 1;
  9753. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9754. builder.ParagraphFormat.Style.Font.Size = 9;
  9755. builder.ParagraphFormat.Style.Font.Bold = true;
  9756. builder.ParagraphFormat.Alignment = ParagraphAlignment.Center;
  9757. builder.Writeln(@$"ACCOMMODATION VOUCHER");
  9758. builder.ParagraphFormat.StyleIdentifier = StyleIdentifier.Title;
  9759. builder.ParagraphFormat.Alignment = ParagraphAlignment.Center;
  9760. builder.ParagraphFormat.LineSpacing = 1;
  9761. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9762. builder.ParagraphFormat.Style.Font.Size = 9;
  9763. builder.ParagraphFormat.Style.Font.Bold = true;
  9764. builder.Writeln(@$"VOUCHER No:{item.CheckNumber} DATE: {item.CreateTime.ToString("yyyy-MM-dd")}");
  9765. builder.StartTable();
  9766. // 设置边框颜色
  9767. builder.CellFormat.Borders.Top.Color = System.Drawing.Color.Black;
  9768. //设置边框样式
  9769. builder.CellFormat.Borders.LineStyle = Aspose.Words.LineStyle.Dot;
  9770. //表格
  9771. #region 第一行
  9772. builder.InsertCell();
  9773. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9774. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9775. //builder.CellFormat.AllowAutoFit = false;
  9776. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9777. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9778. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9779. builder.CellFormat.WrapText = true; //自动换行
  9780. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9781. builder.RowFormat.AllowBreakAcrossPages = false; //文字自适应大小
  9782. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9783. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9784. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9785. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9786. builder.Write("TOUR NO:");
  9787. builder.InsertCell();
  9788. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9789. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9790. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9791. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9792. builder.ParagraphFormat.Style.Font.Bold = false;
  9793. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9794. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9795. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9796. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9797. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9798. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9799. builder.Write($"{dele?.TourCode ?? "-"}");
  9800. builder.InsertCell();
  9801. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9802. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9803. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9804. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9805. builder.ParagraphFormat.Style.Font.Bold = false;
  9806. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9807. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9808. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9809. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9810. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9811. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9812. builder.Write($"CITY:");
  9813. builder.InsertCell();
  9814. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9815. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9816. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9817. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9818. builder.ParagraphFormat.Style.Font.Bold = false;
  9819. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9820. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9821. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9822. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9823. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9824. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9825. builder.Write($"{item.City}");
  9826. builder.EndRow();
  9827. #endregion
  9828. #region 第二行
  9829. builder.InsertCell();
  9830. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9831. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9832. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9833. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9834. builder.ParagraphFormat.Style.Font.Bold = false;
  9835. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9836. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9837. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9838. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9839. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9840. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9841. builder.Write("CONFIRMATION NO:");
  9842. builder.InsertCell();
  9843. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9844. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9845. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9846. builder.ParagraphFormat.Style.Font.Bold = false;
  9847. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9848. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9849. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9850. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9851. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9852. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9853. builder.CellFormat.VerticalMerge = CellMerge.None;
  9854. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9855. builder.Write($"{item.DetermineNo}");
  9856. builder.InsertCell();
  9857. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9858. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9859. builder.InsertCell();
  9860. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9861. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9862. builder.EndRow();
  9863. #endregion
  9864. #region 第三行
  9865. builder.InsertCell();
  9866. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9867. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9868. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9869. builder.ParagraphFormat.Style.Font.Bold = false;
  9870. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9871. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9872. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9873. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9874. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9875. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9876. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9877. builder.Write($"HOTEL NAME:");
  9878. builder.InsertCell();
  9879. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9880. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9881. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9882. builder.ParagraphFormat.Style.Font.Bold = false;
  9883. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9884. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9885. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9886. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9887. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9888. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9889. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9890. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9891. builder.Write($"{item.HotelName}");
  9892. builder.InsertCell();
  9893. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9894. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9895. builder.InsertCell();
  9896. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9897. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9898. builder.EndRow();
  9899. #endregion
  9900. #region 第四行
  9901. builder.InsertCell();
  9902. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9903. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9904. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9905. builder.ParagraphFormat.Style.Font.Bold = false;
  9906. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9907. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9908. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9909. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9910. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9911. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9912. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9913. builder.Write($"HOTEL ADDRESS:");
  9914. builder.InsertCell();
  9915. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9916. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9917. builder.ParagraphFormat.Style.Font.Size = 8;
  9918. builder.ParagraphFormat.Style.Font.Bold = false;
  9919. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9920. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9921. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9922. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9923. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9924. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9925. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9926. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9927. builder.Write($"{item.HotelAddress}");
  9928. builder.InsertCell();
  9929. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9930. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9931. builder.InsertCell();
  9932. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9933. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9934. builder.EndRow();
  9935. #endregion
  9936. #region 第五行
  9937. builder.InsertCell();
  9938. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9939. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9940. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9941. builder.ParagraphFormat.Style.Font.Bold = false;
  9942. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9943. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9944. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9945. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9946. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9947. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9948. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9949. builder.Write("TEL:");
  9950. builder.InsertCell();
  9951. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9952. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9953. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9954. builder.ParagraphFormat.Style.Font.Bold = false;
  9955. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9956. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9957. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9958. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9959. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9960. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9961. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9962. builder.Write($"{item.HotelTel}");
  9963. builder.InsertCell();
  9964. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9965. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9966. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9967. builder.ParagraphFormat.Style.Font.Bold = false;
  9968. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9969. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9970. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9971. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9972. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9973. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9974. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9975. builder.Write($"FAX:");
  9976. builder.InsertCell();
  9977. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9978. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9979. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9980. builder.ParagraphFormat.Style.Font.Bold = false;
  9981. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9982. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9983. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9984. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  9985. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  9986. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  9987. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  9988. builder.Write($"{item.HotelFax}");
  9989. builder.EndRow();
  9990. #endregion
  9991. #region 第六行
  9992. builder.InsertCell();
  9993. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9994. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9995. builder.ParagraphFormat.Style.Font.Size = 7.5;
  9996. builder.ParagraphFormat.Style.Font.Bold = false;
  9997. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9998. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9999. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  10000. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  10001. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  10002. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  10003. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  10004. builder.Write("CHECK IN:");
  10005. builder.InsertCell();
  10006. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  10007. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  10008. builder.ParagraphFormat.Style.Font.Size = 7.5;
  10009. builder.ParagraphFormat.Style.Font.Bold = false;
  10010. builder.CellFormat.HorizontalMerge = CellMerge.None;
  10011. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  10012. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  10013. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  10014. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  10015. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  10016. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  10017. DateTime dtCheckIn = Convert.ToDateTime(item.CheckInDate);
  10018. string checkInStr = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  10019. builder.Write($"{checkInStr}");
  10020. builder.InsertCell();
  10021. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  10022. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  10023. builder.ParagraphFormat.Style.Font.Size = 7.5;
  10024. builder.ParagraphFormat.Style.Font.Bold = false;
  10025. builder.CellFormat.HorizontalMerge = CellMerge.None;
  10026. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  10027. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  10028. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  10029. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  10030. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  10031. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  10032. builder.Write($"CHECK OUT:");
  10033. builder.InsertCell();
  10034. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  10035. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  10036. builder.ParagraphFormat.Style.Font.Size = 7.5;
  10037. builder.ParagraphFormat.Style.Font.Bold = false;
  10038. builder.CellFormat.HorizontalMerge = CellMerge.None;
  10039. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  10040. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  10041. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  10042. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  10043. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  10044. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  10045. DateTime dtCheckOut = Convert.ToDateTime(item.CheckOutDate);
  10046. string checkOutStr = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year + " ";
  10047. builder.Write($"{checkOutStr}");
  10048. builder.EndRow();
  10049. #endregion
  10050. #region 第七行
  10051. builder.InsertCell();
  10052. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  10053. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  10054. builder.ParagraphFormat.Style.Font.Size = 7.5;
  10055. builder.ParagraphFormat.Style.Font.Bold = false;
  10056. builder.CellFormat.HorizontalMerge = CellMerge.None;
  10057. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  10058. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  10059. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  10060. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  10061. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  10062. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  10063. builder.Write($"GUEST NAME:");
  10064. builder.InsertCell();
  10065. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  10066. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  10067. builder.ParagraphFormat.Style.Font.Size = 8;
  10068. builder.ParagraphFormat.Style.Font.Bold = false;
  10069. builder.CellFormat.HorizontalMerge = CellMerge.None;
  10070. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  10071. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  10072. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  10073. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  10074. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  10075. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  10076. builder.CellFormat.HorizontalMerge = CellMerge.First;
  10077. builder.Write($"{item.GuestName}");
  10078. builder.InsertCell();
  10079. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  10080. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  10081. builder.InsertCell();
  10082. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  10083. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  10084. builder.EndRow();
  10085. #endregion
  10086. #region 第八行
  10087. builder.InsertCell();
  10088. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  10089. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  10090. builder.ParagraphFormat.Style.Font.Size = 7.5;
  10091. builder.ParagraphFormat.Style.Font.Bold = false;
  10092. builder.CellFormat.HorizontalMerge = CellMerge.None;
  10093. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  10094. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  10095. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  10096. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  10097. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  10098. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  10099. builder.Write($"ROOM TYPE:");
  10100. builder.InsertCell();
  10101. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  10102. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  10103. builder.ParagraphFormat.Style.Font.Size = 7.5;
  10104. builder.ParagraphFormat.Style.Font.Bold = false;
  10105. builder.CellFormat.HorizontalMerge = CellMerge.None;
  10106. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  10107. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  10108. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  10109. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  10110. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  10111. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  10112. builder.CellFormat.HorizontalMerge = CellMerge.First;
  10113. builder.Write($"{item.RoomExplanation}");
  10114. builder.InsertCell();
  10115. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  10116. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  10117. builder.InsertCell();
  10118. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  10119. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  10120. builder.EndRow();
  10121. #endregion
  10122. #region 第九行
  10123. builder.InsertCell();
  10124. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  10125. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  10126. builder.ParagraphFormat.Style.Font.Size = 7.5;
  10127. builder.ParagraphFormat.Style.Font.Bold = false;
  10128. builder.CellFormat.HorizontalMerge = CellMerge.None;
  10129. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  10130. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  10131. builder.ParagraphFormat.SpaceBefore = 0; //设置段前间距 0
  10132. builder.ParagraphFormat.SpaceAfter = 0; //设置段后间距 0
  10133. builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly; //设置行距 固定值
  10134. builder.ParagraphFormat.LineSpacing = 11; //设置固定的行距为11磅
  10135. builder.Write($"NOTE:");
  10136. builder.InsertCell();
  10137. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  10138. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  10139. builder.ParagraphFormat.Style.Font.Size = 7.5;
  10140. builder.ParagraphFormat.Style.Font.Bold = false;
  10141. builder.CellFormat.HorizontalMerge = CellMerge.None;
  10142. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  10143. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  10144. builder.CellFormat.HorizontalMerge = CellMerge.First;
  10145. 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.");
  10146. builder.InsertCell();
  10147. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  10148. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  10149. builder.InsertCell();
  10150. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  10151. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  10152. builder.EndRow();
  10153. #endregion
  10154. builder.EndTable();
  10155. //换行
  10156. builder.Writeln("");
  10157. builder.Writeln("");
  10158. }
  10159. #region 获取文档中的所有表格 设置文字自适应
  10160. // 获取文档中的所有表格。
  10161. foreach (Table table in doc.GetChildNodes(NodeType.Table, true))
  10162. {
  10163. // 遍历表格中的所有行。
  10164. foreach (Aspose.Words.Tables.Row row in table.Rows)
  10165. {
  10166. foreach (Cell cell in row.Cells)
  10167. {
  10168. Aspose.Words.Tables.CellFormat cellFormat = cell.CellFormat;
  10169. cellFormat.Width = 0;
  10170. }
  10171. }
  10172. }
  10173. #endregion
  10174. #region 设置页眉
  10175. builder.MoveToHeaderFooter(HeaderFooterType.HeaderPrimary);
  10176. string voucherHeaderPath = $"./Images/VoucherHeader.png";
  10177. if (System.IO.File.Exists(voucherHeaderPath))
  10178. {
  10179. byte[] imageBytes = System.IO.File.ReadAllBytes(voucherHeaderPath);
  10180. //Image image = Image.FromStream(imageBytes, ImageType.Png);
  10181. //builder.InsertImage(imageBytes, RelativeHorizontalPosition.Margin, 0, RelativeVerticalPosition.Margin, 0, 81, 36, WrapType.None);
  10182. Shape shape = builder.InsertImage(imageBytes);
  10183. // 调整图片位置
  10184. shape.RelativeHorizontalPosition = RelativeHorizontalPosition.Page; // 将图片的水平位置设置为页面
  10185. shape.RelativeVerticalPosition = RelativeVerticalPosition.TopMargin; // 将图片的垂直位置设置为页眉上边距
  10186. shape.Top = 50; // 将图片距离页眉上边缘的距离
  10187. shape.Left = 0; // 将图片距离页面左边缘的距离
  10188. shape.Width = 81; // 设置图片宽度
  10189. shape.Height = 36; // 设置图片高度
  10190. }
  10191. //靠右
  10192. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;
  10193. //// 设置页脚上下边距
  10194. //builder.PageSetup.HeaderDistance = 42;
  10195. // 添加页眉线
  10196. Aspose.Words.Border borderHeader = null;
  10197. try
  10198. {
  10199. borderHeader = builder.ParagraphFormat.Borders.Bottom;
  10200. }
  10201. catch (Exception e)
  10202. {
  10203. // TODO Auto-generated catch block
  10204. //e.printStackTrace();
  10205. }
  10206. borderHeader.Shadow = true;
  10207. borderHeader.DistanceFromText = 2;
  10208. borderHeader.LineStyle = Aspose.Words.LineStyle.Single;
  10209. #endregion
  10210. }
  10211. catch (Exception ex)
  10212. {
  10213. }
  10214. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  10215. doc.Save(fileDir);
  10216. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  10217. return Ok(JsonView(true, "操作成功!", Url));
  10218. }
  10219. /// <summary>
  10220. /// 酒店预订
  10221. /// 生成 预定成本 Excel
  10222. /// </summary>
  10223. /// <param name="_dto"></param>
  10224. /// <returns></returns>
  10225. [HttpPost]
  10226. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10227. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  10228. {
  10229. #region 参数验证
  10230. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  10231. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  10232. if (!vadalitorRes.IsValid)
  10233. {
  10234. var errors = new StringBuilder();
  10235. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  10236. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  10237. }
  10238. #region 团组操作权限验证 76 酒店预定模块
  10239. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  10240. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  10241. #endregion
  10242. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10243. #region 页面操作权限验证
  10244. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10245. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10246. #endregion
  10247. #endregion
  10248. decimal _rate = 1.00M;
  10249. string _currency = "";
  10250. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  10251. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  10252. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  10253. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  10254. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  10255. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  10256. {
  10257. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  10258. }
  10259. _currency = _GroupCostParameter.Currency;
  10260. bool isIntType = int.TryParse(_currency, out int currId);
  10261. if (isIntType)
  10262. {
  10263. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  10264. }
  10265. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  10266. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  10267. if (currInfo == null)
  10268. {
  10269. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  10270. }
  10271. if (!_currency.ToUpper().Equals("CNY"))
  10272. {
  10273. _rate = _GroupCostParameter.Rate;
  10274. }
  10275. _rate = currInfo.Rate;
  10276. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  10277. string strFileName = "HotelStatement/";
  10278. string guestNames = ""; //格式Mr.xxx Ms.xxx
  10279. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  10280. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  10281. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  10282. #region 数据处理
  10283. foreach (var item in hrDtas)
  10284. {
  10285. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  10286. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  10287. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  10288. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  10289. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  10290. string roomCurr = currDatas.Find(it => it.Id == roomInfo?.Currency)?.Name ?? "";
  10291. string singleRoomFeeStr = string.Empty,
  10292. doubleRoomFeeStr = string.Empty,
  10293. suiteRoomFeeStr = string.Empty,
  10294. otherRoomFeeStr = string.Empty,
  10295. payMoneyStr = string.Empty,
  10296. cardPriceStr = string.Empty;
  10297. if (roomCurr.Equals(_currency))
  10298. {
  10299. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  10300. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  10301. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  10302. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  10303. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  10304. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  10305. }
  10306. else
  10307. {
  10308. singleRoomFeeStr = $"{((item.SingleRoomPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  10309. doubleRoomFeeStr = $"{((item.DoubleRoomPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  10310. suiteRoomFeeStr = $"{((item.SuiteRoomPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  10311. otherRoomFeeStr = $"{((item.OtherRoomPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  10312. payMoneyStr = $"{((ccpInfo.PayMoney * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  10313. cardPriceStr = $"{((item.CardPrice * roomInfo.Rate) / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  10314. }
  10315. string breakfastPriceStr = string.Empty,
  10316. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  10317. governmentRentStr = string.Empty,
  10318. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  10319. cityTaxStrStr = string.Empty,
  10320. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  10321. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  10322. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  10323. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  10324. int payDId = roomInfo?.PayDId ?? 0;
  10325. pcfds.Add(new HotelReservations_PCFD_View()
  10326. {
  10327. City = item.City,
  10328. HotelName = item.HotelName,
  10329. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  10330. // SingleRoomCount = item.SingleRoomCount,
  10331. SingleRoomPrice = singleRoomFeeStr,
  10332. // DoubleRoomCount = item.DoubleRoomCount,
  10333. DoubleRoomPrice = doubleRoomFeeStr,
  10334. //SuiteRoomCount = item.SuiteRoomCount,
  10335. SuiteRoomPrice = suiteRoomFeeStr,
  10336. OtherRoomPrice = otherRoomFeeStr,
  10337. //OtherRoomCount = item.OtherRoomCount,
  10338. BreakfastPrice = breakfastPriceStr,
  10339. GovernmentRent = governmentRentStr,
  10340. CityTax = cityTaxStrStr,
  10341. RoomExplanation = item.RoomExplanation,
  10342. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == payDId).First()?.Name ?? "",
  10343. PayTime = roomInfo?.ConsumptionDate,
  10344. BankNo = roomInfo?.BankNo,
  10345. PayMoney = payMoneyStr,
  10346. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  10347. ConsumptionPatterns = roomInfo?.ConsumptionPatterns,
  10348. CardPrice = cardPriceStr,
  10349. Remark = ccpInfo.Remark
  10350. });
  10351. }
  10352. #endregion
  10353. //载入模板
  10354. WorkbookDesigner designer = new WorkbookDesigner();
  10355. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  10356. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  10357. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  10358. designer.SetDataSource("TourNo", groupInfo.TourCode);
  10359. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  10360. designer.SetDataSource("Opertor", userInfo.CnName);
  10361. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  10362. dt.TableName = "ViewMyHotelReservations";
  10363. designer.SetDataSource(dt);
  10364. designer.Process();
  10365. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  10366. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  10367. designer.Workbook.Save(serverPath);
  10368. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  10369. #region 删除指定行
  10370. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  10371. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  10372. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  10373. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  10374. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  10375. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  10376. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  10377. cssIndex = dt.Columns["CityTax"].Ordinal,
  10378. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  10379. remarkIndex = dt.Columns["Remark"].Ordinal;
  10380. //删除指定列
  10381. foreach (DataRow item in dt.Rows)
  10382. {
  10383. string singleStr = item["SingleRoomPrice"].ToString();
  10384. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  10385. if (containsDigitButNotZero1) singleDel = false;
  10386. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  10387. string doubleStr = item["DoubleRoomPrice"].ToString();
  10388. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  10389. if (containsDigitButNotZero2) doubleDel = false;
  10390. string suiteStr = item["SuiteRoomPrice"].ToString();
  10391. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  10392. if (containsDigitButNotZero3) suiteDel = false;
  10393. string otherStr = item["OtherRoomPrice"].ToString();
  10394. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  10395. if (containsDigitButNotZero4) otherDel = false;
  10396. string zcStr = item["BreakfastPrice"].ToString();
  10397. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  10398. if (containsDigitButNotZero5) zcDel = false;
  10399. string dsStr = item["GovernmentRent"].ToString();
  10400. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  10401. if (containsDigitButNotZero6) dsDel = false;
  10402. string cssStr = item["CityTax"].ToString();
  10403. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  10404. if (containsDigitButNotZero7) cssDel = false;
  10405. string cpStr = item["ConsumptionPatterns"].ToString();
  10406. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  10407. string remarkStr = item["Remark"].ToString();
  10408. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  10409. }
  10410. DeleteColumn(serverPath, remarkIndex, remarkDel);
  10411. DeleteColumn(serverPath, cpIndex, cpDel);
  10412. DeleteColumn(serverPath, dsIndex, dsDel);
  10413. DeleteColumn(serverPath, cssIndex, cssDel);
  10414. DeleteColumn(serverPath, zcIndex, zcDel);
  10415. DeleteColumn(serverPath, otherIndex, otherDel);
  10416. DeleteColumn(serverPath, suiteIndex, suiteDel);
  10417. DeleteColumn(serverPath, doubleIndex, doubleDel);
  10418. DeleteColumn(serverPath, singleIndex, singleDel);
  10419. #endregion
  10420. //只保留第一个表格
  10421. DeleteSheet(serverPath);
  10422. return Ok(JsonView(true, "操作成功", url = rst));
  10423. }
  10424. /// <summary>
  10425. /// 删除指定列
  10426. /// </summary>
  10427. /// <param name="file"></param>
  10428. /// <param name="columnIndex"></param>
  10429. /// <param name="isDel"></param>
  10430. private void DeleteColumn(string file, int columnIndex, bool isDel)
  10431. {
  10432. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  10433. //wb.Save(file);
  10434. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  10435. if (sheet1 != null)
  10436. {
  10437. if (isDel)
  10438. {
  10439. Cells cells = sheet1.Cells;
  10440. cells.DeleteColumn(columnIndex);
  10441. }
  10442. }
  10443. wb.Save(file);
  10444. }
  10445. /// <summary>
  10446. /// 删除sheet
  10447. /// </summary>
  10448. /// <param name="file"></param>
  10449. /// <param name="sheetName"></param>
  10450. private void DeleteSheet(string file, string sheetName = "")
  10451. {
  10452. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  10453. //wb.Save(file);
  10454. List<string> sheets = new List<string>();
  10455. foreach (var item in wb.Worksheets)
  10456. {
  10457. sheets.Add(item.Name);
  10458. }
  10459. if (sheets.Count > 0)
  10460. {
  10461. sheets.RemoveAt(0);//不删除第一个sheet
  10462. foreach (var item in sheets)
  10463. {
  10464. wb.Worksheets.RemoveAt(item);
  10465. }
  10466. }
  10467. wb.Save(file);
  10468. }
  10469. /// <summary>
  10470. /// 酒店预订
  10471. /// 确认单
  10472. /// </summary>
  10473. /// <param name="_dto"></param>
  10474. /// <returns></returns>
  10475. [HttpPost]
  10476. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10477. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  10478. {
  10479. try
  10480. {
  10481. #region 参数验证
  10482. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  10483. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  10484. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  10485. #region 团组操作权限验证 76 酒店预定模块
  10486. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  10487. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  10488. #endregion
  10489. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10490. #region 页面操作权限验证
  10491. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10492. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10493. #endregion
  10494. #endregion
  10495. //团组信息
  10496. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  10497. //酒店数据
  10498. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  10499. if (listhoteldata.Count < 0)
  10500. {
  10501. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  10502. }
  10503. //利datatable存储
  10504. DataTable dt = new DataTable();
  10505. dt.Columns.Add("CheckInDate", typeof(string));
  10506. dt.Columns.Add("City", typeof(string));
  10507. dt.Columns.Add("Hotel", typeof(string));
  10508. dt.Columns.Add("Room", typeof(string));
  10509. for (int i = 0; i < listhoteldata.Count; i++)
  10510. {
  10511. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  10512. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  10513. while (dayStart < dayEnd)
  10514. {
  10515. string temp = "";
  10516. DataRow row = dt.NewRow();
  10517. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  10518. row["City"] = listhoteldata[i].City;
  10519. row["Hotel"] = listhoteldata[i].HotelName;
  10520. if (listhoteldata[i].SingleRoomCount > 0)
  10521. {
  10522. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  10523. }
  10524. if (listhoteldata[i].DoubleRoomCount > 0)
  10525. {
  10526. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  10527. }
  10528. if (listhoteldata[i].SuiteRoomCount > 0)
  10529. {
  10530. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  10531. }
  10532. if (listhoteldata[i].OtherRoomCount > 0)
  10533. {
  10534. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  10535. }
  10536. row["Room"] = temp;
  10537. dt.Rows.Add(row);
  10538. dayStart = dayStart.AddDays(1);
  10539. }
  10540. }
  10541. Dictionary<string, string> dic = new Dictionary<string, string>();
  10542. dic.Add("Dele", di.TeamName);
  10543. dic.Add("City", di.VisitCountry);
  10544. //模板路径
  10545. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  10546. //载入模板
  10547. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  10548. DocumentBuilder builder = new DocumentBuilder(doc);
  10549. foreach (var key in dic.Keys)
  10550. {
  10551. builder.MoveToBookmark(key);
  10552. builder.Write(dic[key]);
  10553. }
  10554. //获取word里所有表格
  10555. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10556. //获取所填表格的序数
  10557. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10558. var rowStart = tableOne.Rows[0]; //获取第1行
  10559. //循环赋值
  10560. for (int i = 0; i < dt.Rows.Count; i++)
  10561. {
  10562. builder.MoveToCell(0, i + 1, 0, 0);
  10563. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  10564. builder.MoveToCell(0, i + 1, 1, 0);
  10565. builder.Write(dt.Rows[i]["City"].ToString());
  10566. builder.MoveToCell(0, i + 1, 2, 0);
  10567. builder.Write(dt.Rows[i]["Hotel"].ToString());
  10568. builder.MoveToCell(0, i + 1, 3, 0);
  10569. builder.Write(dt.Rows[i]["Room"].ToString());
  10570. }
  10571. //删除多余行
  10572. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  10573. {
  10574. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  10575. }
  10576. string strFileName = di.TeamName + "酒店确认单.doc";
  10577. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  10578. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  10579. return Ok(JsonView(true, "成功", url));
  10580. }
  10581. catch (Exception ex)
  10582. {
  10583. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  10584. }
  10585. }
  10586. #endregion
  10587. #region 团组状态
  10588. /// <summary>
  10589. /// 团组状态列表 Page
  10590. /// </summary>
  10591. /// <param name="dto">团组列表请求dto</param>
  10592. /// <returns></returns>
  10593. [HttpPost]
  10594. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10595. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  10596. {
  10597. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  10598. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  10599. {
  10600. string sqlWhere = string.Empty;
  10601. if (dto.IsSure == 0) //未完成
  10602. {
  10603. sqlWhere += string.Format(@" And IsSure = 0");
  10604. }
  10605. else if (dto.IsSure == 1) //已完成
  10606. {
  10607. sqlWhere += string.Format(@" And IsSure = 1");
  10608. }
  10609. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  10610. {
  10611. string tj = dto.SearchCriteria;
  10612. 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}%')",
  10613. tj, tj, tj, tj, tj);
  10614. }
  10615. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  10616. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  10617. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  10618. From (
  10619. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  10620. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  10621. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  10622. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  10623. From Grp_DelegationInfo gdi
  10624. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  10625. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  10626. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  10627. Where gdi.IsDel = 0 {0}
  10628. ) temp ", sqlWhere);
  10629. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  10630. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  10631. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  10632. }
  10633. else
  10634. {
  10635. return Ok(JsonView(false, "查询失败"));
  10636. }
  10637. }
  10638. /// <summary>
  10639. /// 团组状态
  10640. /// 设置操作完成
  10641. /// </summary>
  10642. /// <param name="dto">团组列表请求dto</param>
  10643. /// <returns></returns>
  10644. [HttpPost]
  10645. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10646. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  10647. {
  10648. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  10649. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  10650. {
  10651. Id = dto.Id,
  10652. IsSure = 1
  10653. };
  10654. var result = await _sqlSugar.Updateable(_DelegationInfo)
  10655. .UpdateColumns(it => new { it.IsSure })
  10656. .WhereColumns(it => new { it.Id })
  10657. .ExecuteCommandAsync();
  10658. if (result > 0)
  10659. {
  10660. return Ok(JsonView(true, "操作完成!"));
  10661. }
  10662. return Ok(JsonView(false, "操作失败!"));
  10663. }
  10664. #endregion
  10665. #region 保险费用录入
  10666. /// <summary>
  10667. /// 根据团组Id查询保险费用列表
  10668. /// </summary>
  10669. /// <param name="dto"></param>
  10670. /// <returns></returns>
  10671. [HttpPost]
  10672. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10673. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  10674. {
  10675. try
  10676. {
  10677. Result groupData = await _customersRep.CustomersByDiId(dto);
  10678. if (groupData.Code != 0)
  10679. {
  10680. return Ok(JsonView(false, groupData.Msg));
  10681. }
  10682. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10683. }
  10684. catch (Exception ex)
  10685. {
  10686. return Ok(JsonView(false, ex.Message));
  10687. }
  10688. }
  10689. /// <summary>
  10690. /// 根据保险费用Id查询保险费用详细
  10691. /// </summary>
  10692. /// <param name="dto"></param>
  10693. /// <returns></returns>
  10694. [HttpPost]
  10695. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10696. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  10697. {
  10698. try
  10699. {
  10700. Result groupData = await _customersRep.CustomersById(dto);
  10701. if (groupData.Code != 0)
  10702. {
  10703. return Ok(JsonView(false, groupData.Msg));
  10704. }
  10705. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10706. }
  10707. catch (Exception ex)
  10708. {
  10709. return Ok(JsonView(false, ex.Message));
  10710. }
  10711. }
  10712. /// <summary>
  10713. /// 保险费用录入页面初始化绑定
  10714. /// </summary>
  10715. /// <param name="dto"></param>
  10716. /// <returns></returns>
  10717. [HttpPost]
  10718. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10719. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  10720. {
  10721. try
  10722. {
  10723. Result groupData = await _customersRep.CustomersInitialize(dto);
  10724. if (groupData.Code != 0)
  10725. {
  10726. return Ok(JsonView(false, groupData.Msg));
  10727. }
  10728. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10729. }
  10730. catch (Exception ex)
  10731. {
  10732. return Ok(JsonView(false, ex.Message));
  10733. }
  10734. }
  10735. /// <summary>
  10736. /// 保险费用操作(Status:1.新增,2.修改)
  10737. /// </summary>
  10738. /// <param name="dto"></param>
  10739. /// <returns></returns>
  10740. [HttpPost]
  10741. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10742. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  10743. {
  10744. Result groupData = await _customersRep.OpCustomers(dto);
  10745. if (groupData.Code != 0)
  10746. {
  10747. return Ok(JsonView(false, groupData.Msg));
  10748. }
  10749. #region 应用推送
  10750. try
  10751. {
  10752. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  10753. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  10754. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  10755. }
  10756. catch (Exception ex)
  10757. {
  10758. }
  10759. #endregion
  10760. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10761. }
  10762. /// <summary>
  10763. /// 保险文件上传
  10764. /// </summary>
  10765. /// <param name="file"></param>
  10766. /// <returns></returns>
  10767. [HttpPost]
  10768. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10769. public async Task<IActionResult> UploadCus(IFormFile file)
  10770. {
  10771. try
  10772. {
  10773. if (file != null)
  10774. {
  10775. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  10776. //文件名称
  10777. string projectFileName = file.FileName;
  10778. //上传的文件的路径
  10779. string filePath = "";
  10780. if (!Directory.Exists(fileDir))
  10781. {
  10782. Directory.CreateDirectory(fileDir);
  10783. }
  10784. //上传的文件的路径
  10785. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  10786. using (FileStream fs = System.IO.File.Create(filePath))
  10787. {
  10788. file.CopyTo(fs);
  10789. fs.Flush();
  10790. }
  10791. return Ok(JsonView(true, "上传成功!", projectFileName));
  10792. }
  10793. else
  10794. {
  10795. return Ok(JsonView(false, "上传失败!"));
  10796. }
  10797. }
  10798. catch (Exception ex)
  10799. {
  10800. return Ok(JsonView(false, "程序错误!"));
  10801. throw;
  10802. }
  10803. }
  10804. /// <summary>
  10805. /// 保险删除指定文件
  10806. /// </summary>
  10807. /// <param name="dto"></param>
  10808. /// <returns></returns>
  10809. [HttpPost]
  10810. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10811. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  10812. {
  10813. try
  10814. {
  10815. string filePath = "";
  10816. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  10817. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  10818. //int id = 0;
  10819. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  10820. // 删除该文件
  10821. try
  10822. {
  10823. System.IO.File.Delete(filePath);
  10824. 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()
  10825. {
  10826. Attachment = "",
  10827. }).ExecuteCommandAsync();
  10828. if (result != 0)
  10829. {
  10830. return Ok(JsonView(true, "成功!"));
  10831. }
  10832. else
  10833. {
  10834. return Ok(JsonView(false, "失败!"));
  10835. }
  10836. }
  10837. catch (Exception)
  10838. {
  10839. 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()
  10840. {
  10841. Attachment = "",
  10842. }).ExecuteCommandAsync();
  10843. if (result != 0)
  10844. {
  10845. return Ok(JsonView(true, "成功!"));
  10846. }
  10847. else
  10848. {
  10849. return Ok(JsonView(false, "失败!"));
  10850. }
  10851. }
  10852. }
  10853. catch (Exception ex)
  10854. {
  10855. return Ok(JsonView(false, "程序错误!"));
  10856. throw;
  10857. }
  10858. }
  10859. /// <summary>
  10860. /// 保险费用操作(删除)
  10861. /// </summary>
  10862. /// <param name="dto"></param>
  10863. /// <returns></returns>
  10864. [HttpPost]
  10865. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10866. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  10867. {
  10868. try
  10869. {
  10870. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  10871. if (!res)
  10872. {
  10873. return Ok(JsonView(false, "删除失败"));
  10874. }
  10875. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  10876. {
  10877. IsDel = 1,
  10878. DeleteUserId = dto.DeleteUserId,
  10879. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  10880. }).ExecuteCommandAsync();
  10881. return Ok(JsonView(true, "删除成功!"));
  10882. }
  10883. catch (Exception ex)
  10884. {
  10885. return Ok(JsonView(false, "程序错误!"));
  10886. throw;
  10887. }
  10888. }
  10889. #endregion
  10890. #region 接团客户名单 PageId 104
  10891. /// <summary>
  10892. /// 接团客户名单
  10893. /// 迁移数据(慎用!)
  10894. /// </summary>
  10895. /// <param name="dto"></param>
  10896. /// <returns></returns>
  10897. [HttpPost]
  10898. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10899. public async Task<IActionResult> PostTourClientListChange()
  10900. {
  10901. try
  10902. {
  10903. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  10904. //var groupClinetData1
  10905. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  10906. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  10907. int updateCount = 0;
  10908. if (oldOAClientList.Count > 0)
  10909. {
  10910. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  10911. _sqlSugar.BeginTran();
  10912. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  10913. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  10914. foreach (var item in oldOAClientList)
  10915. {
  10916. int comId = 0;
  10917. string format = "yyyy-MM-dd HH:mm:ss";
  10918. string data11 = "1990-01-01 00:00";
  10919. var data1 = IsValidDate(item.OPdate, format);
  10920. if (data1) data11 = item.OPdate;
  10921. //客户公司验证
  10922. if (!string.IsNullOrEmpty(item.Company))
  10923. {
  10924. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  10925. if (clientComInfo == null) // add
  10926. {
  10927. var addInfo = new Crm_CustomerCompany()
  10928. {
  10929. CompanyAbbreviation = "",
  10930. CompanyFullName = item.Company,
  10931. Address = "",
  10932. PostCodes = "",
  10933. LastedOpUserId = item.OPer,
  10934. LastedOpDt = Convert.ToDateTime(data11),
  10935. CreateUserId = item.OPer,
  10936. CreateTime = Convert.ToDateTime(data11),
  10937. IsDel = 0
  10938. };
  10939. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  10940. if (comId1 > 0) comId = comId1;
  10941. }
  10942. else comId = clientComInfo.Id;
  10943. }
  10944. //客户人员验证
  10945. int clientId = 0;
  10946. string name = item.LastName + item.Name;
  10947. if (!string.IsNullOrEmpty(name))
  10948. {
  10949. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  10950. if (clientInfo == null)
  10951. {
  10952. DateTime? dateTime = null;
  10953. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  10954. if (isDt) dateTime = birthDayDt;
  10955. var addInfo1 = new Crm_DeleClient()
  10956. {
  10957. CrmCompanyId = comId,
  10958. DiId = -1,
  10959. LastName = item.LastName,
  10960. FirstName = item.Name,
  10961. OldName = "",
  10962. Pinyin = item.Pinyin,
  10963. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  10964. Marriage = 0,
  10965. Phone = item.Phone,
  10966. Job = item.Job,
  10967. BirthDay = dateTime
  10968. };
  10969. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  10970. if (clientId1 > 0) clientId = clientId1;
  10971. }
  10972. else clientId = clientInfo.Id;
  10973. }
  10974. if (clientId < 1)
  10975. {
  10976. continue;
  10977. }
  10978. int airType = 0;
  10979. if (item.AirType == "超经舱") airType = 459;
  10980. else if (item.AirType == "公务舱") airType = 458;
  10981. else if (item.AirType == "经济舱") airType = 460;
  10982. else if (item.AirType == "其他") airType = 565;
  10983. else if (item.AirType == "头等舱") airType = 457;
  10984. var _TourClientListEntity = new Grp_TourClientList()
  10985. {
  10986. DiId = item.Diid,
  10987. ClientId = clientId,
  10988. CreateUserId = item.OPer,
  10989. CreateTime = Convert.ToDateTime(data11),
  10990. Remark = item.Remark,
  10991. IsDel = item.Isdel,
  10992. ShippingSpaceTypeId = airType,
  10993. ShippingSpaceSpecialNeeds = item.AirRemark,
  10994. HotelSpecialNeeds = item.RoomType
  10995. };
  10996. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  10997. if (_TourClientList > 0)
  10998. {
  10999. updateCount++;
  11000. }
  11001. }
  11002. _sqlSugar.CommitTran();
  11003. }
  11004. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  11005. }
  11006. catch (Exception ex)
  11007. {
  11008. _sqlSugar.RollbackTran();
  11009. return Ok(JsonView(false, ex.Message));
  11010. }
  11011. return Ok(JsonView(true));
  11012. }
  11013. private bool IsValidDate(string dateString, string format)
  11014. {
  11015. DateTime dateValue;
  11016. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  11017. return valid;
  11018. }
  11019. /// <summary>
  11020. /// 接团客户名单
  11021. /// 根据团组Id查询List
  11022. /// </summary>
  11023. /// <param name="dto"></param>
  11024. /// <returns></returns>
  11025. [HttpPost]
  11026. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11027. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  11028. {
  11029. #region 参数验证
  11030. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  11031. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  11032. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  11033. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11034. #region 页面操作权限验证
  11035. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  11036. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  11037. #endregion
  11038. #endregion
  11039. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  11040. if (viewData.Code != 0)
  11041. {
  11042. return Ok(JsonView(false, viewData.Msg));
  11043. }
  11044. return Ok(JsonView(viewData.Data));
  11045. }
  11046. /// <summary>
  11047. /// 接团客户名单
  11048. /// 基础数据 Init
  11049. /// </summary>
  11050. /// <param name="_dto"></param>
  11051. /// <returns></returns>
  11052. [HttpPost]
  11053. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11054. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  11055. {
  11056. #region 参数验证
  11057. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  11058. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  11059. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11060. #region 页面操作权限验证
  11061. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  11062. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  11063. #endregion
  11064. #endregion
  11065. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  11066. if (viewData.Code != 0)
  11067. {
  11068. return Ok(JsonView(false, viewData.Msg));
  11069. }
  11070. return Ok(JsonView(viewData.Data));
  11071. }
  11072. /// <summary>
  11073. /// 接团客户名单
  11074. /// 根据 Id查询 Details
  11075. /// </summary>
  11076. /// <param name="_dto"></param>
  11077. /// <returns></returns>
  11078. [HttpPost]
  11079. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11080. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  11081. {
  11082. #region 参数验证
  11083. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  11084. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  11085. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  11086. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11087. #region 页面操作权限验证
  11088. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  11089. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  11090. #endregion
  11091. #endregion
  11092. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  11093. if (viewData.Code != 0)
  11094. {
  11095. return Ok(JsonView(false, viewData.Msg));
  11096. }
  11097. return Ok(JsonView(viewData.Data));
  11098. }
  11099. /// <summary>
  11100. /// 接团客户名单
  11101. /// Add Or Edit
  11102. /// </summary>
  11103. /// <param name="_dto"></param>
  11104. /// <returns></returns>
  11105. [HttpPost]
  11106. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11107. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  11108. {
  11109. #region 参数验证
  11110. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  11111. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  11112. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  11113. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11114. #region 页面操作权限验证
  11115. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  11116. if (_dto.Id == 0) //添加
  11117. {
  11118. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  11119. }
  11120. else if (_dto.Id >= 0) //修改
  11121. {
  11122. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  11123. }
  11124. #endregion
  11125. #endregion
  11126. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  11127. if (viewData.Code != 0)
  11128. {
  11129. return Ok(JsonView(false, viewData.Msg));
  11130. }
  11131. return Ok(JsonView(true));
  11132. }
  11133. /// <summary>
  11134. /// 接团客户名单
  11135. /// AddMultiple(添加多个)
  11136. /// </summary>
  11137. /// <param name="_dto"></param>
  11138. /// <returns></returns>
  11139. [HttpPost]
  11140. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11141. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  11142. {
  11143. #region 参数验证
  11144. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  11145. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  11146. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11147. #region 页面操作权限验证
  11148. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  11149. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  11150. #endregion
  11151. #endregion
  11152. var viewData = await _tourClientListRep._AddMultiple(_dto);
  11153. if (viewData.Code != 0)
  11154. {
  11155. return Ok(JsonView(false, viewData.Msg));
  11156. }
  11157. return Ok(JsonView(true));
  11158. }
  11159. /// <summary>
  11160. /// 接团客户名单
  11161. /// Del
  11162. /// </summary>
  11163. /// <param name="_dto"></param>
  11164. /// <returns></returns>
  11165. [HttpPost]
  11166. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11167. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  11168. {
  11169. #region 参数验证
  11170. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  11171. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  11172. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11173. #region 页面操作权限验证
  11174. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  11175. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  11176. #endregion
  11177. #endregion
  11178. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  11179. if (viewData.Code != 0)
  11180. {
  11181. return Ok(JsonView(false, viewData.Msg));
  11182. }
  11183. return Ok(JsonView(true));
  11184. }
  11185. /// <summary>
  11186. /// 接团客户名单
  11187. /// 文件下载 客户名单
  11188. /// </summary>
  11189. /// <param name="_dto"></param>
  11190. /// <returns></returns>
  11191. [HttpPost]
  11192. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11193. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  11194. {
  11195. #region 参数验证
  11196. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  11197. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  11198. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  11199. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11200. #region 页面操作权限验证
  11201. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  11202. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  11203. #endregion
  11204. #endregion
  11205. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  11206. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  11207. From Grp_TourClientList tcl
  11208. Left Join
  11209. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  11210. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  11211. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  11212. From Crm_DeleClient dc
  11213. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  11214. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  11215. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  11216. Where dc.IsDel = 0) temp
  11217. On temp.DcId =tcl.ClientId
  11218. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  11219. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  11220. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  11221. //载入模板
  11222. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  11223. if (_dto.Language == 1)
  11224. {
  11225. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  11226. }
  11227. //载入模板
  11228. var doc = new Document(tempPath);
  11229. DocumentBuilder builder = new DocumentBuilder(doc);
  11230. //获取word里所有表格
  11231. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11232. //获取所填表格的序数
  11233. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11234. var rowStart = tableOne.Rows[0]; //获取第1行
  11235. if (_dto.Language == 0)
  11236. {
  11237. //循环赋值
  11238. for (int i = 0; i < DcList.Count; i++)
  11239. {
  11240. builder.MoveToCell(0, i + 1, 0, 0);
  11241. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  11242. builder.MoveToCell(0, i + 1, 1, 0);
  11243. int sex = DcList[i].Sex;
  11244. string sexStr = string.Empty;
  11245. if (sex == 0) sexStr = "男";
  11246. else if (sex == 1) sexStr = "女";
  11247. else sexStr = "未设置";
  11248. builder.Write(sexStr);
  11249. builder.MoveToCell(0, i + 1, 2, 0);
  11250. string birthDay = DcList[i].BirthDay;
  11251. string birthDayStr = string.Empty;
  11252. if (!string.IsNullOrEmpty(birthDay))
  11253. {
  11254. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  11255. }
  11256. builder.Write(birthDayStr);
  11257. builder.MoveToCell(0, i + 1, 3, 0);
  11258. string company = "";
  11259. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  11260. {
  11261. company = DcList[i].CompanyFullName.ToString();
  11262. }
  11263. builder.Write(company);
  11264. builder.MoveToCell(0, i + 1, 4, 0);
  11265. builder.Write(DcList[i].Job);
  11266. }
  11267. }
  11268. else if (_dto.Language == 1)
  11269. {
  11270. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  11271. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  11272. List<string> transArrayStr = new List<string>();
  11273. string transStrRes1 = "";
  11274. for (int i = 0; i < DcList.Count; i++)
  11275. {
  11276. var dc = DcList[i];
  11277. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  11278. if (dc.Job.Equals("暂无")) dc.Job = "-";
  11279. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  11280. if (DcList.Count - 1 == i) transStrRes1 += str1;
  11281. else transStrRes1 += $"{str1}|";
  11282. }
  11283. //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";
  11284. string transStrRes = "";
  11285. if (transStrRes1.Length > 0 )
  11286. {
  11287. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  11288. }
  11289. //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
  11290. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  11291. //List<string> transArray = new List<string> { };
  11292. List<TranslateInfo> transArray = new List<TranslateInfo>();
  11293. if (transStrRes.Contains("|"))
  11294. {
  11295. string[] transArray1 = transStrRes.Split('|');
  11296. if (transArray1.Length > 0)
  11297. {
  11298. foreach (var item in transArray1)
  11299. {
  11300. if (item.Contains("&"))
  11301. {
  11302. string[] transArray2 = item.Split('&');
  11303. int index = 0;
  11304. string companyName = "", job = "";
  11305. if (transArray2.Length > 0)
  11306. {
  11307. bool success = int.TryParse(transArray2[0].Trim(), out index);
  11308. if (1 < transArray2.Length) companyName = transArray2[1];
  11309. if (2 < transArray2.Length) job = transArray2[2];
  11310. }
  11311. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  11312. }
  11313. }
  11314. }
  11315. }
  11316. //循环赋值
  11317. for (int i = 0; i < DcList.Count; i++)
  11318. {
  11319. string PYName = "";
  11320. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  11321. {
  11322. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  11323. string PY_First = DcList[i].Pinyin.Split('/')[1];
  11324. PYName = PY_First + " " + PY_Last;
  11325. }
  11326. else
  11327. {
  11328. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  11329. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  11330. PYName = PY_First + " " + PY_Last;
  11331. }
  11332. builder.MoveToCell(0, i + 1, 0, 0);
  11333. builder.Write(PYName);
  11334. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  11335. builder.MoveToCell(0, i + 1, 1, 0);
  11336. builder.Write(sex);
  11337. DateTime birthDt;
  11338. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  11339. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  11340. builder.MoveToCell(0, i + 1, 2, 0);
  11341. builder.Write(birthday);
  11342. string company = string.Empty,job = string.Empty;
  11343. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  11344. if (dcTransInfo != null)
  11345. {
  11346. company = dcTransInfo.CompanyName;
  11347. job = dcTransInfo.Job;
  11348. }
  11349. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  11350. {
  11351. //查询对照表
  11352. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  11353. if (tempCec != null)
  11354. {
  11355. company = tempCec.enName;
  11356. }
  11357. //翻译
  11358. else
  11359. {
  11360. }
  11361. }
  11362. builder.MoveToCell(0, i + 1, 3, 0);
  11363. builder.Write(company);
  11364. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  11365. {
  11366. //查询对照表
  11367. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  11368. if (tempPec != null)
  11369. {
  11370. job = tempPec.enName;
  11371. }
  11372. //翻译
  11373. else
  11374. {
  11375. }
  11376. }
  11377. builder.MoveToCell(0, i + 1, 4, 0);
  11378. builder.Write(job);
  11379. }
  11380. }
  11381. //删除多余行
  11382. while (tableOne.Rows.Count > DcList.Count + 1)
  11383. {
  11384. tableOne.Rows.RemoveAt(DcList.Count + 1);
  11385. }
  11386. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  11387. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  11388. doc.Save(fileDir);
  11389. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  11390. return Ok(JsonView(true, "操作成功!", Url));
  11391. }
  11392. private class TranslateInfo
  11393. {
  11394. public int Index { get; set; }
  11395. public string CompanyName { get; set; }
  11396. public string Job { get; set; }
  11397. }
  11398. #endregion
  11399. #region 团组倒推表
  11400. /// <summary>
  11401. /// 倒推表基础数据
  11402. /// Init
  11403. /// </summary>
  11404. /// <param name="dto"></param>
  11405. /// <returns></returns>
  11406. [HttpPost]
  11407. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11408. public async Task<IActionResult> PostInvertedListInit()
  11409. {
  11410. var viewData = await _invertedListRep._Init();
  11411. if (viewData.Code != 0)
  11412. {
  11413. return Ok(JsonView(false, viewData.Msg));
  11414. }
  11415. return Ok(JsonView(viewData.Data));
  11416. }
  11417. /// <summary>
  11418. /// 倒推表
  11419. /// Info
  11420. /// </summary>
  11421. /// <param name="dto"></param>
  11422. /// <returns></returns>
  11423. [HttpPost]
  11424. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11425. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  11426. {
  11427. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  11428. if (viewData.Code != 0)
  11429. {
  11430. return Ok(JsonView(false, viewData.Msg));
  11431. }
  11432. return Ok(JsonView(viewData.Data));
  11433. }
  11434. /// <summary>
  11435. /// 倒推表
  11436. /// Create
  11437. /// </summary>
  11438. /// <param name="dto"></param>
  11439. /// <returns></returns>
  11440. [HttpPost]
  11441. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11442. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  11443. {
  11444. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  11445. if (viewData.Code != 0)
  11446. {
  11447. return Ok(JsonView(false, viewData.Msg));
  11448. }
  11449. return Ok(JsonView(viewData.Data));
  11450. }
  11451. /// <summary>
  11452. /// 倒推表
  11453. /// Update
  11454. /// </summary>
  11455. /// <param name="dto"></param>
  11456. /// <returns></returns>
  11457. [HttpPost]
  11458. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11459. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  11460. {
  11461. var viewData = await _invertedListRep._Update(dto);
  11462. if (viewData.Code != 0)
  11463. {
  11464. return Ok(JsonView(false, viewData.Msg));
  11465. }
  11466. return Ok(JsonView(viewData.Data));
  11467. }
  11468. /// <summary>
  11469. /// 倒推表
  11470. /// File Download
  11471. /// </summary>
  11472. /// <param name="dto"></param>
  11473. /// <returns></returns>
  11474. [HttpPost]
  11475. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11476. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  11477. {
  11478. var info2 = await _invertedListRep._Info(1, dto.DiId);
  11479. if (info2.Code != 0)
  11480. {
  11481. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  11482. }
  11483. var info1 = info2.Data as InvertedListInfoView;
  11484. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  11485. string teamName = "";
  11486. if (info != null) teamName = info.TeamName;
  11487. //载入模板
  11488. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  11489. DocumentBuilder builder = new DocumentBuilder(doc);
  11490. //利用键值对存放数据
  11491. Dictionary<string, string> dic = new Dictionary<string, string>();
  11492. dic.Add("TeamName", teamName);
  11493. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  11494. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  11495. dic.Add("BPRemark", info1.ApprovalDataRemark);
  11496. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  11497. dic.Add("SQRemark", info1.ApprovalRemark);
  11498. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  11499. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  11500. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  11501. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  11502. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  11503. dic.Add("QZRemark", info1.VisaInformationRemark);
  11504. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  11505. dic.Add("SQQZRemark", info1.SendVisaRemark);
  11506. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  11507. dic.Add("CQRemark", info1.IssueVisaRemark);
  11508. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  11509. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  11510. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  11511. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  11512. #region 填充word模板书签内容
  11513. foreach (var key in dic.Keys)
  11514. {
  11515. builder.MoveToBookmark(key);
  11516. builder.Write(dic[key]);
  11517. }
  11518. #endregion
  11519. var fileDir = AppSettingsHelper.Get("WordBasePath");
  11520. string fileName = $"{teamName}团出行准备流程表.doc";
  11521. string filePath = fileDir + $@"InvertedList/{fileName}";
  11522. doc.Save(filePath);
  11523. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  11524. return Ok(JsonView(true, "操作成功!", Url));
  11525. }
  11526. #endregion
  11527. #region 三公签证费用(签证费、代办费)
  11528. /// <summary>
  11529. /// 三公签证费用(签证费、代办费)
  11530. /// List
  11531. /// </summary>
  11532. /// <returns></returns>
  11533. [HttpPost]
  11534. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11535. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  11536. {
  11537. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  11538. if (_view.Code != 0)
  11539. {
  11540. return Ok(JsonView(false, _view.Msg));
  11541. }
  11542. return Ok(JsonView(true, "操作成功!", _view.Data));
  11543. }
  11544. /// <summary>
  11545. /// 三公签证费用(签证费、代办费)
  11546. /// Add Or Update
  11547. /// </summary>
  11548. /// <returns></returns>
  11549. [HttpPost]
  11550. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11551. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  11552. {
  11553. var _view = await _visaFeeInfoRep._Update(_dto);
  11554. if (_view.Code != 0)
  11555. {
  11556. return Ok(JsonView(false, _view.Msg));
  11557. }
  11558. return Ok(JsonView(true, _view.Msg));
  11559. }
  11560. #endregion
  11561. #region 酒店询价
  11562. /// <summary>
  11563. /// 酒店询价
  11564. /// Init
  11565. /// </summary>
  11566. /// <param name="dto"></param>
  11567. /// <returns></returns>
  11568. [HttpPost]
  11569. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11570. public async Task<IActionResult> PostHotelInquiryInit()
  11571. {
  11572. var res = await _hotelInquiryRep._Init();
  11573. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11574. return Ok(JsonView(true, res.Msg, res.Data));
  11575. }
  11576. /// <summary>
  11577. /// 酒店询价
  11578. /// page Item
  11579. /// </summary>
  11580. /// <param name="_dto"></param>
  11581. /// <returns></returns>
  11582. [HttpPost]
  11583. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11584. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  11585. {
  11586. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  11587. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11588. var view = res.Data as PageDataViewBase;
  11589. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  11590. }
  11591. /// <summary>
  11592. /// 酒店询价
  11593. /// info
  11594. /// </summary>
  11595. /// <param name="_dto"></param>
  11596. /// <returns></returns>
  11597. [HttpPost]
  11598. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11599. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  11600. {
  11601. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  11602. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11603. return Ok(JsonView(true, res.Msg, res.Data));
  11604. }
  11605. /// <summary>
  11606. /// 酒店询价
  11607. /// Add Or Edit
  11608. /// </summary>
  11609. /// <param name="_dto"></param>
  11610. /// <returns></returns>
  11611. [HttpPost]
  11612. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11613. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  11614. {
  11615. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  11616. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11617. return Ok(JsonView(true, res.Msg, res.Data));
  11618. }
  11619. /// <summary>
  11620. /// 酒店询价
  11621. /// Del
  11622. /// </summary>
  11623. /// <param name="_dto"></param>
  11624. /// <returns></returns>
  11625. [HttpPost]
  11626. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11627. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  11628. {
  11629. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  11630. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11631. return Ok(JsonView(true, res.Msg, res.Data));
  11632. }
  11633. #endregion
  11634. #region 下载匹配op行程单
  11635. /// <summary>
  11636. /// 匹配op行程单
  11637. /// Init
  11638. /// </summary>
  11639. /// <param name="dto">团组列表请求dto</param>
  11640. /// <returns></returns>
  11641. [HttpPost]
  11642. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11643. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  11644. {
  11645. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  11646. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  11647. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  11648. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  11649. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  11650. .Where(it => it.IsDel == 0)
  11651. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  11652. .OrderByDescending(it => it.CreateUserId)
  11653. .ToList();
  11654. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  11655. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11656. var diids = groupInfos.Select(it => it.Id).ToList();
  11657. List<string> countrys = new List<string>();
  11658. foreach (var item in country)
  11659. {
  11660. var data = _groupRepository.FormartTeamName(item);
  11661. var dataArray = _groupRepository.GroupSplitCountry(data);
  11662. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11663. }
  11664. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  11665. List<string> areaArray = new List<string>(); //GetGroupCityLine
  11666. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  11667. foreach (var item in areaItem)
  11668. {
  11669. string areaStr = item.Value;
  11670. if (!string.IsNullOrEmpty(areaStr))
  11671. {
  11672. string[] str1 = areaStr.Split("-");
  11673. if (str1.Length > 0)
  11674. {
  11675. areaArray.AddRange(str1);
  11676. }
  11677. }
  11678. }
  11679. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  11680. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  11681. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  11682. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  11683. .ToList();
  11684. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  11685. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  11686. .Where(it => countriesIds.Contains(it.Id))
  11687. .Select(it => new { it.Id, Name = it.Name_CN })
  11688. .ToList();
  11689. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  11690. .Select(it => it.TeamName).ToList();
  11691. stopwatch.Stop();
  11692. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  11693. }
  11694. ///// <summary>
  11695. ///// 匹配op行程单
  11696. ///// Init 查询区域数据
  11697. ///// </summary>
  11698. ///// <param name="dto">团组列表请求dto</param>
  11699. ///// <returns></returns>
  11700. //[HttpPost]
  11701. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11702. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  11703. //{
  11704. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  11705. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  11706. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  11707. // if (string.IsNullOrEmpty(countriesDataStr))
  11708. // {
  11709. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  11710. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  11711. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  11712. // }
  11713. // else
  11714. // {
  11715. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  11716. // }
  11717. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  11718. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  11719. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  11720. // List<dynamic> childList = new List<dynamic>();
  11721. // int parentId = dto.CountriesId;
  11722. // if (provinceData.Count > 1)
  11723. // {
  11724. // foreach (var item1 in provinceData)
  11725. // {
  11726. // List<dynamic> childList1 = new List<dynamic>();
  11727. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  11728. // foreach (var item2 in citiesData1)
  11729. // {
  11730. // List<dynamic> childList2 = new List<dynamic>();
  11731. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  11732. // foreach (var item3 in countiesData1)
  11733. // {
  11734. // childList2.Add(new
  11735. // {
  11736. // id = item3.Id,
  11737. // parentId = item2.Id,
  11738. // level = "district",
  11739. // name = item3.Name_CN,
  11740. // });
  11741. // }
  11742. // childList1.Add(new
  11743. // {
  11744. // id = item2.Id,
  11745. // parentId = item1.Id,
  11746. // level = "city",
  11747. // name = item2.Name_CN,
  11748. // childList = childList2
  11749. // });
  11750. // }
  11751. // childList.Add(new
  11752. // {
  11753. // id = item1.Id,
  11754. // parentId = parentId,
  11755. // level = "province",
  11756. // name = item1.Name_CN,
  11757. // childList = childList1
  11758. // });
  11759. // }
  11760. // //城市
  11761. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  11762. // foreach (var item2 in citiesData2)
  11763. // {
  11764. // List<dynamic> childList22 = new List<dynamic>();
  11765. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  11766. // foreach (var item3 in countiesData1)
  11767. // {
  11768. // childList22.Add(new
  11769. // {
  11770. // id = item3.Id,
  11771. // parentId = item2.Id,
  11772. // level = "district",
  11773. // name = item3.Name_CN,
  11774. // });
  11775. // }
  11776. // childList.Add(new
  11777. // {
  11778. // id = item2.Id,
  11779. // parentId = parentId,
  11780. // level = "city",
  11781. // name = item2.Name_CN,
  11782. // childList = childList22
  11783. // });
  11784. // }
  11785. // }
  11786. // else
  11787. // {
  11788. // foreach (var item2 in citiesData)
  11789. // {
  11790. // string cname = item2.Name_CN;
  11791. // List<dynamic> childList1 = new List<dynamic>();
  11792. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  11793. // foreach (var item3 in countiesData1)
  11794. // {
  11795. // childList1.Add(new
  11796. // {
  11797. // Id = item3.Id,
  11798. // parentId = item2.Id,
  11799. // level = "district",
  11800. // name = item3.Name_CN
  11801. // });
  11802. // }
  11803. // childList.Add(new
  11804. // {
  11805. // id = item2.Id,
  11806. // parentId = parentId,
  11807. // level = "city",
  11808. // name = item2.Name_CN,
  11809. // childList = childList1
  11810. // });
  11811. // }
  11812. // }
  11813. // stopwatch.Stop();
  11814. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  11815. //}
  11816. /// <summary>
  11817. /// 匹配op行程单
  11818. /// 接团信息列表 Page
  11819. /// </summary>
  11820. /// <param name="dto">团组列表请求dto</param>
  11821. /// <returns></returns>
  11822. [HttpPost]
  11823. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11824. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  11825. {
  11826. var swatch = new Stopwatch();
  11827. swatch.Start();
  11828. #region 参数验证
  11829. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  11830. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  11831. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11832. #region 页面操作权限验证
  11833. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  11834. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  11835. #endregion
  11836. #endregion
  11837. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  11838. {
  11839. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  11840. string sqlWhere = "";
  11841. if (!string.IsNullOrEmpty(dto.Country))
  11842. {
  11843. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  11844. }
  11845. if (!string.IsNullOrEmpty(dto.Area))
  11846. {
  11847. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  11848. }
  11849. if (!string.IsNullOrEmpty(dto.TeamName))
  11850. {
  11851. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  11852. }
  11853. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  11854. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  11855. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  11856. swatch.Stop();
  11857. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  11858. }
  11859. else
  11860. {
  11861. return Ok(JsonView(false, "查询失败"));
  11862. }
  11863. }
  11864. /// <summary>
  11865. /// 匹配op行程单
  11866. /// 行程单下载
  11867. /// </summary>
  11868. /// <param name="dto">团组列表请求dto</param>
  11869. /// <returns></returns>
  11870. [HttpPost]
  11871. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11872. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  11873. {
  11874. #region 参数验证
  11875. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  11876. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  11877. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11878. #region 页面操作权限验证
  11879. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  11880. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  11881. #endregion
  11882. #endregion
  11883. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  11884. {
  11885. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  11886. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  11887. }
  11888. else
  11889. {
  11890. return Ok(JsonView(false, "下载失败!"));
  11891. }
  11892. }
  11893. #endregion
  11894. #region 国家信息 数据 注释
  11895. //[HttpPost]
  11896. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  11897. //{
  11898. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  11899. // foreach (var item in dto)
  11900. // {
  11901. // infos.Add(new Grp_GroupsTaskAssignment()
  11902. // {
  11903. // DIId = item,
  11904. // CTId = 82,
  11905. // UId = 248,
  11906. // IsEnable = 1,
  11907. // CreateUserId = 233,
  11908. // CreateTime = DateTime.Now,
  11909. // IsDel = 0
  11910. // });
  11911. // infos.Add(new Grp_GroupsTaskAssignment()
  11912. // {
  11913. // DIId = item,
  11914. // CTId = 82,
  11915. // UId = 286,
  11916. // IsEnable = 1,
  11917. // CreateUserId = 233,
  11918. // CreateTime = DateTime.Now,
  11919. // IsDel = 0
  11920. // });
  11921. // }
  11922. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  11923. // return Ok("操作成功");
  11924. //}
  11925. //public class paramJsonDto
  11926. //{
  11927. // public List<CountriesInfo> str { get; set; }
  11928. //}
  11929. //[HttpPost]
  11930. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  11931. //{
  11932. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  11933. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  11934. // List<Sys_Cities> cities = new List<Sys_Cities>();
  11935. // List<Sys_Cities> districts = new List<Sys_Cities>();
  11936. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  11937. // _sqlSugar.BeginTran();
  11938. // int countitiesIndex = 0;
  11939. // foreach (var item in dto.str)
  11940. // {
  11941. // dynamic data = item.c;
  11942. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  11943. // if (data != null)
  11944. // {
  11945. // countitiesIndex++;
  11946. // foreach (var item1 in data)
  11947. // {
  11948. // string cnname = item1.cn;
  11949. // string enname = item1.en;
  11950. // Sys_Cities provinceInfo = new Sys_Cities()
  11951. // {
  11952. // CountriesId = countriesId,
  11953. // Name_CN = cnname,
  11954. // Name_EN = enname,
  11955. // ParentId = 0,
  11956. // IsCapital = 1,
  11957. // CreateUserId = 208,
  11958. // CreateTime = DateTime.Now,
  11959. // IsDel = 0
  11960. // };
  11961. // if (item1.lv == "province") //省份
  11962. // {
  11963. // provinceInfo.Level = 1;
  11964. // int provinceId = 0;
  11965. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  11966. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  11967. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  11968. // var data1 = item1.c;
  11969. // foreach (var item2 in data1)
  11970. // {
  11971. // if (item2.lv == "city")
  11972. // {
  11973. // string citycnname = item2.cn;
  11974. // string cityenname = item2.en;
  11975. // Sys_Cities cityInfo = new Sys_Cities()
  11976. // {
  11977. // CountriesId = countriesId,
  11978. // ParentId = provinceId,
  11979. // Level = 2,
  11980. // Name_CN = citycnname,
  11981. // Name_EN = cityenname,
  11982. // IsCapital = 1,
  11983. // CreateUserId = 208,
  11984. // CreateTime = DateTime.Now,
  11985. // IsDel = 0
  11986. // };
  11987. // if (item2.c != null)
  11988. // {
  11989. // int cityId = 0;
  11990. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  11991. // if (citiesInfo != null) cityId = citiesInfo.Id;
  11992. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  11993. // foreach (var item3 in item2.c)
  11994. // {
  11995. // if (item3.lv == "district")
  11996. // {
  11997. // var districtInfo = new Sys_Cities()
  11998. // {
  11999. // CountriesId = countriesId,
  12000. // Name_CN = item3.cn,
  12001. // Name_EN = item3.en,
  12002. // Level = 3,
  12003. // ParentId = cityId,
  12004. // IsCapital = 1,
  12005. // CreateUserId = 208,
  12006. // CreateTime = DateTime.Now,
  12007. // IsDel = 0
  12008. // };
  12009. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  12010. // //{
  12011. // districts.Add(districtInfo);
  12012. // //}
  12013. // }
  12014. // }
  12015. // }
  12016. // else
  12017. // {
  12018. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  12019. // //{
  12020. // cities.Add(cityInfo);
  12021. // //}
  12022. // }
  12023. // }
  12024. // }
  12025. // }
  12026. // else if (item1.lv == "city")//城市
  12027. // {
  12028. // provinceInfo.Level = 2;
  12029. // if (item1.c != null)
  12030. // {
  12031. // int cityId = 0;
  12032. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  12033. // if (citiesInfo != null) cityId = citiesInfo.Id;
  12034. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  12035. // foreach (var item3 in item1.c)
  12036. // {
  12037. // if (item3.lv == "district")
  12038. // {
  12039. // var districtInfo = new Sys_Cities()
  12040. // {
  12041. // CountriesId = countriesId,
  12042. // Name_CN = item3.cn,
  12043. // Name_EN = item3.en,
  12044. // Level = 3,
  12045. // ParentId = cityId,
  12046. // IsCapital = 1,
  12047. // CreateUserId = 208,
  12048. // CreateTime = DateTime.Now,
  12049. // IsDel = 0
  12050. // };
  12051. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  12052. // //{
  12053. // districts.Add(districtInfo);
  12054. // //}
  12055. // }
  12056. // }
  12057. // }
  12058. // else
  12059. // {
  12060. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  12061. // //{
  12062. // cities.Add(provinceInfo);
  12063. // //}
  12064. // }
  12065. // }
  12066. // }
  12067. // }
  12068. // }
  12069. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  12070. // cities = cities.Distinct().ToList();
  12071. // districts = districts.Distinct().ToList();
  12072. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  12073. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  12074. // cities.AddRange(districts);
  12075. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  12076. // //_sqlSugar.RollbackTran();
  12077. // _sqlSugar.CommitTran();
  12078. // return Ok(JsonView(false, "操作成功!"));
  12079. //}
  12080. //[HttpPost]
  12081. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  12082. //{
  12083. // List<CountitiesInfo> infos = dto.MyProperty;
  12084. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  12085. // _sqlSugar.BeginTran();
  12086. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  12087. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  12088. // foreach (var item in infos)
  12089. // {
  12090. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  12091. // if (countryInfo != null)
  12092. // {
  12093. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  12094. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  12095. // if (cityInfo1 != null)
  12096. // {
  12097. // cityInfo1.IsCapital = 0;
  12098. // cityInfos.Add(cityInfo1);
  12099. // }
  12100. // }
  12101. // }
  12102. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  12103. // .UpdateColumns(it => it.IsCapital)
  12104. // .WhereColumns(it => it.Id)
  12105. // .ExecuteCommand();
  12106. // //_sqlSugar.RollbackTran();
  12107. // _sqlSugar.CommitTran();
  12108. // return Ok(JsonView(false, "操作成功!"));
  12109. //}
  12110. //public class CounrtiesDto
  12111. //{
  12112. // public List<CountitiesInfo> MyProperty { get; set; }
  12113. //}
  12114. //public class CountitiesInfo
  12115. //{
  12116. // /// <summary>
  12117. // /// 圣约翰
  12118. // /// </summary>
  12119. // public string capital_name_chinese { get; set; }
  12120. // /// <summary>
  12121. // ///
  12122. // /// </summary>
  12123. // public string capital_name { get; set; }
  12124. // /// <summary>
  12125. // ///
  12126. // /// </summary>
  12127. // public string country_type { get; set; }
  12128. // /// <summary>
  12129. // /// 安提瓜和巴布达
  12130. // /// </summary>
  12131. // public string country_name_chinese { get; set; }
  12132. // /// <summary>
  12133. // /// 安提瓜和巴布达
  12134. // /// </summary>
  12135. // public string country_name_chinese_short { get; set; }
  12136. // /// <summary>
  12137. // /// 安提瓜和巴布达
  12138. // /// </summary>
  12139. // public string country_name_chinese_UN { get; set; }
  12140. // /// <summary>
  12141. // ///
  12142. // /// </summary>
  12143. // public string country_name_english_abbreviation { get; set; }
  12144. // /// <summary>
  12145. // ///
  12146. // /// </summary>
  12147. // public string country_name_english_formal { get; set; }
  12148. // /// <summary>
  12149. // ///
  12150. // /// </summary>
  12151. // public string country_name_english_UN { get; set; }
  12152. // /// <summary>
  12153. // ///
  12154. // /// </summary>
  12155. // public string continent_name { get; set; }
  12156. // /// <summary>
  12157. // ///
  12158. // /// </summary>
  12159. // public string subregion_name { get; set; }
  12160. // /// <summary>
  12161. // ///
  12162. // /// </summary>
  12163. // public string country_code2 { get; set; }
  12164. // /// <summary>
  12165. // ///
  12166. // /// </summary>
  12167. // public string country_code3 { get; set; }
  12168. // /// <summary>
  12169. // ///
  12170. // /// </summary>
  12171. // public string phone_code { get; set; }
  12172. //}
  12173. //public class CountriesInfo : BasicInfo
  12174. //{
  12175. // public List<CitiesInfo> c { get; set; }
  12176. //}
  12177. //public class CitiesInfo : BasicInfo
  12178. //{
  12179. // public List<AreaInfo> c { get; set; }
  12180. //}
  12181. //public class AreaInfo : BasicInfo
  12182. //{
  12183. // public List<AreaInfo> c { get; set; }
  12184. //}
  12185. //public class BasicInfo
  12186. //{
  12187. // public string code { get; set; }
  12188. // public string cn { get; set; }
  12189. // public string lv { get; set; }
  12190. // public string en { get; set; }
  12191. //}
  12192. #endregion
  12193. #region 查看邀请方
  12194. /// <summary>
  12195. /// 查看邀请方
  12196. /// 邀请方信息 Init
  12197. /// </summary>
  12198. /// <param name="dto"></param>
  12199. /// <returns></returns>
  12200. [HttpPost]
  12201. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12202. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  12203. {
  12204. string sqlWhere = string.Empty;
  12205. if (!string.IsNullOrEmpty(dto.Search))
  12206. {
  12207. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  12208. }
  12209. string sql = string.Format($@"Select
  12210. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  12211. Id,
  12212. UnitName
  12213. From Res_InvitationOfficialActivityData
  12214. Where IsDel = 0
  12215. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  12216. RefAsync<int> total = 0;
  12217. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12218. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  12219. }
  12220. /// <summary>
  12221. /// 查看邀请方
  12222. /// 国家信息 Init
  12223. /// </summary>
  12224. /// <param name="dto"></param>
  12225. /// <returns></returns>
  12226. [HttpPost]
  12227. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12228. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  12229. {
  12230. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  12231. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  12232. var diids = groupInfos.Select(it => it.Id).ToList();
  12233. List<string> countrys = new List<string>();
  12234. foreach (var item in country)
  12235. {
  12236. var data = _groupRepository.FormartTeamName(item);
  12237. var dataArray = _groupRepository.GroupSplitCountry(data);
  12238. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  12239. }
  12240. countrys = countrys.Distinct().ToList();
  12241. for (int i = 0; i < countrys.Count; i++)
  12242. {
  12243. string item = countrys[i];
  12244. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  12245. {
  12246. countrys.Remove(item);
  12247. i--;
  12248. }
  12249. }
  12250. RefAsync<int> total = 0;
  12251. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  12252. .Where(it => countrys.Contains(it.Name_CN))
  12253. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  12254. .Select(it => new { id = it.Id, name = it.Name_CN })
  12255. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12256. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  12257. }
  12258. /// <summary>
  12259. /// 查看邀请方
  12260. /// 城市信息 Init
  12261. /// </summary>
  12262. /// <param name="dto"></param>
  12263. /// <returns></returns>
  12264. [HttpPost]
  12265. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12266. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  12267. {
  12268. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  12269. RefAsync<int> total = 0;
  12270. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  12271. .Where(it => it.CountriesId == dto.CountiesId)
  12272. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  12273. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  12274. .Select(it => new { id = it.Id, name = it.Name_CN })
  12275. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12276. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  12277. }
  12278. /// <summary>
  12279. /// 查看邀请方
  12280. /// 团组名称 Init
  12281. /// </summary>
  12282. /// <param name="dto"></param>
  12283. /// <returns></returns>
  12284. [HttpPost]
  12285. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12286. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  12287. {
  12288. var watch = new Stopwatch();
  12289. watch.Start();
  12290. RefAsync<int> total = 0;
  12291. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  12292. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  12293. .Where((oa, di) => oa.IsDel == 0)
  12294. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  12295. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  12296. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  12297. .Distinct()
  12298. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12299. watch.Stop();
  12300. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  12301. }
  12302. /// <summary>
  12303. /// 查看邀请方
  12304. /// 团组 & 邀请方信息
  12305. /// </summary>
  12306. /// <param name="dto"></param>
  12307. /// <returns></returns>
  12308. [HttpPost]
  12309. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12310. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  12311. {
  12312. var watch = new Stopwatch();
  12313. watch.Start();
  12314. RefAsync<int> total = 0;
  12315. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  12316. .AS("Grp_DelegationInfo")
  12317. .Includes(x => x.InvitingInfos)
  12318. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  12319. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  12320. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  12321. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  12322. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  12323. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  12324. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  12325. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  12326. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  12327. infos.ForEach(x =>
  12328. {
  12329. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  12330. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  12331. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  12332. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  12333. });
  12334. watch.Stop();
  12335. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  12336. }
  12337. #endregion
  12338. #region 报批行程
  12339. /// <summary>
  12340. /// 报批行程初始化
  12341. /// </summary>
  12342. /// <param name="dto"></param>
  12343. /// <returns></returns>
  12344. [HttpPost]
  12345. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  12346. {
  12347. const int chiNumber = 5;
  12348. var jw = JsonView(false);
  12349. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  12350. var group = groupList.First();
  12351. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  12352. group = groupList.First(x => x.Id == diid);
  12353. if (group == null)
  12354. {
  12355. jw.Msg = "暂无团组!";
  12356. return Ok(jw);
  12357. }
  12358. var data = new
  12359. {
  12360. groupList = groupList.Select(x => new
  12361. {
  12362. x.TeamName,
  12363. x.Id
  12364. }),
  12365. content = new ArrayList(),
  12366. groupInfo = new
  12367. {
  12368. group.VisitDays,
  12369. group.TourCode,
  12370. group.VisitPNumber,
  12371. group.TeamName,
  12372. group.Id,
  12373. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  12374. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  12375. },
  12376. };
  12377. var resultArr = new ArrayList();
  12378. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  12379. if (content.Count == 0)
  12380. {
  12381. var stay = "-";
  12382. var cityPath = "-";
  12383. //添加城市路径以及住宿地
  12384. //黑屏代码数据
  12385. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  12386. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  12387. {
  12388. jw = JsonView(true, "黑屏代码有误!", data);
  12389. return Ok(jw);
  12390. }
  12391. foreach (DataRow row in dtBlack.Rows)
  12392. {
  12393. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  12394. {
  12395. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  12396. return Ok(jw);
  12397. }
  12398. }
  12399. //黑屏代码获取时间区间
  12400. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  12401. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  12402. _sqlSugar.BeginTran();
  12403. for (int i = 0; i < timeArr.Count; i++)
  12404. {
  12405. stay = "-";
  12406. cityPath = "-";
  12407. DateTime NewData = DateTime.Parse(timeArr[i]);
  12408. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  12409. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  12410. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  12411. if (tbSelect.Length > 0)
  12412. {
  12413. List<string> threeCodeStr = new List<string>();
  12414. foreach (var item in tbSelect)
  12415. {
  12416. var threeCode = item["Three"].ToString() ?? "";
  12417. if (threeCode.Length == 6)
  12418. {
  12419. var start = threeCode.Substring(0, 3);
  12420. var end = threeCode.Substring(3, 3);
  12421. if (threeCodeStr.Count == 0)
  12422. {
  12423. threeCodeStr.Add(start);
  12424. threeCodeStr.Add(end);
  12425. }
  12426. else
  12427. {
  12428. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  12429. {
  12430. threeCodeStr.Add(end);
  12431. }
  12432. else
  12433. {
  12434. threeCodeStr.Add(start);
  12435. threeCodeStr.Add(end);
  12436. }
  12437. }
  12438. }
  12439. }
  12440. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  12441. var last = threeCodeStr.Last();
  12442. foreach (var item in threeCodeStr)
  12443. {
  12444. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  12445. if (item.Equals(last))
  12446. {
  12447. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  12448. }
  12449. }
  12450. cityPath = cityPath.Trim('-');
  12451. }
  12452. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  12453. appro.Diid = diid ?? -1;
  12454. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  12455. appro.Id = thisId;
  12456. appro.CreateUserId = dto.UserId;
  12457. appro.CreateTime = DateTime.Now;
  12458. content.Add(appro);
  12459. }
  12460. _sqlSugar.CommitTran();
  12461. }
  12462. foreach (var x in content)
  12463. {
  12464. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  12465. if (chiList.Count < chiNumber)
  12466. {
  12467. for (int i = chiList.Count; i < chiNumber; i++)
  12468. {
  12469. chiList.Add(new Grp_ApprovalTravelDetails());
  12470. }
  12471. }
  12472. resultArr.Add(new
  12473. {
  12474. x.Id,
  12475. x.Date,
  12476. x.Diid,
  12477. chiList = chiList.Select(x1 => new
  12478. {
  12479. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  12480. x1.Details,
  12481. x1.ParentId,
  12482. x1.Id
  12483. })
  12484. });
  12485. }
  12486. data = data with
  12487. {
  12488. content = resultArr,
  12489. };
  12490. jw = JsonView(true, "获取成功!", data);
  12491. return Ok(jw);
  12492. }
  12493. /// <summary>
  12494. /// 报批行程删除
  12495. /// </summary>
  12496. /// <param name="dto"></param>
  12497. /// <returns></returns>
  12498. [HttpPost]
  12499. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  12500. {
  12501. var jw = JsonView(false);
  12502. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  12503. if (group == null)
  12504. {
  12505. jw.Msg = "团组参数有误!";
  12506. return Ok(jw);
  12507. }
  12508. try
  12509. {
  12510. _sqlSugar.BeginTran();
  12511. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  12512. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  12513. {
  12514. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  12515. DeleteUserId = dto.uesrId,
  12516. IsDel = 1
  12517. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  12518. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  12519. {
  12520. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  12521. DeleteUserId = dto.uesrId,
  12522. IsDel = 1
  12523. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  12524. _sqlSugar.CommitTran();
  12525. jw = JsonView(true, "删除成功");
  12526. }
  12527. catch (Exception ex)
  12528. {
  12529. jw = JsonView(false, ex.Message);
  12530. }
  12531. return Ok(jw);
  12532. }
  12533. /// <summary>
  12534. /// 报批行程保存
  12535. /// </summary>
  12536. /// <param name="dto"></param>
  12537. /// <returns></returns>
  12538. [HttpPost]
  12539. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  12540. {
  12541. var jw = JsonView(false);
  12542. var Find = dto.Arr.Find(x => x.id == 0);
  12543. if (Find != null)
  12544. {
  12545. jw.Msg = "生成的ID为0!";
  12546. return Ok(jw);
  12547. }
  12548. foreach (var item in dto.Arr)
  12549. {
  12550. foreach (var chi in item.chiList)
  12551. {
  12552. if (chi.parentId == 0)
  12553. {
  12554. chi.parentId = item.id;
  12555. }
  12556. }
  12557. }
  12558. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  12559. _sqlSugar.BeginTran();
  12560. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  12561. {
  12562. var parentIds = dto.Arr.Select(x => x.id).ToList();
  12563. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  12564. {
  12565. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  12566. DeleteUserId = dto.UserId,
  12567. IsDel = 1
  12568. }).ExecuteCommand();
  12569. }
  12570. try
  12571. {
  12572. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  12573. {
  12574. CreateTime = DateTime.Now,
  12575. CreateUserId = dto.UserId,
  12576. Details = x.details,
  12577. ParentId = x.parentId,
  12578. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  12579. Remark = "",
  12580. IsDel = 0
  12581. }).ToList()).ExecuteCommand();
  12582. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  12583. {
  12584. Id = x.id,
  12585. Details = x.details,
  12586. ParentId = x.parentId,
  12587. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  12588. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  12589. {
  12590. Details = x.Details,
  12591. ParentId = x.ParentId,
  12592. Time = x.Time
  12593. }).ExecuteCommand();
  12594. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  12595. {
  12596. Id = x.id,
  12597. Date = x.date,
  12598. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  12599. {
  12600. Date = x.Date
  12601. }).ExecuteCommand();
  12602. _sqlSugar.CommitTran();
  12603. jw = JsonView(true, "保存成功!");
  12604. }
  12605. catch (Exception ex)
  12606. {
  12607. _sqlSugar.RollbackTran();
  12608. jw = JsonView(false, "保存失败!" + ex.Message);
  12609. }
  12610. return Ok(jw);
  12611. }
  12612. /// <summary>
  12613. /// 报批行程生成
  12614. /// </summary>
  12615. /// <param name="dto"></param>
  12616. /// <returns></returns>
  12617. [HttpPost]
  12618. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  12619. {
  12620. var jw = JsonView(false);
  12621. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  12622. if (group == null)
  12623. {
  12624. jw.Msg = "暂无该团组!";
  12625. return Ok(jw);
  12626. }
  12627. //黑屏代码数据
  12628. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  12629. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  12630. {
  12631. jw.Msg = "黑屏代码有误!";
  12632. return Ok(jw);
  12633. }
  12634. foreach (DataRow row in dtBlack.Rows)
  12635. {
  12636. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  12637. {
  12638. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  12639. return Ok(jw);
  12640. }
  12641. }
  12642. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  12643. var resultArr = new ArrayList();
  12644. if (officialActivitiesArr.Count == 0)
  12645. {
  12646. jw.Msg = "暂无公务出访信息!";
  12647. return Ok(jw);
  12648. }
  12649. try
  12650. {
  12651. _sqlSugar.BeginTran();
  12652. DeleteApprovalJourney(new
  12653. Domain.Dtos.Groups.DeleteApprovalJourney
  12654. {
  12655. Diid = dto.Diid,
  12656. uesrId = dto.Userid
  12657. });
  12658. var stay = "-";
  12659. var cityPath = "-";
  12660. //添加城市路径以及住宿地
  12661. //黑屏代码获取时间区间
  12662. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  12663. var empty = "【未收入该三字码!请机票同事录入】";
  12664. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  12665. for (int i = 0; i < timeArr.Count; i++)
  12666. {
  12667. stay = "-";
  12668. cityPath = "-";
  12669. var chiarr = new List<Grp_ApprovalTravelDetails>();
  12670. DateTime NewData = DateTime.Parse(timeArr[i]);
  12671. 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();
  12672. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  12673. if (tbSelect.Length > 0)
  12674. {
  12675. List<string> threeCodeStr = new List<string>();
  12676. bool isTrade = false;
  12677. string trip = string.Empty;
  12678. var rowLast = tbSelect.Last();
  12679. var rowFirst = tbSelect.First();
  12680. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  12681. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  12682. var takeOffTime = DateTime.Parse(timeArr[i]);
  12683. var fallToTime = DateTime.Parse(timeArr[i]);
  12684. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  12685. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  12686. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  12687. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  12688. foreach (var item in tbSelect)
  12689. {
  12690. var start = string.Empty;
  12691. var end = string.Empty;
  12692. var threeCode = item["Three"].ToString() ?? "";
  12693. if (threeCode.Length == 6)
  12694. {
  12695. start = threeCode.Substring(0, 3);
  12696. end = threeCode.Substring(3, 3);
  12697. if (threeCodeStr.Count == 0)
  12698. {
  12699. threeCodeStr.Add(start);
  12700. threeCodeStr.Add(end);
  12701. }
  12702. else
  12703. {
  12704. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  12705. {
  12706. threeCodeStr.Add(end);
  12707. }
  12708. else
  12709. {
  12710. threeCodeStr.Add(start);
  12711. threeCodeStr.Add(end);
  12712. }
  12713. }
  12714. }
  12715. //处理机票信息
  12716. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  12717. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  12718. if (start_Object == null)
  12719. {
  12720. start_Object = new Res_ThreeCode()
  12721. {
  12722. AirPort = empty,
  12723. AirPort_En = empty,
  12724. City = empty,
  12725. Country = empty,
  12726. Four = empty,
  12727. Three = empty,
  12728. };
  12729. }
  12730. if (end_Object == null)
  12731. {
  12732. end_Object = new Res_ThreeCode()
  12733. {
  12734. AirPort = empty,
  12735. AirPort_En = empty,
  12736. City = empty,
  12737. Country = empty,
  12738. Four = empty,
  12739. Three = empty,
  12740. };
  12741. }
  12742. //机型判断
  12743. string airModel = item["AirModel"].ToString();
  12744. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  12745. string flightTime = item["FlightTime"].ToString();
  12746. if (flightTime!.Contains(":"))
  12747. {
  12748. flightTime = flightTime.Replace(":", "小时");
  12749. flightTime += "分钟";
  12750. }
  12751. if (flightTime.Contains("H"))
  12752. {
  12753. flightTime = flightTime.Replace("H", "小时");
  12754. }
  12755. if (flightTime.Contains("M"))
  12756. {
  12757. flightTime = flightTime.Replace("M", "分钟");
  12758. }
  12759. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  12760. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  12761. {
  12762. flightTime = flightDataTime.Hour > 0
  12763. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  12764. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  12765. ? flightDataTime.Minute.ToString() + "分钟" : "";
  12766. }
  12767. //航班号
  12768. string flightcode = item["Fliagtcode"].ToString();
  12769. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  12770. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  12771. if (aircompany == null)
  12772. {
  12773. aircompany = new Res_AirCompany
  12774. {
  12775. CnName = hsEmpty,
  12776. EnName = hsEmpty,
  12777. ShortCode = hsEmpty,
  12778. };
  12779. }
  12780. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  12781. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  12782. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  12783. if (isTrade)
  12784. {
  12785. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  12786. }
  12787. else
  12788. {
  12789. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  12790. }
  12791. }
  12792. chiarr.Add(new Grp_ApprovalTravelDetails
  12793. {
  12794. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  12795. CreateTime = DateTime.Now,
  12796. CreateUserId = dto.Userid,
  12797. ParentId = 0,
  12798. Details = trip
  12799. });
  12800. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  12801. var last = threeCodeStr.Last();
  12802. foreach (var item in threeCodeStr)
  12803. {
  12804. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  12805. if (item.Equals(last))
  12806. {
  12807. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  12808. }
  12809. }
  12810. cityPath = cityPath.Trim('-');
  12811. }
  12812. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  12813. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  12814. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  12815. appro.Diid = dto.Diid;
  12816. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  12817. appro.Id = thisId;
  12818. appro.CreateUserId = dto.Userid;
  12819. appro.CreateTime = DateTime.Now;
  12820. foreach (var item in gwinfo)
  12821. {
  12822. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  12823. chi.Details = "拜访" + item.Client;
  12824. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  12825. {
  12826. chi.Details += "," + item.ReqSample;
  12827. }
  12828. chi.ParentId = thisId;
  12829. chi.Time = item.Time;
  12830. chiarr.Add(chi);
  12831. }
  12832. if (chiarr.Count < 5)
  12833. {
  12834. for (int j = chiarr.Count; j < 5; j++)
  12835. {
  12836. chiarr.Add(new
  12837. Grp_ApprovalTravelDetails());
  12838. }
  12839. }
  12840. resultArr.Add(new
  12841. {
  12842. appro.Id,
  12843. appro.Date,
  12844. appro.Diid,
  12845. chiList = chiarr.Select(x1 => new
  12846. {
  12847. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  12848. x1.Details,
  12849. x1.ParentId,
  12850. x1.Id
  12851. })
  12852. });
  12853. }
  12854. _sqlSugar.CommitTran();
  12855. jw = JsonView(true, "生成成功!", resultArr);
  12856. }
  12857. catch (Exception ex)
  12858. {
  12859. jw.Code = 400;
  12860. jw.Msg = "生成失败!" + ex.Message;
  12861. }
  12862. return Ok(jw);
  12863. }
  12864. /// <summary>
  12865. /// 报批行程word导出
  12866. /// </summary>
  12867. /// <param name="dto"></param>
  12868. /// <returns></returns>
  12869. [HttpPost]
  12870. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  12871. {
  12872. var jw = JsonView(false);
  12873. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  12874. if (group == null)
  12875. {
  12876. jw.Msg = "暂无该团组!";
  12877. return Ok(jw);
  12878. }
  12879. //模板路径
  12880. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  12881. //载入模板
  12882. Document doc = new Document(tempPath);
  12883. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  12884. //获取所填表格的序数
  12885. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  12886. Aspose.Words.Tables.Row titleRowClone = null;
  12887. Aspose.Words.Tables.Row CenterRowClone = null;
  12888. int index = 0;
  12889. int indexChi = 0;
  12890. int SetIndex = 0;
  12891. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  12892. //获取数据,放到datatable
  12893. foreach (var item in ApprovalTravelArr)
  12894. {
  12895. if (index > 0)
  12896. {
  12897. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  12898. tableOne.AppendChild(titleRowClone);
  12899. }
  12900. var textTime = item.Date;
  12901. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  12902. SetCells(tableOne, doc, SetIndex, 0, textTime);
  12903. SetIndex++;
  12904. if (ChiRep.Count > 0)
  12905. {
  12906. foreach (var itemChi in ChiRep)
  12907. {
  12908. var txtTime = itemChi.Time;
  12909. var txtDetail = itemChi.Details;
  12910. if (indexChi > 0)
  12911. {
  12912. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  12913. tableOne.AppendChild(CenterRowClone);
  12914. }
  12915. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  12916. {
  12917. SetCells(tableOne, doc, SetIndex, 0, "");
  12918. SetCells(tableOne, doc, SetIndex, 1, "");
  12919. indexChi++;
  12920. SetIndex++;
  12921. break;
  12922. }
  12923. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  12924. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  12925. indexChi++;
  12926. SetIndex++;
  12927. }
  12928. }
  12929. else
  12930. {
  12931. if (indexChi > 0)
  12932. {
  12933. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  12934. tableOne.AppendChild(CenterRowClone);
  12935. }
  12936. SetCells(tableOne, doc, SetIndex, 0, "");
  12937. SetCells(tableOne, doc, SetIndex, 1, "");
  12938. indexChi++;
  12939. SetIndex++;
  12940. }
  12941. index++;
  12942. }
  12943. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  12944. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  12945. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  12946. jw.Code = 200;
  12947. jw.Msg = "";
  12948. return Ok(jw);
  12949. }
  12950. private string intToString(int numberVal)
  12951. {
  12952. string numberval = numberVal.ToString();
  12953. Dictionary<char, string> Number = new Dictionary<char, string>();
  12954. Number.Add('1', "一");
  12955. Number.Add('2', "二");
  12956. Number.Add('3', "三");
  12957. Number.Add('4', "四");
  12958. Number.Add('5', "五");
  12959. Number.Add('6', "六");
  12960. Number.Add('7', "七");
  12961. Number.Add('8', "八");
  12962. Number.Add('9', "九");
  12963. string stringNumberVal = string.Empty;
  12964. for (int i = 0; i < numberval.Length; i++)
  12965. {
  12966. if (i == 0)
  12967. {
  12968. stringNumberVal += Number[numberval[i]];
  12969. }
  12970. else if (i >= 1)
  12971. {
  12972. if (numberval[i] == '0')
  12973. {
  12974. stringNumberVal = "十";
  12975. }
  12976. else
  12977. {
  12978. stringNumberVal += "十" + Number[numberval[i]];
  12979. }
  12980. }
  12981. }
  12982. return stringNumberVal;
  12983. }
  12984. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  12985. {
  12986. //获取table中的某个单元格,从0开始
  12987. Cell lshCell = table.Rows[rows].Cells[cells];
  12988. //将单元格中段落移除
  12989. foreach (Node item in lshCell.Paragraphs)
  12990. {
  12991. lshCell.Paragraphs.Remove(item);
  12992. }
  12993. if (val.Contains("\r\n"))
  12994. {
  12995. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  12996. foreach (var item in spArr)
  12997. {
  12998. //新建一个段落
  12999. Paragraph p = new Paragraph(doc);
  13000. var r = new Run(doc, item);
  13001. //把设置的值赋给之前新建的段落
  13002. p.AppendChild(r);
  13003. //将此段落加到单元格内
  13004. lshCell.AppendChild(p);
  13005. }
  13006. }
  13007. else
  13008. {
  13009. //新建一个段落
  13010. Paragraph p = new Paragraph(doc);
  13011. var r = new Run(doc, val);
  13012. //把设置的值赋给之前新建的段落
  13013. p.AppendChild(r);
  13014. //将此段落加到单元格内
  13015. lshCell.AppendChild(p);
  13016. }
  13017. }
  13018. [HttpPost]
  13019. public async Task<IActionResult> ServerHttp(string paramStr)
  13020. {
  13021. paramStr = paramStr.TrimEnd('\'');
  13022. paramStr = paramStr.TrimStart('\'');
  13023. JsonView jw = JsonView(false);
  13024. JObject param = JObject.Parse(paramStr);
  13025. if (!param.ContainsKey("url"))
  13026. {
  13027. jw.Msg = "url null";
  13028. return Ok(jw);
  13029. }
  13030. string url = param["url"]!.ToString();
  13031. var methon = "get";
  13032. Dictionary<string, string> bodyValues = null;
  13033. Dictionary<string, string> headValues = null;
  13034. if (param.ContainsKey("methon"))
  13035. {
  13036. methon = param["methon"]!.ToString();
  13037. }
  13038. if (param.ContainsKey("header"))
  13039. {
  13040. var header = param["header"]!.ToString();
  13041. JObject headerJobject = JObject.Parse(header);
  13042. headValues = new Dictionary<string, string>();
  13043. foreach (JProperty item in headerJobject.Properties())
  13044. {
  13045. var value = item.Value.ToString();
  13046. var head = item.Path;
  13047. headValues.Add(head, value);
  13048. }
  13049. }
  13050. if (param.ContainsKey("body"))
  13051. {
  13052. var body = param["body"]!.ToString();
  13053. bodyValues = new Dictionary<string, string>();
  13054. JObject bodyJobject = JObject.Parse(body);
  13055. foreach (JProperty item in bodyJobject.Properties())
  13056. {
  13057. var value = item.Value.ToString();
  13058. var head = item.Path;
  13059. bodyValues.Add(head, value);
  13060. }
  13061. }
  13062. HttpClient client = new HttpClient();
  13063. string responseString = string.Empty;
  13064. if (param.ContainsKey("isJson"))
  13065. {
  13066. }
  13067. if (headValues != null)
  13068. {
  13069. foreach (var item in headValues.Keys)
  13070. {
  13071. client.DefaultRequestHeaders.Add(item, headValues[item]);
  13072. }
  13073. }
  13074. try
  13075. {
  13076. if (methon == "get")
  13077. {
  13078. responseString = await client.GetStringAsync(url);
  13079. }
  13080. else if (methon == "post")
  13081. {
  13082. if (bodyValues == null)
  13083. {
  13084. jw.Msg = "methon post body null";
  13085. return Ok(jw);
  13086. }
  13087. // 数据转化为 key=val 格式
  13088. var content = new FormUrlEncodedContent(bodyValues);
  13089. var response = await client.PostAsync(url, content);
  13090. // 获取数据
  13091. responseString = await response.Content.ReadAsStringAsync();
  13092. }
  13093. else
  13094. {
  13095. jw.Msg = "methon error";
  13096. }
  13097. jw = JsonView(true, "success", responseString);
  13098. }
  13099. catch (Exception ex)
  13100. {
  13101. jw.Msg = "error " + ex.Message;
  13102. jw.Data = ex.StackTrace;
  13103. }
  13104. finally
  13105. {
  13106. client.Dispose();
  13107. }
  13108. return Ok(jw);
  13109. }
  13110. #endregion
  13111. // /// <summary>
  13112. // ///
  13113. // /// </summary>
  13114. // /// <param name="_dto"></param>
  13115. // /// <returns></returns>
  13116. // [HttpPost]
  13117. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  13118. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  13119. // {
  13120. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  13121. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  13122. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  13123. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  13124. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  13125. // dic_psg.Add("客人", 974);
  13126. // dic_psg.Add("司机", 975);
  13127. // dic_psg.Add("导游", 976);
  13128. // dic_psg.Add("公司内部人员", 977);
  13129. // dic_psg.Add("司机/导游/公司内部人员", 978);
  13130. // foreach (var item in list_visa)
  13131. // {
  13132. // Grp_VisaInfo temp = new Grp_VisaInfo();
  13133. // temp.Id = item.Id;
  13134. // temp.DIId = item.DIId;
  13135. // temp.VisaClient = item.VisaClient;
  13136. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  13137. // temp.VisaCurrency = item.VisaCurrency;
  13138. // temp.IsThird = item.IsThird;
  13139. // if (dic_psg.ContainsKey(item.PassengerType))
  13140. // {
  13141. // temp.PassengerType = dic_psg[item.PassengerType];
  13142. // }
  13143. // else {
  13144. // temp.PassengerType = -1;
  13145. // }
  13146. // temp.VisaNumber = item.VisaNumber;
  13147. // temp.VisaFreeNumber = item.VisaFreeNumber;
  13148. // temp.CreateUserId = item.Operators;
  13149. // DateTime dt_ct;
  13150. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  13151. // if (b_ct)
  13152. // {
  13153. // temp.CreateTime = dt_ct;
  13154. // }
  13155. // else
  13156. // {
  13157. // temp.CreateTime = DateTime.Now;
  13158. // }
  13159. // temp.DeleteTime = "";
  13160. // temp.DeleteUserId = 0;
  13161. // temp.Remark = item.Remark;
  13162. // if (string.IsNullOrEmpty(temp.Remark)) {
  13163. // temp.Remark = "";
  13164. // }
  13165. // temp.IsDel = item.IsDel;
  13166. // temp.VisaDescription = item.VisaAttachment;
  13167. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  13168. //([Id]
  13169. // ,[DIId]
  13170. // ,[VisaClient]
  13171. // ,[VisaPrice]
  13172. // ,[VisaCurrency]
  13173. // ,[IsThird]
  13174. // ,[PassengerType]
  13175. // ,[VisaNumber]
  13176. // ,[VisaFreeNumber]
  13177. // ,[CreateUserId]
  13178. // ,[CreateTime]
  13179. // ,[DeleteTime]
  13180. // ,[DeleteUserId]
  13181. // ,[Remark]
  13182. // ,[IsDel]
  13183. // ,[visaDescription])
  13184. // VALUES
  13185. // ({0},{1},'{2}',{3},{4}
  13186. //,{5},{6},{7},{8},{9}
  13187. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  13188. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  13189. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  13190. //);
  13191. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  13192. // }
  13193. // return Ok(JsonView(true, "操作成功!"));
  13194. // }
  13195. /// <summary>
  13196. /// 123132123
  13197. /// </summary>
  13198. /// <param name="_dto"></param>
  13199. /// <returns></returns>
  13200. [HttpPost]
  13201. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  13202. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  13203. {
  13204. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  13205. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  13206. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  13207. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  13208. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  13209. dicDetail.Add(789, 1034);
  13210. dicDetail.Add(790, 1035);
  13211. dicDetail.Add(791, 1036);
  13212. dicDetail.Add(792, 1037);
  13213. dicDetail.Add(793, 1038);
  13214. dicDetail.Add(794, 1039);
  13215. dicDetail.Add(795, 1040);
  13216. dicDetail.Add(796, 1041);
  13217. dicDetail.Add(797, 1042);
  13218. dicDetail.Add(798, 1043);
  13219. dicDetail.Add(801, 1044);
  13220. dicDetail.Add(802, 1045);
  13221. dicDetail.Add(803, 1046);
  13222. Dictionary<int, int> dic = new Dictionary<int, int>();
  13223. dic.Add(806, 1027);
  13224. dic.Add(807, 1028);
  13225. dic.Add(808, 1029);
  13226. dic.Add(809, 1030);
  13227. dic.Add(810, 1031);
  13228. dic.Add(811, 1032);
  13229. dic.Add(812, 1033);
  13230. foreach (var item in list_visa)
  13231. {
  13232. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  13233. temp.Coefficient = item.coefficient;
  13234. DateTime dtCrt;
  13235. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  13236. if (b1)
  13237. {
  13238. temp.CreateTime = dtCrt;
  13239. }
  13240. else
  13241. {
  13242. temp.CreateTime = DateTime.Now;
  13243. }
  13244. temp.CreateUserId = item.Operators;
  13245. temp.DeleteTime = "";
  13246. temp.DeleteUserId = 0;
  13247. temp.DiId = int.Parse(item.DIID);
  13248. temp.FilePath = item.FilePath;
  13249. temp.IsDel = item.IsDel;
  13250. temp.Price = item.Price;
  13251. temp.PriceCount = 1;
  13252. temp.PriceCurrency = item.Currency;
  13253. int detailId = 0;
  13254. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  13255. {
  13256. detailId = dicDetail[item.PriceTypeDetail];
  13257. }
  13258. temp.PriceDetailType = detailId;
  13259. temp.PriceDt = DateTime.Now;
  13260. temp.PriceName = item.PriceName;
  13261. temp.PriceSum = item.Price;
  13262. int tid = 0;
  13263. if (dic.ContainsKey(item.PriceType))
  13264. {
  13265. tid = dic[item.PriceType];
  13266. }
  13267. temp.PriceType = tid;
  13268. temp.Remark = item.Remark;
  13269. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  13270. }
  13271. return Ok(JsonView(true, "操作成功!"));
  13272. }
  13273. }
  13274. }