GroupsController.cs 545 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. namespace OASystem.API.Controllers
  77. {
  78. /// <summary>
  79. /// 团组相关
  80. /// </summary>
  81. //[Authorize]
  82. [Route("api/[controller]/[action]")]
  83. public class GroupsController : ControllerBase
  84. {
  85. private readonly GrpScheduleRepository _grpScheduleRep;
  86. private readonly IMapper _mapper;
  87. private readonly DelegationInfoRepository _groupRepository;
  88. private readonly TaskAssignmentRepository _taskAssignmentRep;
  89. private readonly AirTicketResRepository _airTicketResRep;
  90. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  91. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  92. private readonly DelegationEnDataRepository _delegationEnDataRep;
  93. private readonly DelegationVisaRepository _delegationVisaRep;
  94. private readonly VisaPriceRepository _visaPriceRep;
  95. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  96. private readonly HotelPriceRepository _hotelPriceRep;
  97. private readonly CustomersRepository _customersRep;
  98. private readonly MessageRepository _message;
  99. private readonly SqlSugarClient _sqlSugar;
  100. private readonly TourClientListRepository _tourClientListRep;
  101. private readonly TeamRateRepository _teamRateRep;
  102. #region 成本相关
  103. private readonly CheckBoxsRepository _checkBoxs;
  104. private readonly GroupCostRepository _GroupCostRepository;
  105. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  106. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  107. #endregion
  108. private readonly SetDataRepository _setDataRep;
  109. private string url;
  110. private string path;
  111. private readonly EnterExitCostRepository _enterExitCostRep;
  112. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  113. private readonly UsersRepository _usersRep;
  114. private readonly IJuHeApiService _juHeApi;
  115. private readonly InvertedListRepository _invertedListRep;
  116. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  117. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  118. private readonly HotelInquiryRepository _hotelInquiryRep;
  119. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  120. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  121. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  122. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  123. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  124. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  125. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  126. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep)
  127. {
  128. _mapper = mapper;
  129. _grpScheduleRep = grpScheduleRep;
  130. _groupRepository = groupRepository;
  131. _taskAssignmentRep = taskAssignmentRep;
  132. _airTicketResRep = airTicketResRep;
  133. _sqlSugar = sqlSugar;
  134. url = AppSettingsHelper.Get("ExcelBaseUrl");
  135. path = AppSettingsHelper.Get("ExcelBasePath");
  136. if (!System.IO.Directory.Exists(path))
  137. {
  138. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  139. }
  140. _decreasePaymentsRep = decreasePaymentsRep;
  141. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  142. _delegationEnDataRep = delegationEnDataRep;
  143. _enterExitCostRep = enterExitCostRep;
  144. _delegationVisaRep = delegationVisaRep;
  145. _message = message;
  146. _visaPriceRep = visaPriceRep;
  147. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  148. _checkBoxs = checkBoxs;
  149. _GroupCostRepository = GroupCostRepository;
  150. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  151. _GroupCostParameterRepository = GroupCostParameterRepository;
  152. _hotelPriceRep = hotelPriceRep;
  153. _customersRep = customersRep;
  154. _setDataRep = setDataRep;
  155. _tourClientListRep = tourClientListRep;
  156. _teamRateRep = teamRateRep;
  157. _hubContext = hubContext;
  158. _usersRep = usersRep;
  159. _juHeApi = juHeApi;
  160. _invertedListRep = invertedListRep;
  161. _visaFeeInfoRep = visaFeeInfoRep;
  162. _ticketBlackCodeRep = ticketBlackCodeRep;
  163. _hotelInquiryRep = hotelInquiryRep;
  164. }
  165. #region 流程管控
  166. /// <summary>
  167. /// 获取团组流程管控信息
  168. /// </summary>
  169. /// <param name="paras">参数Json字符串</param>
  170. /// <returns></returns>
  171. [HttpPost]
  172. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  173. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  174. {
  175. if (string.IsNullOrEmpty(_jsonDto.Paras))
  176. {
  177. return Ok(JsonView(false, "参数为空"));
  178. }
  179. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  180. if (_ScheduleDto != null)
  181. {
  182. if (_ScheduleDto.SearchType == 2)//获取列表
  183. {
  184. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  185. return Ok(JsonView(_grpScheduleViewList));
  186. }
  187. else//获取对象
  188. {
  189. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  190. if (_grpScheduleView != null)
  191. {
  192. return Ok(JsonView(_grpScheduleView));
  193. }
  194. }
  195. }
  196. else
  197. {
  198. return Ok(JsonView(false, "参数反序列化失败"));
  199. }
  200. return Ok(JsonView(false, "暂无数据!"));
  201. }
  202. /// <summary>
  203. /// 修改团组流程管控详细表数据
  204. /// </summary>
  205. /// <param name="paras"></param>
  206. /// <returns></returns>
  207. [HttpPost]
  208. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  209. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  210. {
  211. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  212. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  213. .SetColumns(it => it.Duty == _detail.Duty)
  214. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  215. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  216. .SetColumns(it => it.JobContent == _detail.JobContent)
  217. .SetColumns(it => it.Remark == _detail.Remark)
  218. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  219. .Where(s => s.Id == dto.Id)
  220. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  221. .ExecuteCommandAsync();
  222. if (result > 0)
  223. {
  224. return Ok(JsonView(true, "保存成功!"));
  225. }
  226. return Ok(JsonView(false, "保存失败!"));
  227. }
  228. /// <summary>
  229. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  230. /// </summary>
  231. /// <param name="dto"></param>
  232. /// <returns></returns>
  233. [HttpPost]
  234. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  235. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  236. {
  237. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  238. _detail.IsDel = 1;
  239. _detail.DeleteUserId = dto.Duty;
  240. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  241. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  242. .SetColumns(it => it.IsDel == _detail.IsDel)
  243. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  244. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  245. .Where(it => it.Id == dto.Id)
  246. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  247. //.WhereColumns(s => s.Id == dto.Id)
  248. .ExecuteCommandAsync();
  249. if (result > 0)
  250. {
  251. return Ok(JsonView(true, "删除成功!"));
  252. }
  253. return Ok(JsonView(false, "删除失败!"));
  254. }
  255. /// <summary>
  256. /// 增加团组流程管控详细表数据
  257. /// </summary>
  258. /// <param name="dto"></param>
  259. /// <returns></returns>
  260. [HttpPost]
  261. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  262. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  263. {
  264. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  265. if (DateTime.Now < _detail.ExpectBeginDt)
  266. {
  267. _detail.StepStatus = 0;
  268. }
  269. else
  270. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  271. _detail.StepStatus = 1;
  272. }
  273. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  274. if (result > 0)
  275. {
  276. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  277. return Ok(JsonView(true, "添加成功!", _result));
  278. }
  279. return Ok(JsonView(false, "添加失败!"));
  280. }
  281. #endregion
  282. #region 团组基本信息
  283. /// <summary>
  284. /// 接团信息列表
  285. /// </summary>
  286. /// <param name="dto">团组列表请求dto</param>
  287. /// <returns></returns>
  288. [HttpPost]
  289. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  290. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  291. {
  292. var groupData = await _groupRepository.GetGroupList(dto);
  293. if (groupData.Code != 0)
  294. {
  295. return Ok(JsonView(false, groupData.Msg));
  296. }
  297. return Ok(JsonView(groupData.Data));
  298. }
  299. /// <summary>
  300. /// 接团信息列表 Page
  301. /// </summary>
  302. /// <param name="dto">团组列表请求dto</param>
  303. /// <returns></returns>
  304. [HttpPost]
  305. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  306. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  307. {
  308. #region 参数验证
  309. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  310. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  311. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  312. #region 页面操作权限验证
  313. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  314. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  315. #endregion
  316. #endregion
  317. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  318. {
  319. string sqlWhere = string.Empty;
  320. if (dto.IsSure == 0) //未完成
  321. {
  322. sqlWhere += string.Format(@" And IsSure = 0");
  323. }
  324. else if (dto.IsSure == 1) //已完成
  325. {
  326. sqlWhere += string.Format(@" And IsSure = 1");
  327. }
  328. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  329. {
  330. string tj = dto.SearchCriteria;
  331. 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}%')",
  332. tj, tj, tj, tj, tj);
  333. }
  334. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  335. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  336. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  337. JietuanOperator,IsSure,CreateTime
  338. From (
  339. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  340. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  341. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  342. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  343. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  344. From Grp_DelegationInfo gdi
  345. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  346. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  347. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  348. Where gdi.IsDel = 0 {0}
  349. ) temp", sqlWhere);
  350. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  351. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  352. #region 处理所属部门
  353. /*
  354. * 1.sq 和 gyy 等显示 市场部
  355. * 2.王鸽和主管及张总还有管理员号统一国交部
  356. * 2-1. 4 管理员 ,21 张海麟
  357. */
  358. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  359. List<int> userIds1 = new List<int>() { 4, 21 };
  360. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  361. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  362. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  363. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  364. .ToList();
  365. foreach (var item in _DelegationList)
  366. {
  367. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  368. }
  369. #endregion
  370. var _view = new
  371. {
  372. PageFuncAuth = pageFunAuthView,
  373. Data = _DelegationList
  374. };
  375. return Ok(JsonView(true, "查询成功!", _view, total));
  376. }
  377. else
  378. {
  379. return Ok(JsonView(false, "查询失败"));
  380. }
  381. }
  382. /// <summary>
  383. /// 团组列表
  384. /// </summary>
  385. /// <returns></returns>
  386. [HttpPost]
  387. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  388. {
  389. #region 参数验证
  390. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  391. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  392. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  393. #region 页面操作权限验证
  394. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  395. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  396. #endregion
  397. #endregion
  398. if (dto.PortType != 1 && dto.PortType != 2)
  399. {
  400. return Ok(JsonView(false, "查询失败!"));
  401. }
  402. string orderbyStr = "order by gdi.CreateTime Desc";
  403. string sqlWhere = string.Empty;
  404. if (dto.IsSure == 0) //未完成
  405. {
  406. sqlWhere += string.Format(@" And IsSure = 0");
  407. }
  408. else if (dto.IsSure == 1) //已完成
  409. {
  410. sqlWhere += string.Format(@" And IsSure = 1");
  411. }
  412. //团组类型
  413. if (dto.TeamDid > 0)
  414. {
  415. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  416. }
  417. //团组名称
  418. if (!string.IsNullOrEmpty(dto.TeamName))
  419. {
  420. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  421. }
  422. //客户名称
  423. if (!string.IsNullOrEmpty(dto.ClientName))
  424. {
  425. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  426. }
  427. //客户单位
  428. if (!string.IsNullOrEmpty(dto.ClientUnit))
  429. {
  430. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  431. }
  432. //出访时间
  433. if (!string.IsNullOrEmpty(dto.visitDataTime))
  434. {
  435. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  436. orderbyStr = "order by gdi.VisitDate";
  437. }
  438. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  439. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  440. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  441. JietuanOperator,IsSure,CreateTime
  442. From (
  443. Select row_number() over({0}) as Row_Number,
  444. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  445. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  446. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  447. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  448. From Grp_DelegationInfo gdi
  449. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  450. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  451. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  452. Where gdi.IsDel = 0 {1}
  453. ) temp ", orderbyStr, sqlWhere);
  454. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  455. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  456. #region 处理所属部门
  457. /*
  458. * 1.sq 和 gyy 等显示 市场部
  459. * 2.王鸽和主管及张总还有管理员号统一国交部
  460. * 2-1. 4 管理员 ,21 张海麟
  461. */
  462. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  463. List<int> userIds1 = new List<int>() { 4, 21 };
  464. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  465. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  466. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  467. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  468. .ToList();
  469. foreach (var item in _DelegationList)
  470. {
  471. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  472. }
  473. #endregion
  474. var _view = new
  475. {
  476. PageFuncAuth = pageFunAuthView,
  477. Data = _DelegationList
  478. };
  479. return Ok(JsonView(true, "查询成功!", _view, total));
  480. }
  481. /// <summary>
  482. /// 接团信息详情
  483. /// </summary>
  484. /// <param name="dto">团组info请求dto</param>
  485. /// <returns></returns>
  486. [HttpPost]
  487. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  488. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  489. {
  490. var groupData = await _groupRepository.GetGroupInfo(dto);
  491. if (groupData.Code != 0)
  492. {
  493. return Ok(JsonView(false, groupData.Msg));
  494. }
  495. return Ok(JsonView(groupData.Data));
  496. }
  497. /// <summary>
  498. /// 接团信息 编辑添加
  499. /// 基础信息数据源
  500. /// </summary>
  501. /// <param name="dto"></param>
  502. /// <returns></returns>
  503. [HttpPost]
  504. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  505. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  506. {
  507. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  508. if (groupData.Code != 0)
  509. {
  510. return Ok(JsonView(false, groupData.Msg));
  511. }
  512. return Ok(JsonView(groupData.Data));
  513. }
  514. /// <summary>
  515. /// 接团信息 操作(增改)
  516. /// </summary>
  517. /// <param name="dto"></param>
  518. /// <returns></returns>
  519. [HttpPost]
  520. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  521. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  522. {
  523. try
  524. {
  525. var groupData = await _groupRepository.GroupOperation(dto);
  526. if (groupData.Code != 0)
  527. {
  528. return Ok(JsonView(false, groupData.Msg));
  529. }
  530. int diId = 0;
  531. //添加时 默认加入团组汇率
  532. if (dto.Status == 1) //添加
  533. {
  534. diId = groupData.Data;
  535. //添加默认币种
  536. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  537. //默认分配权限
  538. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  539. //消息提示 王鸽 主管号
  540. List<int> _managerIds = new List<int>() { 22, 32 };
  541. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  542. if (userIds.Count > 0)
  543. {
  544. userIds.Add(208);
  545. //创建团组管控
  546. GroupStepForDelegation.CreateWorkStep(diId);
  547. //发送消息
  548. string groupName = dto.TeamName;
  549. string createGroupUser = string.Empty;
  550. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  551. if (userInfo != null) createGroupUser = userInfo.CnName;
  552. string title = $"系统通知";
  553. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  554. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  555. }
  556. //默认创建倒推表
  557. await _invertedListRep._Create(dto.UserId, diId);
  558. }
  559. else if (dto.Status == 2)
  560. {
  561. diId = dto.Id;
  562. }
  563. return Ok(JsonView(true, "操作成功!", diId));
  564. }
  565. catch (Exception ex)
  566. {
  567. Logs("[response]" + JsonConvert.SerializeObject(dto));
  568. Logs(ex.Message);
  569. return Ok(JsonView(false, ex.Message));
  570. }
  571. }
  572. /// <summary>
  573. /// 接团流程操作(增改)
  574. /// 安卓端使用 建团时添加客户名单
  575. /// </summary>
  576. /// <param name="dto"></param>
  577. /// <returns></returns>
  578. [HttpPost]
  579. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  580. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  581. {
  582. try
  583. {
  584. #region 参数验证
  585. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  586. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  587. #region 页面操作权限验证
  588. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  589. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  590. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  591. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  592. #endregion
  593. #endregion
  594. _sqlSugar.BeginTran();
  595. var _dto = new GroupOperationDto();
  596. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  597. var groupData = await _groupRepository.GroupOperation(_dto);
  598. if (groupData.Code != 0)
  599. {
  600. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  601. }
  602. int diId = 0;
  603. //添加时 默认加入团组汇率
  604. if (dto.Status == 1) //添加
  605. {
  606. diId = groupData.Data;
  607. //添加默认币种
  608. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  609. //默认分配权限
  610. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  611. //消息提示 王鸽 主管号
  612. List<int> _managerIds = new List<int>() { 22, 32 };
  613. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  614. if (userIds.Count > 0)
  615. {
  616. userIds.Add(208);
  617. //创建团组管控
  618. GroupStepForDelegation.CreateWorkStep(diId);
  619. //发送消息
  620. string groupName = dto.TeamName;
  621. string createGroupUser = string.Empty;
  622. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  623. if (userInfo != null) createGroupUser = userInfo.CnName;
  624. string title = $"系统通知";
  625. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  626. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  627. }
  628. }
  629. if (dto.Status == 2)
  630. {
  631. diId = dto.Id;
  632. if (diId == 0)
  633. {
  634. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  635. }
  636. }
  637. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  638. if (viewData.Code != 0)
  639. {
  640. _sqlSugar.RollbackTran();
  641. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  642. }
  643. _sqlSugar.CommitTran();
  644. return Ok(JsonView(true, "添加成功"));
  645. }
  646. catch (Exception ex)
  647. {
  648. _sqlSugar.RollbackTran();
  649. return Ok(JsonView(false, ex.Message));
  650. }
  651. }
  652. /// <summary>
  653. /// 接团信息 操作(删除)
  654. /// </summary>
  655. /// <param name="dto"></param>
  656. /// <returns></returns>
  657. [HttpPost]
  658. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  659. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  660. {
  661. try
  662. {
  663. var groupData = await _groupRepository.GroupDel(dto);
  664. if (groupData.Code != 0)
  665. {
  666. return Ok(JsonView(false, groupData.Msg));
  667. }
  668. return Ok(JsonView(true));
  669. }
  670. catch (Exception ex)
  671. {
  672. Logs("[response]" + JsonConvert.SerializeObject(dto));
  673. Logs(ex.Message);
  674. return Ok(JsonView(false, ex.Message));
  675. }
  676. }
  677. /// <summary>
  678. /// 获取团组销售报价号
  679. /// 团组添加时 使用
  680. /// </summary>
  681. /// <returns></returns>
  682. [HttpPost]
  683. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  684. public async Task<IActionResult> GetGroupSalesQuoteNo()
  685. {
  686. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  687. if (groupData.Code != 0)
  688. {
  689. return Ok(JsonView(false, groupData.Msg));
  690. }
  691. object salesQuoteNo = new
  692. {
  693. SalesQuoteNo = groupData.Data
  694. };
  695. return Ok(JsonView(salesQuoteNo));
  696. }
  697. /// <summary>
  698. /// 设置确认出团
  699. /// </summary>
  700. /// <param name="dto"></param>
  701. /// <returns></returns>
  702. [HttpPost]
  703. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  704. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  705. {
  706. var groupData = await _groupRepository.ConfirmationGroup(dto);
  707. if (groupData.Code != 0)
  708. {
  709. return Ok(JsonView(false, groupData.Msg));
  710. }
  711. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  712. #region OA消息推送
  713. try
  714. {
  715. string groupName = groupInfo.TeamName;
  716. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  717. List<int> userIds = new List<int>();
  718. listUser.ForEach(s => userIds.Add(s.Id));
  719. string title = $"系统通知";
  720. string content = $"团组[{groupName}]已确认出团!";
  721. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  722. }
  723. catch (Exception ex)
  724. {
  725. }
  726. #endregion
  727. #region 应用推送
  728. try
  729. {
  730. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  731. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  732. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  733. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  734. {
  735. List<string> userList = new List<string>() { users.QiyeChatUserId };
  736. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  737. }
  738. }
  739. catch (Exception ex)
  740. {
  741. }
  742. #endregion
  743. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  744. return Ok(JsonView(true, "操作成功!", groupData.Data));
  745. }
  746. /// <summary>
  747. /// 获取团组名称data And 签证国别Data
  748. /// </summary>
  749. /// <param name="dto"></param>
  750. /// <returns></returns>
  751. [HttpPost]
  752. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  753. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  754. {
  755. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  756. if (groupData.Code != 0)
  757. {
  758. return Ok(JsonView(false, groupData.Msg));
  759. }
  760. return Ok(JsonView(groupData.Data));
  761. }
  762. /// <summary>
  763. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  764. /// </summary>
  765. /// <returns></returns>
  766. [HttpPost]
  767. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  768. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  769. {
  770. try
  771. {
  772. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  773. if (groupData.Code != 0)
  774. {
  775. return Ok(JsonView(false, groupData.Msg));
  776. }
  777. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  778. }
  779. catch (Exception ex)
  780. {
  781. return Ok(JsonView(false, "程序错误!"));
  782. throw;
  783. }
  784. }
  785. #endregion
  786. #region 团组&签证
  787. /// <summary>
  788. /// 根据团组Id获取签证客户信息List
  789. /// </summary>
  790. /// <param name="dto">请求dto</param>
  791. /// <returns></returns>
  792. [HttpPost]
  793. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  794. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  795. {
  796. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  797. if (groupData.Code != 0)
  798. {
  799. return Ok(JsonView(false, groupData.Msg));
  800. }
  801. return Ok(JsonView(groupData.Data));
  802. }
  803. /// <summary>
  804. /// IOS获取团组签证拍照上传进度01(团组列表)
  805. /// </summary>
  806. /// <param name="dto">请求dto</param>
  807. /// <returns></returns>
  808. [HttpPost]
  809. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  810. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  811. {
  812. if (dto == null)
  813. {
  814. return Ok(JsonView(false, "参数为空"));
  815. }
  816. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  817. return Ok(JsonView(visaList));
  818. }
  819. /// <summary>
  820. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  821. /// </summary>
  822. /// <returns></returns>
  823. [HttpPost]
  824. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  825. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  826. {
  827. if (dto == null)
  828. {
  829. return Ok(JsonView(false, "请求错误:"));
  830. }
  831. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  832. return Ok(JsonView(list));
  833. }
  834. /// <summary>
  835. /// IOS获取团组签证拍照上传进度03(相册)
  836. /// </summary>
  837. /// <returns></returns>
  838. [HttpPost]
  839. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  840. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  841. {
  842. if (dto == null)
  843. {
  844. return Ok(JsonView(false, "请求错误:"));
  845. }
  846. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  847. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  848. list.ForEach(s => s.url = url);
  849. return Ok(JsonView(list));
  850. }
  851. /// <summary>
  852. /// IOS获取团组签证拍照上传进度04(图片上传)
  853. /// </summary>
  854. /// <param name="dto"></param>
  855. /// <returns></returns>
  856. [HttpPost]
  857. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  858. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  859. {
  860. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  861. //if (!string.IsNullOrEmpty(result))
  862. //{
  863. //}
  864. //else {
  865. // return Ok(JsonView(false, "上传失败"));
  866. //}
  867. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  868. int sucNum = 0;
  869. try
  870. {
  871. foreach (var item in dto.base64DataList)
  872. {
  873. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  874. string result = decodeBase64ToImage(item, imageName);
  875. if (!string.IsNullOrEmpty(result))
  876. {
  877. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  878. pic.CreateUserId = dto.CreateUserId;
  879. pic.PicName = imageName;
  880. pic.PicPath = result;
  881. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  882. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  883. if (insertResult > 0)
  884. {
  885. sucNum++;
  886. }
  887. }
  888. }
  889. }
  890. catch (Exception ex)
  891. {
  892. return Ok(JsonView(false, ex.Message));
  893. }
  894. string msg = string.Format(@"成功上传{0}张", sucNum);
  895. return Ok(JsonView(true, msg));
  896. }
  897. private string decodeBase64ToImage(string base64DataURL, string imgName)
  898. {
  899. string filename = "";//声明一个string类型的相对路径
  900. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  901. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  902. try//会有异常抛出,try,catch一下
  903. {
  904. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  905. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  906. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  907. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  908. //文件名称
  909. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  910. //上传的文件的路径
  911. string filePath = "";
  912. if (!Directory.Exists(fileDir))
  913. {
  914. Directory.CreateDirectory(fileDir);
  915. }
  916. //上传的文件的路径
  917. filePath = fileDir + filename;
  918. //string url = HttpRuntime.AppDomainAppPath.ToString();
  919. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  920. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  921. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  922. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  923. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  924. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  925. ms.Close();//关闭当前流,并释放所有与之关联的资源
  926. bitmap.Dispose();
  927. }
  928. catch (Exception e)
  929. {
  930. string massage = e.Message;
  931. Logs("IOS图片上传Error:" + massage);
  932. //filename = e.Message;
  933. }
  934. return filename;//返回相对路径
  935. }
  936. /// <summary>
  937. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  938. /// </summary>
  939. /// <param name="dto"></param>
  940. /// <returns></returns>
  941. [HttpPost]
  942. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  943. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  944. {
  945. if (dto == null)
  946. {
  947. return Ok(JsonView(false, "请求错误:"));
  948. }
  949. string msg = "参数错误";
  950. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  951. {
  952. try
  953. {
  954. //_delegationVisaRep.BeginTran();
  955. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  956. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  957. .Where(s => s.Id == dto.visaProgressCustomerId)
  958. .ExecuteCommandAsync();
  959. if (updCount > 0 && dto.publishCode == 1)
  960. {
  961. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  962. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  963. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  964. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  965. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  966. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  967. if (groupData == null)
  968. {
  969. _delegationVisaRep.RollbackTran();
  970. }
  971. string title = string.Format(@"[签证进度更新]");
  972. string content = string.Format(@"测试文本");
  973. bool rst = await _message.AddMsg(new MessageDto()
  974. {
  975. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  976. IssuerId = dto.publisher,
  977. Title = title,
  978. Content = content,
  979. ReleaseTime = DateTime.Now,
  980. UIdList = new List<int> {
  981. 234
  982. }
  983. });
  984. if (rst)
  985. {
  986. return Ok(JsonView(true, "发送通知成功"));
  987. }
  988. }
  989. //_delegationVisaRep.CommitTran();
  990. }
  991. catch (Exception)
  992. {
  993. //_delegationVisaRep.RollbackTran();
  994. }
  995. }
  996. return Ok(JsonView(true, msg));
  997. }
  998. #endregion
  999. #region 团组任务分配
  1000. /// <summary>
  1001. /// 团组任务分配初始化
  1002. /// </summary>
  1003. /// <param name="dto"></param>
  1004. /// <returns></returns>
  1005. [HttpPost]
  1006. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1007. public async Task<IActionResult> GetTaskAssignmen()
  1008. {
  1009. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1010. if (groupData.Code != 0)
  1011. {
  1012. return Ok(JsonView(false, groupData.Msg));
  1013. }
  1014. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1015. }
  1016. /// <summary>
  1017. /// 团组任务分配查询
  1018. /// </summary>
  1019. /// <param name="dto"></param>
  1020. /// <returns></returns>
  1021. [HttpPost]
  1022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1023. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1024. {
  1025. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1026. if (groupData.Code != 0)
  1027. {
  1028. return Ok(JsonView(false, groupData.Msg));
  1029. }
  1030. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1031. }
  1032. /// <summary>
  1033. /// 团组任务分配操作
  1034. /// </summary>
  1035. /// <param name="dto"></param>
  1036. /// <returns></returns>
  1037. [HttpPost]
  1038. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1039. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1040. {
  1041. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1042. if (groupData.Code != 0)
  1043. {
  1044. return Ok(JsonView(false, groupData.Msg));
  1045. }
  1046. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1047. }
  1048. #endregion
  1049. #region 团组费用审核
  1050. /// <summary>
  1051. /// 费用审核
  1052. /// 团组列表 Page
  1053. /// </summary>
  1054. /// <param name="_dto">团组列表请求dto</param>
  1055. /// <returns></returns>
  1056. [HttpPost]
  1057. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1058. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1059. {
  1060. #region 参数验证
  1061. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1062. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1063. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1064. #region 页面操作权限验证
  1065. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1066. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1067. #endregion
  1068. #endregion
  1069. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1070. {
  1071. string sqlWhere = string.Empty;
  1072. if (_dto.IsSure == 0) //未完成
  1073. {
  1074. sqlWhere += string.Format(@" And IsSure = 0");
  1075. }
  1076. else if (_dto.IsSure == 1) //已完成
  1077. {
  1078. sqlWhere += string.Format(@" And IsSure = 1");
  1079. }
  1080. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1081. {
  1082. string tj = _dto.SearchCriteria;
  1083. 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}%')",
  1084. tj, tj, tj, tj, tj);
  1085. }
  1086. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1087. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1088. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1089. From (
  1090. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1091. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1092. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1093. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1094. From Grp_DelegationInfo gdi
  1095. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1096. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1097. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1098. Where gdi.IsDel = 0 {0}
  1099. ) temp ", sqlWhere);
  1100. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1101. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1102. var _view = new
  1103. {
  1104. PageFuncAuth = pageFunAuthView,
  1105. Data = _DelegationList
  1106. };
  1107. return Ok(JsonView(true, "查询成功!", _view, total));
  1108. }
  1109. else
  1110. {
  1111. return Ok(JsonView(false, "查询失败"));
  1112. }
  1113. }
  1114. /// <summary>
  1115. /// 获取团组费用审核
  1116. /// </summary>
  1117. /// <param name="paras">参数Json字符串</param>
  1118. /// <returns></returns>
  1119. [HttpPost]
  1120. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1121. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1122. {
  1123. try
  1124. {
  1125. #region 参数验证
  1126. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1127. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1128. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1129. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1130. #region 页面操作权限验证
  1131. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1132. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1133. #endregion
  1134. #endregion
  1135. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1136. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1137. #region 费用清单
  1138. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1139. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1140. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1141. List<Grp_CreditCardPayment> entityList = _groupRepository
  1142. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1143. .Where(exp.ToExpression())
  1144. .ToList();
  1145. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1146. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1147. /*
  1148. * 76://酒店预订
  1149. */
  1150. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1151. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1152. .ToListAsync();
  1153. /*
  1154. * 79://车/导游地接
  1155. */
  1156. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1157. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1158. .ToListAsync();
  1159. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1160. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1161. .ToListAsync();
  1162. /*
  1163. * 80: //签证
  1164. */
  1165. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1166. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1167. .ToListAsync();
  1168. /*
  1169. *81: //邀请/公务活动
  1170. */
  1171. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1172. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1173. .ToListAsync();
  1174. /*
  1175. * 82: //团组客户保险
  1176. */
  1177. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1178. /*
  1179. * Lable = 85 机票预订
  1180. */
  1181. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1182. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1183. .ToListAsync();
  1184. /*
  1185. * 85 机票预定
  1186. */
  1187. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1188. /*
  1189. * 98 其他款项
  1190. */
  1191. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1192. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1193. .ToListAsync();
  1194. /*
  1195. * 285:收款退还
  1196. */
  1197. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1198. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1199. .ToListAsync();
  1200. /*
  1201. * 1015: //超支费用
  1202. */
  1203. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1204. /*
  1205. * 币种信息
  1206. */
  1207. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1208. /*
  1209. * 车/导游地接 费用类型
  1210. */
  1211. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1212. /*
  1213. * 车/导游地接 费用类型
  1214. */
  1215. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1216. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1217. /*
  1218. * 用户信息
  1219. */
  1220. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1221. /*
  1222. * 费用模块
  1223. */
  1224. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1225. string priceModule = string.Empty;
  1226. if (sdPriceName != null)
  1227. {
  1228. priceModule = sdPriceName.Name;
  1229. }
  1230. /*
  1231. * 处理详情数据
  1232. */
  1233. foreach (var entity in entityList)
  1234. {
  1235. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1236. _detail.Id = entity.Id;
  1237. _detail.PriceName = priceModule;
  1238. /*
  1239. * 应付款金额
  1240. */
  1241. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1242. string PaymentCurrency_WaitPay = "Unknown";
  1243. string hotelCurrncyCode = "Unknown";
  1244. string hotelCurrncyName = "Unknown";
  1245. if (sdPaymentCurrency_WaitPay != null)
  1246. {
  1247. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1248. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1249. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1250. if (hotelCurrncyCode.Equals("CNY"))
  1251. {
  1252. entity.DayRate = 1.0000M;
  1253. }
  1254. }
  1255. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1256. /*
  1257. * 此次付款金额
  1258. */
  1259. decimal CurrPayStr = 0;
  1260. if (entity.PayPercentage == 0)
  1261. {
  1262. if (entity.PayThenMoney != 0)
  1263. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1264. }
  1265. else
  1266. {
  1267. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1268. }
  1269. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1270. /*
  1271. * 剩余尾款
  1272. */
  1273. decimal BalanceStr = 0;
  1274. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1275. BalanceStr = 0;
  1276. else
  1277. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1278. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1279. /*
  1280. * Bus名称
  1281. */
  1282. _detail.BusName = "待增加";
  1283. /*
  1284. *费用所属
  1285. */
  1286. switch (entity.CTable)
  1287. {
  1288. case 76://酒店预订
  1289. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1290. if (hotelReservations != null)
  1291. {
  1292. string GovernmentRentCode = "", GovernmentRentName = "", CityTaxCode = "", CityTaxName = "", BreakfastCode = "", BreakfastName = "";
  1293. Sys_SetData sdPaymentCurrency_GovernmentRent = currencyItems.Where(s => s.Id == hotelReservations.GovernmentRentCurrency).FirstOrDefault();
  1294. if (sdPaymentCurrency_GovernmentRent != null)
  1295. {
  1296. GovernmentRentCode = sdPaymentCurrency_GovernmentRent.Name;
  1297. GovernmentRentName = sdPaymentCurrency_GovernmentRent.Remark;
  1298. }
  1299. Sys_SetData sdPaymentCurrency_CityTax = currencyItems.Where(s => s.Id == hotelReservations.CityTaxCurrency).FirstOrDefault();
  1300. if (sdPaymentCurrency_CityTax != null)
  1301. {
  1302. CityTaxCode = sdPaymentCurrency_CityTax.Name;
  1303. CityTaxName = sdPaymentCurrency_CityTax.Remark;
  1304. }
  1305. Sys_SetData sdPaymentCurrency_Breakfast = currencyItems.Where(s => s.Id == hotelReservations.BreakfastCurrency).FirstOrDefault();
  1306. if (sdPaymentCurrency_Breakfast != null)
  1307. {
  1308. BreakfastCode = sdPaymentCurrency_Breakfast.Name;
  1309. BreakfastName = sdPaymentCurrency_Breakfast.Remark;
  1310. }
  1311. string isoppayStr = hotelReservations.Isoppay == 0 ? "是" : "否";
  1312. _detail.PriceMsgContent = $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1313. $"房间说明: {hotelReservations.Remark} <br/>" +
  1314. $"地税: {hotelReservations.GovernmentRent.ToString("#0.00")} {GovernmentRentCode} ({GovernmentRentName})<br/>" +
  1315. $"城市税: {hotelReservations.CityTax.ToString("#0.00")} {CityTaxCode} ({CityTaxName})<br/>" +
  1316. $"酒店早餐: {hotelReservations.BreakfastPrice.ToString("#0.00")} {BreakfastCode} ({BreakfastName})<br/>" +
  1317. $"酒店早餐是否由地接代付: {isoppayStr}";
  1318. _detail.PriceNameContent = hotelReservations.HotelName;
  1319. }
  1320. break;
  1321. case 79://车/导游地接
  1322. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1323. if (touristGuideGroundReservations != null)
  1324. {
  1325. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1326. {
  1327. _detail.BusName = touristGuideGroundReservations.BusName;
  1328. }
  1329. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1330. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1331. //if (isInt)
  1332. //{
  1333. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1334. // if (cityInfo != null)
  1335. // {
  1336. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1337. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1338. // if (carFeeItem != null)
  1339. // {
  1340. // nameContent += $@"({carFeeItem.Name})";
  1341. // }
  1342. // _detail.PriceNameContent = nameContent;
  1343. // }
  1344. //}
  1345. //else
  1346. //{
  1347. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1348. //}
  1349. List<Grp_CarTouristGuideGroundReservationsContent> touristGuideGroundReservationsContents = _CarTouristGuideGroundReservationsContent
  1350. .Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1351. string priceMsg = string.Empty;
  1352. foreach (var item in touristGuideGroundReservationsContents)
  1353. {
  1354. string typeName = "Unknown";
  1355. string carCurrencyCode = "Unknown";
  1356. string carCurrencyName = "Unknown";
  1357. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1358. if (carTypeData != null) typeName = carTypeData.Name;
  1359. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1360. if (currencyData != null)
  1361. {
  1362. carCurrencyCode = currencyData.Name;
  1363. carCurrencyName = currencyData.Remark;
  1364. }
  1365. priceMsg += typeName + ":" + item.Price.ToString("#0.00") + " " + carCurrencyCode + "(" + carCurrencyName + ")<br/>" +
  1366. "明细:" + item.PriceContent + "<br/>" +
  1367. "备注:" + item.Remark + "<br/><br/>";
  1368. }
  1369. _detail.PriceMsgContent = priceMsg;
  1370. }
  1371. break;
  1372. case 80: //签证
  1373. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1374. if (visaInfo != null)
  1375. {
  1376. _detail.PriceNameContent = getClientNameStr(clientNameList, visaInfo.VisaClient);
  1377. _detail.PriceMsgContent = "备注:" + visaInfo.Remark;
  1378. }
  1379. break;
  1380. case 81: //邀请/公务活动
  1381. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1382. if (_ioa != null)
  1383. {
  1384. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1385. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1386. sendCurrName = "Unknown", //快递费用币种 Name
  1387. sendCurrCode = "Unknown", //快递费用币种 Code
  1388. eventsCurrName = "Unknown", //公务活动费币种 Name
  1389. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1390. translateCurrName = "Unknown", //公务翻译费 Name
  1391. translateCurrCode = "Unknown"; //公务翻译费 Code
  1392. #region 处理费用币种
  1393. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1394. if (inviteCurrData != null)
  1395. {
  1396. inviteCurrName = inviteCurrData.Remark;
  1397. inviteCurrCode = inviteCurrData.Name;
  1398. }
  1399. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1400. if (sendCurrData != null)
  1401. {
  1402. sendCurrName = sendCurrData.Remark;
  1403. sendCurrCode = sendCurrData.Name;
  1404. }
  1405. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1406. if (eventsCurrData != null)
  1407. {
  1408. eventsCurrName = eventsCurrData.Remark;
  1409. eventsCurrCode = eventsCurrData.Name;
  1410. }
  1411. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1412. if (translateCurrData != null)
  1413. {
  1414. translateCurrName = translateCurrData.Remark;
  1415. translateCurrCode = translateCurrData.Name;
  1416. }
  1417. #endregion
  1418. _detail.PriceNameContent = _ioa.InviterArea;
  1419. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1420. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1421. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1422. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1423. $@"备注:" + _ioa.Remark + "<br/>";
  1424. }
  1425. break;
  1426. case 82: //团组客户保险
  1427. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1428. if (customers != null)
  1429. {
  1430. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1431. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1432. }
  1433. break;
  1434. case 85: //机票预订
  1435. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1436. if (jpRes != null)
  1437. {
  1438. string FlightsDescription = jpRes.FlightsDescription;
  1439. string PriceDescription = jpRes.PriceDescription;
  1440. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1441. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1442. }
  1443. break;
  1444. case 98://其他款项
  1445. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1446. if (gdpRes != null)
  1447. {
  1448. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1449. _detail.PriceNameContent = gdpRes.PriceName;
  1450. }
  1451. break;
  1452. case 285://收款退还
  1453. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1454. if (refundAndOtherMoney != null)
  1455. {
  1456. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1457. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1458. }
  1459. break;
  1460. case 751://酒店早餐
  1461. break;
  1462. case 1015://超支费用
  1463. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1464. if (groupExtraCost != null)
  1465. {
  1466. _detail.PriceNameContent = groupExtraCost.PriceName;
  1467. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1468. }
  1469. break;
  1470. default:
  1471. break;
  1472. }
  1473. /*
  1474. * 申请人
  1475. */
  1476. string operatorName = " - ";
  1477. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1478. if (_opUser != null)
  1479. {
  1480. operatorName = _opUser.CnName;
  1481. }
  1482. _detail.OperatorName = operatorName;
  1483. /*
  1484. * 审核人
  1485. */
  1486. string auditOperatorName = "Unknown";
  1487. if (entity.AuditGMOperate == 0)
  1488. auditOperatorName = " - ";
  1489. else if (entity.AuditGMOperate == 4)
  1490. auditOperatorName = "自动审核";
  1491. else
  1492. {
  1493. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1494. if (_adUser != null)
  1495. {
  1496. auditOperatorName = _adUser.CnName;
  1497. }
  1498. }
  1499. _detail.AuditOperatorName = auditOperatorName;
  1500. /*
  1501. * 超预算比例
  1502. */
  1503. string overBudgetStr = "";
  1504. if (entity.ExceedBudget == -1)
  1505. overBudgetStr = sdPriceName.Name + "尚无预算";
  1506. else if (entity.ExceedBudget == 0)
  1507. overBudgetStr = "未超预算";
  1508. else
  1509. overBudgetStr = entity.ExceedBudget.ToString("P");
  1510. _detail.OverBudget = overBudgetStr;
  1511. /*
  1512. * 费用总计
  1513. */
  1514. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1515. {
  1516. CurrencyId = entity.PaymentCurrency,
  1517. CurrencyName = PaymentCurrency_WaitPay,
  1518. AmountPayable = entity.PayMoney,
  1519. ThisPayment = CurrPayStr,
  1520. BalancePayment = BalanceStr,
  1521. AuditedFunds = CurrPayStr
  1522. });
  1523. _detail.IsAuditGM = entity.IsAuditGM;
  1524. detailList.Add(_detail);
  1525. }
  1526. #endregion
  1527. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1528. /*
  1529. * 下方描述处理
  1530. */
  1531. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1532. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1533. if (ccpCurrencyPrice != null)
  1534. {
  1535. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1536. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1537. }
  1538. else
  1539. {
  1540. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1541. }
  1542. string amountPayableStr = string.Format(@"应付款总金额: ");
  1543. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1544. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1545. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1546. foreach (var item in nonDuplicat)
  1547. {
  1548. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1549. if (strs.Count > 0)
  1550. {
  1551. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1552. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1553. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1554. //单独处理此次付款金额
  1555. if (item.CurrencyId == 836) //人民币
  1556. {
  1557. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1558. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1559. }
  1560. else
  1561. {
  1562. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1563. }
  1564. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1565. //单独处理已审核费用
  1566. if (item.CurrencyId == 836) //人民币
  1567. {
  1568. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1569. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1570. }
  1571. else
  1572. {
  1573. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1574. }
  1575. }
  1576. }
  1577. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1578. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1579. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1580. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1581. var _view1 = new
  1582. {
  1583. PageFuncAuth = pageFunAuthView,
  1584. Data = _view
  1585. };
  1586. return Ok(JsonView(_view1));
  1587. }
  1588. catch (Exception ex)
  1589. {
  1590. return Ok(JsonView(false, ex.Message));
  1591. }
  1592. }
  1593. /// <summary>
  1594. /// 费用审核
  1595. /// 修改团组费用审核状态
  1596. /// </summary>
  1597. /// <param name="_dto">参数Json字符串</param>
  1598. /// <returns></returns>
  1599. [HttpPost]
  1600. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1601. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1602. {
  1603. #region 参数验证
  1604. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1605. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1606. #endregion
  1607. #region 页面操作权限验证
  1608. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1609. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1610. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1611. #endregion
  1612. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1613. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1614. DateTime dtNow = DateTime.Now;
  1615. _groupRepository.BeginTran();
  1616. int rst = 0;
  1617. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1618. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1619. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1620. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1621. List<dynamic> msgDatas = new List<dynamic>();
  1622. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1623. foreach (var item in idList)
  1624. {
  1625. int CreditId = int.Parse(item);
  1626. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1627. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1628. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1629. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1630. .Where(s => s.Id == CreditId)
  1631. .ExecuteCommandAsync();
  1632. if (result < 1)
  1633. {
  1634. rst = -1;
  1635. _groupRepository.RollbackTran();
  1636. return Ok(JsonView(false, "操作失败并回滚!"));
  1637. }
  1638. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1639. if (creditData != null)
  1640. {
  1641. #region 应用通知配置
  1642. try
  1643. {
  1644. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1645. }
  1646. catch (Exception ex)
  1647. {
  1648. }
  1649. #endregion
  1650. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1651. string groupNameStr = string.Empty;
  1652. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1653. if (groupData != null) groupNameStr = groupData.TeamName;
  1654. string creditTypeStr = string.Empty;
  1655. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1656. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1657. string creditCurrency = string.Empty;
  1658. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1659. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1660. if (creditCurrency.Equals("CNY"))
  1661. {
  1662. creditData.DayRate = 1.0000M;
  1663. }
  1664. if (creditData.PayPercentage == 0.00M)
  1665. {
  1666. creditData.PayPercentage = 100M;
  1667. }
  1668. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1669. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1670. string msgContent = "";
  1671. if (creditCurrency.Equals("CNY"))
  1672. {
  1673. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1674. }
  1675. else
  1676. {
  1677. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1678. }
  1679. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1680. }
  1681. }
  1682. if (rst == 0)
  1683. {
  1684. _groupRepository.CommitTran();
  1685. foreach (var item in msgDatas)
  1686. {
  1687. //发送消息
  1688. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1689. }
  1690. #region 应用推送
  1691. try
  1692. {
  1693. foreach (var ccpId in dic_ccp_user.Keys)
  1694. {
  1695. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1696. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1697. }
  1698. }
  1699. catch (Exception)
  1700. {
  1701. }
  1702. #endregion
  1703. return Ok(JsonView(true, "操作成功!"));
  1704. }
  1705. return Ok(JsonView(false, "操作失败!"));
  1706. }
  1707. #endregion
  1708. #region 机票费用录入
  1709. /// <summary>
  1710. /// 机票录入当前登录人可操作团组
  1711. /// </summary>
  1712. /// <param name="dto"></param>
  1713. /// <returns></returns>
  1714. [HttpPost]
  1715. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1716. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1717. {
  1718. try
  1719. {
  1720. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1721. if (groupData.Code != 0)
  1722. {
  1723. return Ok(JsonView(false, groupData.Msg));
  1724. }
  1725. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1726. }
  1727. catch (Exception ex)
  1728. {
  1729. return Ok(JsonView(false, "程序错误!"));
  1730. throw;
  1731. }
  1732. }
  1733. /// <summary>
  1734. /// 机票费用录入列表
  1735. /// </summary>
  1736. /// <param name="dto"></param>
  1737. /// <returns></returns>
  1738. [HttpPost]
  1739. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1740. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1741. {
  1742. try
  1743. {
  1744. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1745. if (groupData.Code != 0)
  1746. {
  1747. return Ok(JsonView(false, groupData.Msg));
  1748. }
  1749. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1750. }
  1751. catch (Exception ex)
  1752. {
  1753. return Ok(JsonView(false, ex.Message));
  1754. throw;
  1755. }
  1756. }
  1757. /// <summary>
  1758. /// 根据id查询费用录入信息
  1759. /// </summary>
  1760. /// <param name="dto"></param>
  1761. /// <returns></returns>
  1762. [HttpPost]
  1763. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1764. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1765. {
  1766. try
  1767. {
  1768. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1769. if (groupData.Code != 0)
  1770. {
  1771. return Ok(JsonView(false, groupData.Msg));
  1772. }
  1773. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1774. }
  1775. catch (Exception ex)
  1776. {
  1777. return Ok(JsonView(false, "程序错误!"));
  1778. throw;
  1779. }
  1780. }
  1781. /// <summary>
  1782. /// 机票费用录入操作(Status:1.新增,2.修改)
  1783. /// </summary>
  1784. /// <param name="dto"></param>
  1785. /// <returns></returns>
  1786. [HttpPost]
  1787. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1788. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1789. {
  1790. try
  1791. {
  1792. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1793. if (groupData.Code != 0)
  1794. {
  1795. return Ok(JsonView(false, groupData.Msg));
  1796. }
  1797. #region 应用推送
  1798. try
  1799. {
  1800. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  1801. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  1802. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  1803. }
  1804. catch (Exception ex)
  1805. {
  1806. }
  1807. #endregion
  1808. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1809. }
  1810. catch (Exception ex)
  1811. {
  1812. return Ok(JsonView(false, "程序错误!"));
  1813. throw;
  1814. }
  1815. }
  1816. /// <summary>
  1817. /// 根据舱位类型查询接团客户名单信息
  1818. /// </summary>
  1819. /// <param name="dto"></param>
  1820. /// <returns></returns>
  1821. [HttpPost]
  1822. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1823. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  1824. {
  1825. try
  1826. {
  1827. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  1828. if (crm_Groups.Count != 0)
  1829. {
  1830. List<dynamic> Customer = new List<dynamic>();
  1831. foreach (var item in crm_Groups)
  1832. {
  1833. var data = new
  1834. {
  1835. Id = item.Id,
  1836. Pinyin = item.Pinyin,
  1837. Name = item.LastName + item.FirstName
  1838. };
  1839. Customer.Add(data);
  1840. }
  1841. return Ok(JsonView(true, "查询成功!", Customer));
  1842. }
  1843. return Ok(JsonView(true, "暂无数据", crm_Groups));
  1844. }
  1845. catch (Exception ex)
  1846. {
  1847. return Ok(JsonView(false, "程序错误!"));
  1848. throw;
  1849. }
  1850. }
  1851. /// <summary>
  1852. /// 根据团号获取客户信息
  1853. /// </summary>
  1854. /// <param name="dto"></param>
  1855. /// <returns></returns>
  1856. [HttpPost]
  1857. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1858. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  1859. {
  1860. var jw = JsonView(false);
  1861. if (dto.DIID < 1)
  1862. {
  1863. jw.Msg += "请输入正确的diid";
  1864. return Ok(jw);
  1865. }
  1866. var arr = getSimplClientList(dto.DIID);
  1867. jw = JsonView(true, "获取成功!", arr);
  1868. return Ok(jw);
  1869. }
  1870. private List<SimplClientInfo> getSimplClientList(int diId)
  1871. {
  1872. 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);
  1873. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  1874. return arr;
  1875. }
  1876. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  1877. {
  1878. string result = origin;
  1879. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  1880. {
  1881. string[] temparr = origin.Split(',');
  1882. string fistrStr = temparr[0];
  1883. int count = temparr.Count();
  1884. int tempId;
  1885. bool success = int.TryParse(fistrStr, out tempId);
  1886. if (success)
  1887. {
  1888. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  1889. if (tempInfo != null)
  1890. {
  1891. if (count > 1)
  1892. {
  1893. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  1894. }
  1895. else
  1896. {
  1897. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  1898. }
  1899. }
  1900. }
  1901. }
  1902. return result;
  1903. }
  1904. /// <summary>
  1905. /// 机票费用录入,删除
  1906. /// </summary>
  1907. /// <param name="dto"></param>
  1908. /// <returns></returns>
  1909. [HttpPost]
  1910. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1911. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  1912. {
  1913. try
  1914. {
  1915. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  1916. if (res)
  1917. {
  1918. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  1919. {
  1920. IsDel = 1,
  1921. DeleteUserId = dto.DeleteUserId,
  1922. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  1923. }).ExecuteCommandAsync();
  1924. return Ok(JsonView(true, "删除成功!"));
  1925. }
  1926. return Ok(JsonView(false, "删除失败!"));
  1927. }
  1928. catch (Exception ex)
  1929. {
  1930. return Ok(JsonView(false, "程序错误!"));
  1931. throw;
  1932. }
  1933. }
  1934. /// <summary>
  1935. /// 导出机票录入报表
  1936. /// </summary>
  1937. /// <param name="dto"></param>
  1938. /// <returns></returns>
  1939. [HttpPost]
  1940. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1941. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  1942. {
  1943. try
  1944. {
  1945. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  1946. if (groupData.Code != 0)
  1947. {
  1948. return Ok(JsonView(false, groupData.Msg));
  1949. }
  1950. else
  1951. {
  1952. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  1953. if (AirTicketReservations.Count != 0)
  1954. {
  1955. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  1956. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  1957. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  1958. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  1959. WorkbookDesigner designer = new WorkbookDesigner();
  1960. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  1961. decimal countCost = 0;
  1962. foreach (var item in AirTicketReservations)
  1963. {
  1964. #region 处理客人姓名
  1965. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  1966. item.ClientName = clientNames;
  1967. #endregion
  1968. if (item.BankType == "其他")
  1969. {
  1970. item.BankNo = "--";
  1971. }
  1972. else
  1973. {
  1974. if (!string.IsNullOrEmpty(item.BankType))
  1975. {
  1976. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  1977. }
  1978. }
  1979. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  1980. item.Price = System.Decimal.Round(item.Price, 2);
  1981. countCost += Convert.ToDecimal(item.Price);
  1982. }
  1983. designer.SetDataSource("Export", AirTicketReservations);
  1984. designer.SetDataSource("ExportDiCode", diCode);
  1985. designer.SetDataSource("ExportDiName", diName);
  1986. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  1987. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  1988. designer.Process();
  1989. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  1990. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  1991. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  1992. return Ok(JsonView(true, "成功", url = rst));
  1993. }
  1994. else
  1995. {
  1996. return Ok(JsonView(false, "暂无数据!"));
  1997. }
  1998. }
  1999. }
  2000. catch (Exception ex)
  2001. {
  2002. return Ok(JsonView(false, ex.Message));
  2003. throw;
  2004. }
  2005. }
  2006. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2007. /// <summary>
  2008. /// 行程单导出
  2009. /// </summary>
  2010. /// <param name="dto"></param>
  2011. /// <returns></returns>
  2012. [HttpPost]
  2013. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2014. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2015. {
  2016. try
  2017. {
  2018. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2019. if (groupData.Code != 0)
  2020. {
  2021. return Ok(JsonView(false, groupData.Msg));
  2022. }
  2023. else
  2024. {
  2025. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2026. if (dto.Language == "CN")
  2027. {
  2028. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2029. DocumentBuilder builder = new DocumentBuilder(doc);
  2030. int tableIndex = 0;//表格索引
  2031. //得到文档中的第一个表格
  2032. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2033. foreach (var item in _AirTicketReservations)
  2034. {
  2035. #region 处理固定数据
  2036. string[] FlightsCode = item.FlightsCode.Split('/');
  2037. if (FlightsCode.Length != 0)
  2038. {
  2039. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2040. if (_AirCompany != null)
  2041. {
  2042. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2043. }
  2044. else
  2045. {
  2046. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2047. }
  2048. }
  2049. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2050. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2051. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2052. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2053. string name = "";
  2054. foreach (string clientName in nameArray)
  2055. {
  2056. if (!name.Contains(clientName))
  2057. {
  2058. name += clientName + ",";
  2059. }
  2060. }
  2061. if (!string.IsNullOrWhiteSpace(name))
  2062. {
  2063. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2064. }
  2065. else
  2066. {
  2067. table.Range.Bookmarks["ClientName"].Text = "--";
  2068. }
  2069. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2070. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2071. table.Range.Bookmarks["JointTicket"].Text = "--";
  2072. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2073. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2074. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2075. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2076. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2077. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2078. #endregion
  2079. #region 循环数据处理
  2080. List<AirInfo> airs = new List<AirInfo>();
  2081. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2082. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2083. for (int i = 0; i < FlightsCode.Length; i++)
  2084. {
  2085. AirInfo air = new AirInfo();
  2086. string[] tempstr = DayArray[i]
  2087. .Replace("\r\n", string.Empty)
  2088. .Replace("\\r\\n", string.Empty)
  2089. .TrimStart().TrimEnd()
  2090. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2091. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2092. string starCity = "";
  2093. if (star_Three != null)
  2094. {
  2095. starCity = star_Three.AirPort;
  2096. }
  2097. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2098. string EndCity = "";
  2099. if (End_Three != null)
  2100. {
  2101. EndCity = End_Three.AirPort;
  2102. }
  2103. air.Destination = starCity + "/" + EndCity;
  2104. air.Flight = FlightsCode[i];
  2105. air.SeatingClass = item.CTypeName;
  2106. string dateTime = tempstr[2];
  2107. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2108. air.FlightDate = DateTemp;
  2109. air.DepartureTime = tempstr[5];
  2110. air.LandingTime = tempstr[6];
  2111. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2112. air.TicketStatus = "--";
  2113. air.Luggage = "--";
  2114. air.DepartureTerminal = "--";
  2115. air.LandingTerminal = "--";
  2116. airs.Add(air);
  2117. }
  2118. int row = 13;
  2119. for (int i = 0; i < airs.Count; i++)
  2120. {
  2121. if (airs.Count > 2)
  2122. {
  2123. for (int j = 0; j < airs.Count - 2; j++)
  2124. {
  2125. var CopyRow = table.Rows[12].Clone(true);
  2126. table.Rows.Add(CopyRow);
  2127. }
  2128. }
  2129. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2130. int index = 0;
  2131. foreach (PropertyInfo property in properties)
  2132. {
  2133. string value = property.GetValue(airs[i]).ToString();
  2134. Cell ishcel0 = table.Rows[row].Cells[index];
  2135. Paragraph p = new Paragraph(doc);
  2136. string s = value;
  2137. p.AppendChild(new Run(doc, s));
  2138. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2139. ishcel0.AppendChild(p);
  2140. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2141. index++;
  2142. }
  2143. row++;
  2144. }
  2145. #endregion
  2146. Paragraph lastParagraph = new Paragraph(doc);
  2147. //第一个表格末尾加段落
  2148. table.ParentNode.InsertAfter(lastParagraph, table);
  2149. //复制第一个表格
  2150. Table cloneTable = (Table)table.Clone(true);
  2151. //在文档末尾段落后面加入复制的表格
  2152. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2153. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2154. {
  2155. int rownewsIndex = 13;
  2156. for (int i = 0; i < 2; i++)
  2157. {
  2158. var CopyRow = table.Rows[12].Clone(true);
  2159. table.Rows.RemoveAt(13);
  2160. table.Rows.Add(CopyRow);
  2161. rownewsIndex++;
  2162. }
  2163. }
  2164. else
  2165. {
  2166. table.Rows.RemoveAt(12);
  2167. }
  2168. cloneTable.Rows.RemoveAt(12);
  2169. }
  2170. if (_AirTicketReservations.Count != 0)
  2171. {
  2172. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2173. if (FlightsCode.Length != 0)
  2174. {
  2175. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2176. if (_AirCompany != null)
  2177. {
  2178. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2179. }
  2180. else
  2181. {
  2182. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2183. }
  2184. }
  2185. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2186. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2187. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2188. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2189. string name = "";
  2190. foreach (string clientName in nameArray)
  2191. {
  2192. if (!name.Contains(clientName))
  2193. {
  2194. name += clientName + ",";
  2195. }
  2196. }
  2197. if (!string.IsNullOrWhiteSpace(name))
  2198. {
  2199. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2200. }
  2201. else
  2202. {
  2203. table.Range.Bookmarks["ClientName"].Text = "--";
  2204. }
  2205. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2206. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2207. table.Range.Bookmarks["JointTicket"].Text = "--";
  2208. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2209. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2210. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2211. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2212. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2213. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2214. }
  2215. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2216. //保存合并后的文档
  2217. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2218. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2219. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2220. return Ok(JsonView(true, "成功!", rst));
  2221. }
  2222. else
  2223. {
  2224. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2225. DocumentBuilder builder = new DocumentBuilder(doc);
  2226. int tableIndex = 0;//表格索引
  2227. //得到文档中的第一个表格
  2228. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2229. List<string> texts = new List<string>();
  2230. foreach (var item in _AirTicketReservations)
  2231. {
  2232. string[] FlightsCode = item.FlightsCode.Split('/');
  2233. if (FlightsCode.Length != 0)
  2234. {
  2235. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2236. if (_AirCompany != null)
  2237. {
  2238. if (!transDic.ContainsKey(_AirCompany.CnName))
  2239. {
  2240. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2241. }
  2242. }
  2243. else
  2244. {
  2245. if (!transDic.ContainsKey("--"))
  2246. {
  2247. transDic.Add("--", "--");
  2248. }
  2249. }
  2250. }
  2251. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2252. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2253. string name = "";
  2254. foreach (string clientName in nameArray)
  2255. {
  2256. name += clientName + ",";
  2257. }
  2258. if (!texts.Contains(name))
  2259. {
  2260. texts.Add(name);
  2261. }
  2262. List<AirInfo> airs = new List<AirInfo>();
  2263. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2264. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2265. for (int i = 0; i < FlightsCode.Length; i++)
  2266. {
  2267. AirInfo air = new AirInfo();
  2268. string[] tempstr = DayArray[i]
  2269. .Replace("\r\n", string.Empty)
  2270. .Replace("\\r\\n", string.Empty)
  2271. .TrimStart().TrimEnd()
  2272. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2273. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2274. if (star_Three != null)
  2275. {
  2276. if (!transDic.ContainsKey(star_Three.AirPort))
  2277. {
  2278. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2279. }
  2280. }
  2281. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2282. if (End_Three != null)
  2283. {
  2284. if (!transDic.ContainsKey(End_Three.AirPort))
  2285. {
  2286. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2287. }
  2288. }
  2289. if (!texts.Contains(item.CTypeName))
  2290. {
  2291. texts.Add(item.CTypeName);
  2292. }
  2293. }
  2294. }
  2295. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2296. if (transData.Count > 0)
  2297. {
  2298. foreach (TranslateResult item in transData)
  2299. {
  2300. if (!transDic.ContainsKey(item.Query))
  2301. {
  2302. transDic.Add(item.Query, item.Translation);
  2303. }
  2304. }
  2305. }
  2306. foreach (var item in _AirTicketReservations)
  2307. {
  2308. #region 处理固定数据
  2309. string[] FlightsCode = item.FlightsCode.Split('/');
  2310. if (FlightsCode.Length != 0)
  2311. {
  2312. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2313. if (_AirCompany != null)
  2314. {
  2315. string str = "--";
  2316. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2317. if (!string.IsNullOrEmpty(translateResult))
  2318. {
  2319. str = translateResult;
  2320. str = _airTicketResRep.Processing(str);
  2321. }
  2322. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2323. }
  2324. else
  2325. {
  2326. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2327. }
  2328. }
  2329. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2330. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2331. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2332. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2333. string names = "";
  2334. foreach (string clientName in nameArray)
  2335. {
  2336. names += clientName + ",";
  2337. }
  2338. if (!string.IsNullOrWhiteSpace(names))
  2339. {
  2340. string str = "--";
  2341. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2342. if (!string.IsNullOrEmpty(translateResult))
  2343. {
  2344. str = translateResult;
  2345. str = _airTicketResRep.Processing(str);
  2346. }
  2347. table.Range.Bookmarks["ClientName"].Text = str;
  2348. }
  2349. else
  2350. {
  2351. table.Range.Bookmarks["ClientName"].Text = "--";
  2352. }
  2353. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2354. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2355. table.Range.Bookmarks["JointTicket"].Text = "--";
  2356. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2357. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2358. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2359. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2360. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2361. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2362. #endregion
  2363. #region 循环数据处理
  2364. List<AirInfo> airs = new List<AirInfo>();
  2365. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2366. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2367. for (int i = 0; i < FlightsCode.Length; i++)
  2368. {
  2369. AirInfo air = new AirInfo();
  2370. string[] tempstr = DayArray[i]
  2371. .Replace("\r\n", string.Empty)
  2372. .Replace("\\r\\n", string.Empty)
  2373. .TrimStart().TrimEnd()
  2374. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2375. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2376. string starCity = "";
  2377. if (star_Three != null)
  2378. {
  2379. string str2 = "--";
  2380. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2381. if (!string.IsNullOrEmpty(translateResult2))
  2382. {
  2383. str2 = translateResult2;
  2384. str2 = _airTicketResRep.Processing(str2);
  2385. }
  2386. starCity = str2;
  2387. }
  2388. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2389. string EndCity = "";
  2390. if (End_Three != null)
  2391. {
  2392. string str1 = "--";
  2393. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2394. if (!string.IsNullOrEmpty(translateResult1))
  2395. {
  2396. str1 = translateResult1;
  2397. str1 = _airTicketResRep.Processing(str1);
  2398. }
  2399. EndCity = str1;
  2400. }
  2401. air.Destination = starCity + "/" + EndCity;
  2402. air.Flight = FlightsCode[i];
  2403. string str = "--";
  2404. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2405. if (!string.IsNullOrEmpty(translateResult))
  2406. {
  2407. str = translateResult;
  2408. str = _airTicketResRep.Processing(str);
  2409. }
  2410. air.SeatingClass = str;
  2411. string dateTime = tempstr[2];
  2412. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2413. air.FlightDate = DateTemp;
  2414. air.DepartureTime = tempstr[5];
  2415. air.LandingTime = tempstr[6];
  2416. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2417. air.TicketStatus = "--";
  2418. air.Luggage = "--";
  2419. air.DepartureTerminal = "--";
  2420. air.LandingTerminal = "--";
  2421. airs.Add(air);
  2422. }
  2423. int row = 13;
  2424. for (int i = 0; i < airs.Count; i++)
  2425. {
  2426. if (airs.Count > 2)
  2427. {
  2428. for (int j = 0; j < airs.Count - 2; j++)
  2429. {
  2430. var CopyRow = table.Rows[12].Clone(true);
  2431. table.Rows.Add(CopyRow);
  2432. }
  2433. }
  2434. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2435. int index = 0;
  2436. foreach (PropertyInfo property in properties)
  2437. {
  2438. string value = property.GetValue(airs[i]).ToString();
  2439. Cell ishcel0 = table.Rows[row].Cells[index];
  2440. Paragraph p = new Paragraph(doc);
  2441. string s = value;
  2442. p.AppendChild(new Run(doc, s));
  2443. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2444. ishcel0.AppendChild(p);
  2445. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2446. //ishcel0.CellFormat.VerticalAlignment=
  2447. index++;
  2448. }
  2449. row++;
  2450. }
  2451. #endregion
  2452. Paragraph lastParagraph = new Paragraph(doc);
  2453. //第一个表格末尾加段落
  2454. table.ParentNode.InsertAfter(lastParagraph, table);
  2455. //复制第一个表格
  2456. Table cloneTable = (Table)table.Clone(true);
  2457. //在文档末尾段落后面加入复制的表格
  2458. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2459. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2460. {
  2461. int rownewsIndex = 13;
  2462. for (int i = 0; i < 2; i++)
  2463. {
  2464. var CopyRow = table.Rows[12].Clone(true);
  2465. table.Rows.RemoveAt(13);
  2466. table.Rows.Add(CopyRow);
  2467. rownewsIndex++;
  2468. }
  2469. }
  2470. else
  2471. {
  2472. table.Rows.RemoveAt(12);
  2473. }
  2474. cloneTable.Rows.RemoveAt(12);
  2475. }
  2476. if (_AirTicketReservations.Count != 0)
  2477. {
  2478. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2479. if (FlightsCode.Length != 0)
  2480. {
  2481. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2482. if (_AirCompany != null)
  2483. {
  2484. string str = "--";
  2485. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2486. if (!string.IsNullOrEmpty(translateResult))
  2487. {
  2488. str = translateResult;
  2489. str = _airTicketResRep.Processing(str);
  2490. }
  2491. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2492. }
  2493. else
  2494. {
  2495. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2496. }
  2497. }
  2498. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2499. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2500. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2501. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2502. string names = "";
  2503. foreach (string clientName in nameArray)
  2504. {
  2505. names += clientName + ",";
  2506. }
  2507. if (!string.IsNullOrWhiteSpace(names))
  2508. {
  2509. string str = "--";
  2510. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2511. if (!string.IsNullOrEmpty(translateResult))
  2512. {
  2513. str = translateResult;
  2514. str = _airTicketResRep.Processing(str);
  2515. }
  2516. table.Range.Bookmarks["ClientName"].Text = str;
  2517. }
  2518. else
  2519. {
  2520. table.Range.Bookmarks["ClientName"].Text = "--";
  2521. }
  2522. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2523. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2524. table.Range.Bookmarks["JointTicket"].Text = "--";
  2525. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2526. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2527. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2528. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2529. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2530. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2531. }
  2532. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2533. //保存合并后的文档
  2534. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2535. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2536. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2537. return Ok(JsonView(true, "成功!", rst));
  2538. }
  2539. }
  2540. }
  2541. catch (Exception ex)
  2542. {
  2543. return Ok(JsonView(false, "程序错误!"));
  2544. throw;
  2545. }
  2546. }
  2547. #endregion
  2548. #region 团组增减款项 --> 其他款项
  2549. /// <summary>
  2550. /// 团组增减款项下拉框绑定
  2551. /// </summary>
  2552. /// <param name="dto"></param>
  2553. /// <returns></returns>
  2554. [HttpPost]
  2555. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2556. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2557. {
  2558. #region 参数验证
  2559. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2560. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2561. #endregion
  2562. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2563. }
  2564. /// <summary>
  2565. /// 根据团组Id查询团组增减款项
  2566. /// </summary>
  2567. /// <param name="dto"></param>
  2568. /// <returns></returns>
  2569. [HttpPost]
  2570. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2571. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2572. {
  2573. #region 参数验证
  2574. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2575. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2576. #endregion
  2577. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2578. }
  2579. /// <summary>
  2580. /// 团组增减款项操作(Status:1.新增,2.修改)
  2581. /// </summary>
  2582. /// <param name="dto"></param>
  2583. /// <returns></returns>
  2584. [HttpPost]
  2585. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2586. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2587. {
  2588. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2589. if (groupData.Code != 200)
  2590. {
  2591. return Ok(JsonView(false, groupData.Msg));
  2592. }
  2593. #region 应用推送
  2594. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2595. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2596. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2597. #endregion
  2598. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2599. }
  2600. /// <summary>
  2601. /// 团组增减款项操作 删除
  2602. /// </summary>
  2603. /// <param name="dto"></param>
  2604. /// <returns></returns>
  2605. [HttpPost]
  2606. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2607. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2608. {
  2609. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2610. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2611. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2612. if (res.Code == 0)
  2613. {
  2614. return Ok(JsonView(true, "删除成功!"));
  2615. }
  2616. return Ok(JsonView(false, "删除失败!"));
  2617. }
  2618. /// <summary>
  2619. /// 根据团组增减款项Id查询
  2620. /// </summary>
  2621. /// <param name="dto"></param>
  2622. /// <returns></returns>
  2623. [HttpPost]
  2624. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2625. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2626. {
  2627. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2628. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2629. }
  2630. #endregion
  2631. #region 文件上传、删除
  2632. /// <summary>
  2633. /// region 文件上传 可以带参数
  2634. /// </summary>
  2635. /// <param name="file"></param>
  2636. /// <returns></returns>
  2637. [HttpPost]
  2638. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2639. public async Task<IActionResult> UploadProject(IFormFile file)
  2640. {
  2641. try
  2642. {
  2643. var TypeName = Request.Headers["TypeName"].ToString();
  2644. if (file != null)
  2645. {
  2646. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2647. //文件名称
  2648. string projectFileName = file.FileName;
  2649. //上传的文件的路径
  2650. string filePath = "";
  2651. if (TypeName == "A")//A代表团组增减款项
  2652. {
  2653. if (!Directory.Exists(fileDir))
  2654. {
  2655. Directory.CreateDirectory(fileDir);
  2656. }
  2657. //上传的文件的路径
  2658. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2659. }
  2660. else if (TypeName == "B")//B代表商邀相关文件
  2661. {
  2662. if (!Directory.Exists(fileDir))
  2663. {
  2664. Directory.CreateDirectory(fileDir);
  2665. }
  2666. //上传的文件的路径
  2667. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2668. }
  2669. using (FileStream fs = System.IO.File.Create(filePath))
  2670. {
  2671. file.CopyTo(fs);
  2672. fs.Flush();
  2673. }
  2674. return Ok(JsonView(true, "上传成功!", projectFileName));
  2675. }
  2676. else
  2677. {
  2678. return Ok(JsonView(false, "上传失败!"));
  2679. }
  2680. }
  2681. catch (Exception ex)
  2682. {
  2683. return Ok(JsonView(false, "程序错误!"));
  2684. throw;
  2685. }
  2686. }
  2687. /// <summary>
  2688. /// 删除指定文件
  2689. /// </summary>
  2690. /// <param name="dto"></param>
  2691. /// <returns></returns>
  2692. [HttpPost]
  2693. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2694. public async Task<IActionResult> DelFile(DelFileDto dto)
  2695. {
  2696. try
  2697. {
  2698. var TypeName = Request.Headers["TypeName"].ToString();
  2699. string filePath = "";
  2700. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2701. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2702. int id = 0;
  2703. if (TypeName == "A")
  2704. {
  2705. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2706. // 删除该文件
  2707. System.IO.File.Delete(filePath);
  2708. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2709. }
  2710. else if (TypeName == "B")
  2711. {
  2712. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2713. // 删除该文件
  2714. System.IO.File.Delete(filePath);
  2715. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2716. }
  2717. if (id != 0)
  2718. {
  2719. return Ok(JsonView(true, "成功!"));
  2720. }
  2721. else
  2722. {
  2723. return Ok(JsonView(false, "失败!"));
  2724. }
  2725. }
  2726. catch (Exception ex)
  2727. {
  2728. return Ok(JsonView(false, "程序错误!"));
  2729. throw;
  2730. }
  2731. }
  2732. #endregion
  2733. #region 商邀费用录入
  2734. /// <summary>
  2735. /// 根据团组Id查询商邀费用列表
  2736. /// </summary>
  2737. /// <param name="dto"></param>
  2738. /// <returns></returns>
  2739. [HttpPost]
  2740. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2741. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2742. {
  2743. try
  2744. {
  2745. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  2746. if (groupData.Code != 0)
  2747. {
  2748. return Ok(JsonView(false, groupData.Msg));
  2749. }
  2750. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2751. }
  2752. catch (Exception ex)
  2753. {
  2754. return Ok(JsonView(false, "程序错误!"));
  2755. throw;
  2756. }
  2757. }
  2758. //
  2759. /// <summary>
  2760. /// 商邀费用 Info Page 基础数据源
  2761. /// </summary>
  2762. /// <param name="dto"></param>
  2763. /// <returns></returns>
  2764. [HttpPost]
  2765. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2766. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  2767. {
  2768. try
  2769. {
  2770. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  2771. if (groupData.Code != 0)
  2772. {
  2773. return Ok(JsonView(false, groupData.Msg));
  2774. }
  2775. return Ok(JsonView(true, "操作成功", groupData.Data));
  2776. }
  2777. catch (Exception ex)
  2778. {
  2779. return Ok(JsonView(false, ex.Message));
  2780. throw;
  2781. }
  2782. }
  2783. /// <summary>
  2784. /// 根据商邀费用ID查询C表和商邀费用数据
  2785. /// </summary>
  2786. /// <param name="dto"></param>
  2787. /// <returns></returns>
  2788. [HttpPost]
  2789. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2790. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  2791. {
  2792. try
  2793. {
  2794. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  2795. if (groupData.Code != 0)
  2796. {
  2797. return Ok(JsonView(false, groupData.Msg));
  2798. }
  2799. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2800. }
  2801. catch (Exception ex)
  2802. {
  2803. return Ok(JsonView(false, ex.Message));
  2804. throw;
  2805. }
  2806. }
  2807. /// <summary>
  2808. /// 商邀费用录入操作(Status:1.新增,2.修改)
  2809. /// </summary>
  2810. /// <param name="dto"></param>
  2811. /// <returns></returns>
  2812. [HttpPost]
  2813. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2814. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  2815. {
  2816. try
  2817. {
  2818. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  2819. if (groupData.Code != 0)
  2820. {
  2821. return Ok(JsonView(false, groupData.Msg));
  2822. }
  2823. #region 应用推送
  2824. try
  2825. {
  2826. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2827. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2828. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2829. }
  2830. catch (Exception ex)
  2831. {
  2832. }
  2833. #endregion
  2834. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2835. }
  2836. catch (Exception ex)
  2837. {
  2838. return Ok(JsonView(false, "程序错误!"));
  2839. throw;
  2840. }
  2841. }
  2842. /// <summary>
  2843. /// 商邀删除
  2844. /// </summary>
  2845. /// <param name="dto"></param>
  2846. /// <returns></returns>
  2847. [HttpPost]
  2848. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2849. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  2850. {
  2851. try
  2852. {
  2853. _sqlSugar.BeginTran();
  2854. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  2855. .SetColumns(it => new Grp_InvitationOfficialActivities()
  2856. {
  2857. IsDel = 1,
  2858. DeleteUserId = dto.DeleteUserId,
  2859. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2860. })
  2861. .Where(it => it.Id == dto.Id)
  2862. .ExecuteCommand();
  2863. if (res1 > 0)
  2864. {
  2865. int _diId = 0;
  2866. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  2867. if (_ioaInfo != null)
  2868. {
  2869. _diId = _ioaInfo.DiId;
  2870. }
  2871. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  2872. .SetColumns(a => new Grp_CreditCardPayment()
  2873. {
  2874. IsDel = 1,
  2875. DeleteUserId = dto.DeleteUserId,
  2876. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2877. })
  2878. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  2879. .ExecuteCommand();
  2880. if (res2 > 0)
  2881. {
  2882. _sqlSugar.CommitTran();
  2883. return Ok(JsonView(true, "删除成功!"));
  2884. }
  2885. }
  2886. _sqlSugar.RollbackTran();
  2887. return Ok(JsonView(false, "删除失败"));
  2888. }
  2889. catch (Exception ex)
  2890. {
  2891. _sqlSugar.RollbackTran();
  2892. return Ok(JsonView(false, ex.Message));
  2893. }
  2894. }
  2895. #endregion
  2896. #region 团组英文资料
  2897. /// <summary>
  2898. /// 查询团组英文所有资料
  2899. /// </summary>
  2900. /// <param name="dto"></param>
  2901. /// <returns></returns>
  2902. [HttpPost]
  2903. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2904. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  2905. {
  2906. try
  2907. {
  2908. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  2909. if (groupData.Code != 0)
  2910. {
  2911. return Ok(JsonView(false, groupData.Msg));
  2912. }
  2913. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2914. }
  2915. catch (Exception ex)
  2916. {
  2917. return Ok(JsonView(false, "程序错误!"));
  2918. throw;
  2919. }
  2920. }
  2921. /// <summary>
  2922. /// 团组英文资料操作(Status:1.新增,2.修改)
  2923. /// </summary>
  2924. /// <param name="dto"></param>
  2925. /// <returns></returns>
  2926. [HttpPost]
  2927. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2928. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  2929. {
  2930. try
  2931. {
  2932. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  2933. if (groupData.Code != 0)
  2934. {
  2935. return Ok(JsonView(false, groupData.Msg));
  2936. }
  2937. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2938. }
  2939. catch (Exception ex)
  2940. {
  2941. return Ok(JsonView(false, "程序错误!"));
  2942. throw;
  2943. }
  2944. }
  2945. /// <summary>
  2946. /// 团组英文资料Id查询数据
  2947. /// </summary>
  2948. /// <param name="dto"></param>
  2949. /// <returns></returns>
  2950. [HttpPost]
  2951. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2952. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  2953. {
  2954. try
  2955. {
  2956. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  2957. if (_DelegationEnData != null)
  2958. {
  2959. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  2960. }
  2961. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  2962. }
  2963. catch (Exception ex)
  2964. {
  2965. return Ok(JsonView(false, "程序错误!"));
  2966. throw;
  2967. }
  2968. }
  2969. /// <summary>
  2970. /// 团组英文资料删除
  2971. /// </summary>
  2972. /// <param name="dto"></param>
  2973. /// <returns></returns>
  2974. [HttpPost]
  2975. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2976. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  2977. {
  2978. try
  2979. {
  2980. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  2981. if (!res)
  2982. {
  2983. return Ok(JsonView(false, "删除失败"));
  2984. }
  2985. return Ok(JsonView(true, "删除成功!"));
  2986. }
  2987. catch (Exception ex)
  2988. {
  2989. return Ok(JsonView(false, "程序错误!"));
  2990. throw;
  2991. }
  2992. }
  2993. #endregion
  2994. #region 导出邀请函
  2995. /// <summary>
  2996. /// 导出邀请函页面初始化
  2997. /// </summary>
  2998. /// <param name="dto"></param>
  2999. /// <returns></returns>
  3000. [HttpPost]
  3001. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3002. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3003. {
  3004. try
  3005. {
  3006. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3007. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3008. if (dto.DiId == 0)
  3009. {
  3010. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3011. }
  3012. else
  3013. {
  3014. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3015. }
  3016. return Ok(JsonView(true, "查询成功!", new
  3017. {
  3018. deleClient = crm_Deles,
  3019. delegations = grp_Delegations
  3020. }));
  3021. }
  3022. catch (Exception ex)
  3023. {
  3024. return Ok(JsonView(false, "程序错误!"));
  3025. throw;
  3026. }
  3027. }
  3028. /// <summary>
  3029. /// 导出邀请函
  3030. /// </summary>
  3031. /// <param name="dto"></param>
  3032. /// <returns></returns>
  3033. [HttpPost]
  3034. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3035. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3036. {
  3037. #region 参数验证
  3038. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3039. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3040. #endregion
  3041. try
  3042. {
  3043. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3044. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3045. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3046. From Grp_TourClientList tcl
  3047. Left Join
  3048. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3049. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3050. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3051. From Crm_DeleClient dc
  3052. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3053. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3054. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3055. Where dc.IsDel = 0) temp
  3056. On temp.DcId =tcl.ClientId
  3057. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3058. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3059. List<string> texts = new List<string>();
  3060. if (datas.Count != 0)
  3061. {
  3062. foreach (TourClientListDetailsView item in datas)
  3063. {
  3064. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3065. {
  3066. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3067. }
  3068. else
  3069. {
  3070. string name = item.LastName + item.FirstName;
  3071. texts.Add(name);
  3072. }
  3073. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3074. {
  3075. if (!transDic.ContainsKey(item.Job))
  3076. {
  3077. texts.Add(item.Job);
  3078. }
  3079. }
  3080. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3081. {
  3082. texts.Add(item.CompanyFullName);
  3083. }
  3084. }
  3085. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3086. if (transData.Count > 0)
  3087. {
  3088. foreach (TranslateResult item in transData)
  3089. {
  3090. if (!transDic.ContainsKey(item.Query))
  3091. {
  3092. transDic.Add(item.Query, item.Translation);
  3093. }
  3094. }
  3095. }
  3096. List<GuestList> list = new List<GuestList>();
  3097. foreach (TourClientListDetailsView dele in datas)
  3098. {
  3099. GuestList guestList = new GuestList();
  3100. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3101. {
  3102. guestList.Name = dele.Pinyin;
  3103. }
  3104. else
  3105. {
  3106. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3107. guestList.Name = Name;
  3108. }
  3109. if (dele.Sex == 0)
  3110. {
  3111. guestList.Sex = "Male";
  3112. }
  3113. else if (dele.Sex == 1)
  3114. {
  3115. guestList.Sex = "Female";
  3116. }
  3117. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3118. if (!string.IsNullOrEmpty(dele.Job))
  3119. {
  3120. guestList.Job = dele.Job;
  3121. }
  3122. list.Add(guestList);
  3123. }
  3124. //载入模板
  3125. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3126. DocumentBuilder builder = new DocumentBuilder(doc);
  3127. //获取word里所有表格
  3128. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3129. //获取所填表格的序数
  3130. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3131. var rowStart = tableOne.Rows[0]; //获取第1行
  3132. //循环赋值
  3133. for (int i = 0; i < list.Count; i++)
  3134. {
  3135. builder.MoveToCell(0, i + 1, 0, 0);
  3136. builder.Write(list[i].Name.ToString());
  3137. builder.MoveToCell(0, i + 1, 1, 0);
  3138. builder.Write(list[i].Sex.ToString());
  3139. builder.MoveToCell(0, i + 1, 2, 0);
  3140. builder.Write(list[i].DOB.ToString());
  3141. builder.MoveToCell(0, i + 1, 3, 0);
  3142. builder.Write(list[i].Job.ToString());
  3143. }
  3144. //删除多余行
  3145. while (tableOne.Rows.Count > list.Count + 1)
  3146. {
  3147. tableOne.Rows.RemoveAt(list.Count + 1);
  3148. }
  3149. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3150. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3151. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3152. doc.Save(filePath);
  3153. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3154. return Ok(JsonView(true, "操作成功!", Url));
  3155. }
  3156. else
  3157. {
  3158. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3159. }
  3160. }
  3161. catch (Exception ex)
  3162. {
  3163. return Ok(JsonView(false, ex.Message));
  3164. throw;
  3165. }
  3166. }
  3167. #endregion
  3168. #region 团组经理模块 出入境费用
  3169. ///// <summary>
  3170. ///// 团组模块 - 出入境费用
  3171. ///// </summary>
  3172. ///// <returns></returns>
  3173. //[HttpPost]
  3174. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3175. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3176. //{
  3177. // try
  3178. // {
  3179. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3180. // if (data.Code != 0)
  3181. // {
  3182. // return Ok(JsonView(false, data.Msg));
  3183. // }
  3184. // return Ok(JsonView(true, "查询成功!"));
  3185. // }
  3186. // catch (Exception ex)
  3187. // {
  3188. // return Ok(JsonView(false, ex.Message));
  3189. // throw;
  3190. // }
  3191. //}
  3192. /// <summary>
  3193. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3194. /// </summary>
  3195. /// <returns></returns>
  3196. [HttpPost]
  3197. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3198. public async Task<IActionResult> SetDayAndCostAreaChange()
  3199. {
  3200. try
  3201. {
  3202. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3203. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3204. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3205. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3206. foreach (var item in unite) //处理交集数据
  3207. {
  3208. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3209. }
  3210. foreach (var item in merge) //处理差集数据
  3211. {
  3212. int nationalTravelFeeId = 0;
  3213. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3214. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3215. else
  3216. {
  3217. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3218. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3219. }
  3220. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3221. }
  3222. //只更新dayAndCost 的 nationalTravelFeeId;
  3223. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3224. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3225. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3226. }
  3227. catch (Exception ex)
  3228. {
  3229. return Ok(JsonView(false, ex.Message));
  3230. throw;
  3231. }
  3232. }
  3233. /// <summary>
  3234. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3235. /// </summary>
  3236. /// <returns></returns>
  3237. [HttpPost]
  3238. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3239. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3240. {
  3241. try
  3242. {
  3243. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3244. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3245. //SetDataInfoView
  3246. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3247. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3248. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3249. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3250. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3251. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3252. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3253. //默认币种显示
  3254. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3255. {
  3256. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 0.0000M },
  3257. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 0.0000M },
  3258. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 0.0000M },
  3259. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0000M },
  3260. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.0000M },
  3261. };
  3262. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3263. if (_currencyRate.Count > 0)
  3264. {
  3265. foreach (var item in _currencyInfos)
  3266. {
  3267. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3268. if (rateInfo != null)
  3269. {
  3270. item.Rate = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3271. }
  3272. }
  3273. }
  3274. return Ok(JsonView(true, "查询成功!", new
  3275. {
  3276. GroupNameData = groupNameData.Data,
  3277. CurrencyData = _CurrencyData,
  3278. WordTypeData = _WordTypeData,
  3279. ExcelTypeData = _ExcelTypeData,
  3280. CurrencyInit = _currencyInfos
  3281. }));
  3282. }
  3283. catch (Exception ex)
  3284. {
  3285. return Ok(JsonView(false, ex.Message));
  3286. throw;
  3287. }
  3288. }
  3289. /// <summary>
  3290. /// 团组模块 - 出入境费用
  3291. /// 实时汇率 tips
  3292. /// 签证费用 tips
  3293. /// </summary>
  3294. /// <returns></returns>
  3295. [HttpPost]
  3296. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3297. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3298. {
  3299. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3300. //默认币种显示
  3301. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3302. {
  3303. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 0.0000M },
  3304. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 0.0000M },
  3305. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 0.0000M },
  3306. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0000M },
  3307. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.0000M },
  3308. };
  3309. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3310. List<dynamic> reteInfos = new List<dynamic>();
  3311. if (_currencyRate.Count > 0)
  3312. {
  3313. foreach (var item in _currencyInfos)
  3314. {
  3315. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3316. if (rateInfo != null)
  3317. {
  3318. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3319. reteInfos.Add(new
  3320. {
  3321. currCode = item.CurrencyCode,
  3322. currName = item.CurrencyName,
  3323. rate = item.Rate,
  3324. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3325. });
  3326. }
  3327. }
  3328. }
  3329. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3330. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3331. return Ok(JsonView(true, "查询成功!", new
  3332. {
  3333. //GroupNameData = groupNameData.Data,
  3334. visaData = visaData.Data,
  3335. airData = airData.Data,
  3336. reteInfos = reteInfos
  3337. }));
  3338. }
  3339. /// <summary>
  3340. /// 团组模块 - 出入境费用 - Info
  3341. /// </summary>
  3342. /// <returns></returns>
  3343. [HttpPost]
  3344. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3345. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3346. {
  3347. try
  3348. {
  3349. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3350. if (data.Code != 0)
  3351. {
  3352. return Ok(JsonView(false, data.Msg));
  3353. }
  3354. return Ok(JsonView(true, "查询成功!", data.Data));
  3355. }
  3356. catch (Exception ex)
  3357. {
  3358. return Ok(JsonView(false, ex.Message));
  3359. }
  3360. }
  3361. /// <summary>
  3362. /// 团组模块 - 出入境费用 - Add And Update
  3363. /// </summary>
  3364. /// <returns></returns>
  3365. [HttpPost]
  3366. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3367. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3368. {
  3369. try
  3370. {
  3371. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3372. if (data.Code != 0)
  3373. {
  3374. return Ok(JsonView(false, data.Msg));
  3375. }
  3376. return Ok(JsonView(true, data.Msg, data.Data));
  3377. }
  3378. catch (Exception ex)
  3379. {
  3380. return Ok(JsonView(false, ex.Message));
  3381. }
  3382. }
  3383. /// <summary>
  3384. /// 团组模块 - 出入境费用 - File downlaod
  3385. /// </summary>
  3386. /// <param name="dto"></param>
  3387. /// <returns></returns>
  3388. [HttpPost]
  3389. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3390. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3391. {
  3392. try
  3393. {
  3394. if (dto.DiId < 1)
  3395. {
  3396. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3397. }
  3398. if (dto.ExportType < 1)
  3399. {
  3400. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3401. }
  3402. if (dto.SubTypeId < 1)
  3403. {
  3404. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3405. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3406. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3407. 3 团组成员名单 1 团组成员名单"));
  3408. }
  3409. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3410. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3411. if (_EnterExitCosts == null)
  3412. {
  3413. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3414. }
  3415. //数据源
  3416. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3417. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3418. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3419. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3420. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3421. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3422. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3423. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3424. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3425. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3426. .Select((tcl, dc, cc) => new
  3427. {
  3428. Name = dc.LastName + dc.FirstName,
  3429. Sex = dc.Sex,
  3430. Birthday = dc.BirthDay,
  3431. Company = cc.CompanyFullName,
  3432. Job = dc.Job
  3433. })
  3434. .ToList();
  3435. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3436. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3437. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3438. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3439. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3440. if (dto.ExportType == 1) //明细表
  3441. {
  3442. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3443. {
  3444. //获取模板
  3445. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3446. //载入模板
  3447. Document doc = new Document(tempPath);
  3448. DocumentBuilder builder = new DocumentBuilder(doc);
  3449. //利用键值对存放数据
  3450. Dictionary<string, string> dic = new Dictionary<string, string>();
  3451. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3452. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3453. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3454. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3455. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3456. string row1_1 = "";
  3457. if (_EnterExitCosts.Visa > 0)
  3458. {
  3459. //insidePayTotal += _EnterExitCosts.Visa;
  3460. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3461. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3462. {
  3463. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3464. }
  3465. }
  3466. string row1_2 = "";
  3467. if (_EnterExitCosts.YiMiao > 0)
  3468. {
  3469. //insidePayTotal += _EnterExitCosts.YiMiao;
  3470. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3471. }
  3472. if (_EnterExitCosts.HeSuan > 0)
  3473. {
  3474. //insidePayTotal += _EnterExitCosts.HeSuan;
  3475. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  3476. }
  3477. if (_EnterExitCosts.Service > 0)
  3478. {
  3479. //insidePayTotal += _EnterExitCosts.Service;
  3480. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  3481. }
  3482. string row1_3 = "";
  3483. if (_EnterExitCosts.Safe > 0)
  3484. {
  3485. //insidePayTotal += _EnterExitCosts.Safe;
  3486. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  3487. }
  3488. if (_EnterExitCosts.Ticket > 0)
  3489. {
  3490. //insidePayTotal += _EnterExitCosts.Ticket;
  3491. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  3492. }
  3493. string row1 = "";
  3494. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  3495. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  3496. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  3497. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  3498. dic.Add("Row1Str", row1);
  3499. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  3500. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  3501. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3502. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  3503. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3504. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  3505. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  3506. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  3507. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  3508. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  3509. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  3510. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  3511. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  3512. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  3513. #region 填充word模板书签内容
  3514. foreach (var key in dic.Keys)
  3515. {
  3516. builder.MoveToBookmark(key);
  3517. builder.Write(dic[key]);
  3518. }
  3519. #endregion
  3520. #region 填充word表格内容
  3521. ////获读取指定表格方法二
  3522. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3523. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3524. for (int i = 0; i < dac1.Count; i++)
  3525. {
  3526. Grp_DayAndCost dac = dac1[i];
  3527. if (dac == null) continue;
  3528. builder.MoveToCell(0, i, 0, 0);
  3529. builder.Write("第" + dac.Days.ToString() + "晚:");
  3530. builder.MoveToCell(0, i, 1, 0);
  3531. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  3532. //builder.Write(dac.Place == null ? "" : dac.Place);
  3533. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3534. builder.MoveToCell(0, i, 2, 0);
  3535. builder.Write("费用标准:");
  3536. string curr = "";
  3537. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3538. if (currData != null)
  3539. {
  3540. curr = currData.Name;
  3541. }
  3542. builder.MoveToCell(0, i, 3, 0);
  3543. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3544. builder.MoveToCell(0, i, 4, 0);
  3545. builder.Write("费用小计:");
  3546. builder.MoveToCell(0, i, 5, 0);
  3547. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3548. }
  3549. //删除多余行
  3550. while (table1.Rows.Count > dac1.Count)
  3551. {
  3552. table1.Rows.RemoveAt(dac1.Count);
  3553. }
  3554. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  3555. for (int i = 0; i < dac2.Count; i++)
  3556. {
  3557. Grp_DayAndCost dac = dac2[i];
  3558. if (dac == null) continue;
  3559. builder.MoveToCell(1, i, 0, 0);
  3560. builder.Write("第" + dac.Days.ToString() + "天:");
  3561. builder.MoveToCell(1, i, 1, 0);
  3562. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3563. builder.MoveToCell(1, i, 2, 0);
  3564. builder.Write("费用标准:");
  3565. string curr = "";
  3566. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3567. if (currData != null)
  3568. {
  3569. curr = currData.Name;
  3570. }
  3571. builder.MoveToCell(1, i, 3, 0);
  3572. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3573. builder.MoveToCell(1, i, 4, 0);
  3574. builder.Write("费用小计:");
  3575. builder.MoveToCell(1, i, 5, 0);
  3576. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3577. }
  3578. //删除多余行
  3579. while (table2.Rows.Count > dac2.Count)
  3580. {
  3581. table2.Rows.RemoveAt(dac2.Count);
  3582. }
  3583. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  3584. for (int i = 0; i < dac3.Count; i++)
  3585. {
  3586. Grp_DayAndCost dac = dac3[i];
  3587. if (dac == null) continue;
  3588. builder.MoveToCell(2, i, 0, 0);
  3589. builder.Write("第" + dac.Days.ToString() + "天:");
  3590. builder.MoveToCell(2, i, 1, 0);
  3591. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3592. builder.MoveToCell(2, i, 2, 0);
  3593. builder.Write("费用标准:");
  3594. string curr = "";
  3595. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3596. if (currData != null)
  3597. {
  3598. curr = currData.Name;
  3599. }
  3600. builder.MoveToCell(2, i, 3, 0);
  3601. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3602. builder.MoveToCell(2, i, 4, 0);
  3603. builder.Write("费用小计:");
  3604. builder.MoveToCell(2, i, 5, 0);
  3605. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3606. }
  3607. //删除多余行
  3608. while (table3.Rows.Count > dac3.Count)
  3609. {
  3610. table3.Rows.RemoveAt(dac3.Count);
  3611. }
  3612. #endregion
  3613. //文件名
  3614. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  3615. AsposeHelper.removewatermark_v2180();
  3616. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3617. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3618. return Ok(JsonView(true, "成功", new { Url = url }));
  3619. }
  3620. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  3621. {
  3622. //获取模板
  3623. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  3624. //载入模板
  3625. Document doc = new Document(tempPath);
  3626. DocumentBuilder builder = new DocumentBuilder(doc);
  3627. Dictionary<string, string> dic = new Dictionary<string, string>();
  3628. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3629. {
  3630. List<string> list = new List<string>();
  3631. try
  3632. {
  3633. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3634. foreach (var item in spilitArr)
  3635. {
  3636. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3637. var depCode = spDotandEmpty[2].Substring(0, 3);
  3638. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3639. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  3640. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  3641. list.Add(depName);
  3642. list.Add(arrName);
  3643. }
  3644. list = list.Distinct().ToList();
  3645. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3646. }
  3647. catch (Exception)
  3648. {
  3649. dic.Add("ReturnCode", "行程录入不正确!");
  3650. }
  3651. }
  3652. else
  3653. {
  3654. dic.Add("ReturnCode", "未录入行程!");
  3655. }
  3656. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3657. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3658. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3659. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3660. {
  3661. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3662. dic.Add("Day", sp.Days.ToString());
  3663. }
  3664. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3665. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3666. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3667. //dic.Add("Names", Names);
  3668. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3669. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3670. decimal dac1totalPrice = 0.00M;
  3671. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  3672. foreach (var dac in dac1)
  3673. {
  3674. if (dac.SubTotal == 0.00M)
  3675. {
  3676. continue;
  3677. }
  3678. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  3679. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  3680. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  3681. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3682. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  3683. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3684. builder.Write(currency);//币种
  3685. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  3686. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3687. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  3688. builder.Write("");//人数
  3689. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  3690. builder.Write("");//天数
  3691. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  3692. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3693. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  3694. decimal rate = 0.00M;
  3695. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3696. builder.Write(rate.ToString("#0.0000"));//汇率
  3697. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  3698. decimal rbmPrice = dac.SubTotal;
  3699. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3700. accommodationStartIndex++;
  3701. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3702. }
  3703. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  3704. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  3705. {
  3706. table1.Rows.RemoveAt(i - 1);
  3707. foodandotherStartIndex--;
  3708. }
  3709. if (dac2.Count == dac3.Count)//国家 币种 金额
  3710. {
  3711. for (int i = 0; i < dac2.Count; i++)
  3712. {
  3713. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  3714. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  3715. }
  3716. }
  3717. decimal dac2totalPrice = 0.00M;
  3718. foreach (var dac in dac2)
  3719. {
  3720. if (dac.SubTotal == 0)
  3721. {
  3722. continue;
  3723. }
  3724. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  3725. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3726. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  3727. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3728. builder.Write(currency);//币种
  3729. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  3730. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3731. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  3732. builder.Write("");//人数
  3733. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  3734. builder.Write("");//天数
  3735. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  3736. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3737. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  3738. decimal rate = 0.00M;
  3739. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3740. builder.Write(rate.ToString("#0.0000"));//汇率
  3741. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  3742. decimal rbmPrice = dac.SubTotal;
  3743. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3744. foodandotherStartIndex++;
  3745. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3746. }
  3747. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  3748. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  3749. {
  3750. table1.Rows.RemoveAt(i - 1);
  3751. }
  3752. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3753. string otherFeeStr = "";
  3754. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  3755. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  3756. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  3757. if (otherFeeStr.Length > 0)
  3758. {
  3759. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  3760. otherFeeStr = $"({otherFeeStr})";
  3761. dic.Add("OtherFeeStr", otherFeeStr);
  3762. }
  3763. //总计
  3764. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  3765. //国际旅费
  3766. string outsideJJ = "";
  3767. string allPriceJJ = "";
  3768. if (_EnterExitCosts.SumJJC == 1)
  3769. {
  3770. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3771. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  3772. }
  3773. string outsideGW = "";
  3774. string allPriceGW = "";
  3775. if (_EnterExitCosts.SumGWC == 1)
  3776. {
  3777. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  3778. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  3779. }
  3780. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  3781. {
  3782. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  3783. dic.Add("InTravelPrice", InTravelPriceStr);
  3784. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  3785. dic.Add("FinalSumPrice", FinalSumPriceStr);
  3786. }
  3787. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  3788. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  3789. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  3790. foreach (var key in dic.Keys)
  3791. {
  3792. builder.MoveToBookmark(key);
  3793. builder.Write(dic[key]);
  3794. }
  3795. //模板文件名
  3796. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  3797. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3798. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3799. return Ok(JsonView(true, "成功", new { Url = url }));
  3800. }
  3801. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  3802. {
  3803. //获取模板
  3804. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  3805. //载入模板
  3806. WorkbookDesigner designer = new WorkbookDesigner();
  3807. designer.Workbook = new Workbook(tempPath);
  3808. Dictionary<string, string> dic = new Dictionary<string, string>();
  3809. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3810. {
  3811. List<string> list = new List<string>();
  3812. try
  3813. {
  3814. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3815. foreach (var item in spilitArr)
  3816. {
  3817. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3818. var depCode = spDotandEmpty[2].Substring(0, 3);
  3819. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3820. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  3821. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  3822. list.Add(depName);
  3823. list.Add(arrName);
  3824. }
  3825. list = list.Distinct().ToList();
  3826. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3827. }
  3828. catch (Exception)
  3829. {
  3830. dic.Add("ReturnCode", "行程录入不正确!");
  3831. }
  3832. }
  3833. else
  3834. {
  3835. dic.Add("ReturnCode", "未录入行程!");
  3836. }
  3837. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3838. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3839. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3840. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3841. {
  3842. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3843. dic.Add("Day", sp.Days.ToString());
  3844. }
  3845. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3846. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3847. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3848. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  3849. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  3850. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  3851. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  3852. designer.SetDataSource("Name", Names);
  3853. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  3854. designer.SetDataSource("Day", dic["Day"] + "天");
  3855. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  3856. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  3857. int startIndex = 10;
  3858. const int startIndexcopy = 10;
  3859. if (dac2.Count == dac3.Count)//国家 币种 金额
  3860. {
  3861. for (int i = 0; i < dac2.Count; i++)
  3862. {
  3863. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  3864. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  3865. }
  3866. }
  3867. DataTable dtdac1 = new DataTable();
  3868. List<string> place = new List<string>();
  3869. dtdac1.Columns.AddRange(new DataColumn[] {
  3870. new DataColumn(){ ColumnName = "city"},
  3871. new DataColumn(){ ColumnName = "curr"},
  3872. new DataColumn(){ ColumnName = "criterion"},
  3873. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  3874. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  3875. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  3876. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  3877. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  3878. });
  3879. DataTable dtdac2 = new DataTable();
  3880. dtdac2.Columns.AddRange(new DataColumn[] {
  3881. new DataColumn(){ ColumnName = "city"},
  3882. new DataColumn(){ ColumnName = "curr"},
  3883. new DataColumn(){ ColumnName = "criterion"},
  3884. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  3885. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  3886. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  3887. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  3888. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  3889. });
  3890. dtdac1.TableName = "tb1";
  3891. dtdac2.TableName = "tb2";
  3892. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  3893. foreach (var item in dac1)
  3894. {
  3895. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  3896. if (place.Contains(item.Place))
  3897. {
  3898. continue;
  3899. }
  3900. DataRow row = dtdac1.NewRow();
  3901. row["city"] = item.Place;
  3902. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  3903. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  3904. row["curr"] = currency;
  3905. row["rate"] = rate.ToString("#0.0000");
  3906. row["criterion"] = item.Cost.ToString("#0.00");
  3907. row["number"] = 1;
  3908. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  3909. //row["costRMB"] = rbmPrice;
  3910. dtdac1.Rows.Add(row);
  3911. place.Add(item.Place);
  3912. }
  3913. place = new List<string>();
  3914. foreach (var item in dac2)
  3915. {
  3916. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  3917. if (place.Contains(item.Place))
  3918. {
  3919. continue;
  3920. }
  3921. DataRow row = dtdac2.NewRow();
  3922. row["city"] = item.Place;
  3923. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  3924. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  3925. row["curr"] = currency;
  3926. row["rate"] = rate.ToString("#0.0000");
  3927. row["criterion"] = item.Cost.ToString("#0.00");
  3928. row["number"] = 1;
  3929. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  3930. //row["cost"] = item.SubTotal;
  3931. //row["costRMB"] = rbmPrice;
  3932. dtdac2.Rows.Add(row);
  3933. place.Add(item.Place);
  3934. //dac2totalPrice += rbmPrice;
  3935. }
  3936. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  3937. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  3938. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  3939. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  3940. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  3941. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  3942. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  3943. string cellStr = $" 5.其他费用(";
  3944. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  3945. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  3946. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  3947. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  3948. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  3949. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  3950. if (cellStr.Length > 8)
  3951. {
  3952. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  3953. }
  3954. cellStr += ")";
  3955. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  3956. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  3957. decimal pxFee = dac4.Sum(it => it.Cost);
  3958. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  3959. string celllastStr1 = "";
  3960. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  3961. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  3962. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  3963. celllastStr1 += $",国际旅费 元";
  3964. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  3965. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  3966. designer.SetDataSource("cell4Str", cell4Str);
  3967. designer.SetDataSource("cellStr", cellStr);
  3968. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  3969. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  3970. designer.SetDataSource("celllastStr", celllastStr);
  3971. Workbook wb = designer.Workbook;
  3972. var sheet = wb.Worksheets[0];
  3973. //绑定datatable数据集
  3974. designer.SetDataSource(dtdac1);
  3975. designer.SetDataSource(dtdac2);
  3976. designer.Process();
  3977. var rowStart = dtdac1.Rows.Count;
  3978. while (rowStart > 0)
  3979. {
  3980. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  3981. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  3982. startIndex++;
  3983. rowStart--;
  3984. }
  3985. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  3986. startIndex += 1; //总计行
  3987. rowStart = dtdac2.Rows.Count;
  3988. while (rowStart > 0)
  3989. {
  3990. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  3991. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  3992. startIndex++;
  3993. rowStart--;
  3994. }
  3995. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  3996. wb.CalculateFormula(true);
  3997. //模板文件名
  3998. string strFileName = $"四川省商务厅出国经费财政先行审核表.xls";
  3999. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4000. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4001. return Ok(JsonView(true, "成功", new { Url = url }));
  4002. }
  4003. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4004. {
  4005. //获取模板
  4006. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4007. //载入模板
  4008. Document doc = new Document(tempPath);
  4009. DocumentBuilder builder = new DocumentBuilder(doc);
  4010. Dictionary<string, string> dic = new Dictionary<string, string>();
  4011. dic.Add("GroupName", _DelegationInfo.TeamName);
  4012. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4013. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4014. string missionLeaderJob = "";//负责人job
  4015. int groupNumber = 0; //团人数
  4016. if (DeleClientList.Count > 0)
  4017. {
  4018. missionLeader = DeleClientList[0]?.Name ?? "";
  4019. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4020. }
  4021. dic.Add("MissionLeader", missionLeader); //团负责人
  4022. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4023. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4024. #region MyRegion
  4025. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4026. //{
  4027. // List<string> list = new List<string>();
  4028. // try
  4029. // {
  4030. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4031. // foreach (var item in spilitArr)
  4032. // {
  4033. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4034. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4035. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4036. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4037. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4038. // list.Add(depName);
  4039. // list.Add(arrName);
  4040. // }
  4041. // list = list.Distinct().ToList();
  4042. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4043. // }
  4044. // catch (Exception)
  4045. // {
  4046. // dic.Add("ReturnCode", "行程录入不正确!");
  4047. // }
  4048. //}
  4049. //else
  4050. //{
  4051. // dic.Add("ReturnCode", "未录入行程!");
  4052. //}
  4053. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4054. dic.Add("ReturnCode", string.Join("、", countrys));
  4055. #endregion
  4056. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4057. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4058. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4059. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4060. //{
  4061. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4062. // dic.Add("Day", sp.Days.ToString());
  4063. //}
  4064. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4065. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4066. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4067. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4068. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4069. //培训人员名单
  4070. int cultivateRowIndex = 7;
  4071. foreach (var item in DeleClientList)
  4072. {
  4073. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4074. builder.Write(item.Name);
  4075. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4076. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4077. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4078. string birthDay = "";
  4079. if (item.Birthday != null)
  4080. {
  4081. DateTime dt = Convert.ToDateTime(item.Birthday);
  4082. birthDay = $"{dt.Year}.{dt.Month}";
  4083. }
  4084. builder.Write(birthDay);
  4085. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4086. builder.Write(item.Company);
  4087. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4088. builder.Write(item.Job);
  4089. cultivateRowIndex++;
  4090. }
  4091. //删除多余行
  4092. //cultivateRowIndex -= 2;
  4093. int delRows = 10 + 7 - cultivateRowIndex;
  4094. if (delRows > 0)
  4095. {
  4096. for (int i = 0; i < delRows; i++)
  4097. {
  4098. table1.Rows.RemoveAt(cultivateRowIndex);
  4099. //cultivateRowIndex++;
  4100. }
  4101. }
  4102. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4103. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4104. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4105. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4106. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4107. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4108. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4109. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4110. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4111. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4112. //其他费用
  4113. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4114. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4115. //其他费用合计
  4116. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4117. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4118. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4119. //公务舱合计
  4120. //国际旅费
  4121. string outsideJJ = "";
  4122. string allPriceJJ = "";
  4123. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4124. {
  4125. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4126. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4127. }
  4128. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4129. {
  4130. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4131. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4132. }
  4133. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4134. {
  4135. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4136. dic.Add("AirFeeTotal", airFeeTotalStr);
  4137. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4138. dic.Add("FeeTotal", feeTotalStr);
  4139. }
  4140. foreach (var key in dic.Keys)
  4141. {
  4142. builder.MoveToBookmark(key);
  4143. builder.Write(dic[key]);
  4144. }
  4145. //模板文件名
  4146. string strFileName = $"{_DelegationInfo.TeamName}成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4147. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4148. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4149. return Ok(JsonView(true, "成功", new { Url = url }));
  4150. }
  4151. }
  4152. else if (dto.ExportType == 2) //表格
  4153. {
  4154. //利用键值对存放数据
  4155. Dictionary<string, string> dic = new Dictionary<string, string>();
  4156. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4157. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4158. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4159. dic.Add("Day", sp.Days.ToString());
  4160. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4161. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4162. {
  4163. //获取模板
  4164. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4165. //载入模板
  4166. Document doc = new Document(tempPath);
  4167. DocumentBuilder builder = new DocumentBuilder(doc);
  4168. dic.Add("TeamName", _DelegationInfo.TeamName);
  4169. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4170. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4171. string missionLeaderName = "",
  4172. missionLeaderJob = "";
  4173. if (DeleClientList.Count > 0)
  4174. {
  4175. missionLeaderName = DeleClientList[0].Name;
  4176. missionLeaderJob = DeleClientList[0].Job;
  4177. }
  4178. dic.Add("MissionLeaderName", missionLeaderName);
  4179. dic.Add("MissionLeaderJob", missionLeaderJob);
  4180. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4181. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4182. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4183. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4184. int rowCount = 10;//总人数行
  4185. int startRowIndex = 7; //起始行
  4186. for (int i = 0; i < DeleClientList.Count; i++)
  4187. {
  4188. builder.MoveToCell(0, startRowIndex, 0, 0);
  4189. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4190. builder.MoveToCell(0, startRowIndex, 1, 0);
  4191. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4192. builder.Write(sex);//性别
  4193. builder.MoveToCell(0, startRowIndex, 2, 0);
  4194. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4195. builder.MoveToCell(0, startRowIndex, 3, 0);
  4196. builder.Write(DeleClientList[i].Company);//工作单位
  4197. builder.MoveToCell(0, startRowIndex, 4, 0);
  4198. builder.Write(DeleClientList[i].Job);//职务及级别
  4199. builder.MoveToCell(0, startRowIndex, 5, 0);
  4200. builder.Write("");//人员属性
  4201. builder.MoveToCell(0, startRowIndex, 6, 0);
  4202. builder.Write("");//上次出国时间
  4203. startRowIndex++;
  4204. }
  4205. int nullRow = rowCount - DeleClientList.Count;//空行
  4206. for (int i = 0; i < nullRow; i++)
  4207. {
  4208. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4209. }
  4210. foreach (var key in dic.Keys)
  4211. {
  4212. builder.MoveToBookmark(key);
  4213. builder.Write(dic[key]);
  4214. }
  4215. //模板文件名
  4216. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4217. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4218. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4219. return Ok(JsonView(true, "成功", new { Url = url }));
  4220. }
  4221. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4222. {
  4223. //获取模板
  4224. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4225. //载入模板
  4226. Document doc = new Document(tempPath);
  4227. DocumentBuilder builder = new DocumentBuilder(doc);
  4228. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4229. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4230. dic.Add("Names", Names);
  4231. int accommodationRows = 12, foodandotherRows = 12;
  4232. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4233. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4234. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4235. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4236. int accommodationStartIndex = 6;
  4237. decimal dac1totalPrice = 0.00M;
  4238. foreach (var dac in dac1)
  4239. {
  4240. if (dac.SubTotal == 0)
  4241. {
  4242. continue;
  4243. }
  4244. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4245. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4246. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4247. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4248. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4249. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4250. builder.Write(currency);//币种
  4251. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4252. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4253. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4254. builder.Write("");//人数
  4255. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4256. builder.Write("");//天数
  4257. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4258. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4259. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4260. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4261. builder.Write(rate.ToString("#0.0000"));//汇率
  4262. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4263. decimal rbmPrice = rate * dac.SubTotal;
  4264. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4265. accommodationStartIndex++;
  4266. dac1totalPrice += rbmPrice;
  4267. }
  4268. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4269. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4270. builder.Write("小计");
  4271. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4272. builder.Write(dac1totalPrice.ToString("#0.00"));
  4273. accommodationStartIndex++;
  4274. int nullRow = accommodationRows - dac1.Count;
  4275. //删除空行
  4276. //if (nullRow > 0)
  4277. //{
  4278. // int rowIndex = accommodationStartIndex;
  4279. // for (int i = 0; i < nullRow; i++)
  4280. // {
  4281. // Row row = table1.Rows[rowIndex];
  4282. // row.Remove();
  4283. // rowIndex++;
  4284. // }
  4285. //}
  4286. if (dac2.Count == dac3.Count)//国家 币种 金额
  4287. {
  4288. for (int i = 0; i < dac2.Count; i++)
  4289. {
  4290. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4291. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4292. }
  4293. }
  4294. int foodandotherStartIndex = 19;//
  4295. decimal dac2totalPrice = 0.00M;
  4296. foreach (var dac in dac2)
  4297. {
  4298. if (dac.SubTotal == 0)
  4299. {
  4300. continue;
  4301. }
  4302. //foodandotherStartIndex = 12;
  4303. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4304. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4305. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4306. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4307. builder.Write(currency);//币种
  4308. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4309. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4310. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4311. builder.Write("");//人数
  4312. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4313. builder.Write("");//天数
  4314. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4315. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4316. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4317. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4318. builder.Write(rate.ToString("#0.0000"));//汇率
  4319. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4320. decimal rbmPrice = rate * dac.SubTotal;
  4321. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4322. foodandotherStartIndex++;
  4323. dac2totalPrice += rbmPrice;
  4324. }
  4325. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4326. //删除空行
  4327. if (dac2.Count < foodandotherRows)
  4328. {
  4329. //int nullRow = accommodationRows - dac2.Count;
  4330. //while (table2.Rows.Count > dac2.Count)
  4331. //{
  4332. // table2.Rows.RemoveAt(dac2.Count);
  4333. //}
  4334. }
  4335. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4336. string otherFeeStr = "";
  4337. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4338. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4339. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4340. if (otherFeeStr.Length > 0)
  4341. {
  4342. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4343. otherFeeStr = $"({otherFeeStr})";
  4344. dic.Add("OtherFeeStr", otherFeeStr);
  4345. }
  4346. foreach (var key in dic.Keys)
  4347. {
  4348. builder.MoveToBookmark(key);
  4349. builder.Write(dic[key]);
  4350. }
  4351. //模板文件名
  4352. string strFileName = $"省级单位出(境)经费报销单.docx";
  4353. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4354. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4355. return Ok(JsonView(true, "成功", new { Url = url }));
  4356. }
  4357. }
  4358. else if (dto.ExportType == 3)
  4359. {
  4360. if (dto.SubTypeId == 1) //团组成员名单
  4361. {
  4362. if (DeleClientList.Count < 1)
  4363. {
  4364. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4365. }
  4366. //获取模板
  4367. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4368. //载入模板
  4369. Document doc = new Document(tempPath);
  4370. DocumentBuilder builder = new DocumentBuilder(doc);
  4371. //获取word里所有表格
  4372. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4373. //获取所填表格的序数
  4374. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4375. var rowStart = tableOne.Rows[0]; //获取第1行
  4376. //循环赋值
  4377. for (int i = 0; i < DeleClientList.Count; i++)
  4378. {
  4379. builder.MoveToCell(0, i + 1, 0, 0);
  4380. builder.Write(DeleClientList[i].Name);
  4381. builder.MoveToCell(0, i + 1, 1, 0);
  4382. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4383. builder.Write(sex);
  4384. builder.MoveToCell(0, i + 1, 2, 0);
  4385. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4386. builder.MoveToCell(0, i + 1, 3, 0);
  4387. builder.Write(DeleClientList[i].Company);
  4388. builder.MoveToCell(0, i + 1, 4, 0);
  4389. builder.Write(DeleClientList[i].Job);
  4390. }
  4391. //删除多余行
  4392. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4393. {
  4394. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4395. }
  4396. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4397. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4398. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4399. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4400. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4401. return Ok(JsonView(true, "成功", new { Url = url }));
  4402. }
  4403. }
  4404. return Ok(JsonView(false, "操作失败!"));
  4405. }
  4406. catch (Exception ex)
  4407. {
  4408. return Ok(JsonView(false, ex.Message));
  4409. }
  4410. }
  4411. /// <summary>
  4412. /// 获取三公费用标准city
  4413. /// </summary>
  4414. /// <param name="placeData"></param>
  4415. /// <param name="nationalTravelFeeId"></param>
  4416. /// <returns></returns>
  4417. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4418. {
  4419. string _city = string.Empty;
  4420. if (placeData.Count < 1) return _city;
  4421. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4422. if (data == null) return _city;
  4423. string country = data.Country;
  4424. string city = data.City;
  4425. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4426. else _city = city;
  4427. return _city;
  4428. }
  4429. /// <summary>
  4430. /// 团组模块 - 出入境费用 - 明细表导出
  4431. /// </summary>
  4432. /// <returns></returns>
  4433. [HttpPost]
  4434. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4435. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4436. {
  4437. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4438. if (data.Code != 0)
  4439. {
  4440. return Ok(JsonView(false, data.Msg));
  4441. }
  4442. return Ok(JsonView(true, data.Msg, data.Data));
  4443. }
  4444. /// <summary>
  4445. /// 团组模块 - 出入境费用 - 一键清空
  4446. /// </summary>
  4447. /// <returns></returns>
  4448. [HttpPost]
  4449. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4450. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4451. {
  4452. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4453. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4454. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4455. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4456. if (_view.Code == 0)
  4457. {
  4458. return Ok(JsonView(true, "操作成功"));
  4459. }
  4460. return Ok(JsonView(false, "操作失败"));
  4461. }
  4462. /// <summary>
  4463. /// 团组模块 - 出入境费用 - 子项删除
  4464. /// </summary>
  4465. /// <returns></returns>
  4466. [HttpPost]
  4467. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4468. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4469. {
  4470. try
  4471. {
  4472. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4473. if (data.Code != 0)
  4474. {
  4475. return Ok(JsonView(false, data.Msg));
  4476. }
  4477. return Ok(JsonView(true, "操作成功!", data.Data));
  4478. }
  4479. catch (Exception ex)
  4480. {
  4481. return Ok(JsonView(false, ex.Message));
  4482. }
  4483. }
  4484. /// <summary>
  4485. /// 团组模块 - 出入境国家费用标准 List
  4486. /// </summary>
  4487. /// <returns></returns>
  4488. [HttpPost]
  4489. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4490. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  4491. {
  4492. try
  4493. {
  4494. Stopwatch sw = new Stopwatch();
  4495. sw.Start();
  4496. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  4497. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4498. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4499. Where gntf.Isdel = 0");
  4500. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  4501. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  4502. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  4503. //foreach (var item in nationalTravel)
  4504. //{
  4505. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  4506. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  4507. // if (otherData != null)
  4508. // {
  4509. // cityData.Remove(otherData);
  4510. // cityData.Add(otherData);
  4511. // }
  4512. // nationalTravelFeeData1.Add(new
  4513. // {
  4514. // Country = item.Country,
  4515. // CityData = cityData
  4516. // });
  4517. //}
  4518. sw.Stop();
  4519. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  4520. }
  4521. catch (Exception ex)
  4522. {
  4523. return Ok(JsonView(false, ex.Message));
  4524. throw;
  4525. }
  4526. }
  4527. /// <summary>
  4528. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  4529. /// </summary>
  4530. /// <returns></returns>
  4531. [HttpPost]
  4532. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4533. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  4534. {
  4535. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  4536. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  4537. List<string> countryData = new List<string>();
  4538. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  4539. countryData = countryData.Distinct().ToList();
  4540. List<dynamic> dataSource = new List<dynamic>();
  4541. foreach (var item in countryData)
  4542. {
  4543. List<string> cityData1 = new List<string>();
  4544. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  4545. var countryData2 = new
  4546. {
  4547. CountryName = item,
  4548. CityData = cityData1
  4549. };
  4550. dataSource.Add(countryData2);
  4551. }
  4552. return Ok(JsonView(true, "查询成功!", dataSource));
  4553. }
  4554. /// <summary>
  4555. /// 团组模块 - 出入境国家费用标准 Page List
  4556. /// </summary>
  4557. /// <returns></returns>
  4558. [HttpPost]
  4559. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4560. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  4561. {
  4562. int portId = dto.PortType;
  4563. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4564. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  4565. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  4566. string whereSql = string.Empty;
  4567. if (!string.IsNullOrEmpty(dto.Country))
  4568. {
  4569. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  4570. }
  4571. if (!string.IsNullOrEmpty(dto.City))
  4572. {
  4573. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  4574. }
  4575. string pageSql = string.Format(@"Select * From (
  4576. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  4577. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  4578. From Grp_NationalTravelFee gntf
  4579. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4580. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4581. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  4582. RefAsync<int> total = 0;
  4583. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  4584. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  4585. }
  4586. /// <summary>
  4587. /// 团组模块 - 出入境国家费用标准 根据城市查询
  4588. /// </summary>
  4589. /// <returns></returns>
  4590. [HttpPost]
  4591. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4592. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  4593. {
  4594. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  4595. int portId = dto.PortType;
  4596. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4597. string whereSql = string.Empty;
  4598. if (!string.IsNullOrEmpty(dto.Country))
  4599. {
  4600. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  4601. }
  4602. if (!string.IsNullOrEmpty(dto.City))
  4603. {
  4604. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  4605. }
  4606. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  4607. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  4608. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  4609. From Grp_NationalTravelFee gntf
  4610. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4611. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4612. Where gntf.Isdel = 0 {0} ", whereSql);
  4613. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  4614. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  4615. }
  4616. /// <summary>
  4617. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  4618. /// </summary>
  4619. /// <returns></returns>
  4620. [HttpPost]
  4621. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4622. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  4623. {
  4624. try
  4625. {
  4626. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  4627. if (data.Code != 0)
  4628. {
  4629. return Ok(JsonView(false, data.Msg));
  4630. }
  4631. return Ok(JsonView(true, "操作成功!", data.Data));
  4632. }
  4633. catch (Exception ex)
  4634. {
  4635. return Ok(JsonView(false, ex.Message));
  4636. }
  4637. }
  4638. /// <summary>
  4639. /// 团组模块 - 出入境国家费用标准 - Del
  4640. /// </summary>
  4641. /// <returns></returns>
  4642. [HttpPost]
  4643. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4644. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  4645. {
  4646. try
  4647. {
  4648. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  4649. {
  4650. Id = dto.Id,
  4651. DeleteUserId = dto.DeleteUserId,
  4652. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  4653. IsDel = 1
  4654. };
  4655. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  4656. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  4657. .WhereColumns(it => new { it.Id })
  4658. .ExecuteCommandAsync();
  4659. if (delStatus <= 0)
  4660. {
  4661. return Ok(JsonView(false, "删除失败!"));
  4662. }
  4663. return Ok(JsonView(true, "操作成功!"));
  4664. }
  4665. catch (Exception ex)
  4666. {
  4667. return Ok(JsonView(false, ex.Message));
  4668. }
  4669. }
  4670. #endregion
  4671. #region 签证费用录入
  4672. /// <summary>
  4673. /// 根据diid查询签证费用列表
  4674. /// </summary>
  4675. /// <param name="dto"></param>
  4676. /// <returns></returns>
  4677. [HttpPost]
  4678. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4679. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  4680. {
  4681. try
  4682. {
  4683. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  4684. if (groupData.Code != 0)
  4685. {
  4686. return Ok(JsonView(false, groupData.Msg));
  4687. }
  4688. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4689. }
  4690. catch (Exception ex)
  4691. {
  4692. return Ok(JsonView(false, ex.Message));
  4693. }
  4694. }
  4695. /// <summary>
  4696. /// 根据签证费用Id查询单条数据及c表数据
  4697. /// </summary>
  4698. /// <param name="dto"></param>
  4699. /// <returns></returns>
  4700. [HttpPost]
  4701. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4702. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  4703. {
  4704. try
  4705. {
  4706. Result groupData = await _visaPriceRep.PostVisaById(dto);
  4707. if (groupData.Code != 0)
  4708. {
  4709. return Ok(JsonView(false, groupData.Msg));
  4710. }
  4711. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4712. }
  4713. catch (Exception ex)
  4714. {
  4715. return Ok(JsonView(false, ex.Message));
  4716. }
  4717. }
  4718. /// <summary>
  4719. /// 签证费用删除
  4720. /// </summary>
  4721. /// <param name="dto"></param>
  4722. /// <returns></returns>
  4723. [HttpPost]
  4724. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4725. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  4726. {
  4727. _sqlSugar.BeginTran();
  4728. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  4729. if (!res)
  4730. {
  4731. _sqlSugar.RollbackTran();
  4732. return Ok(JsonView(false, "删除失败"));
  4733. }
  4734. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  4735. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  4736. .SetColumns(a => new Grp_CreditCardPayment()
  4737. {
  4738. IsDel = 1,
  4739. DeleteUserId = dto.DeleteUserId,
  4740. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4741. }).ExecuteCommand();
  4742. if (resSub < 1)
  4743. {
  4744. _sqlSugar.RollbackTran();
  4745. return Ok(JsonView(false, "删除失败"));
  4746. }
  4747. _sqlSugar.CommitTran();
  4748. return Ok(JsonView(true, "删除成功!"));
  4749. }
  4750. /// <summary>
  4751. /// 签证费用录入下拉框初始化
  4752. /// </summary>
  4753. /// <returns></returns>
  4754. [HttpPost]
  4755. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4756. public async Task<IActionResult> VisaPriceAddSelect()
  4757. {
  4758. try
  4759. {
  4760. //支付方式
  4761. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  4762. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  4763. //币种
  4764. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  4765. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  4766. //乘客类型
  4767. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  4768. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  4769. //卡类型
  4770. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  4771. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  4772. var data = new
  4773. {
  4774. Payment = _Payment,
  4775. CurrencyList = _CurrencyList,
  4776. PassengerType = _PassengerType,
  4777. BankCard = _BankCard
  4778. };
  4779. return Ok(JsonView(true, "查询成功!", data));
  4780. }
  4781. catch (Exception ex)
  4782. {
  4783. return Ok(JsonView(false, "程序错误!"));
  4784. throw;
  4785. }
  4786. }
  4787. /// <summary>
  4788. /// 签证费用录入操作(Status:1.新增,2.修改)
  4789. /// </summary>
  4790. /// <param name="dto"></param>
  4791. /// <returns></returns>
  4792. [HttpPost]
  4793. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4794. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  4795. {
  4796. try
  4797. {
  4798. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  4799. if (groupData.Code != 0)
  4800. {
  4801. return Ok(JsonView(false, groupData.Msg));
  4802. }
  4803. #region 应用推送
  4804. try
  4805. {
  4806. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  4807. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  4808. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  4809. }
  4810. catch (Exception ex)
  4811. {
  4812. }
  4813. #endregion
  4814. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4815. }
  4816. catch (Exception ex)
  4817. {
  4818. return Ok(JsonView(false, ex.Message));
  4819. }
  4820. }
  4821. #endregion
  4822. #region op费用录入
  4823. /// <summary>
  4824. /// 根据diid查询op费用列表
  4825. /// </summary>
  4826. /// <param name="dto"></param>
  4827. /// <returns></returns>
  4828. [HttpPost]
  4829. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4830. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  4831. {
  4832. try
  4833. {
  4834. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  4835. if (groupData.Code != 0)
  4836. {
  4837. return Ok(JsonView(false, groupData.Msg));
  4838. }
  4839. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4840. }
  4841. catch (Exception ex)
  4842. {
  4843. return Ok(JsonView(false, ex.Message));
  4844. }
  4845. }
  4846. /// <summary>
  4847. /// 根据op费用Id查询单条数据及c表数据
  4848. /// </summary>
  4849. /// <param name="dto"></param>
  4850. /// <returns></returns>
  4851. [HttpPost]
  4852. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4853. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  4854. {
  4855. try
  4856. {
  4857. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  4858. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  4859. var data = new
  4860. {
  4861. CarTouristGuideGround = _groupData,
  4862. CreditCardPayment = _creditCardPayment
  4863. };
  4864. return Ok(JsonView(true, "查询成功!", data));
  4865. }
  4866. catch (Exception ex)
  4867. {
  4868. return Ok(JsonView(false, "程序错误!"));
  4869. }
  4870. }
  4871. /// <summary>
  4872. /// op费用删除
  4873. /// </summary>
  4874. /// <param name="dto"></param>
  4875. /// <returns></returns>
  4876. [HttpPost]
  4877. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4878. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  4879. {
  4880. try
  4881. {
  4882. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  4883. if (!res)
  4884. {
  4885. return Ok(JsonView(false, "删除失败"));
  4886. }
  4887. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  4888. {
  4889. IsDel = 1,
  4890. DeleteUserId = dto.DeleteUserId,
  4891. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4892. }).ExecuteCommandAsync();
  4893. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  4894. {
  4895. IsDel = 1,
  4896. DeleteUserId = dto.DeleteUserId,
  4897. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4898. }).ExecuteCommandAsync();
  4899. return Ok(JsonView(true, "删除成功!"));
  4900. }
  4901. catch (Exception ex)
  4902. {
  4903. return Ok(JsonView(false, "程序错误!"));
  4904. throw;
  4905. }
  4906. }
  4907. /// <summary>
  4908. /// op费用录入操作(Status:1.新增,2.修改)
  4909. /// </summary>
  4910. /// <param name="dto"></param>
  4911. /// <returns></returns>
  4912. [HttpPost]
  4913. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4914. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  4915. {
  4916. try
  4917. {
  4918. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  4919. if (groupData.Code != 0)
  4920. {
  4921. return Ok(JsonView(false, groupData.Msg));
  4922. }
  4923. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4924. }
  4925. catch (Exception ex)
  4926. {
  4927. return Ok(JsonView(false, ex.Message));
  4928. }
  4929. }
  4930. /// <summary>
  4931. /// 填写费用详细页面初始化绑定
  4932. /// </summary>
  4933. /// <param name="dto"></param>
  4934. /// <returns></returns>
  4935. [HttpPost]
  4936. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4937. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  4938. {
  4939. try
  4940. {
  4941. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  4942. if (groupData.Code != 0)
  4943. {
  4944. return Ok(JsonView(false, groupData.Msg));
  4945. }
  4946. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4947. }
  4948. catch (Exception ex)
  4949. {
  4950. return Ok(JsonView(false, ex.Message));
  4951. }
  4952. }
  4953. /// <summary>
  4954. /// 根据op费用Id查询详细数据
  4955. /// </summary>
  4956. /// <param name="dto"></param>
  4957. /// <returns></returns>
  4958. [HttpPost]
  4959. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4960. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  4961. {
  4962. try
  4963. {
  4964. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  4965. if (groupData.Code != 0)
  4966. {
  4967. return Ok(JsonView(false, groupData.Msg));
  4968. }
  4969. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4970. }
  4971. catch (Exception ex)
  4972. {
  4973. return Ok(JsonView(false, ex.Message));
  4974. }
  4975. }
  4976. /// <summary>
  4977. /// OP费用录入填写详情
  4978. /// </summary>
  4979. /// <param name="dto"></param>
  4980. /// <returns></returns>
  4981. [HttpPost]
  4982. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4983. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  4984. {
  4985. try
  4986. {
  4987. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  4988. if (groupData.Code != 0)
  4989. {
  4990. return Ok(JsonView(false, groupData.Msg));
  4991. }
  4992. #region 应用推送
  4993. try
  4994. {
  4995. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  4996. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  4997. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  4998. }
  4999. catch (Exception ex)
  5000. {
  5001. }
  5002. #endregion
  5003. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5004. }
  5005. catch (Exception ex)
  5006. {
  5007. return Ok(JsonView(false, ex.Message));
  5008. }
  5009. }
  5010. /// <summary>
  5011. /// 获取三公详细所有城市
  5012. /// </summary>
  5013. /// <returns></returns>
  5014. [HttpGet]
  5015. public IActionResult OpCarCityResult()
  5016. {
  5017. var jw = JsonView(false);
  5018. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5019. {
  5020. x.Id,
  5021. x.Country,
  5022. x.City,
  5023. }).ToList();
  5024. if (data.Count > 0)
  5025. {
  5026. jw = JsonView(true, "获取成功!", data);
  5027. }
  5028. else
  5029. {
  5030. jw.Msg = "城市数据未空!";
  5031. jw.Data = new string[0];
  5032. }
  5033. return Ok(jw);
  5034. }
  5035. #region OP行程单
  5036. /// <summary>
  5037. /// OP行程单初始化
  5038. /// </summary>
  5039. /// <param name="dto"></param>
  5040. /// <returns></returns>
  5041. [HttpPost]
  5042. public IActionResult InitOpTravel(InitOpTravelDto dto)
  5043. {
  5044. var jw = JsonView(false);
  5045. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  5046. var group = groupList.First();
  5047. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  5048. if (group == null)
  5049. {
  5050. jw.Msg = "暂无团组!";
  5051. return Ok(jw);
  5052. }
  5053. group = groupList.Find(x => x.Id == diid);
  5054. if (group == null)
  5055. {
  5056. jw.Msg = "请输入正确的团组ID!";
  5057. return Ok(jw);
  5058. }
  5059. string city = string.Empty;
  5060. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  5061. if (blackCode.Count > 0)
  5062. {
  5063. var black = blackCode.First();
  5064. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  5065. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  5066. if (blackSp.Length > 0)
  5067. {
  5068. try
  5069. {
  5070. var cityArrCode = new List<string>(20);
  5071. foreach (var item in blackSp)
  5072. {
  5073. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  5074. var IndexSelect = itemSp[2];
  5075. var cityArrCodeLength = cityArrCode.Count - 1;
  5076. var startCity = IndexSelect.Substring(0, 3);
  5077. if (cityArrCodeLength > 0)
  5078. {
  5079. var arrEndCity = cityArrCode[cityArrCodeLength];
  5080. if (arrEndCity != startCity)
  5081. {
  5082. cityArrCode.Add(startCity.ToUpper());
  5083. }
  5084. }
  5085. else
  5086. {
  5087. cityArrCode.Add(startCity.ToUpper());
  5088. }
  5089. var endCity = IndexSelect.Substring(3, 3);
  5090. cityArrCode.Add(endCity.ToUpper());
  5091. }
  5092. var cityThree = string.Empty;
  5093. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  5094. cityThree = cityThree.TrimEnd(',');
  5095. if (string.IsNullOrWhiteSpace(cityThree))
  5096. {
  5097. throw new
  5098. Exception("error");
  5099. }
  5100. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  5101. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  5102. foreach (var item in cityArrCode)
  5103. {
  5104. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  5105. if (find != null)
  5106. {
  5107. city += find.City + "/";
  5108. }
  5109. else
  5110. {
  5111. city += item + "三字码未收入/";
  5112. }
  5113. }
  5114. city = city.TrimEnd('/');
  5115. }
  5116. catch (Exception e)
  5117. {
  5118. city = "黑屏代码格式不正确!";
  5119. }
  5120. }
  5121. }
  5122. else
  5123. {
  5124. city = "未录入黑屏代码";
  5125. }
  5126. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  5127. {
  5128. Date = x.Date,
  5129. Days = x.Days,
  5130. Diffgroup = x.Diffgroup,
  5131. Diid = x.Diid,
  5132. Traffic_First = x.Traffic_First,
  5133. Traffic_Second = x.Traffic_Second,
  5134. Trip = x.Trip,
  5135. WeekDay = x.WeekDay,
  5136. Id = x.Id
  5137. }).ToList();
  5138. jw.Data = new
  5139. {
  5140. groupList = groupList.Select(x => new
  5141. {
  5142. x.Id,
  5143. x.TeamName,
  5144. x.TourCode
  5145. }).ToList(),
  5146. groupInfo = new
  5147. {
  5148. group.VisitDays,
  5149. group.TourCode,
  5150. group.VisitPNumber,
  5151. group.TeamName,
  5152. city
  5153. },
  5154. OpTravelList
  5155. };
  5156. jw.Code = 200;
  5157. jw.Msg = "操作成功!";
  5158. return Ok(jw);
  5159. }
  5160. /// <summary>
  5161. /// 删除团组行程单
  5162. /// </summary>
  5163. /// <returns></returns>
  5164. [HttpPost]
  5165. public IActionResult DelTravel(DelOpTravelDto dto)
  5166. {
  5167. var jw = JsonView(false);
  5168. if (dto.UserId <= 0 || dto.Diid <= 0)
  5169. {
  5170. jw.Msg = "请输入正确的参数!";
  5171. return Ok(jw);
  5172. }
  5173. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  5174. .SetColumns(x => new Grp_TravelList
  5175. {
  5176. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5177. DeleteUserId = dto.UserId,
  5178. IsDel = 1,
  5179. }).ExecuteCommand();
  5180. jw = JsonView(true);
  5181. return Ok(jw);
  5182. }
  5183. /// <summary>
  5184. /// 行程单保存
  5185. /// </summary>
  5186. /// <returns></returns>
  5187. [HttpPost]
  5188. public IActionResult TravelSave(TravelSaveDto dto)
  5189. {
  5190. var jw = JsonView(false);
  5191. if (dto.Arr.Count > 0)
  5192. {
  5193. try
  5194. {
  5195. _sqlSugar.BeginTran();
  5196. foreach (var item in dto.Arr)
  5197. {
  5198. if (item.Id == 0)
  5199. {
  5200. throw new Exception("请传入正确的Id");
  5201. }
  5202. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  5203. .SetColumns(x => new Grp_TravelList
  5204. {
  5205. Trip = item.Trip
  5206. }).ExecuteCommand();
  5207. }
  5208. _sqlSugar.CommitTran();
  5209. jw = JsonView(true);
  5210. }
  5211. catch (Exception ex)
  5212. {
  5213. _sqlSugar.RollbackTran();
  5214. jw.Msg = "程序异常!" + ex.Message;
  5215. }
  5216. }
  5217. else
  5218. {
  5219. jw.Msg = "请传入正确的参数!";
  5220. }
  5221. return Ok(jw);
  5222. }
  5223. /// <summary>
  5224. /// 导出行程单
  5225. /// </summary>
  5226. /// <param name="dto"></param>
  5227. /// <returns></returns>
  5228. [HttpPost]
  5229. public IActionResult ExportTravel(InitOpTravelDto dto)
  5230. {
  5231. var jw = JsonView(false);
  5232. //数据源
  5233. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  5234. int diid = 0;
  5235. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  5236. if (Find == null)
  5237. {
  5238. jw.Msg = "请选择正确的团组!";
  5239. return Ok(jw);
  5240. }
  5241. else
  5242. {
  5243. diid = Find.Id;
  5244. }
  5245. DataTable dtBlack = null;
  5246. try
  5247. {
  5248. dtBlack = GetTableByBlackCode(diid);
  5249. }
  5250. catch (Exception)
  5251. {
  5252. jw.Msg = "机票黑屏代码有误!";
  5253. return Ok(jw);
  5254. }
  5255. string CityStr1 = "";
  5256. List<string> countriesList = new List<string>();
  5257. List<string> cityList = new List<string>();
  5258. string countriesIntroduction = "";
  5259. string cityIntroduction = "";
  5260. string timeDifference = "";
  5261. string currExchangeRate = "";
  5262. string txt_itemPrepare = "";
  5263. string txt_specialReminder = "";
  5264. string txt_cGPrecautions = "";
  5265. string txt_yGCG = "";
  5266. string txt_conduct = "";
  5267. string txt_commonEnglish = "";
  5268. if (dtBlack == null && (dtBlack.Rows[0]["Day"] == null || dtBlack.Rows[0]["Day"].ToString() == ""))
  5269. {
  5270. //提示
  5271. //PublicCode.GetAlertMsg(this, GetType(), dt.Rows[dt.Rows.Count - 1]["Error"].ToString());
  5272. }
  5273. else
  5274. {
  5275. //创建三字码示例
  5276. Res_ThreeCode t = new Res_ThreeCode();
  5277. //城市缓存
  5278. string city = "";
  5279. //出访城市
  5280. for (int i = 0; i < dtBlack.Rows.Count; i++)
  5281. {
  5282. if ((i + 1) < dtBlack.Rows.Count && dtBlack.Rows[i]["Three"].ToString() == dtBlack.Rows[i + 1]["Three"].ToString())
  5283. {
  5284. continue;
  5285. }
  5286. if (dtBlack.Rows.Count > 0 && (dtBlack.Rows[i]["Three"].ToString() != null && dtBlack.Rows[i]["Three"].ToString() != ""))
  5287. {
  5288. //出发城市
  5289. string cityTemp = dtBlack.Rows[i]["Three"].ToString().Replace("/", string.Empty).Substring(0, 3);
  5290. t = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three == cityTemp && x.IsDel == 0);
  5291. if (t != null)
  5292. {
  5293. city = city + "/" + t.City;
  5294. }
  5295. else
  5296. {
  5297. city = city + "/【" + cityTemp + "未收录,请联系机票同事录入】";
  5298. }
  5299. if (i == dtBlack.Rows.Count - 1)
  5300. {
  5301. //抵达城市
  5302. cityTemp = dtBlack.Rows[i]["Three"].ToString().Replace("/", string.Empty).Substring(3, 3);
  5303. t = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three == cityTemp && x.IsDel == 0);
  5304. if (t != null)
  5305. {
  5306. city = city + "/" + t.City;
  5307. }
  5308. else
  5309. {
  5310. city = city + "/【" + cityTemp + "未收录,请联系机票同事录入】";
  5311. }
  5312. }
  5313. }
  5314. }
  5315. if (city != "" && city != null)
  5316. {
  5317. string[] cityStr2 = city.Split('/');
  5318. string[] strs = cityStr2.Distinct().ToArray(); ;
  5319. string str = "";
  5320. foreach (var s in strs)
  5321. {
  5322. str += s + "/";
  5323. }
  5324. str = str.TrimStart('/');
  5325. str = str.TrimEnd('/');
  5326. //lblTourCity.Text = "去重前:" + city.TrimStart('/') + "\n 去重后:" + str;
  5327. CityStr1 = city.TrimStart('/');
  5328. }
  5329. // 行程repeater
  5330. if (GetByDiid(diid).Count > 0)
  5331. {
  5332. _travelList = GetByDiid(diid).Where(x => x.Issel == 1 && x.IsDel == 0).ToList();
  5333. }
  5334. else
  5335. {
  5336. //生成该时间段日期
  5337. List<string> timeList = GetTimeListByDataTable(dtBlack);
  5338. if (timeList != null)
  5339. {
  5340. string[] str = new string[timeList.Count];
  5341. //rpData.DataSource = str;
  5342. //rpData.DataBind();
  5343. }
  5344. }
  5345. }
  5346. //创建数据源Table
  5347. DataTable dtSource = new DataTable();
  5348. dtSource.Columns.Add("Days", typeof(string));
  5349. dtSource.Columns.Add("Date", typeof(string));
  5350. dtSource.Columns.Add("Week", typeof(string));
  5351. dtSource.Columns.Add("Traffic", typeof(string));
  5352. dtSource.Columns.Add("Trip", typeof(string));
  5353. //获取数据,放到datatable
  5354. foreach (var item in _travelList)
  5355. {
  5356. DataRow dr = dtSource.NewRow();
  5357. dr["Days"] = item.Days;
  5358. dr["Date"] = item.Date;
  5359. dr["Week"] = item.WeekDay;
  5360. dr["Traffic"] = item.Traffic_First
  5361. + "\r\n"
  5362. + item.Traffic_Second;
  5363. if (item.Trip.Replace("(此地区为黄热病地区,请注意打疫苗)", "").Length < 15)
  5364. {
  5365. item.Trip += @"
  5366. 08:00 早餐于酒店;
  5367. 09:00 公务活动;
  5368. 10:30 公务活动;
  5369. 12:00 午餐于当地餐厅;
  5370. 14:00 公务活动;
  5371. 16:00 公务活动;
  5372. 18:00 晚餐于当地餐厅;
  5373. 19:00 入住酒店休息;";
  5374. }
  5375. dr["Trip"] = item.Trip;
  5376. dtSource.Rows.Add(dr);
  5377. }
  5378. //lblTeamName.Text = di.TourCode;
  5379. //lblVisitDays.Text = di.VisitDays.ToString();
  5380. //lblVisitDays2.Text = di.VisitDays.ToString();
  5381. //lblPNumber.Text = di.VisitPNumber.ToString();
  5382. //lblGroup.Text = di.TeamName.ToString();
  5383. Dictionary<string, string> dic = new Dictionary<string, string>();
  5384. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  5385. dic.Add("City", CityStr1);
  5386. dic.Add("Days", Find.VisitDays.ToString());
  5387. dic.Add("DeleCode", Find.TourCode);
  5388. dic.Add("Pnum", Find.VisitPNumber.ToString());
  5389. dic.Add("Pnum2", Find.VisitPNumber.ToString());
  5390. List<Crm_DeleClient> leader = GetByDiidClient(Find.Id);
  5391. if (leader != null && leader.Count > 0)
  5392. {
  5393. dic.Add("Leader", GetByDiidClient(Find.Id)[0].LastName + GetByDiidClient(Find.Id)[0].FirstName);
  5394. }
  5395. else
  5396. {
  5397. dic.Add("Leader", "");
  5398. }
  5399. dic.Add("Pnum3", Find.VisitPNumber.ToString());
  5400. int UserId = 253;
  5401. dic.Add("OP", "");
  5402. dic.Add("OPTel", "");
  5403. //dic.Add("OP", "OP姓名");
  5404. //dic.Add("OPTel", "OP手机号码");
  5405. string countriesStr = "";
  5406. countriesList.ForEach(s => countriesStr += s + "、");
  5407. countriesStr = countriesStr.TrimEnd('、');
  5408. string cityStr = "";
  5409. cityList.ForEach(s => cityStr += s + "、");
  5410. cityStr = cityStr.TrimEnd('、');
  5411. //下方数据
  5412. dic.Add("selCountries", countriesStr == null ? "" : countriesStr);
  5413. dic.Add("selCity", cityStr == null ? "" : cityStr);
  5414. dic.Add("countriesIntroduction", countriesIntroduction == null ? "" : countriesIntroduction);
  5415. dic.Add("CityIntroduction", cityIntroduction == null ? "" : cityIntroduction);
  5416. dic.Add("timeDifference", timeDifference == null ? "" : timeDifference);
  5417. dic.Add("currExchangeRate", currExchangeRate == null ? "" : currExchangeRate);
  5418. dic.Add("temperature", "");
  5419. dic.Add("txt_itemPrepare", txt_itemPrepare == null ? "" : txt_itemPrepare);
  5420. dic.Add("txt_specialReminder", txt_specialReminder == null ? "" : txt_specialReminder);
  5421. dic.Add("txt_cGPrecautions", txt_cGPrecautions == null ? "" : txt_cGPrecautions);
  5422. dic.Add("txt_yGCG", txt_yGCG == null ? "" : txt_yGCG);
  5423. dic.Add("txt_conduct", txt_conduct == null ? "" : txt_conduct);
  5424. dic.Add("txt_commonEnglish", txt_commonEnglish == null ? "" : txt_commonEnglish);
  5425. //模板路径
  5426. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  5427. //载入模板
  5428. Document doc = null;
  5429. DocumentBuilder builder = null;
  5430. try
  5431. {
  5432. //载入模板
  5433. doc = new Document(tempPath);
  5434. builder = new DocumentBuilder(doc);
  5435. }
  5436. catch (Exception)
  5437. {
  5438. jw.Msg = "模板位置不存在!";
  5439. return Ok(jw);
  5440. }
  5441. foreach (var key in dic.Keys)
  5442. {
  5443. Bookmark bookmark = doc.Range.Bookmarks[key];
  5444. if (bookmark != null)
  5445. {
  5446. builder.MoveToBookmark(key);
  5447. builder.Write(dic[key]);
  5448. }
  5449. }
  5450. //获取word里所有表格
  5451. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5452. //获取所填表格的序数
  5453. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5454. try
  5455. {
  5456. //循环赋值
  5457. for (int i = 0; i < dtSource.Rows.Count; i++)
  5458. {
  5459. builder.MoveToCell(0, i + 1, 0, 0);
  5460. builder.Write(dtSource.Rows[i]["Days"].ToString());
  5461. builder.MoveToCell(0, i + 1, 1, 0);
  5462. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  5463. builder.MoveToCell(0, i + 1, 2, 0);
  5464. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  5465. var trip = dtSource.Rows[i]["Trip"].ToString();
  5466. builder.MoveToCell(0, i + 1, 3, 0);
  5467. builder.Write(trip);
  5468. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  5469. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  5470. // 获取特定索引的段落
  5471. Paragraph paragraph = (Paragraph)paragraphs[0];
  5472. Run run = paragraph.Runs[0];
  5473. Aspose.Words.Font font = run.Font;
  5474. font.Name = "黑体";
  5475. //设置双休红色
  5476. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  5477. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  5478. paragraph = (Paragraph)paragraphs[1];
  5479. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  5480. {
  5481. run = paragraph.Runs[0];
  5482. font = run.Font;
  5483. font.Color = Color.Red;
  5484. }
  5485. }
  5486. }
  5487. catch (Exception ex)
  5488. {
  5489. }
  5490. //删除多余行
  5491. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  5492. {
  5493. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  5494. }
  5495. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  5496. if (!Directory.Exists(savePath))
  5497. {
  5498. try
  5499. {
  5500. Directory.CreateDirectory(savePath);
  5501. }
  5502. catch
  5503. {
  5504. }
  5505. }
  5506. string path = savePath + Find.TeamName + "出访日程.docx";
  5507. try
  5508. {
  5509. doc.Save(path, Aspose.Words.SaveFormat.Doc);
  5510. jw = JsonView(true, "导出成功", path);
  5511. }
  5512. catch (Exception)
  5513. {
  5514. jw = JsonView(false);
  5515. }
  5516. return Ok(jw);
  5517. }
  5518. /// <summary>
  5519. ///根据机票黑屏代码整理DataTable
  5520. /// </summary>
  5521. /// <param name="diid"></param>
  5522. /// <returns></returns>
  5523. DataTable GetTableByBlackCode(int diid)
  5524. {
  5525. //黑屏代码信息
  5526. List<Air_TicketBlackCode> listcode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.DiId == diid && x.IsDel == 0).ToList();
  5527. //测试数据为序号,航班号,起飞日期,三字码,起飞时刻,到达时刻,出发航站楼,到达航站楼,机型,飞行时间
  5528. //1.3U8391 TU17NOV CTUCAI 0220 0715 T1 T2 330 10H55M
  5529. DataTable dt = new DataTable();
  5530. dt.Columns.Add("Fliagtcode", typeof(string)); //航班号
  5531. dt.Columns.Add("Date", typeof(string));//起飞日期
  5532. dt.Columns.Add("Three", typeof(string));//三字码
  5533. dt.Columns.Add("StartTime", typeof(string));//起飞时刻
  5534. dt.Columns.Add("EndTime", typeof(string));//到达时刻
  5535. dt.Columns.Add("StartBuilding", typeof(string));//出发航站楼
  5536. dt.Columns.Add("EndBuilding", typeof(string));//到达航站楼
  5537. dt.Columns.Add("AirModel", typeof(string)); //机型
  5538. dt.Columns.Add("FlightTime", typeof(string));//飞行时间
  5539. dt.Columns.Add("Day", typeof(string));//整理的起飞日期;作为排序依据
  5540. dt.Columns.Add("ArrivedDate", typeof(string));//整理的到达日期
  5541. dt.Columns.Add("Error", typeof(string));//整理的到达日期
  5542. dt.Columns.Add("Sign", typeof(string));//标识:0表示为原生黑屏代码、1表示“+1”新增的黑屏代码
  5543. //判断是否录入黑屏代码
  5544. if (listcode.Count() == 0 || listcode == null)
  5545. {
  5546. dt.Rows.Add(null, null, null, null, null, null, null, null, null, null, null, "黑屏代码未录入!", null);
  5547. }
  5548. else
  5549. {
  5550. //读取单段黑屏代码
  5551. for (int i = 0; i < listcode.Count; i++)
  5552. {
  5553. //去除序号
  5554. string[] CodeList = Regex.Split(listcode[i].BlackCode, "\\d+\\.", RegexOptions.IgnoreCase);
  5555. //去除多余空格,方法一Linq扩展方法
  5556. CodeList = CodeList.Where(str => str != "").ToArray();
  5557. CodeList = CodeList.Where(str => str != " ").ToArray();
  5558. //年
  5559. int year = Convert.ToInt32(DateTime.Now.Year.ToString());
  5560. //读取单条黑屏代码
  5561. for (int j = 0; j < CodeList.Count(); j++)
  5562. {
  5563. //去除多余空格,方法二使用Split()方法进行分割,分割有一个选项是RemoveEmptyEntries
  5564. CodeList[j] = CodeList[j].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty).TrimStart().TrimEnd();
  5565. string[] Info = CodeList[j].Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5566. //string[] Info = CodeList[j].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty)
  5567. // .TrimStart().TrimEnd().Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5568. //去除多余空格
  5569. Info = Info.Where(str => str != "").ToArray();
  5570. Info = Info.Where(str => str != " ").ToArray();
  5571. //判断黑屏代码是否正确拆分; 理应拆成9段
  5572. if (Info.Count() < 9)
  5573. {
  5574. dt.Rows.Add(null, null, null, null, null, null, null, null, null, null, null, "本团组第" + (i + 1) + "段黑屏代码中第" + (j + 1) + " 条有误,请联系机票同事核对", null);
  5575. }
  5576. else
  5577. {
  5578. try
  5579. {
  5580. //月
  5581. int month = Convert.ToInt32(GetLonger(Info[1].Substring(4, 3)));
  5582. //日
  5583. int day = Convert.ToInt32(Info[1].Substring(2, 2));
  5584. #region 逐一比较月份,判断是否翻年;逐一比较三字码顶真,判断是否跑错机场
  5585. if (j > 0)
  5586. {
  5587. string[] Temp = CodeList[j - 1].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty)
  5588. .TrimStart().TrimEnd().Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5589. Temp = Temp.Where(str => str != "").ToArray();
  5590. Temp = Temp.Where(str => str != " ").ToArray();
  5591. int monthTemp = Convert.ToInt32(GetLonger(Temp[1].Substring(4, 3)));
  5592. // 如果相邻月份之差小于0,则证明次一条年份需+1
  5593. if (month - monthTemp < 0)
  5594. {
  5595. year = year + 1;
  5596. }
  5597. //如果相邻代码三字码不顶真,提醒
  5598. string FootThree = Temp[2].Substring(3, 3);
  5599. string HeadThree = Info[2].Substring(0, 3);
  5600. if (FootThree != HeadThree)
  5601. {
  5602. //DelegationInfoService s = new DelegationInfoService();
  5603. //UsersService us = new UsersService();
  5604. //GroupsTaskAssignmentService gts = new GroupsTaskAssignmentService();
  5605. //77 行程
  5606. List<Grp_GroupsTaskAssignment> list2 = _sqlSugar.Queryable<Grp_GroupsTaskAssignment>().Where(x => x.CTId == 77 && x.DIId == diid && x.IsDel == 0).ToList();
  5607. foreach (var temp in list2)
  5608. {
  5609. //if (temp.UId != 21)
  5610. //SendAndReturn(us.GetUsersByID(temp.UId).Email,
  5611. // "黑屏代码提醒",
  5612. // s.GetDelegationInfoByID(diid).TeamName + "的机票黑屏代码中,相邻航段的三字码不连续,请查看!");
  5613. }
  5614. //85 机票预订
  5615. List<Grp_GroupsTaskAssignment> list6 = _sqlSugar.Queryable<Grp_GroupsTaskAssignment>().Where(x => x.CTId == 85 && x.DIId == diid && x.IsDel == 0).ToList();
  5616. foreach (var temp in list6)
  5617. {
  5618. //if (temp.UId != 21)
  5619. //SendAndReturn(us.GetUsersByID(temp.UId).Email,
  5620. // "黑屏代码提醒",
  5621. // s.GetDelegationInfoByID(diid).TeamName + "的机票黑屏代码中,相邻航段的三字码不连续,请查看!");
  5622. }
  5623. }
  5624. }
  5625. #endregion
  5626. #region 判断到达日期是否需要加1
  5627. if (Info[4].Contains("+"))
  5628. {
  5629. //日期+1
  5630. day = day + 1;
  5631. //判断是否进入下一月
  5632. if (day > Convert.ToInt32(GetDaysByMonth(Info[1].Substring(4, 3), year)))
  5633. {
  5634. day = day - Convert.ToInt32(GetDaysByMonth(Info[1].Substring(4, 3), year));
  5635. month = month + 1;
  5636. //判断是否进入下一年
  5637. if (month > 12)
  5638. {
  5639. month = month - 12;
  5640. year = year + 1;
  5641. }
  5642. }
  5643. //月份整理格式
  5644. string monthTemp = month.ToString();
  5645. if (month < 10)
  5646. {
  5647. monthTemp = "0" + monthTemp;
  5648. }
  5649. //日期整理格式
  5650. string daytemp = day.ToString();
  5651. if (day < 10)
  5652. {
  5653. daytemp = "0" + daytemp;
  5654. }
  5655. string temp = Info[4].Split('+')[0];
  5656. //添加起飞数据
  5657. dt.Rows.Add(Info[0],
  5658. Info[1],
  5659. Info[2],
  5660. Info[3],
  5661. temp,
  5662. Info[5],
  5663. Info[6],
  5664. Info[7],
  5665. Info[8],
  5666. year + "-" + GetLonger(Info[1].Substring(4, 3)) + "-" + Info[1].Substring(2, 2),
  5667. year + "-" + monthTemp + "-" + daytemp,
  5668. "",
  5669. "0");
  5670. //加1天,添加到达数据
  5671. dt.Rows.Add(Info[0],
  5672. Info[1].Replace(Info[1].Substring(2, 2), daytemp),
  5673. Info[2],
  5674. Info[3],
  5675. temp,
  5676. Info[5],
  5677. Info[6],
  5678. Info[7],
  5679. Info[8],
  5680. year + "-" + monthTemp + "-" + daytemp,
  5681. year + "-" + monthTemp + "-" + daytemp,
  5682. "",
  5683. "1");
  5684. }
  5685. else
  5686. {
  5687. //月份整理格式
  5688. string monthTemp = month.ToString();
  5689. if (month < 10)
  5690. {
  5691. monthTemp = "0" + monthTemp;
  5692. }
  5693. //日期整理格式
  5694. string daytemp = day.ToString();
  5695. if (day < 10)
  5696. {
  5697. daytemp = "0" + daytemp;
  5698. }
  5699. dt.Rows.Add(Info[0],
  5700. Info[1],
  5701. Info[2],
  5702. Info[3],
  5703. Info[4],
  5704. Info[5],
  5705. Info[6],
  5706. Info[7],
  5707. Info[8],
  5708. year + "-" + monthTemp + "-" + daytemp,
  5709. year + "-" + monthTemp + "-" + daytemp,
  5710. "",
  5711. "0");
  5712. }
  5713. #endregion
  5714. }
  5715. catch (Exception ex)
  5716. {
  5717. string exstr = ex.Message.ToString();
  5718. }
  5719. }
  5720. }
  5721. //排序
  5722. dt.DefaultView.Sort = "Day asc";
  5723. dt = dt.DefaultView.ToTable();
  5724. }
  5725. }
  5726. return dt;
  5727. }
  5728. /// <summary>
  5729. /// 根据团组编号查询信息
  5730. /// </summary>
  5731. /// <returns>返回空或者对象信息</returns>
  5732. List<Grp_TravelList> GetByDiid(int Diid)
  5733. {
  5734. //调用获取单个对象的方法
  5735. return _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == Diid && x.IsDel == 0).ToList();
  5736. }
  5737. /// <summary>
  5738. /// 20210816
  5739. /// 根据datatable生成某一时间段的日期
  5740. /// </summary>
  5741. /// <param name="dt">黑屏代码生成的datatable</param>
  5742. /// <returns></returns>
  5743. List<string> GetTimeListByDataTable(DataTable dt)
  5744. {
  5745. if (dt.Rows[0]["Day"].ToString() != "")
  5746. {
  5747. DateTime datestart = Convert.ToDateTime(dt.Rows[0]["Day"].ToString());
  5748. DateTime dateend = Convert.ToDateTime(dt.Rows[dt.Rows.Count - 1]["ArrivedDate"].ToString());
  5749. List<string> timeList = new List<string>();
  5750. while (datestart <= dateend)
  5751. {
  5752. timeList.Add(datestart.ToString("yyyy-MM-dd"));
  5753. datestart = datestart.AddDays(1);
  5754. }
  5755. return timeList;
  5756. }
  5757. return null;
  5758. }
  5759. /// <summary>
  5760. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  5761. /// </summary>
  5762. /// <param name="num"></param>
  5763. /// <returns></returns>
  5764. string GetNum(string num)
  5765. {
  5766. string str = "";
  5767. switch (num)
  5768. {
  5769. case "1":
  5770. str = "一";
  5771. break;
  5772. case "2":
  5773. str = "二";
  5774. break;
  5775. case "3":
  5776. str = "三";
  5777. break;
  5778. case "4":
  5779. str = "四";
  5780. break;
  5781. case "5":
  5782. str = "五";
  5783. break;
  5784. case "6":
  5785. str = "六";
  5786. break;
  5787. case "7":
  5788. str = "七";
  5789. break;
  5790. case "8":
  5791. str = "八";
  5792. break;
  5793. case "9":
  5794. str = "九";
  5795. break;
  5796. case "10":
  5797. str = "十";
  5798. break;
  5799. case "11":
  5800. str = "十一";
  5801. break;
  5802. case "12":
  5803. str = "十二";
  5804. break;
  5805. case "一":
  5806. str = "1";
  5807. break;
  5808. case "二":
  5809. str = "2";
  5810. break;
  5811. case "三":
  5812. str = "3";
  5813. break;
  5814. case "四":
  5815. str = "4";
  5816. break;
  5817. case "五":
  5818. str = "5";
  5819. break;
  5820. case "六":
  5821. str = "6";
  5822. break;
  5823. case "七":
  5824. str = "7";
  5825. break;
  5826. case "八":
  5827. str = "8";
  5828. break;
  5829. case "九":
  5830. str = "9";
  5831. break;
  5832. case "十":
  5833. str = "10";
  5834. break;
  5835. case "十一":
  5836. str = "11";
  5837. break;
  5838. case "十二":
  5839. str = "12";
  5840. break;
  5841. }
  5842. return str;
  5843. }
  5844. List<Crm_DeleClient> GetByDiidClient(int DIID)
  5845. {
  5846. return _sqlSugar.Queryable<Crm_DeleClient>().Where(x => x.DiId == DIID && x.IsDel == 0).ToList();
  5847. }
  5848. /// <summary>
  5849. /// 根据星期,月份的缩写,转换成数字或者全称
  5850. /// 根据币种中文名称返回币种代码
  5851. /// 根据数字返回机型型号【2、3开头的就是空客,比如空客320,7开头的就是波音,比如波音777】
  5852. /// 20210903贾文滔
  5853. /// </summary>
  5854. /// <param name="startDate"></param>
  5855. /// <param name="endDate"></param>
  5856. /// <returns></returns>
  5857. string GetLonger(string temp)
  5858. {
  5859. string str = "";
  5860. switch (temp.ToUpper())
  5861. {
  5862. case "美元":
  5863. str = "USD";
  5864. break;
  5865. case "日元":
  5866. str = "JPY";
  5867. break;
  5868. case "英镑":
  5869. str = "GBP";
  5870. break;
  5871. case "欧元":
  5872. str = "EUR";
  5873. break;
  5874. case "港币":
  5875. str = "HKD";
  5876. break;
  5877. case "MO":
  5878. str = "星期一";
  5879. break;
  5880. case "TU":
  5881. str = "星期二";
  5882. break;
  5883. case "WE":
  5884. str = "星期三";
  5885. break;
  5886. case "TH":
  5887. str = "星期四";
  5888. break;
  5889. case "FR":
  5890. str = "星期五";
  5891. break;
  5892. case "SA":
  5893. str = "星期六";
  5894. break;
  5895. case "SU":
  5896. str = "星期天";
  5897. break;
  5898. case "JAN":
  5899. str = "01";
  5900. break;
  5901. case "FEB":
  5902. str = "02";
  5903. break;
  5904. case "MAR":
  5905. str = "03";
  5906. break;
  5907. case "APR":
  5908. str = "04";
  5909. break;
  5910. case "MAY":
  5911. str = "05";
  5912. break;
  5913. case "JUN":
  5914. str = "06";
  5915. break;
  5916. case "JUL":
  5917. str = "07";
  5918. break;
  5919. case "AUG":
  5920. str = "08";
  5921. break;
  5922. case "SEP":
  5923. str = "09";
  5924. break;
  5925. case "OCT":
  5926. str = "10";
  5927. break;
  5928. case "NOV":
  5929. str = "11";
  5930. break;
  5931. case "DEC":
  5932. str = "12";
  5933. break;
  5934. case "MONDAY":
  5935. str = "星期一";
  5936. break;
  5937. case "TUESDAY":
  5938. str = "星期二";
  5939. break;
  5940. case "WEDNESDAY":
  5941. str = "星期三";
  5942. break;
  5943. case "THURSDAY":
  5944. str = "星期四";
  5945. break;
  5946. case "FRIDAY":
  5947. str = "星期五";
  5948. break;
  5949. case "SATURDAY":
  5950. str = "星期六";
  5951. break;
  5952. case "SUNDAY":
  5953. str = "星期日";
  5954. break;
  5955. case "01":
  5956. str = "JAN";
  5957. break;
  5958. case "02":
  5959. str = "FEB";
  5960. break;
  5961. case "03":
  5962. str = "MAR";
  5963. break;
  5964. case "04":
  5965. str = "APR";
  5966. break;
  5967. case "05":
  5968. str = "MAY";
  5969. break;
  5970. case "06":
  5971. str = "JUN";
  5972. break;
  5973. case "07":
  5974. str = "JUL";
  5975. break;
  5976. case "08":
  5977. str = "AUG";
  5978. break;
  5979. case "09":
  5980. str = "SEP";
  5981. break;
  5982. case "10":
  5983. str = "OCT";
  5984. break;
  5985. case "11":
  5986. str = "NOV";
  5987. break;
  5988. case "12":
  5989. str = "DEC";
  5990. break;
  5991. case "2":
  5992. str = "空客A";
  5993. break;
  5994. case "3":
  5995. str = "空客A";
  5996. break;
  5997. case "7":
  5998. str = "波音";
  5999. break;
  6000. }
  6001. return str;
  6002. }
  6003. /// <summary>
  6004. /// 根据月份返回天数
  6005. /// </summary>
  6006. /// <param name="temp"></param>
  6007. /// <returns></returns>
  6008. string GetDaysByMonth(string Month, int year)
  6009. {
  6010. string str = "";
  6011. //判断是否是闰年
  6012. if (DateTime.IsLeapYear(year) == false)
  6013. {
  6014. switch (Month.ToUpper())
  6015. {
  6016. case "JAN":
  6017. str = "31";
  6018. break;
  6019. case "FEB":
  6020. str = "28";
  6021. break;
  6022. case "MAR":
  6023. str = "31";
  6024. break;
  6025. case "APR":
  6026. str = "30";
  6027. break;
  6028. case "MAY":
  6029. str = "31";
  6030. break;
  6031. case "JUN":
  6032. str = "30";
  6033. break;
  6034. case "JUL":
  6035. str = "31";
  6036. break;
  6037. case "AUG":
  6038. str = "31";
  6039. break;
  6040. case "SEP":
  6041. str = "30";
  6042. break;
  6043. case "OCT":
  6044. str = "31";
  6045. break;
  6046. case "NOV":
  6047. str = "30";
  6048. break;
  6049. case "DEC":
  6050. str = "31";
  6051. break;
  6052. case "01":
  6053. str = "31";
  6054. break;
  6055. case "02":
  6056. str = "28";
  6057. break;
  6058. case "03":
  6059. str = "31";
  6060. break;
  6061. case "04":
  6062. str = "30";
  6063. break;
  6064. case "05":
  6065. str = "31";
  6066. break;
  6067. case "06":
  6068. str = "30";
  6069. break;
  6070. case "07":
  6071. str = "31";
  6072. break;
  6073. case "08":
  6074. str = "31";
  6075. break;
  6076. case "09":
  6077. str = "30";
  6078. break;
  6079. case "10":
  6080. str = "31";
  6081. break;
  6082. case "11":
  6083. str = "30";
  6084. break;
  6085. case "12":
  6086. str = "31";
  6087. break;
  6088. }
  6089. }
  6090. else
  6091. {
  6092. switch (Month.ToUpper())
  6093. {
  6094. case "JAN":
  6095. str = "31";
  6096. break;
  6097. case "FEB":
  6098. str = "29";
  6099. break;
  6100. case "MAR":
  6101. str = "31";
  6102. break;
  6103. case "APR":
  6104. str = "30";
  6105. break;
  6106. case "MAY":
  6107. str = "31";
  6108. break;
  6109. case "JUN":
  6110. str = "30";
  6111. break;
  6112. case "JUL":
  6113. str = "31";
  6114. break;
  6115. case "AUG":
  6116. str = "31";
  6117. break;
  6118. case "SEP":
  6119. str = "30";
  6120. break;
  6121. case "OCT":
  6122. str = "31";
  6123. break;
  6124. case "NOV":
  6125. str = "30";
  6126. break;
  6127. case "DEC":
  6128. str = "31";
  6129. break;
  6130. case "01":
  6131. str = "31";
  6132. break;
  6133. case "02":
  6134. str = "29";
  6135. break;
  6136. case "03":
  6137. str = "31";
  6138. break;
  6139. case "04":
  6140. str = "30";
  6141. break;
  6142. case "05":
  6143. str = "31";
  6144. break;
  6145. case "06":
  6146. str = "30";
  6147. break;
  6148. case "07":
  6149. str = "31";
  6150. break;
  6151. case "08":
  6152. str = "31";
  6153. break;
  6154. case "09":
  6155. str = "30";
  6156. break;
  6157. case "10":
  6158. str = "31";
  6159. break;
  6160. case "11":
  6161. str = "30";
  6162. break;
  6163. case "12":
  6164. str = "31";
  6165. break;
  6166. }
  6167. }
  6168. return str;
  6169. }
  6170. #endregion
  6171. #endregion
  6172. #region 团组成本
  6173. /// <summary>
  6174. /// 团组成本数据初始化
  6175. /// </summary>
  6176. /// <param name="dto"></param>
  6177. /// <returns></returns>
  6178. [HttpPost]
  6179. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6180. {
  6181. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6182. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6183. WHEN COUNT(*) >= 0 THEN 'True'
  6184. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6185. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6186. ").ToList(); //团组列表
  6187. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6188. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6189. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6190. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6191. if (groupinfoValue != null)
  6192. {
  6193. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6194. var spArr = new string[1] { countryArr };
  6195. if (countryArr.Contains("|"))
  6196. {
  6197. spArr = countryArr.Split("|");
  6198. }
  6199. else if (countryArr.Contains("、"))
  6200. {
  6201. spArr = countryArr.Split("、");
  6202. }
  6203. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6204. {
  6205. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6206. if (dbQueryCountry != null)
  6207. {
  6208. visaCountryInfoArr.Add(dbQueryCountry);
  6209. }
  6210. }
  6211. }
  6212. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6213. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6214. var create = _GroupCostRepository.
  6215. CreateGroupCostByBlackCode(dto.Diid);
  6216. if (groupCost.Count == 0 && create.Code == 0)
  6217. {
  6218. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6219. }
  6220. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6221. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6222. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6223. groupCostMap = groupCostMap.Select(x =>
  6224. {
  6225. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6226. {
  6227. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6228. }
  6229. return x;
  6230. }).ToList();
  6231. //GroupCostParameter.Add(new
  6232. // Grp_GroupCostParameter());
  6233. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6234. return Ok(JsonView(new
  6235. {
  6236. groupList,
  6237. groupInfo,
  6238. groupChecks,
  6239. groupCost = groupCostMap,
  6240. hotelNumber,
  6241. GroupCostParameter = GroupCostParameterMap,
  6242. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6243. {
  6244. x.VisaCountry,
  6245. x.VisaPrice,
  6246. x.Id,
  6247. }).ToList(),
  6248. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6249. blackCodeIsTrue = create.Code == 0 ? true : false
  6250. })) ;
  6251. }
  6252. /// <summary>
  6253. /// 团组成本信息保存
  6254. /// </summary>
  6255. /// <param name="dto"></param>
  6256. /// <returns></returns>
  6257. [HttpPost]
  6258. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6259. {
  6260. if (dto.Diid <= 0 || dto.Userid <= 0)
  6261. {
  6262. return Ok(JsonView(false));
  6263. }
  6264. JsonView jw = null;
  6265. bool isTrue = false;
  6266. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6267. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6268. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6269. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6270. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6271. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6272. try
  6273. {
  6274. _sqlSugar.BeginTran();
  6275. isTrue = await _GroupCostRepository.
  6276. SaveGroupCostList(Grp_groups, dto.Diid,dto.Userid); //列表
  6277. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6278. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6279. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6280. _sqlSugar.CommitTran();
  6281. jw = JsonView(true, "保存成功!", isTrue);
  6282. }
  6283. catch (Exception)
  6284. {
  6285. _sqlSugar.RollbackTran();
  6286. jw = JsonView(false);
  6287. }
  6288. return Ok(jw);
  6289. }
  6290. /// <summary>
  6291. /// 司兼导数据
  6292. /// </summary>
  6293. /// <param name="dto"></param>
  6294. /// <returns></returns>
  6295. [HttpPost]
  6296. public IActionResult GetCarGuides(CarGuidesDto dto)
  6297. {
  6298. JsonView jw = null;
  6299. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6300. jw = JsonView(true, "获取成功!", Data);
  6301. return Ok(jw);
  6302. }
  6303. /// <summary>
  6304. /// 导游数据
  6305. /// </summary>
  6306. /// <param name="dto"></param>
  6307. /// <returns></returns>
  6308. [HttpPost]
  6309. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6310. {
  6311. JsonView jw = null;
  6312. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6313. // 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
  6314. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6315. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6316. jw = JsonView(true, "获取成功!", Data);
  6317. return Ok(jw);
  6318. }
  6319. /// <summary>
  6320. /// 成本车数据
  6321. /// </summary>
  6322. /// <param name="dto"></param>
  6323. /// <returns></returns>
  6324. [HttpPost]
  6325. public IActionResult GetCarInfo(CarGuidesDto dto)
  6326. {
  6327. JsonView jw = null;
  6328. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6329. jw = JsonView(true, "获取成功!", Data);
  6330. return Ok(jw);
  6331. }
  6332. /// <summary>
  6333. /// 景点数据
  6334. /// </summary>
  6335. /// <param name="dto"></param>
  6336. /// <returns></returns>
  6337. [HttpPost]
  6338. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6339. {
  6340. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6341. return Ok(JsonView(true, "获取成功!", Data));
  6342. }
  6343. /// <summary>
  6344. /// 成本通知
  6345. /// </summary>
  6346. /// <param name="dto"></param>
  6347. /// <returns></returns>
  6348. [HttpPost]
  6349. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6350. {
  6351. if (dto.Diid < 0)
  6352. {
  6353. return Ok(JsonView(false));
  6354. }
  6355. JsonView jw = null;
  6356. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6357. if (GroupCostParameter != null)
  6358. {
  6359. int IsShare = 0;
  6360. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6361. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6362. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6363. string msg = string.Empty;
  6364. if (isTrue)
  6365. {
  6366. if (IsShare == 0)
  6367. {
  6368. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6369. }
  6370. else
  6371. {
  6372. #region 企微通知对应岗位用户
  6373. try
  6374. {
  6375. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6376. }
  6377. catch (Exception ex)
  6378. {
  6379. }
  6380. #endregion
  6381. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6382. }
  6383. jw = JsonView(isTrue, msg, new { IsShare });
  6384. }
  6385. else
  6386. {
  6387. msg = "修改失败!";
  6388. jw = JsonView(isTrue, msg);
  6389. }
  6390. }
  6391. else
  6392. {
  6393. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6394. }
  6395. return Ok(jw);
  6396. }
  6397. /// <summary>
  6398. /// 导出收款账单
  6399. /// </summary>
  6400. /// <param name="dto"></param>
  6401. /// <returns></returns>
  6402. [HttpPost]
  6403. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6404. {
  6405. if (dto.Diid == 0)
  6406. {
  6407. return Ok(JsonView(false, "请传递团组id"));
  6408. }
  6409. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6410. if (deleInfo.Code != 0)
  6411. {
  6412. return Ok(JsonView(false, "团组信息查询失败!"));
  6413. }
  6414. var di = deleInfo.Data as DelegationInfoWebView;
  6415. if (di != null)
  6416. {
  6417. //文件名
  6418. string strFileName = di.TeamName + "-收款账单.doc";
  6419. //获取模板
  6420. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6421. //载入模板
  6422. Document doc = new Document(tmppath);
  6423. decimal TotalPrice = 0.00M;
  6424. string itemStr = string.Empty;
  6425. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6426. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6427. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6428. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6429. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6430. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6431. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6432. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6433. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6434. foreach (var cost in groupCostType)
  6435. {
  6436. var List = cost.ToList();
  6437. if (cost.Key == "A")
  6438. {
  6439. foreach (var ListItem in List)
  6440. {
  6441. if (ListItem.number > 0)
  6442. {
  6443. if (ListItem.code.Contains("TBR"))
  6444. {
  6445. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6446. }
  6447. else
  6448. {
  6449. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6450. }
  6451. TotalPrice += (ListItem.number * ListItem.price);
  6452. }
  6453. }
  6454. }
  6455. else
  6456. {
  6457. itemStr = itemStr.Insert(0, "A段\r\n");
  6458. itemStr += "B段\r\n";
  6459. foreach (var ListItem in List)
  6460. {
  6461. if (ListItem.number > 0)
  6462. {
  6463. if (ListItem.code.Contains("TBR"))
  6464. {
  6465. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6466. }
  6467. else
  6468. {
  6469. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6470. }
  6471. TotalPrice += (ListItem.number * ListItem.price);
  6472. }
  6473. }
  6474. }
  6475. }
  6476. #region 替换Word模板书签内容
  6477. Dictionary<string, string> marks = new Dictionary<string, string>();
  6478. marks.Add("To", di.ClientUnit);//付款方
  6479. marks.Add("ToTel", di.TellPhone);//付款方电话
  6480. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6481. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6482. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6483. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6484. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6485. marks.Add("WeChat", "WeChat");//微信号 di.WeChat;
  6486. marks.Add("PayItemContent", itemStr);//详细信息
  6487. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6488. #endregion
  6489. ////注
  6490. //if (doc.Range.Bookmarks["Attention"] != null)
  6491. //{
  6492. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6493. // mark.Text = frList[0].Attention;
  6494. //}
  6495. foreach (var item in marks.Keys)
  6496. {
  6497. if (doc.Range.Bookmarks[item] != null)
  6498. {
  6499. Bookmark mark = doc.Range.Bookmarks[item];
  6500. mark.Text = marks[item];
  6501. }
  6502. }
  6503. byte[] bytes = null;
  6504. using (MemoryStream stream = new MemoryStream())
  6505. {
  6506. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6507. bytes = stream.ToArray();
  6508. }
  6509. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6510. return Ok(JsonView(true, "", new
  6511. {
  6512. Data = bytes,
  6513. strFileName,
  6514. }));
  6515. }
  6516. else
  6517. {
  6518. return Ok(JsonView(false, "团组信息不存在!"));
  6519. }
  6520. }
  6521. /// <summary>
  6522. /// 导出团组成本
  6523. /// </summary>
  6524. /// <param name="dto"></param>
  6525. /// <returns></returns>
  6526. [HttpPost]
  6527. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6528. {
  6529. var jw = JsonView(false);
  6530. if (dto.Diid == 0)
  6531. {
  6532. return Ok(JsonView(false, "请传递团组id"));
  6533. }
  6534. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6535. if (deleInfo.Code != 0)
  6536. {
  6537. return Ok(JsonView(false, "团组信息查询失败!"));
  6538. }
  6539. var di = deleInfo.Data as DelegationInfoWebView;
  6540. if (di == null)
  6541. {
  6542. return Ok(JsonView(false, "团组信息查询失败!"));
  6543. }
  6544. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6545. WorkbookDesigner designer = new WorkbookDesigner();
  6546. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6547. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6548. for (int i = 0; i < List_GC.Count; i++)
  6549. {
  6550. GroupCost_Excel gc = new GroupCost_Excel();
  6551. gc.Id = List_GC[i].Id;
  6552. gc.Diid = List_GC[i].Diid.ToString();
  6553. gc.DAY = List_GC[i].DAY;
  6554. string week = "";
  6555. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6556. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6557. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6558. gc.ITIN = List_GC[i].ITIN;
  6559. gc.CarType = List_GC[i].CarType;
  6560. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6561. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6562. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6563. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6564. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6565. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6566. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6567. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6568. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6569. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6570. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6571. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6572. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6573. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6574. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6575. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6576. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6577. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6578. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6579. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6580. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6581. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6582. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6583. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6584. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6585. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6586. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6587. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6588. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6589. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6590. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6591. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6592. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6593. List_GC1.Add(gc);
  6594. }
  6595. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6596. dt.TableName = "TB";
  6597. //报表标题等不用dt的值
  6598. designer.SetDataSource("TeamName", dto.title.TeamName);
  6599. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6600. designer.SetDataSource("Tax", dto.title.Tax);
  6601. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6602. designer.SetDataSource("Currency", dto.title.Currency);
  6603. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6604. designer.SetDataSource("Rate", dto.title.Rate);
  6605. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6606. var Aparams = hotels.Find(x => x.Type == "Default");
  6607. if (Aparams == null)
  6608. {
  6609. return Ok(jw);
  6610. }
  6611. //酒店数量
  6612. var txtSGRNumber = Aparams.SGR.ToString();
  6613. var txtTBRNumber = Aparams.TBR.ToString();
  6614. var txtJSESNumber = Aparams.JSES.ToString();
  6615. var txtSUITENumbe = Aparams.SUITE.ToString();
  6616. if (dto.costType == "B")
  6617. {
  6618. Aparams = hotels.Find(x => x.Type == "A");
  6619. var Bparams = hotels.Find(x => x.Type == "B");
  6620. if (Aparams == null || Bparams == null)
  6621. {
  6622. return Ok(jw);
  6623. }
  6624. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6625. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6626. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6627. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6628. }
  6629. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6630. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6631. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6632. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6633. var ws = designer.Workbook.Worksheets[0];
  6634. int Row = List_GC.Count;
  6635. int startIndex = 11;
  6636. int HideRows = 0;
  6637. List<int> hideRowsList = new List<int>();
  6638. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6639. #region A段left数据
  6640. var left = dto.leftInfo.Find(x => x.Type == "A");
  6641. if (left == null)
  6642. {
  6643. return Ok(jw);
  6644. }
  6645. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6646. if (leftBindData != null)
  6647. {
  6648. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6649. designer.SetDataSource("VisaRS", leftBindData.rs);
  6650. designer.SetDataSource("VisaXS", leftBindData.xs);
  6651. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6652. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6653. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6654. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6655. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6656. }
  6657. else
  6658. {
  6659. hideRowsList.Add(Row + startIndex + HideRows);
  6660. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6661. }
  6662. HideRows += 2;
  6663. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6664. if (leftBindData != null)
  6665. {
  6666. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6667. designer.SetDataSource("BXRS", leftBindData.rs);
  6668. designer.SetDataSource("BXXS", leftBindData.xs);
  6669. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6670. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6671. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6672. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6673. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6674. }
  6675. else
  6676. {
  6677. hideRowsList.Add(Row + startIndex + HideRows);
  6678. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6679. }
  6680. HideRows += 2;
  6681. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6682. if (leftBindData != null)
  6683. {
  6684. designer.SetDataSource("HSDRCB", leftBindData.cb);
  6685. designer.SetDataSource("HSRS", leftBindData.rs);
  6686. designer.SetDataSource("HSXS", leftBindData.xs);
  6687. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6688. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6689. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6690. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6691. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6692. }
  6693. else
  6694. {
  6695. hideRowsList.Add(Row + startIndex + HideRows);
  6696. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6697. }
  6698. HideRows += 2;
  6699. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  6700. if (leftBindData != null)
  6701. {
  6702. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  6703. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  6704. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  6705. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6706. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6707. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6708. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6709. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6710. }
  6711. else
  6712. {
  6713. hideRowsList.Add(Row + startIndex + HideRows);
  6714. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6715. }
  6716. HideRows += 2;
  6717. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  6718. if (leftBindData != null)
  6719. {
  6720. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  6721. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  6722. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  6723. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6724. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6725. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6726. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6727. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6728. }
  6729. else
  6730. {
  6731. hideRowsList.Add(Row + startIndex + HideRows);
  6732. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6733. }
  6734. HideRows += 2;
  6735. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  6736. if (leftBindData != null)
  6737. {
  6738. ////TBR
  6739. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  6740. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  6741. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  6742. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6743. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6744. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6745. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6746. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6747. }
  6748. else
  6749. {
  6750. hideRowsList.Add(Row + startIndex + HideRows);
  6751. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6752. }
  6753. HideRows += 2;
  6754. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  6755. if (leftBindData != null)
  6756. {
  6757. ////SGR
  6758. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  6759. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  6760. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  6761. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6762. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6763. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6764. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6765. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6766. }
  6767. else
  6768. {
  6769. hideRowsList.Add(Row + startIndex + HideRows);
  6770. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6771. }
  6772. HideRows += 2;
  6773. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  6774. if (leftBindData != null)
  6775. {
  6776. ////JS/ES
  6777. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  6778. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  6779. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  6780. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6781. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6782. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6783. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6784. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6785. }
  6786. else
  6787. {
  6788. hideRowsList.Add(Row + startIndex + HideRows);
  6789. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6790. }
  6791. HideRows += 2;
  6792. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  6793. if (leftBindData != null)
  6794. {
  6795. ////SUITE
  6796. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  6797. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  6798. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  6799. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6800. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6801. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6802. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6803. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6804. }
  6805. else
  6806. {
  6807. hideRowsList.Add(Row + startIndex + HideRows);
  6808. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6809. }
  6810. HideRows += 2;
  6811. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  6812. if (leftBindData != null)
  6813. {
  6814. designer.SetDataSource("DJDRCB", leftBindData.cb);
  6815. designer.SetDataSource("DJRS", leftBindData.rs);
  6816. designer.SetDataSource("DJXS", leftBindData.xs);
  6817. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6818. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6819. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6820. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6821. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6822. }
  6823. else
  6824. {
  6825. hideRowsList.Add(Row + startIndex + HideRows);
  6826. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6827. }
  6828. HideRows += 2;
  6829. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  6830. if (leftBindData != null)
  6831. {
  6832. designer.SetDataSource("HCPCB", leftBindData.cb);
  6833. designer.SetDataSource("HCPRS", leftBindData.rs);
  6834. designer.SetDataSource("HCPXS", leftBindData.xs);
  6835. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6836. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6837. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6838. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6839. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6840. }
  6841. else
  6842. {
  6843. hideRowsList.Add(Row + startIndex + HideRows);
  6844. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6845. }
  6846. HideRows += 2;
  6847. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  6848. if (leftBindData != null)
  6849. {
  6850. designer.SetDataSource("CPCB", leftBindData.cb);
  6851. designer.SetDataSource("CPRS", leftBindData.rs);
  6852. designer.SetDataSource("CPXS", leftBindData.xs);
  6853. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6854. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6855. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6856. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6857. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6858. }
  6859. else
  6860. {
  6861. hideRowsList.Add(Row + startIndex + HideRows);
  6862. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6863. }
  6864. HideRows += 2;
  6865. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  6866. if (leftBindData != null)
  6867. {
  6868. designer.SetDataSource("GWDRCD", leftBindData.cb);
  6869. designer.SetDataSource("GWRS", leftBindData.rs);
  6870. designer.SetDataSource("GWXS", leftBindData.xs);
  6871. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6872. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6873. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6874. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6875. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6876. }
  6877. else
  6878. {
  6879. hideRowsList.Add(Row + startIndex + HideRows);
  6880. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6881. }
  6882. HideRows += 2;
  6883. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  6884. if (leftBindData != null)
  6885. {
  6886. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  6887. designer.SetDataSource("LYJRS", leftBindData.rs);
  6888. designer.SetDataSource("LYJXS", leftBindData.xs);
  6889. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6890. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6891. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6892. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6893. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6894. }
  6895. else
  6896. {
  6897. hideRowsList.Add(Row + startIndex + HideRows);
  6898. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6899. }
  6900. #endregion
  6901. #region A段Right信息
  6902. var right = dto.rightInfo.Find(x => x.Type == "A");
  6903. if (right == null)
  6904. {
  6905. return Ok(jw);
  6906. }
  6907. HideRows += 4;
  6908. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  6909. if (rightBindData != null)
  6910. {
  6911. //经济舱 + 双人间 TBR
  6912. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  6913. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  6914. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6915. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  6916. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6917. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6918. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6919. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6920. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6921. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6922. }
  6923. else
  6924. {
  6925. hideRowsList.Add(Row + startIndex + HideRows);
  6926. }
  6927. HideRows += 2;
  6928. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  6929. if (rightBindData != null)
  6930. {
  6931. //经济舱 + 单人间 SGR
  6932. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  6933. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  6934. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6935. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  6936. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6937. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6938. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6939. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6940. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6941. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6942. }
  6943. else
  6944. {
  6945. hideRowsList.Add(Row + startIndex + HideRows);
  6946. }
  6947. HideRows += 2;
  6948. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  6949. if (rightBindData != null)
  6950. {
  6951. //公务舱 + 单人间 SGR
  6952. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  6953. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  6954. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6955. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  6956. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6957. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6958. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6959. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6960. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6961. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6962. }
  6963. else
  6964. {
  6965. hideRowsList.Add(Row + startIndex + HideRows);
  6966. }
  6967. HideRows += 2;
  6968. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  6969. if (rightBindData != null)
  6970. {
  6971. //公务舱 + 小套房 JSES
  6972. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  6973. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  6974. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6975. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  6976. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6977. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6978. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6979. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6980. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6981. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6982. }
  6983. else
  6984. {
  6985. hideRowsList.Add(Row + startIndex + HideRows);
  6986. }
  6987. HideRows += 2;
  6988. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  6989. if (rightBindData != null)
  6990. {
  6991. //公务舱 + 小套房 JSES
  6992. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  6993. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  6994. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6995. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  6996. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6997. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6998. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6999. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7000. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7001. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7002. }
  7003. else
  7004. {
  7005. hideRowsList.Add(Row + startIndex + HideRows);
  7006. }
  7007. HideRows += 2;
  7008. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7009. if (rightBindData != null)
  7010. {
  7011. //经济舱 + 大套房
  7012. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7013. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7014. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7015. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7016. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7017. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7018. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7019. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7020. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7021. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7022. }
  7023. else
  7024. {
  7025. hideRowsList.Add(Row + startIndex + HideRows);
  7026. }
  7027. #endregion
  7028. #region B段标题清空
  7029. designer.SetDataSource("CostBDRCB", "");
  7030. designer.SetDataSource("CostBRS", "");
  7031. designer.SetDataSource("CostBXS", "");
  7032. designer.SetDataSource("CostBZCB", "");
  7033. designer.SetDataSource("CostBDRBJ", "");
  7034. designer.SetDataSource("CostBZBJ", "");
  7035. designer.SetDataSource("CostBDRLR", "");
  7036. designer.SetDataSource("CostBZLR", "");
  7037. designer.SetDataSource("CostBDRCBOM", "");
  7038. designer.SetDataSource("CostBRSOM", "");
  7039. designer.SetDataSource("CostBZCBOM", "");
  7040. designer.SetDataSource("CostBDRBJOM", "");
  7041. designer.SetDataSource("CostBZBJOM", "");
  7042. designer.SetDataSource("CostBDRLROM", "");
  7043. designer.SetDataSource("CostBZLROM", "");
  7044. #endregion
  7045. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7046. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7047. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7048. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7049. designer.SetDataSource("DJName", "地接(CNY)");
  7050. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7051. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7052. designer.SetDataSource("GWName", "公务(CNY)");
  7053. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7054. designer.SetDataSource("LYJName", "零用金(CNY)");
  7055. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7056. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7057. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7058. designer.SetDataSource("BXName", "保险(CNY)");
  7059. designer.SetDataSource("VisaName", "签证(CNY)");
  7060. #region B段基本数据
  7061. if (dto.costType == "B")
  7062. {
  7063. left = dto.leftInfo.Find(x => x.Type == "B");
  7064. if (left == null)
  7065. {
  7066. return Ok(jw);
  7067. }
  7068. #region B段left数据
  7069. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7070. if (leftBindData != null)
  7071. {
  7072. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7073. designer.SetDataSource("BHSRS", leftBindData.rs);
  7074. designer.SetDataSource("BHSXS", leftBindData.xs);
  7075. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7076. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7077. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7078. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7079. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7080. }
  7081. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7082. if (leftBindData != null)
  7083. {
  7084. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7085. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7086. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7087. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7088. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7089. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7090. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7091. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7092. }
  7093. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7094. if (leftBindData != null)
  7095. {
  7096. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7097. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7098. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7099. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7100. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7101. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7102. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7103. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7104. }
  7105. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7106. if (leftBindData != null)
  7107. {
  7108. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7109. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7110. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7111. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7112. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7113. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7114. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7115. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7116. }
  7117. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7118. if (leftBindData != null)
  7119. {
  7120. designer.SetDataSource("BCPCB", leftBindData.cb);
  7121. designer.SetDataSource("BCPRS", leftBindData.rs);
  7122. designer.SetDataSource("BCPXS", leftBindData.xs);
  7123. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7124. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7125. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7126. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7127. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7128. }
  7129. //TBR
  7130. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7131. if (leftBindData != null)
  7132. {
  7133. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7134. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7135. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7136. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7137. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7138. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7139. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7140. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7141. }
  7142. //SGR
  7143. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7144. if (leftBindData != null)
  7145. {
  7146. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7147. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7148. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7149. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7150. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7151. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7152. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7153. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7154. }
  7155. //JS/ES
  7156. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7157. if (leftBindData != null)
  7158. {
  7159. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7160. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7161. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7162. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7163. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7164. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7165. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7166. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7167. }
  7168. //SUITE
  7169. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7170. if (leftBindData != null)
  7171. {
  7172. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7173. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7174. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7175. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7176. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7177. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7178. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7179. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7180. }
  7181. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7182. if (leftBindData != null)
  7183. {
  7184. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7185. designer.SetDataSource("BDJRS", leftBindData.rs);
  7186. designer.SetDataSource("BDJXS", leftBindData.xs);
  7187. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7188. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7189. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7190. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7191. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7192. }
  7193. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7194. if (leftBindData != null)
  7195. {
  7196. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7197. designer.SetDataSource("BGWRS", leftBindData.rs);
  7198. designer.SetDataSource("BGWXS", leftBindData.xs);
  7199. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7200. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7201. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7202. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7203. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7204. }
  7205. #region 优化方案
  7206. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7207. //excelBind.Add("零用金", new {
  7208. //cb="",
  7209. //rs="",
  7210. //xs ="",
  7211. //zcb = "",
  7212. //});
  7213. #endregion
  7214. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7215. if (leftBindData != null)
  7216. {
  7217. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7218. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7219. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7220. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7221. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7222. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7223. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7224. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7225. }
  7226. #endregion
  7227. #region B段Right信息
  7228. right = dto.rightInfo.Find(x => x.Type == "B");
  7229. if (right == null)
  7230. {
  7231. return Ok(jw);
  7232. }
  7233. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7234. if (rightBindData != null)
  7235. {
  7236. //经济舱 + 双人间 TBR
  7237. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7238. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7239. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7240. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7241. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7242. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7243. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7244. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7245. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7246. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7247. }
  7248. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7249. if (rightBindData != null)
  7250. {
  7251. //经济舱 + 单人间 SGR
  7252. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7253. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7254. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7255. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7256. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7257. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7258. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7259. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7260. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7261. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7262. }
  7263. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7264. if (rightBindData != null)
  7265. {
  7266. //公务舱 + 单人间 SGR
  7267. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7268. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7269. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7270. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7271. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7272. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7273. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7274. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7275. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7276. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7277. }
  7278. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7279. if (rightBindData != null)
  7280. {
  7281. //公务舱 + 小套房 JSES
  7282. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7283. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7284. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7285. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7286. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7287. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7288. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7289. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7290. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7291. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7292. }
  7293. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7294. if (rightBindData != null)
  7295. {
  7296. //公务舱 + 小套房 JSES
  7297. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7298. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7299. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7300. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7301. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7302. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7303. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7304. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7305. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7306. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7307. }
  7308. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7309. if (rightBindData != null)
  7310. {
  7311. //经济舱 + 大套房
  7312. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7313. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7314. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7315. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7316. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7317. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7318. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7319. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7320. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7321. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7322. }
  7323. #endregion
  7324. #region 标题
  7325. designer.SetDataSource("CostBDRCB", "单人成本");
  7326. designer.SetDataSource("CostBRS", "人数");
  7327. designer.SetDataSource("CostBXS", "系数");
  7328. designer.SetDataSource("CostBZCB", "总成本");
  7329. designer.SetDataSource("CostBDRBJ", "单人报价");
  7330. designer.SetDataSource("CostBZBJ", "总报价");
  7331. designer.SetDataSource("CostBDRLR", "单人利润");
  7332. designer.SetDataSource("CostBZLR", "总利润");
  7333. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7334. designer.SetDataSource("CostBRSOM", "人数");
  7335. designer.SetDataSource("CostBZCBOM", "总成本");
  7336. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7337. designer.SetDataSource("CostBZBJOM", "总报价");
  7338. designer.SetDataSource("CostBDRLROM", "单人利润");
  7339. designer.SetDataSource("CostBZLROM", "总利润");
  7340. #endregion
  7341. }
  7342. #endregion
  7343. designer.SetDataSource("TzZCB2", TzZCB2);
  7344. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7345. designer.SetDataSource("TzZLR2", TzZLR2);
  7346. string[] dataSourceKeys = new string[]
  7347. {
  7348. "VF",
  7349. "TGS",
  7350. "TGOF",
  7351. "TGM",
  7352. "TGA",
  7353. "TGTF",
  7354. "TGEF",
  7355. "CFM",
  7356. "CFOF",
  7357. "B",
  7358. "L",
  7359. "D",
  7360. "TBR",
  7361. "SGR",
  7362. "JSES",
  7363. "Suite",
  7364. "TV",
  7365. "1L",
  7366. "IF",
  7367. "EF",
  7368. "BRF",
  7369. "TE",
  7370. "TGT",
  7371. "DRVT",
  7372. "PC",
  7373. "TLF",
  7374. "ECT"
  7375. };
  7376. foreach (var item in dataSourceKeys)
  7377. {
  7378. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7379. if (find != null)
  7380. {
  7381. designer.SetDataSource(item, find.text);
  7382. }
  7383. else
  7384. {
  7385. designer.SetDataSource(item, 0);
  7386. }
  7387. }
  7388. designer.SetDataSource(dt);
  7389. //根据数据源处理生成报表内容
  7390. designer.Process();
  7391. designer.Workbook.Worksheets[0].Name = "清单";
  7392. Worksheet sheet = designer.Workbook.Worksheets[0];
  7393. foreach (var Rowindex in hideRowsList)
  7394. {
  7395. ws.Cells.HideRows(Rowindex, 2);
  7396. }
  7397. byte[] bytes = null;
  7398. string strFileName = di.TeamName + "-团组-成本.xls";
  7399. using (MemoryStream stream = new MemoryStream())
  7400. {
  7401. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7402. bytes = stream.ToArray();
  7403. }
  7404. return Ok(JsonView(true, "", new
  7405. {
  7406. Data = bytes,
  7407. strFileName,
  7408. }));
  7409. }
  7410. /// <summary>
  7411. /// 导出客户报表
  7412. /// </summary>
  7413. /// <returns></returns>
  7414. [HttpPost]
  7415. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7416. {
  7417. var jw = JsonView(false);
  7418. if (dto.Diid == 0)
  7419. {
  7420. return Ok(JsonView(false, "请传递团组id"));
  7421. }
  7422. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7423. if (deleInfo.Code != 0)
  7424. {
  7425. return Ok(JsonView(false, "团组信息查询失败!"));
  7426. }
  7427. var di = deleInfo.Data as DelegationInfoWebView;
  7428. if (di == null)
  7429. {
  7430. return Ok(JsonView(false, "团组信息查询失败!"));
  7431. }
  7432. //文件名
  7433. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7434. //获取模板
  7435. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7436. //载入模板
  7437. Document doc = new Document(tmppath);
  7438. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7439. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7440. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7441. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7442. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7443. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7444. if (AParameter == null)
  7445. {
  7446. return Ok(JsonView(false, "系数不存在!"));
  7447. }
  7448. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7449. , TzAirDesc, TzZCost;
  7450. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7451. = TzAirDesc = TzZCost = string.Empty;
  7452. TzNumber = AParameter.CostTypenumber.ToString();
  7453. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7454. CarGuides1 = dto.CarGuides1;
  7455. Meal = dto.Meal;
  7456. SubsidizedMeals = dto.SubsidizedMeals;
  7457. NightRepair = dto.NightRepair;
  7458. AttractionsTickets = dto.AttractionsTickets;
  7459. MiscellaneousFees = dto.MiscellaneousFees;
  7460. ATip = dto.ATip;
  7461. TzHotelDesc = "";
  7462. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7463. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7464. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7465. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7466. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7467. TzAirDesc = "";
  7468. TzZCost = dto.TzZCost;
  7469. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7470. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7471. var index = 1;
  7472. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7473. foreach (var item in TzHotelDescArr)
  7474. {
  7475. if (AinfoArr != null)
  7476. {
  7477. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7478. if (Ainfo != null)
  7479. {
  7480. if (int.Parse(Ainfo.rs) <= 0)
  7481. {
  7482. continue;
  7483. }
  7484. var hotelText = string.Empty;
  7485. switch (item)
  7486. {
  7487. case "SGR":
  7488. hotelText = "单人间";
  7489. break;
  7490. case "JSES":
  7491. hotelText = "小套房";
  7492. break;
  7493. case "SUITE":
  7494. hotelText = "套房";
  7495. break;
  7496. case "TBR":
  7497. hotelText = "双人间";
  7498. break;
  7499. }
  7500. if (item != "TBR")
  7501. {
  7502. 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";
  7503. }
  7504. else
  7505. {
  7506. 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";
  7507. }
  7508. index++;
  7509. }
  7510. }
  7511. }
  7512. index = 1;
  7513. foreach (var item in TzAirDescArr)
  7514. {
  7515. if (AinfoArr != null)
  7516. {
  7517. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7518. if (Ainfo != null)
  7519. {
  7520. if (int.Parse(Ainfo.rs) <= 0)
  7521. {
  7522. continue;
  7523. }
  7524. 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";
  7525. index++;
  7526. }
  7527. }
  7528. }
  7529. if (dto.costType == "B")
  7530. {
  7531. if (BParameter == null)
  7532. {
  7533. return Ok(JsonView(false, "B段系数不存在!"));
  7534. }
  7535. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7536. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7537. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7538. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7539. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7540. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7541. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7542. foreach (var item in TzHotelDescArr)
  7543. {
  7544. if (AinfoArr != null)
  7545. {
  7546. TzHotelDesc += "B段信息 \r\n";
  7547. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7548. if (Ainfo != null)
  7549. {
  7550. if (int.Parse(Ainfo.rs) <= 0)
  7551. {
  7552. continue;
  7553. }
  7554. var hotelText = string.Empty;
  7555. switch (item)
  7556. {
  7557. case "SGR":
  7558. hotelText = "单人间";
  7559. break;
  7560. case "JSES":
  7561. hotelText = "小套房";
  7562. break;
  7563. case "SUITE":
  7564. hotelText = "套房";
  7565. break;
  7566. case "TBR":
  7567. hotelText = "双人间";
  7568. break;
  7569. }
  7570. if (item != "TBR")
  7571. {
  7572. 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";
  7573. }
  7574. else
  7575. {
  7576. 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";
  7577. }
  7578. index++;
  7579. }
  7580. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7581. }
  7582. }
  7583. index = 1;
  7584. foreach (var item in TzAirDescArr)
  7585. {
  7586. if (AinfoArr != null)
  7587. {
  7588. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7589. if (Ainfo != null)
  7590. {
  7591. if (int.Parse(Ainfo.rs) <= 0)
  7592. {
  7593. continue;
  7594. }
  7595. 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";
  7596. index++;
  7597. }
  7598. }
  7599. }
  7600. }
  7601. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7602. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7603. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7604. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7605. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7606. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7607. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7608. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7609. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7610. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7611. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7612. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7613. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7614. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7615. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7616. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7617. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7618. DickeyValue.Add("TzZCost", TzZCost);
  7619. foreach (var key in DickeyValue.Keys)
  7620. {
  7621. if (doc.Range.Bookmarks[key] != null)
  7622. {
  7623. Bookmark mark = doc.Range.Bookmarks[key];
  7624. mark.Text = DickeyValue[key];
  7625. }
  7626. }
  7627. byte[] bytes = null;
  7628. string strFileName = di.TeamName + "-客户报价.doc";
  7629. using (MemoryStream stream = new MemoryStream())
  7630. {
  7631. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7632. bytes = stream.ToArray();
  7633. }
  7634. return Ok(JsonView(true, "", new
  7635. {
  7636. Data = bytes,
  7637. strFileName,
  7638. }));
  7639. }
  7640. /// <summary>
  7641. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7642. /// </summary>
  7643. /// <param name="dto"></param>
  7644. /// <returns></returns>
  7645. [HttpPost]
  7646. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7647. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7648. {
  7649. try
  7650. {
  7651. #region 参数验证
  7652. if (dto.DiId < 0)
  7653. {
  7654. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7655. }
  7656. List<int> cTableIds = new List<int>() {
  7657. 76 ,//酒店预订
  7658. 77 ,//行程
  7659. 79 ,//车/导游地接
  7660. 80 ,//签证
  7661. 81 ,//邀请/公务活
  7662. 82 ,//团组客户保险
  7663. 85 ,//机票预订
  7664. 98 ,//其他款项
  7665. 285 ,//收款退还
  7666. 751 ,//酒店早餐
  7667. 1015 // 超支费用
  7668. };
  7669. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7670. {
  7671. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7672. }
  7673. #endregion
  7674. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7675. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7676. if (_GroupCostParameters.Count <= 0)
  7677. {
  7678. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7679. }
  7680. if (_GroupCostParameters[0].IsShare == 0)
  7681. {
  7682. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7683. }
  7684. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7685. //处理date为空问题
  7686. if (_GroupCosts.Count > 0)
  7687. {
  7688. for (int i = 0; i < _GroupCosts.Count; i++)
  7689. {
  7690. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  7691. {
  7692. if (i > 0)
  7693. {
  7694. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  7695. }
  7696. }
  7697. }
  7698. }
  7699. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  7700. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  7701. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  7702. string currCode = "";
  7703. #region currCode 验证
  7704. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  7705. if (isInt)
  7706. {
  7707. var currData = currDatas.Find(it => it.Id == intCurrency);
  7708. if (currData != null)
  7709. {
  7710. currCode = currData.Name;
  7711. }
  7712. }
  7713. else
  7714. {
  7715. currCode = _GroupCostParameters[0].Currency.Trim();
  7716. }
  7717. #endregion
  7718. //op,酒店单段模式存储
  7719. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  7720. {
  7721. CurrencyCode = currCode,
  7722. Rate = _GroupCostParameters[0].Rate,
  7723. CostType = _GroupCostParameters[0].CostType,
  7724. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  7725. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  7726. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  7727. };
  7728. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  7729. if (_GroupCostParameters.Count == 2)
  7730. {
  7731. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  7732. }
  7733. foreach (var item in _GroupCostParameters)
  7734. {
  7735. decimal _rate = 1;
  7736. decimal _rate1 = item.Rate;
  7737. decimal _scale = 1;
  7738. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  7739. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  7740. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  7741. //if (userInfo != null)
  7742. //{
  7743. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  7744. // {
  7745. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  7746. // {
  7747. // _scale = 1.00M;
  7748. // }
  7749. // }
  7750. //}
  7751. #endregion
  7752. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  7753. {
  7754. CurrencyCode = currCode,
  7755. Rate = _rate1,
  7756. CostType = item.CostType,
  7757. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  7758. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  7759. CostTypeNumber = item.CostTypenumber
  7760. };
  7761. if (_GroupCostParameters.Count > 1)
  7762. {
  7763. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  7764. }
  7765. else
  7766. {
  7767. modulePromptInfo.CostTypeNumber = item.LYJRS;
  7768. }
  7769. if (dto.CTable == 79)//
  7770. {
  7771. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  7772. modulePromptInfo.TotalCost = item.DJCB;
  7773. }
  7774. List<string> costTypes = new List<string>() { "A", "B" };
  7775. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  7776. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  7777. if (_GroupCostsDuplicates.Count() == 1)
  7778. {
  7779. _GroupCostsTypeData = _GroupCosts;
  7780. }
  7781. else
  7782. {
  7783. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  7784. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  7785. }
  7786. /*
  7787. * 76 酒店预订
  7788. * 77 行程
  7789. * 79 车/导游地接
  7790. * 80 签证
  7791. * 81 邀请/公务活动
  7792. * 82 团组客户保险
  7793. * 85 机票预订
  7794. * 98 其他款项
  7795. * 285 收款退还
  7796. * 751 酒店早餐
  7797. * 1015 超支费用
  7798. */
  7799. switch (dto.CTable)
  7800. {
  7801. case 76: // 酒店预订
  7802. _ModuleSubPromptInfo.AddRange(
  7803. _GroupCostsTypeData.Select(it => new
  7804. {
  7805. it.DAY,
  7806. it.Date,
  7807. it.ACCON,
  7808. it.ITIN,
  7809. it.SGR,
  7810. it.TBR,
  7811. it.JS_ES,
  7812. it.Suite
  7813. })
  7814. );
  7815. break;
  7816. case 79: // 车/导游地接
  7817. _ModuleSubPromptInfo.AddRange(
  7818. _GroupCostsTypeData.Select(it => new
  7819. {
  7820. Date = it.Date, //日期
  7821. CarFee = (it.CarCost + it.CFM + it.CFOF) * _rate * _scale, //车费用
  7822. GuideFee = (it.TGS + it.TGOF + it.TGM + it.TGA + it.TGTF + it.TGEF) * _rate * _scale, //导游费用
  7823. MealFee = (it.B + it.L + it.D) * _rate * _scale, //餐食费
  7824. TicketFee = it.EF * _rate * _scale, //门票费
  7825. TipFee = (it.TGTips + it.DRVTips) * _rate * _scale, //小费
  7826. AirportTransferFee = 0.00M,
  7827. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  7828. TravelSupplies = it.TE * _rate * _scale, //出行物资
  7829. LeadersFee = it.TLF * _rate * _scale, //领队费
  7830. CarFee1 = it.CarCost * _rate * _scale,
  7831. CarType = it.CarType, //车型
  7832. SpentCash = it.PC * _rate * _scale, //零用金
  7833. })
  7834. );
  7835. break;
  7836. case 85: // 机票
  7837. List<dynamic> datas = new List<dynamic>();
  7838. datas.Add(
  7839. new
  7840. {
  7841. AirType = "经济舱",
  7842. AirNum = item.JJCRS,
  7843. AirDRCB = item.JJCCB,
  7844. AirZCB = (item.JJCRS * item.JJCCB)
  7845. }
  7846. );
  7847. datas.Add(
  7848. new
  7849. {
  7850. AirType = "公务舱",
  7851. AirNum = item.GWCRS,
  7852. AirDRCB = item.GWCCB,
  7853. AirZCB = (item.GWCRS * item.GWCCB)
  7854. }
  7855. );
  7856. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7857. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  7858. modulePromptInfo.Data = new {
  7859. airFeeData = datas,
  7860. airInitData = initDatas
  7861. };
  7862. _ModulePromptInfos.Add(modulePromptInfo);
  7863. break;
  7864. default:
  7865. break;
  7866. }
  7867. }
  7868. if (dto.CTable != 85)
  7869. {
  7870. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  7871. _ModulePromptInfos.Add(_ModulePromptInfo);
  7872. }
  7873. _view.ModulePromptInfos = _ModulePromptInfos;
  7874. return Ok(JsonView(true, "操作成功!", _view));
  7875. }
  7876. catch (Exception ex)
  7877. {
  7878. return Ok(JsonView(false, ex.Message));
  7879. }
  7880. }
  7881. /// <summary>
  7882. /// 根据黑屏代码重新生成行程
  7883. /// </summary>
  7884. /// <param name="dto"></param>
  7885. /// <returns></returns>
  7886. [HttpPost]
  7887. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  7888. {
  7889. var jw = JsonView(false);
  7890. var Create =_GroupCostRepository.
  7891. CreateGroupCostByBlackCode(dto.Diid);
  7892. jw.Msg = Create.Msg;
  7893. if (Create.Code == 0)
  7894. {
  7895. jw.Code = 200;
  7896. jw.Data = new
  7897. {
  7898. groupCost = Create.Data,
  7899. blackCodeIsTrue = true
  7900. };
  7901. }
  7902. else
  7903. {
  7904. jw.Code = 400;
  7905. jw.Data = new
  7906. {
  7907. groupCost = Create.Data,
  7908. blackCodeIsTrue = false,
  7909. };
  7910. }
  7911. return Ok(jw);
  7912. }
  7913. #endregion
  7914. #region 酒店预定 保留
  7915. /// <summary>
  7916. /// 酒店预订页面初始化绑定
  7917. /// </summary>
  7918. /// <param name="dto"></param>
  7919. /// <returns></returns>
  7920. [HttpPost]
  7921. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7922. public async Task<IActionResult> HotelReservationsInitialize(HotelReservationsDto dto)
  7923. {
  7924. try
  7925. {
  7926. Result groupData = await _hotelPriceRep.HotelReservationsInitialize(dto);
  7927. if (groupData.Code != 0)
  7928. {
  7929. return Ok(JsonView(false, groupData.Msg));
  7930. }
  7931. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  7932. }
  7933. catch (Exception ex)
  7934. {
  7935. return Ok(JsonView(false, ex.Message));
  7936. }
  7937. }
  7938. /// <summary>
  7939. /// 根据团组Id查询酒店费用列表
  7940. /// </summary>
  7941. /// <param name="dto"></param>
  7942. /// <returns></returns>
  7943. [HttpPost]
  7944. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7945. public async Task<IActionResult> HotelReservationsByDiId(HotelReservationsByDiIdDto dto)
  7946. {
  7947. try
  7948. {
  7949. Result groupData = await _hotelPriceRep.HotelReservationsByDiId(dto);
  7950. if (groupData.Code != 0)
  7951. {
  7952. return Ok(JsonView(false, groupData.Msg));
  7953. }
  7954. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  7955. }
  7956. catch (Exception ex)
  7957. {
  7958. return Ok(JsonView(false, ex.Message));
  7959. }
  7960. }
  7961. /// <summary>
  7962. /// 根据酒店费用Id查询酒店费用详细
  7963. /// </summary>
  7964. /// <param name="dto"></param>
  7965. /// <returns></returns>
  7966. [HttpPost]
  7967. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7968. public async Task<IActionResult> HotelReservationsById(HotelReservationsByIdDto dto)
  7969. {
  7970. try
  7971. {
  7972. Result groupData = await _hotelPriceRep.HotelReservationsById(dto);
  7973. if (groupData.Code != 0)
  7974. {
  7975. return Ok(JsonView(false, groupData.Msg));
  7976. }
  7977. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  7978. }
  7979. catch (Exception ex)
  7980. {
  7981. return Ok(JsonView(false, ex.Message));
  7982. }
  7983. }
  7984. /// <summary>
  7985. /// 计算酒店付款总金额
  7986. /// </summary>
  7987. /// <param name="dto"></param>
  7988. /// <returns></returns>
  7989. [HttpPost]
  7990. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7991. public async Task<IActionResult> HotelConversionAmounts(HotelReservationsCNYDto dto)
  7992. {
  7993. try
  7994. {
  7995. Result groupData = await _hotelPriceRep.HotelConversionAmounts(dto);
  7996. if (groupData.Code != 0)
  7997. {
  7998. return Ok(JsonView(false, groupData.Msg));
  7999. }
  8000. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8001. }
  8002. catch (Exception ex)
  8003. {
  8004. return Ok(JsonView(false, ex.Message));
  8005. }
  8006. }
  8007. /// <summary>
  8008. /// 酒店费用操作(Status:1.新增,2.修改)
  8009. /// </summary>
  8010. /// <param name="dto"></param>
  8011. /// <returns></returns>
  8012. [HttpPost]
  8013. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8014. public async Task<IActionResult> OpHotelReservations(OpHotelReservationsData dto)
  8015. {
  8016. try
  8017. {
  8018. Result groupData = await _hotelPriceRep.OpHotelReservations(dto);
  8019. if (groupData.Code != 0)
  8020. {
  8021. return Ok(JsonView(false, groupData.Msg));
  8022. }
  8023. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8024. }
  8025. catch (Exception ex)
  8026. {
  8027. return Ok(JsonView(false, ex.Message));
  8028. }
  8029. }
  8030. /// <summary>
  8031. /// 文件上传
  8032. /// </summary>
  8033. /// <param name="file"></param>
  8034. /// <returns></returns>
  8035. [HttpPost]
  8036. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8037. public async Task<IActionResult> UploadHotel(IFormFile file)
  8038. {
  8039. try
  8040. {
  8041. if (file != null)
  8042. {
  8043. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  8044. //文件名称
  8045. string projectFileName = file.FileName;
  8046. //上传的文件的路径
  8047. string filePath = "";
  8048. if (!Directory.Exists(fileDir))
  8049. {
  8050. Directory.CreateDirectory(fileDir);
  8051. }
  8052. //上传的文件的路径
  8053. filePath = fileDir + $@"\酒店费用录入相关文件\{projectFileName}";
  8054. using (FileStream fs = System.IO.File.Create(filePath))
  8055. {
  8056. file.CopyTo(fs);
  8057. fs.Flush();
  8058. }
  8059. return Ok(JsonView(true, "上传成功!", projectFileName));
  8060. }
  8061. else
  8062. {
  8063. return Ok(JsonView(false, "上传失败!"));
  8064. }
  8065. }
  8066. catch (Exception ex)
  8067. {
  8068. return Ok(JsonView(false, "程序错误!"));
  8069. throw;
  8070. }
  8071. }
  8072. /// <summary>
  8073. /// 删除指定文件
  8074. /// </summary>
  8075. /// <param name="dto"></param>
  8076. /// <returns></returns>
  8077. [HttpPost]
  8078. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8079. public async Task<IActionResult> DelFileHotel(DelFileDto dto)
  8080. {
  8081. try
  8082. {
  8083. string filePath = "";
  8084. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  8085. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  8086. //int id = 0;
  8087. filePath = fileDir + "/酒店费用录入相关文件/" + dto.fileName;
  8088. // 删除该文件
  8089. try
  8090. {
  8091. System.IO.File.Delete(filePath);
  8092. var result = await _sqlSugar.Updateable<Grp_HotelReservations>().Where(a => a.Id == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_HotelReservations()
  8093. {
  8094. Attachment = "",
  8095. }).ExecuteCommandAsync();
  8096. if (result != 0)
  8097. {
  8098. return Ok(JsonView(true, "成功!"));
  8099. }
  8100. else
  8101. {
  8102. return Ok(JsonView(false, "失败!"));
  8103. }
  8104. }
  8105. catch (Exception)
  8106. {
  8107. var result = await _sqlSugar.Updateable<Grp_HotelReservations>().Where(a => a.Id == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_HotelReservations()
  8108. {
  8109. Attachment = "",
  8110. }).ExecuteCommandAsync();
  8111. if (result != 0)
  8112. {
  8113. return Ok(JsonView(true, "成功!"));
  8114. }
  8115. else
  8116. {
  8117. return Ok(JsonView(false, "失败!"));
  8118. }
  8119. throw;
  8120. }
  8121. }
  8122. catch (Exception ex)
  8123. {
  8124. return Ok(JsonView(false, "程序错误!"));
  8125. throw;
  8126. }
  8127. }
  8128. /// <summary>
  8129. /// 生成VOUCHER
  8130. /// </summary>
  8131. /// <param name="dto"></param>
  8132. /// <returns></returns>
  8133. [HttpPost]
  8134. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8135. public async Task<IActionResult> HotelGenerate(HotelReservationsByIdDto dto)
  8136. {
  8137. Grp_HotelReservations h = _sqlSugar.Queryable<Grp_HotelReservations>().First(a => a.Id == dto.Id && a.IsDel == 0);
  8138. //判断数据是否完整
  8139. if (h != null)
  8140. {
  8141. if (!string.IsNullOrEmpty(h.DetermineNo))
  8142. {
  8143. string strFileName = "HotelStatement/";
  8144. Grp_DelegationInfo dele = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == h.DiId && a.IsDel == 0);
  8145. if (dele != null)
  8146. strFileName += dele.TourCode;
  8147. //载入模板
  8148. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8149. Document doc = new Document(sss);
  8150. DocumentBuilder builder = new DocumentBuilder(doc);
  8151. try
  8152. {
  8153. #region 替换Word模板书签内容
  8154. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8155. //入住卷预定号码
  8156. if (doc.Range.Bookmarks["VNO"] != null)
  8157. {
  8158. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8159. mark.Text = h.CheckNumber;
  8160. }
  8161. //酒店时间
  8162. if (doc.Range.Bookmarks["Date"] != null)
  8163. {
  8164. Bookmark mark = doc.Range.Bookmarks["Date"];
  8165. mark.Text = Convert.ToDateTime(h.CreateTime).ToString("yyyy-MM-dd");
  8166. }
  8167. //团号
  8168. if (doc.Range.Bookmarks["TNo"] != null)
  8169. {
  8170. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8171. mark.Text = dele.TourCode;
  8172. }
  8173. //预定号码
  8174. if (doc.Range.Bookmarks["BookingId"] != null)
  8175. {
  8176. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8177. mark.Text = h.ReservationsNo;
  8178. }
  8179. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8180. {
  8181. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8182. mark.Text = h.DetermineNo;
  8183. }
  8184. //酒店城市
  8185. if (doc.Range.Bookmarks["City"] != null)
  8186. {
  8187. Bookmark mark = doc.Range.Bookmarks["City"];
  8188. mark.Text = h.City;
  8189. }
  8190. //酒店名称
  8191. if (doc.Range.Bookmarks["HName"] != null)
  8192. {
  8193. Bookmark mark = doc.Range.Bookmarks["HName"];
  8194. mark.Text = h.HotelName;
  8195. }
  8196. //酒店地址
  8197. if (doc.Range.Bookmarks["Address"] != null)
  8198. {
  8199. Bookmark mark = doc.Range.Bookmarks["Address"];
  8200. mark.Text = h.HotelAddress;
  8201. }
  8202. //酒店电话
  8203. if (doc.Range.Bookmarks["Tel"] != null)
  8204. {
  8205. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8206. mark.Text = h.HotelTel;
  8207. }
  8208. //酒店传真
  8209. if (doc.Range.Bookmarks["Fax"] != null)
  8210. {
  8211. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8212. if (!string.IsNullOrWhiteSpace(h.HotelFax))
  8213. {
  8214. mark.Text = h.HotelFax;
  8215. }
  8216. }
  8217. //入住时间
  8218. if (doc.Range.Bookmarks["CIn"] != null)
  8219. {
  8220. DateTime dtCheckIn = Convert.ToDateTime(h.CheckInDate);
  8221. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8222. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8223. }
  8224. //退房时间
  8225. if (doc.Range.Bookmarks["COut"] != null)
  8226. {
  8227. DateTime dtCheckOut = Convert.ToDateTime(h.CheckOutDate);
  8228. Bookmark mark = doc.Range.Bookmarks["COut"];
  8229. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8230. }
  8231. //客户名称
  8232. if (doc.Range.Bookmarks["GName"] != null)
  8233. {
  8234. Bookmark mark = doc.Range.Bookmarks["GName"];
  8235. mark.Text = h.GuestName;
  8236. }
  8237. //房间介绍
  8238. if (doc.Range.Bookmarks["ROOM"] != null)
  8239. {
  8240. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8241. mark.Text = h.RoomExplanation;
  8242. }
  8243. //报价描述
  8244. if (doc.Range.Bookmarks["NOTE"] != null)
  8245. {
  8246. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8247. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == h.ReservationsWebsite);
  8248. if (ss != null)
  8249. mark.Text = ss.Name;
  8250. }
  8251. //入住时间
  8252. if (doc.Range.Bookmarks["CheckIn"] != null)
  8253. {
  8254. DateTime dtCheckIn = Convert.ToDateTime(h.CheckInDate);
  8255. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8256. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8257. }
  8258. //退房时间
  8259. if (doc.Range.Bookmarks["CheckOut"] != null)
  8260. {
  8261. DateTime dtCheckOut = Convert.ToDateTime(h.CheckOutDate);
  8262. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8263. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8264. }
  8265. //日期
  8266. if (doc.Range.Bookmarks["DT"] != null)
  8267. {
  8268. Bookmark mark = doc.Range.Bookmarks["DT"];
  8269. mark.Text = Convert.ToDateTime(h.CreateTime).ToString("yyyy-MM-dd");
  8270. }
  8271. //名称
  8272. if (doc.Range.Bookmarks["VName"] != null)
  8273. {
  8274. Bookmark mark = doc.Range.Bookmarks["VName"];
  8275. mark.Text = h.HotelName;
  8276. }
  8277. //号码
  8278. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8279. {
  8280. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8281. mark.Text = h.CheckNumber;
  8282. }
  8283. #endregion
  8284. //string fileName = "HotelStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx";
  8285. strFileName += "VOUCHER.doc";
  8286. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8287. doc.Save(fileDir);
  8288. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8289. return Ok(JsonView(true, "成功!", Url));
  8290. }
  8291. catch (Exception ex)
  8292. {
  8293. throw;
  8294. }
  8295. }
  8296. else
  8297. {
  8298. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8299. }
  8300. }
  8301. else
  8302. {
  8303. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8304. }
  8305. }
  8306. /// <summary>
  8307. /// 导出确认单
  8308. /// </summary>
  8309. /// <param name=""></param>
  8310. /// <returns></returns>
  8311. [HttpPost]
  8312. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8313. public async Task<IActionResult> ConfirmWord(HotelReservationsByIdDto dto)
  8314. {
  8315. //团组信息
  8316. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == dto.Id);
  8317. //酒店数据
  8318. List<Grp_HotelReservations> listhoteldata = _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == dto.Id && a.IsDel == 0).ToList();
  8319. //利datatable存储
  8320. DataTable dt = new DataTable();
  8321. dt.Columns.Add("CheckInDate", typeof(string));
  8322. dt.Columns.Add("City", typeof(string));
  8323. dt.Columns.Add("Hotel", typeof(string));
  8324. dt.Columns.Add("Room", typeof(string));
  8325. for (int i = 0; i < listhoteldata.Count; i++)
  8326. {
  8327. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  8328. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  8329. while (dayStart < dayEnd)
  8330. {
  8331. string temp = "";
  8332. DataRow row = dt.NewRow();
  8333. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  8334. row["City"] = listhoteldata[i].City;
  8335. row["Hotel"] = listhoteldata[i].HotelName;
  8336. if (listhoteldata[i].SingleRoomCount > 0)
  8337. {
  8338. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  8339. }
  8340. if (listhoteldata[i].DoubleRoomCount > 0)
  8341. {
  8342. temp = temp + listhoteldata[i].DoubleRoomCount + "个表间" + "\r\n";
  8343. }
  8344. if (listhoteldata[i].SuiteRoomCount > 0)
  8345. {
  8346. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  8347. }
  8348. if (listhoteldata[i].OtherRoomCount > 0)
  8349. {
  8350. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  8351. }
  8352. row["Room"] = temp;
  8353. dt.Rows.Add(row);
  8354. dayStart = dayStart.AddDays(1);
  8355. }
  8356. }
  8357. Dictionary<string, string> dic = new Dictionary<string, string>();
  8358. dic.Add("Dele", di.TeamName);
  8359. dic.Add("City", di.VisitCountry);
  8360. //模板路径
  8361. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  8362. //载入模板
  8363. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  8364. DocumentBuilder builder = new DocumentBuilder(doc);
  8365. foreach (var key in dic.Keys)
  8366. {
  8367. builder.MoveToBookmark(key);
  8368. builder.Write(dic[key]);
  8369. }
  8370. //获取word里所有表格
  8371. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8372. //获取所填表格的序数
  8373. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  8374. var rowStart = tableOne.Rows[0]; //获取第1行
  8375. try
  8376. {
  8377. //循环赋值
  8378. for (int i = 0; i < dt.Rows.Count; i++)
  8379. {
  8380. builder.MoveToCell(0, i + 1, 0, 0);
  8381. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  8382. builder.MoveToCell(0, i + 1, 1, 0);
  8383. builder.Write(dt.Rows[i]["City"].ToString());
  8384. builder.MoveToCell(0, i + 1, 2, 0);
  8385. builder.Write(dt.Rows[i]["Hotel"].ToString());
  8386. builder.MoveToCell(0, i + 1, 3, 0);
  8387. builder.Write(dt.Rows[i]["Room"].ToString());
  8388. }
  8389. }
  8390. catch
  8391. {
  8392. }
  8393. //删除多余行
  8394. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  8395. {
  8396. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  8397. }
  8398. string strFileName = di.TeamName + "酒店确认单.doc";
  8399. try
  8400. {
  8401. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  8402. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  8403. return Ok(JsonView(true, "成功", Url));
  8404. }
  8405. catch (Exception)
  8406. {
  8407. return Ok(JsonView(false, "当前文档已打开,请先关闭!"));
  8408. throw;
  8409. }
  8410. }
  8411. /// <summary>
  8412. /// 酒店费用删除
  8413. /// </summary>
  8414. /// <param name="dto"></param>
  8415. /// <returns></returns>
  8416. [HttpPost]
  8417. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8418. public async Task<IActionResult> DelHotelPrice(DelBaseDto dto)
  8419. {
  8420. try
  8421. {
  8422. var res = await _hotelPriceRep.SoftDeleteByIdAsync<Grp_HotelReservations>(dto.Id.ToString(), dto.DeleteUserId);
  8423. if (!res)
  8424. {
  8425. return Ok(JsonView(false, "删除失败"));
  8426. }
  8427. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 76).SetColumns(a => new Grp_CreditCardPayment()
  8428. {
  8429. IsDel = 1,
  8430. DeleteUserId = dto.DeleteUserId,
  8431. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  8432. }).ExecuteCommandAsync();
  8433. return Ok(JsonView(true, "删除成功!"));
  8434. }
  8435. catch (Exception ex)
  8436. {
  8437. return Ok(JsonView(false, "程序错误!"));
  8438. throw;
  8439. }
  8440. }
  8441. #endregion
  8442. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8443. /// <summary>
  8444. /// 酒店预订
  8445. /// 酒店费用列表 根据团组Id查询
  8446. /// </summary>
  8447. /// <param name="_dto"></param>
  8448. /// <returns></returns>
  8449. [HttpPost]
  8450. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8451. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8452. {
  8453. try
  8454. {
  8455. #region 参数验证
  8456. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8457. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8458. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8459. #region 团组操作权限验证 76 酒店预定模块
  8460. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8461. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8462. #endregion
  8463. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8464. #region 页面操作权限验证
  8465. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8466. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8467. #endregion
  8468. #endregion
  8469. Result _view = await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId);
  8470. if (_view.Code != 0)
  8471. {
  8472. return Ok(JsonView(false, _view.Msg));
  8473. }
  8474. return Ok(JsonView(true, _view.Msg, _view.Data));
  8475. }
  8476. catch (Exception ex)
  8477. {
  8478. return Ok(JsonView(false, ex.Message));
  8479. }
  8480. }
  8481. /// <summary>
  8482. /// 酒店预订
  8483. /// 基础数据
  8484. /// </summary>
  8485. /// <param name="_dto"></param>
  8486. /// <returns></returns>
  8487. [HttpPost]
  8488. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8489. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8490. {
  8491. try
  8492. {
  8493. #region 参数验证
  8494. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8495. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8496. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8497. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8498. #region 页面操作权限验证
  8499. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8500. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8501. #endregion
  8502. #region 团组操作权限验证 76 酒店预定模块
  8503. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8504. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8505. #endregion
  8506. #endregion
  8507. Result data = await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId);
  8508. if (data.Code != 0)
  8509. {
  8510. return Ok(JsonView(false, data.Msg));
  8511. }
  8512. return Ok(JsonView(true, data.Msg, data.Data));
  8513. }
  8514. catch (Exception ex)
  8515. {
  8516. return Ok(JsonView(false, "Catch:" + ex.Message));
  8517. }
  8518. }
  8519. /// <summary>
  8520. /// 酒店预订
  8521. /// 创建 入住卷号码
  8522. /// </summary>
  8523. /// <param name="_dto"></param>
  8524. /// <returns></returns>
  8525. [HttpPost]
  8526. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8527. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8528. {
  8529. try
  8530. {
  8531. #region 参数验证
  8532. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8533. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8534. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8535. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8536. #region 页面操作权限验证
  8537. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8538. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8539. #endregion
  8540. #region 团组操作权限验证 76 酒店预定模块
  8541. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8542. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8543. #endregion
  8544. #endregion
  8545. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8546. if (data.Code != 0)
  8547. {
  8548. return Ok(JsonView(false, data.Msg));
  8549. }
  8550. return Ok(JsonView(true, data.Msg, data.Data));
  8551. }
  8552. catch (Exception ex)
  8553. {
  8554. return Ok(JsonView(false, ex.Message));
  8555. }
  8556. }
  8557. /// <summary>
  8558. /// 酒店预订
  8559. /// 详情
  8560. /// </summary>
  8561. /// <param name="_dto"></param>
  8562. /// <returns></returns>
  8563. [HttpPost]
  8564. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8565. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8566. {
  8567. try
  8568. {
  8569. #region 参数验证
  8570. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8571. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8572. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8573. #region 团组操作权限验证 76 酒店预定模块
  8574. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8575. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8576. #endregion
  8577. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8578. #region 页面操作权限验证
  8579. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8580. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8581. #endregion
  8582. #endregion
  8583. Result data = await _hotelPriceRep._Details(_dto.PortType, _dto.Id);
  8584. if (data.Code != 0)
  8585. {
  8586. return Ok(JsonView(false, data.Msg));
  8587. }
  8588. return Ok(JsonView(true, data.Msg, data.Data));
  8589. }
  8590. catch (Exception ex)
  8591. {
  8592. return Ok(JsonView(false, ex.Message));
  8593. }
  8594. }
  8595. /// <summary>
  8596. /// 酒店预订
  8597. /// Add Or Edit
  8598. /// </summary>
  8599. /// <param name="_dto"></param>
  8600. /// <returns></returns>
  8601. [HttpPost]
  8602. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8603. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8604. {
  8605. try
  8606. {
  8607. #region 参数验证
  8608. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8609. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8610. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8611. #region 团组操作权限验证 76 酒店预定模块
  8612. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8613. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8614. #endregion
  8615. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8616. #region 页面操作权限验证
  8617. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8618. if (_dto.Id == 0) // Add
  8619. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8620. else if (_dto.Id > 0) // Edit
  8621. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8622. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8623. #endregion
  8624. #endregion
  8625. Result data = await _hotelPriceRep._AddOrEdit(_dto);
  8626. if (data.Code != 0)
  8627. {
  8628. return Ok(JsonView(false, data.Msg));
  8629. }
  8630. #region 应用推送
  8631. try
  8632. {
  8633. int ccpId = data.Data.GetType().GetProperty("ccpId").GetValue(data.Data, null);
  8634. int sign = data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  8635. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8636. }
  8637. catch (Exception ex)
  8638. {
  8639. }
  8640. #endregion
  8641. return Ok(JsonView(true, data.Msg, data.Data));
  8642. }
  8643. catch (Exception ex)
  8644. {
  8645. return Ok(JsonView(false, ex.Message));
  8646. }
  8647. }
  8648. /// <summary>
  8649. /// 酒店预订
  8650. /// Del
  8651. /// </summary>
  8652. /// <param name="_dto"></param>
  8653. /// <returns></returns>
  8654. [HttpPost]
  8655. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8656. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8657. {
  8658. try
  8659. {
  8660. #region 参数验证
  8661. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8662. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8663. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8664. #region 团组操作权限验证 76 酒店预定模块
  8665. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8666. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8667. #endregion
  8668. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8669. #region 页面操作权限验证
  8670. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8671. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8672. #endregion
  8673. #endregion
  8674. Result data = await _hotelPriceRep._Del(_dto.Id, _dto.UserId);
  8675. if (data.Code != 0)
  8676. {
  8677. return Ok(JsonView(false, data.Msg));
  8678. }
  8679. return Ok(JsonView(true, data.Msg, data.Data));
  8680. }
  8681. catch (Exception ex)
  8682. {
  8683. return Ok(JsonView(false, ex.Message));
  8684. }
  8685. }
  8686. /// <summary>
  8687. /// 酒店预订
  8688. /// 生成VOUCHER
  8689. /// 2024.05.06 之前版本
  8690. /// </summary>
  8691. /// <param name="_dto"></param>
  8692. /// <returns></returns>
  8693. [HttpPost]
  8694. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8695. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8696. {
  8697. try
  8698. {
  8699. #region 参数验证
  8700. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8701. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8702. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8703. #region 团组操作权限验证 76 酒店预定模块
  8704. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8705. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8706. #endregion
  8707. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8708. #region 页面操作权限验证
  8709. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8710. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8711. #endregion
  8712. #endregion
  8713. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8714. //判断数据是否完整
  8715. if (hr != null)
  8716. {
  8717. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8718. {
  8719. string strFileName = "HotelStatement/";
  8720. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8721. if (dele != null)
  8722. strFileName += dele.TourCode;
  8723. //载入模板
  8724. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8725. Document doc = new Document(sss);
  8726. DocumentBuilder builder = new DocumentBuilder(doc);
  8727. #region 替换Word模板书签内容
  8728. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8729. //入住卷预定号码
  8730. if (doc.Range.Bookmarks["VNO"] != null)
  8731. {
  8732. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8733. mark.Text = hr.CheckNumber;
  8734. }
  8735. //酒店时间
  8736. if (doc.Range.Bookmarks["Date"] != null)
  8737. {
  8738. Bookmark mark = doc.Range.Bookmarks["Date"];
  8739. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8740. }
  8741. //团号
  8742. if (doc.Range.Bookmarks["TNo"] != null)
  8743. {
  8744. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8745. mark.Text = dele.TourCode;
  8746. }
  8747. //预定号码
  8748. if (doc.Range.Bookmarks["BookingId"] != null)
  8749. {
  8750. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8751. mark.Text = hr.ReservationsNo;
  8752. }
  8753. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8754. {
  8755. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8756. mark.Text = hr.DetermineNo;
  8757. }
  8758. //酒店城市
  8759. if (doc.Range.Bookmarks["City"] != null)
  8760. {
  8761. Bookmark mark = doc.Range.Bookmarks["City"];
  8762. mark.Text = hr.City;
  8763. }
  8764. //酒店名称
  8765. if (doc.Range.Bookmarks["HName"] != null)
  8766. {
  8767. Bookmark mark = doc.Range.Bookmarks["HName"];
  8768. mark.Text = hr.HotelName;
  8769. }
  8770. //酒店地址
  8771. if (doc.Range.Bookmarks["Address"] != null)
  8772. {
  8773. Bookmark mark = doc.Range.Bookmarks["Address"];
  8774. mark.Text = hr.HotelAddress;
  8775. }
  8776. //酒店电话
  8777. if (doc.Range.Bookmarks["Tel"] != null)
  8778. {
  8779. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8780. mark.Text = hr.HotelTel;
  8781. }
  8782. //酒店传真
  8783. if (doc.Range.Bookmarks["Fax"] != null)
  8784. {
  8785. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8786. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8787. {
  8788. mark.Text = hr.HotelFax;
  8789. }
  8790. }
  8791. //入住时间
  8792. if (doc.Range.Bookmarks["CIn"] != null)
  8793. {
  8794. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8795. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8796. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8797. }
  8798. //退房时间
  8799. if (doc.Range.Bookmarks["COut"] != null)
  8800. {
  8801. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8802. Bookmark mark = doc.Range.Bookmarks["COut"];
  8803. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8804. }
  8805. //客户名称
  8806. if (doc.Range.Bookmarks["GName"] != null)
  8807. {
  8808. string guestName = "";
  8809. string[] clients = new string[] { };
  8810. if (hr.GuestName.Contains(","))
  8811. {
  8812. clients = hr.GuestName.Split(",");
  8813. }
  8814. else
  8815. {
  8816. clients = new string[] { hr.GuestName };
  8817. }
  8818. List<int> clientIds_int = new List<int>();
  8819. if (clients.Length > 0)
  8820. {
  8821. foreach (var item in clients)
  8822. {
  8823. if (item.IsNumeric())
  8824. {
  8825. clientIds_int.Add(int.Parse(item));
  8826. }
  8827. }
  8828. }
  8829. if (clientIds_int.Count > 0)
  8830. {
  8831. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8832. foreach (var client in _clientDatas)
  8833. {
  8834. //男
  8835. if (client.Sex == 0) guestName += $"Mr.";
  8836. //女
  8837. else if (client.Sex == 1) guestName += $"Ms.";
  8838. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8839. {
  8840. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8841. }
  8842. //guestName += $"{client.Pinyin},";
  8843. }
  8844. if (guestName.Length > 0)
  8845. {
  8846. guestName = guestName.Substring(0, guestName.Length - 1);
  8847. }
  8848. }
  8849. else
  8850. {
  8851. guestName = hr.GuestName;
  8852. }
  8853. Bookmark mark = doc.Range.Bookmarks["GName"];
  8854. mark.Text = guestName;
  8855. }
  8856. //房间介绍
  8857. if (doc.Range.Bookmarks["ROOM"] != null)
  8858. {
  8859. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8860. mark.Text = hr.RoomExplanation;
  8861. }
  8862. //报价描述
  8863. if (doc.Range.Bookmarks["NOTE"] != null)
  8864. {
  8865. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8866. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8867. if (ss != null)
  8868. mark.Text = ss.Name;
  8869. }
  8870. //入住时间
  8871. if (doc.Range.Bookmarks["CheckIn"] != null)
  8872. {
  8873. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8874. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8875. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8876. }
  8877. //退房时间
  8878. if (doc.Range.Bookmarks["CheckOut"] != null)
  8879. {
  8880. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8881. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8882. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8883. }
  8884. //日期
  8885. if (doc.Range.Bookmarks["DT"] != null)
  8886. {
  8887. Bookmark mark = doc.Range.Bookmarks["DT"];
  8888. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8889. }
  8890. //名称
  8891. if (doc.Range.Bookmarks["VName"] != null)
  8892. {
  8893. Bookmark mark = doc.Range.Bookmarks["VName"];
  8894. mark.Text = hr.HotelName;
  8895. }
  8896. //号码
  8897. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8898. {
  8899. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8900. mark.Text = hr.CheckNumber;
  8901. }
  8902. #endregion
  8903. strFileName += "VOUCHER.doc";
  8904. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8905. doc.Save(fileDir);
  8906. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8907. return Ok(JsonView(true, "操作成功!", Url));
  8908. }
  8909. else
  8910. {
  8911. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8912. }
  8913. }
  8914. else
  8915. {
  8916. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8917. }
  8918. }
  8919. catch (Exception ex)
  8920. {
  8921. return Ok(JsonView(false, ex.Message));
  8922. }
  8923. }
  8924. /// <summary>
  8925. /// 酒店预订
  8926. /// 生成VOUCHER
  8927. /// 2024.05.06 之后版本
  8928. /// </summary>
  8929. /// <param name="_dto"></param>
  8930. /// <returns></returns>
  8931. [HttpPost]
  8932. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8933. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8934. {
  8935. #region 参数验证
  8936. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8937. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8938. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8939. #region 团组操作权限验证 76 酒店预定模块
  8940. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8941. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8942. #endregion
  8943. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8944. #region 页面操作权限验证
  8945. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8946. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8947. #endregion
  8948. #endregion
  8949. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8950. //判断数据是否完整
  8951. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8952. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8953. string strFileName = "HotelStatement/";
  8954. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8955. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8956. #region 数据处理
  8957. List<int> guestIds = new List<int>();
  8958. int index = 0;
  8959. foreach (var item in hrDtas)
  8960. {
  8961. if (item.GuestName.Contains(","))
  8962. {
  8963. string[] guestIdArr = item.GuestName.Split(',');
  8964. foreach (var guestIdStr in guestIdArr)
  8965. {
  8966. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8967. if (guestBool)
  8968. {
  8969. guestIds.Add(guestId);
  8970. }
  8971. }
  8972. }
  8973. else guestNames += item.GuestName;
  8974. var voucherInfo = new HotelVoucherInfoView()
  8975. {
  8976. HotelName = item.HotelName,
  8977. CheckInDate = item.CheckInDate,
  8978. CheckOutDate = item.CheckOutDate,
  8979. ConfirmationNumber = item.DetermineNo.Trim(),
  8980. RoomType = item.RoomExplanation
  8981. };
  8982. vouchers.Add(voucherInfo);
  8983. }
  8984. if (guestIds.Count > 0)
  8985. {
  8986. guestIds = guestIds.Distinct().ToList();
  8987. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8988. if (guestDatas.Count > 0)
  8989. {
  8990. guestNames = "";
  8991. foreach (var guest in guestDatas)
  8992. {
  8993. string guestName = "";
  8994. if (guest.Sex == 0) guestName += @"MR.";
  8995. else if (guest.Sex == 1) guestName += @"MS.";
  8996. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8997. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8998. guestNames += @$"{guestName.Trim()}、";
  8999. }
  9000. if (guestNames.Length > 0)
  9001. {
  9002. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9003. }
  9004. }
  9005. }
  9006. #endregion
  9007. //载入模板
  9008. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  9009. Document doc = new Document(sss);
  9010. DocumentBuilder builder = new DocumentBuilder(doc);
  9011. if (doc.Range.Bookmarks["GuestName"] != null)
  9012. {
  9013. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9014. mark.Text = guestNames;
  9015. }
  9016. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9017. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9018. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9019. for (int i = 1; i <= vouchers.Count; i++)
  9020. {
  9021. HotelVoucherInfoView hviv = vouchers[i - 1];
  9022. builder.MoveToCell(0, i, 0, 0);
  9023. builder.Write(hviv.HotelName);
  9024. builder.MoveToCell(0, i, 1, 0);
  9025. builder.Write(hviv.CheckInDate);
  9026. builder.MoveToCell(0, i, 2, 0);
  9027. builder.Write(hviv.CheckOutDate);
  9028. builder.MoveToCell(0, i, 3, 0);
  9029. builder.Write(hviv.RoomType);
  9030. builder.MoveToCell(0, i, 4, 0);
  9031. builder.Write(hviv.ConfirmationNumber);
  9032. }
  9033. //删除多余行
  9034. int currRowIndex = vouchers.Count + 1;
  9035. int delRows = 21 - currRowIndex;
  9036. if (delRows > 0)
  9037. {
  9038. for (int i = 0; i < delRows; i++)
  9039. {
  9040. table.Rows.RemoveAt(currRowIndex);
  9041. //cultivateRowIndex++;
  9042. }
  9043. }
  9044. strFileName += "VOUCHER.docx";
  9045. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9046. doc.Save(fileDir);
  9047. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9048. return Ok(JsonView(true, "操作成功!", Url));
  9049. }
  9050. /// <summary>
  9051. /// 酒店预订
  9052. /// 生成 预定成本 Excel
  9053. /// </summary>
  9054. /// <param name="_dto"></param>
  9055. /// <returns></returns>
  9056. [HttpPost]
  9057. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9058. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9059. {
  9060. #region 参数验证
  9061. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9062. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9063. if (!vadalitorRes.IsValid)
  9064. {
  9065. var errors = new StringBuilder();
  9066. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9067. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  9068. }
  9069. #region 团组操作权限验证 76 酒店预定模块
  9070. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9071. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9072. #endregion
  9073. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9074. #region 页面操作权限验证
  9075. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9076. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9077. #endregion
  9078. #endregion
  9079. decimal _rate = 1.00M;
  9080. string _currency = "";
  9081. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9082. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9083. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  9084. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9085. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  9086. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9087. {
  9088. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  9089. }
  9090. _currency = _GroupCostParameter.Currency;
  9091. bool isIntType = int.TryParse(_currency, out int currId);
  9092. if (isIntType)
  9093. {
  9094. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9095. }
  9096. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9097. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9098. if (currInfo == null)
  9099. {
  9100. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  9101. }
  9102. if (!_currency.ToUpper().Equals("CNY"))
  9103. {
  9104. _rate = _GroupCostParameter.Rate;
  9105. }
  9106. _rate = currInfo.Rate;
  9107. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9108. string strFileName = "HotelStatement/";
  9109. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9110. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9111. #region 数据处理
  9112. foreach (var item in hrDtas)
  9113. {
  9114. var ccpInfo = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9115. string roomCurr = currDatas.Find(it => it.Id == ccpInfo.PaymentCurrency)?.Name ?? "";
  9116. string singleRoomFeeStr = string.Empty,
  9117. doubleRoomFeeStr = string.Empty,
  9118. suiteRoomFeeStr = string.Empty,
  9119. otherRoomFeeStr = string.Empty,
  9120. payMoneyStr = string.Empty,
  9121. cardPriceStr = string.Empty;
  9122. if (roomCurr.Equals(_currency))
  9123. {
  9124. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9125. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9126. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9127. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9128. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9129. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9130. }
  9131. else
  9132. {
  9133. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9134. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9135. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9136. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9137. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9138. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9139. }
  9140. string breakfastPriceStr = string.Empty,
  9141. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9142. governmentRentStr = string.Empty,
  9143. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9144. cityTaxStrStr = string.Empty,
  9145. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9146. //if (breakfastCurrency.Equals(_currency))
  9147. //{
  9148. // breakfastPriceStr = $"{item.BreakfastPrice.ToString("#0.00")} ({_currency})";
  9149. //}
  9150. //if (governmentRentCurrency.Equals(_currency))
  9151. //{
  9152. // governmentRentStr = $"{item.GovernmentRent.ToString("#0.00")} ({_currency})";
  9153. //}
  9154. //if (cityTaxStrCurrency.Equals(_currency))
  9155. //{
  9156. // cityTaxStrStr = $"{item.CityTax.ToString("#0.00")} ({_currency})";
  9157. //}
  9158. breakfastPriceStr = $"{item.BreakfastPrice.ToString("#0.00")} {_currency}";
  9159. governmentRentStr = $"{item.GovernmentRent.ToString("#0.00")} {_currency}";
  9160. cityTaxStrStr = $"{item.CityTax.ToString("#0.00")} {_currency}";
  9161. pcfds.Add(new HotelReservations_PCFD_View()
  9162. {
  9163. City = item.City,
  9164. HotelName = item.HotelName,
  9165. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9166. // SingleRoomCount = item.SingleRoomCount,
  9167. SingleRoomPrice = singleRoomFeeStr,
  9168. // DoubleRoomCount = item.DoubleRoomCount,
  9169. DoubleRoomPrice = doubleRoomFeeStr,
  9170. //SuiteRoomCount = item.SuiteRoomCount,
  9171. SuiteRoomPrice = suiteRoomFeeStr,
  9172. OtherRoomPrice = otherRoomFeeStr,
  9173. //OtherRoomCount = item.OtherRoomCount,
  9174. BreakfastPrice = breakfastPriceStr,
  9175. GovernmentRent = governmentRentStr,
  9176. CityTax = cityTaxStrStr,
  9177. RoomExplanation = item.RoomExplanation,
  9178. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == ccpInfo.PayDId).First()?.Name ?? "",
  9179. PayTime = ccpInfo.ConsumptionDate,
  9180. BankNo = ccpInfo.BankNo,
  9181. PayMoney = payMoneyStr,
  9182. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9183. ConsumptionPatterns = ccpInfo.ConsumptionPatterns,
  9184. CardPrice = cardPriceStr,
  9185. Remark = ccpInfo.Remark
  9186. });
  9187. }
  9188. #endregion
  9189. //载入模板
  9190. WorkbookDesigner designer = new WorkbookDesigner();
  9191. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9192. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9193. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9194. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9195. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9196. designer.SetDataSource("Opertor", userInfo.CnName);
  9197. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9198. dt.TableName = "ViewMyHotelReservations";
  9199. designer.SetDataSource(dt);
  9200. designer.Process();
  9201. string fileName = ($"HotelReservation/{groupInfo.TeamName}_酒店预订成本_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls").Replace(":", "");
  9202. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9203. designer.Workbook.Save(serverPath);
  9204. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9205. #region 删除指定行
  9206. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true,cpDel=true, remarkDel = true;
  9207. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9208. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9209. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9210. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9211. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9212. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9213. cssIndex = dt.Columns["CityTax"].Ordinal,
  9214. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9215. remarkIndex = dt.Columns["Remark"].Ordinal;
  9216. //删除指定列
  9217. foreach (DataRow item in dt.Rows)
  9218. {
  9219. string singleStr = item["SingleRoomPrice"].ToString();
  9220. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9221. if (containsDigitButNotZero1) singleDel = false;
  9222. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9223. string doubleStr = item["DoubleRoomPrice"].ToString();
  9224. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9225. if (containsDigitButNotZero2) doubleDel = false;
  9226. string suiteStr = item["SuiteRoomPrice"].ToString();
  9227. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9228. if (containsDigitButNotZero3) suiteDel = false;
  9229. string otherStr = item["OtherRoomPrice"].ToString();
  9230. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9231. if (containsDigitButNotZero4) otherDel = false;
  9232. string zcStr = item["BreakfastPrice"].ToString();
  9233. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9234. if (containsDigitButNotZero5) zcDel = false;
  9235. string dsStr = item["GovernmentRent"].ToString();
  9236. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9237. if (containsDigitButNotZero6) dsDel = false;
  9238. string cssStr = item["CityTax"].ToString();
  9239. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9240. if (containsDigitButNotZero7) cssDel = false;
  9241. string cpStr = item["ConsumptionPatterns"].ToString();
  9242. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9243. string remarkStr = item["Remark"].ToString();
  9244. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9245. }
  9246. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9247. DeleteColumn(serverPath, cpIndex, cpDel);
  9248. DeleteColumn(serverPath, dsIndex, dsDel);
  9249. DeleteColumn(serverPath, cssIndex, cssDel);
  9250. DeleteColumn(serverPath, zcIndex, zcDel);
  9251. DeleteColumn(serverPath, otherIndex, otherDel);
  9252. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9253. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9254. DeleteColumn(serverPath, singleIndex, singleDel);
  9255. #endregion
  9256. //只保留第一个表格
  9257. DeleteSheet(serverPath);
  9258. return Ok(JsonView(true, "操作成功", url = rst));
  9259. }
  9260. /// <summary>
  9261. /// 删除指定列
  9262. /// </summary>
  9263. /// <param name="file"></param>
  9264. /// <param name="columnIndex"></param>
  9265. /// <param name="isDel"></param>
  9266. private void DeleteColumn(string file, int columnIndex,bool isDel)
  9267. {
  9268. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9269. //wb.Save(file);
  9270. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9271. if (sheet1 != null)
  9272. {
  9273. if (isDel)
  9274. {
  9275. Cells cells = sheet1.Cells;
  9276. cells.DeleteColumn(columnIndex);
  9277. }
  9278. }
  9279. wb.Save(file);
  9280. }
  9281. /// <summary>
  9282. /// 删除sheet
  9283. /// </summary>
  9284. /// <param name="file"></param>
  9285. /// <param name="sheetName"></param>
  9286. private void DeleteSheet(string file, string sheetName="")
  9287. {
  9288. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9289. //wb.Save(file);
  9290. List<string> sheets = new List<string>();
  9291. foreach (var item in wb.Worksheets)
  9292. {
  9293. sheets.Add(item.Name);
  9294. }
  9295. if (sheets.Count > 0)
  9296. {
  9297. sheets.RemoveAt(0);//不删除第一个sheet
  9298. foreach (var item in sheets)
  9299. {
  9300. wb.Worksheets.RemoveAt(item);
  9301. }
  9302. }
  9303. wb.Save(file);
  9304. }
  9305. /// <summary>
  9306. /// 酒店预订
  9307. /// 确认单
  9308. /// </summary>
  9309. /// <param name="_dto"></param>
  9310. /// <returns></returns>
  9311. [HttpPost]
  9312. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9313. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9314. {
  9315. try
  9316. {
  9317. #region 参数验证
  9318. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9319. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9320. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9321. #region 团组操作权限验证 76 酒店预定模块
  9322. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9323. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9324. #endregion
  9325. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9326. #region 页面操作权限验证
  9327. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9328. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9329. #endregion
  9330. #endregion
  9331. //团组信息
  9332. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9333. //酒店数据
  9334. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9335. if (listhoteldata.Count < 0)
  9336. {
  9337. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9338. }
  9339. //利datatable存储
  9340. DataTable dt = new DataTable();
  9341. dt.Columns.Add("CheckInDate", typeof(string));
  9342. dt.Columns.Add("City", typeof(string));
  9343. dt.Columns.Add("Hotel", typeof(string));
  9344. dt.Columns.Add("Room", typeof(string));
  9345. for (int i = 0; i < listhoteldata.Count; i++)
  9346. {
  9347. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9348. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9349. while (dayStart < dayEnd)
  9350. {
  9351. string temp = "";
  9352. DataRow row = dt.NewRow();
  9353. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9354. row["City"] = listhoteldata[i].City;
  9355. row["Hotel"] = listhoteldata[i].HotelName;
  9356. if (listhoteldata[i].SingleRoomCount > 0)
  9357. {
  9358. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9359. }
  9360. if (listhoteldata[i].DoubleRoomCount > 0)
  9361. {
  9362. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9363. }
  9364. if (listhoteldata[i].SuiteRoomCount > 0)
  9365. {
  9366. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9367. }
  9368. if (listhoteldata[i].OtherRoomCount > 0)
  9369. {
  9370. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9371. }
  9372. row["Room"] = temp;
  9373. dt.Rows.Add(row);
  9374. dayStart = dayStart.AddDays(1);
  9375. }
  9376. }
  9377. Dictionary<string, string> dic = new Dictionary<string, string>();
  9378. dic.Add("Dele", di.TeamName);
  9379. dic.Add("City", di.VisitCountry);
  9380. //模板路径
  9381. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9382. //载入模板
  9383. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9384. DocumentBuilder builder = new DocumentBuilder(doc);
  9385. foreach (var key in dic.Keys)
  9386. {
  9387. builder.MoveToBookmark(key);
  9388. builder.Write(dic[key]);
  9389. }
  9390. //获取word里所有表格
  9391. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9392. //获取所填表格的序数
  9393. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9394. var rowStart = tableOne.Rows[0]; //获取第1行
  9395. //循环赋值
  9396. for (int i = 0; i < dt.Rows.Count; i++)
  9397. {
  9398. builder.MoveToCell(0, i + 1, 0, 0);
  9399. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9400. builder.MoveToCell(0, i + 1, 1, 0);
  9401. builder.Write(dt.Rows[i]["City"].ToString());
  9402. builder.MoveToCell(0, i + 1, 2, 0);
  9403. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9404. builder.MoveToCell(0, i + 1, 3, 0);
  9405. builder.Write(dt.Rows[i]["Room"].ToString());
  9406. }
  9407. //删除多余行
  9408. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9409. {
  9410. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9411. }
  9412. string strFileName = di.TeamName + "酒店确认单.doc";
  9413. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9414. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9415. return Ok(JsonView(true, "成功", url));
  9416. }
  9417. catch (Exception ex)
  9418. {
  9419. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9420. }
  9421. }
  9422. #endregion
  9423. #region 团组状态
  9424. /// <summary>
  9425. /// 团组状态列表 Page
  9426. /// </summary>
  9427. /// <param name="dto">团组列表请求dto</param>
  9428. /// <returns></returns>
  9429. [HttpPost]
  9430. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9431. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9432. {
  9433. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9434. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9435. {
  9436. string sqlWhere = string.Empty;
  9437. if (dto.IsSure == 0) //未完成
  9438. {
  9439. sqlWhere += string.Format(@" And IsSure = 0");
  9440. }
  9441. else if (dto.IsSure == 1) //已完成
  9442. {
  9443. sqlWhere += string.Format(@" And IsSure = 1");
  9444. }
  9445. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9446. {
  9447. string tj = dto.SearchCriteria;
  9448. 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}%')",
  9449. tj, tj, tj, tj, tj);
  9450. }
  9451. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9452. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9453. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9454. From (
  9455. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9456. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9457. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9458. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9459. From Grp_DelegationInfo gdi
  9460. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9461. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9462. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9463. Where gdi.IsDel = 0 {0}
  9464. ) temp ", sqlWhere);
  9465. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9466. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9467. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9468. }
  9469. else
  9470. {
  9471. return Ok(JsonView(false, "查询失败"));
  9472. }
  9473. }
  9474. /// <summary>
  9475. /// 团组状态
  9476. /// 设置操作完成
  9477. /// </summary>
  9478. /// <param name="dto">团组列表请求dto</param>
  9479. /// <returns></returns>
  9480. [HttpPost]
  9481. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9482. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9483. {
  9484. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9485. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9486. {
  9487. Id = dto.Id,
  9488. IsSure = 1
  9489. };
  9490. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9491. .UpdateColumns(it => new { it.IsSure })
  9492. .WhereColumns(it => new { it.Id })
  9493. .ExecuteCommandAsync();
  9494. if (result > 0)
  9495. {
  9496. return Ok(JsonView(true, "操作完成!"));
  9497. }
  9498. return Ok(JsonView(false, "操作失败!"));
  9499. }
  9500. #endregion
  9501. #region 保险费用录入
  9502. /// <summary>
  9503. /// 根据团组Id查询保险费用列表
  9504. /// </summary>
  9505. /// <param name="dto"></param>
  9506. /// <returns></returns>
  9507. [HttpPost]
  9508. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9509. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9510. {
  9511. try
  9512. {
  9513. Result groupData = await _customersRep.CustomersByDiId(dto);
  9514. if (groupData.Code != 0)
  9515. {
  9516. return Ok(JsonView(false, groupData.Msg));
  9517. }
  9518. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9519. }
  9520. catch (Exception ex)
  9521. {
  9522. return Ok(JsonView(false, ex.Message));
  9523. }
  9524. }
  9525. /// <summary>
  9526. /// 根据保险费用Id查询保险费用详细
  9527. /// </summary>
  9528. /// <param name="dto"></param>
  9529. /// <returns></returns>
  9530. [HttpPost]
  9531. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9532. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9533. {
  9534. try
  9535. {
  9536. Result groupData = await _customersRep.CustomersById(dto);
  9537. if (groupData.Code != 0)
  9538. {
  9539. return Ok(JsonView(false, groupData.Msg));
  9540. }
  9541. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9542. }
  9543. catch (Exception ex)
  9544. {
  9545. return Ok(JsonView(false, ex.Message));
  9546. }
  9547. }
  9548. /// <summary>
  9549. /// 保险费用录入页面初始化绑定
  9550. /// </summary>
  9551. /// <param name="dto"></param>
  9552. /// <returns></returns>
  9553. [HttpPost]
  9554. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9555. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9556. {
  9557. try
  9558. {
  9559. Result groupData = await _customersRep.CustomersInitialize(dto);
  9560. if (groupData.Code != 0)
  9561. {
  9562. return Ok(JsonView(false, groupData.Msg));
  9563. }
  9564. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9565. }
  9566. catch (Exception ex)
  9567. {
  9568. return Ok(JsonView(false, ex.Message));
  9569. }
  9570. }
  9571. /// <summary>
  9572. /// 保险费用操作(Status:1.新增,2.修改)
  9573. /// </summary>
  9574. /// <param name="dto"></param>
  9575. /// <returns></returns>
  9576. [HttpPost]
  9577. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9578. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9579. {
  9580. try
  9581. {
  9582. Result groupData = await _customersRep.OpCustomers(dto);
  9583. if (groupData.Code != 0)
  9584. {
  9585. return Ok(JsonView(false, groupData.Msg));
  9586. }
  9587. #region 应用推送
  9588. try
  9589. {
  9590. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9591. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9592. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9593. }
  9594. catch (Exception ex)
  9595. {
  9596. }
  9597. #endregion
  9598. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9599. }
  9600. catch (Exception ex)
  9601. {
  9602. return Ok(JsonView(false, ex.Message));
  9603. }
  9604. }
  9605. /// <summary>
  9606. /// 保险文件上传
  9607. /// </summary>
  9608. /// <param name="file"></param>
  9609. /// <returns></returns>
  9610. [HttpPost]
  9611. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9612. public async Task<IActionResult> UploadCus(IFormFile file)
  9613. {
  9614. try
  9615. {
  9616. if (file != null)
  9617. {
  9618. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9619. //文件名称
  9620. string projectFileName = file.FileName;
  9621. //上传的文件的路径
  9622. string filePath = "";
  9623. if (!Directory.Exists(fileDir))
  9624. {
  9625. Directory.CreateDirectory(fileDir);
  9626. }
  9627. //上传的文件的路径
  9628. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9629. using (FileStream fs = System.IO.File.Create(filePath))
  9630. {
  9631. file.CopyTo(fs);
  9632. fs.Flush();
  9633. }
  9634. return Ok(JsonView(true, "上传成功!", projectFileName));
  9635. }
  9636. else
  9637. {
  9638. return Ok(JsonView(false, "上传失败!"));
  9639. }
  9640. }
  9641. catch (Exception ex)
  9642. {
  9643. return Ok(JsonView(false, "程序错误!"));
  9644. throw;
  9645. }
  9646. }
  9647. /// <summary>
  9648. /// 保险删除指定文件
  9649. /// </summary>
  9650. /// <param name="dto"></param>
  9651. /// <returns></returns>
  9652. [HttpPost]
  9653. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9654. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9655. {
  9656. try
  9657. {
  9658. string filePath = "";
  9659. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9660. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9661. //int id = 0;
  9662. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9663. // 删除该文件
  9664. try
  9665. {
  9666. System.IO.File.Delete(filePath);
  9667. 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()
  9668. {
  9669. Attachment = "",
  9670. }).ExecuteCommandAsync();
  9671. if (result != 0)
  9672. {
  9673. return Ok(JsonView(true, "成功!"));
  9674. }
  9675. else
  9676. {
  9677. return Ok(JsonView(false, "失败!"));
  9678. }
  9679. }
  9680. catch (Exception)
  9681. {
  9682. 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()
  9683. {
  9684. Attachment = "",
  9685. }).ExecuteCommandAsync();
  9686. if (result != 0)
  9687. {
  9688. return Ok(JsonView(true, "成功!"));
  9689. }
  9690. else
  9691. {
  9692. return Ok(JsonView(false, "失败!"));
  9693. }
  9694. }
  9695. }
  9696. catch (Exception ex)
  9697. {
  9698. return Ok(JsonView(false, "程序错误!"));
  9699. throw;
  9700. }
  9701. }
  9702. /// <summary>
  9703. /// 保险费用操作(删除)
  9704. /// </summary>
  9705. /// <param name="dto"></param>
  9706. /// <returns></returns>
  9707. [HttpPost]
  9708. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9709. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9710. {
  9711. try
  9712. {
  9713. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9714. if (!res)
  9715. {
  9716. return Ok(JsonView(false, "删除失败"));
  9717. }
  9718. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9719. {
  9720. IsDel = 1,
  9721. DeleteUserId = dto.DeleteUserId,
  9722. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9723. }).ExecuteCommandAsync();
  9724. return Ok(JsonView(true, "删除成功!"));
  9725. }
  9726. catch (Exception ex)
  9727. {
  9728. return Ok(JsonView(false, "程序错误!"));
  9729. throw;
  9730. }
  9731. }
  9732. #endregion
  9733. #region 接团客户名单 PageId 104
  9734. /// <summary>
  9735. /// 接团客户名单
  9736. /// 迁移数据(慎用!)
  9737. /// </summary>
  9738. /// <param name="dto"></param>
  9739. /// <returns></returns>
  9740. [HttpPost]
  9741. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9742. public async Task<IActionResult> PostTourClientListChange()
  9743. {
  9744. try
  9745. {
  9746. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9747. //var groupClinetData1
  9748. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9749. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9750. int updateCount = 0;
  9751. if (oldOAClientList.Count > 0)
  9752. {
  9753. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9754. _sqlSugar.BeginTran();
  9755. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9756. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9757. foreach (var item in oldOAClientList)
  9758. {
  9759. int comId = 0;
  9760. string format = "yyyy-MM-dd HH:mm:ss";
  9761. string data11 = "1990-01-01 00:00";
  9762. var data1 = IsValidDate(item.OPdate, format);
  9763. if (data1) data11 = item.OPdate;
  9764. //客户公司验证
  9765. if (!string.IsNullOrEmpty(item.Company))
  9766. {
  9767. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9768. if (clientComInfo == null) // add
  9769. {
  9770. var addInfo = new Crm_CustomerCompany()
  9771. {
  9772. CompanyAbbreviation = "",
  9773. CompanyFullName = item.Company,
  9774. Address = "",
  9775. PostCodes = "",
  9776. LastedOpUserId = item.OPer,
  9777. LastedOpDt = Convert.ToDateTime(data11),
  9778. CreateUserId = item.OPer,
  9779. CreateTime = Convert.ToDateTime(data11),
  9780. IsDel = 0
  9781. };
  9782. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9783. if (comId1 > 0) comId = comId1;
  9784. }
  9785. else comId = clientComInfo.Id;
  9786. }
  9787. //客户人员验证
  9788. int clientId = 0;
  9789. string name = item.LastName + item.Name;
  9790. if (!string.IsNullOrEmpty(name))
  9791. {
  9792. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9793. if (clientInfo == null)
  9794. {
  9795. DateTime? dateTime = null;
  9796. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9797. if (isDt) dateTime = birthDayDt;
  9798. var addInfo1 = new Crm_DeleClient()
  9799. {
  9800. CrmCompanyId = comId,
  9801. DiId = -1,
  9802. LastName = item.LastName,
  9803. FirstName = item.Name,
  9804. OldName = "",
  9805. Pinyin = item.Pinyin,
  9806. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9807. Marriage = 0,
  9808. Phone = item.Phone,
  9809. Job = item.Job,
  9810. BirthDay = dateTime
  9811. };
  9812. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9813. if (clientId1 > 0) clientId = clientId1;
  9814. }
  9815. else clientId = clientInfo.Id;
  9816. }
  9817. if (clientId < 1)
  9818. {
  9819. continue;
  9820. }
  9821. int airType = 0;
  9822. if (item.AirType == "超经舱") airType = 459;
  9823. else if (item.AirType == "公务舱") airType = 458;
  9824. else if (item.AirType == "经济舱") airType = 460;
  9825. else if (item.AirType == "其他") airType = 565;
  9826. else if (item.AirType == "头等舱") airType = 457;
  9827. var _TourClientListEntity = new Grp_TourClientList()
  9828. {
  9829. DiId = item.Diid,
  9830. ClientId = clientId,
  9831. CreateUserId = item.OPer,
  9832. CreateTime = Convert.ToDateTime(data11),
  9833. Remark = item.Remark,
  9834. IsDel = item.Isdel,
  9835. ShippingSpaceTypeId = airType,
  9836. ShippingSpaceSpecialNeeds = item.AirRemark,
  9837. HotelSpecialNeeds = item.RoomType
  9838. };
  9839. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9840. if (_TourClientList > 0)
  9841. {
  9842. updateCount++;
  9843. }
  9844. }
  9845. _sqlSugar.CommitTran();
  9846. }
  9847. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9848. }
  9849. catch (Exception ex)
  9850. {
  9851. _sqlSugar.RollbackTran();
  9852. return Ok(JsonView(false, ex.Message));
  9853. }
  9854. return Ok(JsonView(true));
  9855. }
  9856. private bool IsValidDate(string dateString, string format)
  9857. {
  9858. DateTime dateValue;
  9859. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9860. return valid;
  9861. }
  9862. /// <summary>
  9863. /// 接团客户名单
  9864. /// 根据团组Id查询List
  9865. /// </summary>
  9866. /// <param name="dto"></param>
  9867. /// <returns></returns>
  9868. [HttpPost]
  9869. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9870. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9871. {
  9872. #region 参数验证
  9873. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9874. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9875. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9876. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9877. #region 页面操作权限验证
  9878. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9879. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9880. #endregion
  9881. #endregion
  9882. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9883. if (viewData.Code != 0)
  9884. {
  9885. return Ok(JsonView(false, viewData.Msg));
  9886. }
  9887. return Ok(JsonView(viewData.Data));
  9888. }
  9889. /// <summary>
  9890. /// 接团客户名单
  9891. /// 基础数据 Init
  9892. /// </summary>
  9893. /// <param name="_dto"></param>
  9894. /// <returns></returns>
  9895. [HttpPost]
  9896. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9897. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9898. {
  9899. #region 参数验证
  9900. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9901. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9902. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9903. #region 页面操作权限验证
  9904. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9905. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9906. #endregion
  9907. #endregion
  9908. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9909. if (viewData.Code != 0)
  9910. {
  9911. return Ok(JsonView(false, viewData.Msg));
  9912. }
  9913. return Ok(JsonView(viewData.Data));
  9914. }
  9915. /// <summary>
  9916. /// 接团客户名单
  9917. /// 根据 Id查询 Details
  9918. /// </summary>
  9919. /// <param name="_dto"></param>
  9920. /// <returns></returns>
  9921. [HttpPost]
  9922. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9923. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9924. {
  9925. #region 参数验证
  9926. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9927. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9928. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9929. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9930. #region 页面操作权限验证
  9931. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9932. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9933. #endregion
  9934. #endregion
  9935. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9936. if (viewData.Code != 0)
  9937. {
  9938. return Ok(JsonView(false, viewData.Msg));
  9939. }
  9940. return Ok(JsonView(viewData.Data));
  9941. }
  9942. /// <summary>
  9943. /// 接团客户名单
  9944. /// Add Or Edit
  9945. /// </summary>
  9946. /// <param name="_dto"></param>
  9947. /// <returns></returns>
  9948. [HttpPost]
  9949. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9950. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9951. {
  9952. #region 参数验证
  9953. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9954. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9955. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9956. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9957. #region 页面操作权限验证
  9958. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9959. if (_dto.Id == 0) //添加
  9960. {
  9961. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9962. }
  9963. else if (_dto.Id >= 0) //修改
  9964. {
  9965. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9966. }
  9967. #endregion
  9968. #endregion
  9969. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9970. if (viewData.Code != 0)
  9971. {
  9972. return Ok(JsonView(false, viewData.Msg));
  9973. }
  9974. return Ok(JsonView(true));
  9975. }
  9976. /// <summary>
  9977. /// 接团客户名单
  9978. /// AddMultiple(添加多个)
  9979. /// </summary>
  9980. /// <param name="_dto"></param>
  9981. /// <returns></returns>
  9982. [HttpPost]
  9983. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9984. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9985. {
  9986. #region 参数验证
  9987. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9988. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9989. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9990. #region 页面操作权限验证
  9991. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9992. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9993. #endregion
  9994. #endregion
  9995. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9996. if (viewData.Code != 0)
  9997. {
  9998. return Ok(JsonView(false, viewData.Msg));
  9999. }
  10000. return Ok(JsonView(true));
  10001. }
  10002. /// <summary>
  10003. /// 接团客户名单
  10004. /// Del
  10005. /// </summary>
  10006. /// <param name="_dto"></param>
  10007. /// <returns></returns>
  10008. [HttpPost]
  10009. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10010. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  10011. {
  10012. #region 参数验证
  10013. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10014. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10015. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10016. #region 页面操作权限验证
  10017. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10018. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  10019. #endregion
  10020. #endregion
  10021. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  10022. if (viewData.Code != 0)
  10023. {
  10024. return Ok(JsonView(false, viewData.Msg));
  10025. }
  10026. return Ok(JsonView(true));
  10027. }
  10028. /// <summary>
  10029. /// 接团客户名单
  10030. /// 文件下载 客户名单
  10031. /// </summary>
  10032. /// <param name="_dto"></param>
  10033. /// <returns></returns>
  10034. [HttpPost]
  10035. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10036. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  10037. {
  10038. #region 参数验证
  10039. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10040. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10041. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10042. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10043. #region 页面操作权限验证
  10044. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10045. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10046. #endregion
  10047. #endregion
  10048. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10049. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10050. From Grp_TourClientList tcl
  10051. Left Join
  10052. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10053. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10054. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10055. From Crm_DeleClient dc
  10056. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10057. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10058. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10059. Where dc.IsDel = 0) temp
  10060. On temp.DcId =tcl.ClientId
  10061. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10062. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10063. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10064. //载入模板
  10065. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10066. if (_dto.Language == 1)
  10067. {
  10068. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10069. }
  10070. //载入模板
  10071. var doc = new Document(tempPath);
  10072. DocumentBuilder builder = new DocumentBuilder(doc);
  10073. //获取word里所有表格
  10074. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10075. //获取所填表格的序数
  10076. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10077. var rowStart = tableOne.Rows[0]; //获取第1行
  10078. if (_dto.Language == 0)
  10079. {
  10080. //循环赋值
  10081. for (int i = 0; i < DcList.Count; i++)
  10082. {
  10083. builder.MoveToCell(0, i + 1, 0, 0);
  10084. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10085. builder.MoveToCell(0, i + 1, 1, 0);
  10086. int sex = DcList[i].Sex;
  10087. string sexStr = string.Empty;
  10088. if (sex == 0) sexStr = "男";
  10089. else if (sex == 1) sexStr = "女";
  10090. else sexStr = "未设置";
  10091. builder.Write(sexStr);
  10092. builder.MoveToCell(0, i + 1, 2, 0);
  10093. string birthDay = DcList[i].BirthDay;
  10094. string birthDayStr = string.Empty;
  10095. if (!string.IsNullOrEmpty(birthDay))
  10096. {
  10097. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10098. }
  10099. builder.Write(birthDayStr);
  10100. builder.MoveToCell(0, i + 1, 3, 0);
  10101. string company = "";
  10102. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10103. {
  10104. company = DcList[i].CompanyFullName.ToString();
  10105. }
  10106. builder.Write(company);
  10107. builder.MoveToCell(0, i + 1, 4, 0);
  10108. builder.Write(DcList[i].Job);
  10109. }
  10110. }
  10111. else if (_dto.Language == 1)
  10112. {
  10113. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10114. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10115. //循环赋值
  10116. for (int i = 0; i < DcList.Count; i++)
  10117. {
  10118. string PYName = "";
  10119. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10120. {
  10121. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10122. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10123. PYName = PY_First + " " + PY_Last;
  10124. }
  10125. else
  10126. {
  10127. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10128. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10129. PYName = PY_First + " " + PY_Last;
  10130. }
  10131. builder.MoveToCell(0, i + 1, 0, 0);
  10132. builder.Write(PYName);
  10133. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10134. builder.MoveToCell(0, i + 1, 1, 0);
  10135. builder.Write(sex);
  10136. DateTime birthDt;
  10137. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10138. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : "";
  10139. builder.MoveToCell(0, i + 1, 2, 0);
  10140. builder.Write(birthday);
  10141. string company = "";
  10142. try
  10143. {
  10144. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10145. {
  10146. //查询对照表
  10147. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10148. if (tempCec != null)
  10149. {
  10150. company = tempCec.enName;
  10151. }
  10152. //翻译
  10153. else
  10154. {
  10155. company = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].CompanyFullName.ToString().Trim());
  10156. }
  10157. }
  10158. }
  10159. catch (Exception)
  10160. {
  10161. }
  10162. builder.MoveToCell(0, i + 1, 3, 0);
  10163. builder.Write(company);
  10164. string job = "";
  10165. try
  10166. {
  10167. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10168. {
  10169. //查询对照表
  10170. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10171. if (tempPec != null)
  10172. {
  10173. job = tempPec.enName;
  10174. }
  10175. //翻译
  10176. else
  10177. {
  10178. job = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].Job.ToString().Trim());
  10179. }
  10180. }
  10181. }
  10182. catch (Exception ex)
  10183. {
  10184. }
  10185. builder.MoveToCell(0, i + 1, 4, 0);
  10186. builder.Write(job);
  10187. }
  10188. }
  10189. //删除多余行
  10190. while (tableOne.Rows.Count > DcList.Count + 1)
  10191. {
  10192. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10193. }
  10194. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10195. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10196. doc.Save(fileDir);
  10197. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10198. return Ok(JsonView(true, "操作成功!", Url));
  10199. }
  10200. #endregion
  10201. #region 团组倒推表
  10202. /// <summary>
  10203. /// 倒推表基础数据
  10204. /// Init
  10205. /// </summary>
  10206. /// <param name="dto"></param>
  10207. /// <returns></returns>
  10208. [HttpPost]
  10209. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10210. public async Task<IActionResult> PostInvertedListInit()
  10211. {
  10212. var viewData = await _invertedListRep._Init();
  10213. if (viewData.Code != 0)
  10214. {
  10215. return Ok(JsonView(false, viewData.Msg));
  10216. }
  10217. return Ok(JsonView(viewData.Data));
  10218. }
  10219. /// <summary>
  10220. /// 倒推表
  10221. /// Info
  10222. /// </summary>
  10223. /// <param name="dto"></param>
  10224. /// <returns></returns>
  10225. [HttpPost]
  10226. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10227. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10228. {
  10229. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10230. if (viewData.Code != 0)
  10231. {
  10232. return Ok(JsonView(false, viewData.Msg));
  10233. }
  10234. return Ok(JsonView(viewData.Data));
  10235. }
  10236. /// <summary>
  10237. /// 倒推表
  10238. /// Create
  10239. /// </summary>
  10240. /// <param name="dto"></param>
  10241. /// <returns></returns>
  10242. [HttpPost]
  10243. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10244. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10245. {
  10246. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10247. if (viewData.Code != 0)
  10248. {
  10249. return Ok(JsonView(false, viewData.Msg));
  10250. }
  10251. return Ok(JsonView(viewData.Data));
  10252. }
  10253. /// <summary>
  10254. /// 倒推表
  10255. /// Update
  10256. /// </summary>
  10257. /// <param name="dto"></param>
  10258. /// <returns></returns>
  10259. [HttpPost]
  10260. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10261. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10262. {
  10263. var viewData = await _invertedListRep._Update(dto);
  10264. if (viewData.Code != 0)
  10265. {
  10266. return Ok(JsonView(false, viewData.Msg));
  10267. }
  10268. return Ok(JsonView(viewData.Data));
  10269. }
  10270. /// <summary>
  10271. /// 倒推表
  10272. /// File Download
  10273. /// </summary>
  10274. /// <param name="dto"></param>
  10275. /// <returns></returns>
  10276. [HttpPost]
  10277. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10278. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10279. {
  10280. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10281. if (info2.Code != 0)
  10282. {
  10283. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10284. }
  10285. var info1 = info2.Data as InvertedListInfoView;
  10286. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10287. string teamName = "";
  10288. if (info != null) teamName = info.TeamName;
  10289. //载入模板
  10290. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10291. DocumentBuilder builder = new DocumentBuilder(doc);
  10292. //利用键值对存放数据
  10293. Dictionary<string, string> dic = new Dictionary<string, string>();
  10294. dic.Add("TeamName", teamName);
  10295. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10296. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10297. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10298. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10299. dic.Add("SQRemark", info1.ApprovalRemark);
  10300. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10301. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10302. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10303. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10304. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10305. dic.Add("QZRemark", info1.VisaInformationRemark);
  10306. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10307. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10308. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10309. dic.Add("CQRemark", info1.IssueVisaRemark);
  10310. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10311. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10312. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10313. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10314. #region 填充word模板书签内容
  10315. foreach (var key in dic.Keys)
  10316. {
  10317. builder.MoveToBookmark(key);
  10318. builder.Write(dic[key]);
  10319. }
  10320. #endregion
  10321. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10322. string fileName = $"{teamName}团出行准备流程表.doc";
  10323. string filePath = fileDir + $@"InvertedList/{fileName}";
  10324. doc.Save(filePath);
  10325. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10326. return Ok(JsonView(true, "操作成功!", Url));
  10327. }
  10328. #endregion
  10329. #region 三公签证费用(签证费、代办费)
  10330. /// <summary>
  10331. /// 三公签证费用(签证费、代办费)
  10332. /// List
  10333. /// </summary>
  10334. /// <returns></returns>
  10335. [HttpPost]
  10336. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10337. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10338. {
  10339. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10340. if (_view.Code != 0)
  10341. {
  10342. return Ok(JsonView(false, _view.Msg));
  10343. }
  10344. return Ok(JsonView(true, "操作成功!", _view.Data));
  10345. }
  10346. /// <summary>
  10347. /// 三公签证费用(签证费、代办费)
  10348. /// Add Or Update
  10349. /// </summary>
  10350. /// <returns></returns>
  10351. [HttpPost]
  10352. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10353. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10354. {
  10355. var _view = await _visaFeeInfoRep._Update(_dto);
  10356. if (_view.Code != 0)
  10357. {
  10358. return Ok(JsonView(false, _view.Msg));
  10359. }
  10360. return Ok(JsonView(true, _view.Msg));
  10361. }
  10362. #endregion
  10363. #region 酒店询价
  10364. /// <summary>
  10365. /// 酒店询价
  10366. /// Init
  10367. /// </summary>
  10368. /// <param name="dto"></param>
  10369. /// <returns></returns>
  10370. [HttpPost]
  10371. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10372. public async Task<IActionResult> PostHotelInquiryInit()
  10373. {
  10374. var res = await _hotelInquiryRep._Init();
  10375. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10376. return Ok(JsonView(true, res.Msg, res.Data));
  10377. }
  10378. /// <summary>
  10379. /// 酒店询价
  10380. /// page Item
  10381. /// </summary>
  10382. /// <param name="_dto"></param>
  10383. /// <returns></returns>
  10384. [HttpPost]
  10385. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10386. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10387. {
  10388. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex,_dto.PageSize,_dto.PortType,_dto.DiId);
  10389. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10390. var view = res.Data as PageDataViewBase;
  10391. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10392. }
  10393. /// <summary>
  10394. /// 酒店询价
  10395. /// info
  10396. /// </summary>
  10397. /// <param name="_dto"></param>
  10398. /// <returns></returns>
  10399. [HttpPost]
  10400. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10401. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10402. {
  10403. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10404. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10405. return Ok(JsonView(true, res.Msg, res.Data));
  10406. }
  10407. /// <summary>
  10408. /// 酒店询价
  10409. /// Add Or Edit
  10410. /// </summary>
  10411. /// <param name="_dto"></param>
  10412. /// <returns></returns>
  10413. [HttpPost]
  10414. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10415. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10416. {
  10417. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10418. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10419. return Ok(JsonView(true, res.Msg, res.Data));
  10420. }
  10421. /// <summary>
  10422. /// 酒店询价
  10423. /// Del
  10424. /// </summary>
  10425. /// <param name="_dto"></param>
  10426. /// <returns></returns>
  10427. [HttpPost]
  10428. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10429. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10430. {
  10431. var res = await _hotelInquiryRep._Del(_dto.Id,_dto.DeleteUserId);
  10432. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10433. return Ok(JsonView(true, res.Msg, res.Data));
  10434. }
  10435. #endregion
  10436. // /// <summary>
  10437. // ///
  10438. // /// </summary>
  10439. // /// <param name="_dto"></param>
  10440. // /// <returns></returns>
  10441. // [HttpPost]
  10442. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10443. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  10444. // {
  10445. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  10446. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  10447. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  10448. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  10449. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  10450. // dic_psg.Add("客人", 974);
  10451. // dic_psg.Add("司机", 975);
  10452. // dic_psg.Add("导游", 976);
  10453. // dic_psg.Add("公司内部人员", 977);
  10454. // dic_psg.Add("司机/导游/公司内部人员", 978);
  10455. // foreach (var item in list_visa)
  10456. // {
  10457. // Grp_VisaInfo temp = new Grp_VisaInfo();
  10458. // temp.Id = item.Id;
  10459. // temp.DIId = item.DIId;
  10460. // temp.VisaClient = item.VisaClient;
  10461. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  10462. // temp.VisaCurrency = item.VisaCurrency;
  10463. // temp.IsThird = item.IsThird;
  10464. // if (dic_psg.ContainsKey(item.PassengerType))
  10465. // {
  10466. // temp.PassengerType = dic_psg[item.PassengerType];
  10467. // }
  10468. // else {
  10469. // temp.PassengerType = -1;
  10470. // }
  10471. // temp.VisaNumber = item.VisaNumber;
  10472. // temp.VisaFreeNumber = item.VisaFreeNumber;
  10473. // temp.CreateUserId = item.Operators;
  10474. // DateTime dt_ct;
  10475. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  10476. // if (b_ct)
  10477. // {
  10478. // temp.CreateTime = dt_ct;
  10479. // }
  10480. // else
  10481. // {
  10482. // temp.CreateTime = DateTime.Now;
  10483. // }
  10484. // temp.DeleteTime = "";
  10485. // temp.DeleteUserId = 0;
  10486. // temp.Remark = item.Remark;
  10487. // if (string.IsNullOrEmpty(temp.Remark)) {
  10488. // temp.Remark = "";
  10489. // }
  10490. // temp.IsDel = item.IsDel;
  10491. // temp.VisaDescription = item.VisaAttachment;
  10492. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  10493. //([Id]
  10494. // ,[DIId]
  10495. // ,[VisaClient]
  10496. // ,[VisaPrice]
  10497. // ,[VisaCurrency]
  10498. // ,[IsThird]
  10499. // ,[PassengerType]
  10500. // ,[VisaNumber]
  10501. // ,[VisaFreeNumber]
  10502. // ,[CreateUserId]
  10503. // ,[CreateTime]
  10504. // ,[DeleteTime]
  10505. // ,[DeleteUserId]
  10506. // ,[Remark]
  10507. // ,[IsDel]
  10508. // ,[visaDescription])
  10509. // VALUES
  10510. // ({0},{1},'{2}',{3},{4}
  10511. //,{5},{6},{7},{8},{9}
  10512. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  10513. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  10514. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  10515. //);
  10516. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  10517. // }
  10518. // return Ok(JsonView(true, "操作成功!"));
  10519. // }
  10520. /// <summary>
  10521. /// 123132123
  10522. /// </summary>
  10523. /// <param name="_dto"></param>
  10524. /// <returns></returns>
  10525. [HttpPost]
  10526. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10527. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  10528. {
  10529. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  10530. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  10531. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  10532. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  10533. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  10534. dicDetail.Add(789, 1034);
  10535. dicDetail.Add(790, 1035);
  10536. dicDetail.Add(791, 1036);
  10537. dicDetail.Add(792, 1037);
  10538. dicDetail.Add(793, 1038);
  10539. dicDetail.Add(794, 1039);
  10540. dicDetail.Add(795, 1040);
  10541. dicDetail.Add(796, 1041);
  10542. dicDetail.Add(797, 1042);
  10543. dicDetail.Add(798, 1043);
  10544. dicDetail.Add(801, 1044);
  10545. dicDetail.Add(802, 1045);
  10546. dicDetail.Add(803, 1046);
  10547. Dictionary<int, int> dic = new Dictionary<int, int>();
  10548. dic.Add(806, 1027);
  10549. dic.Add(807, 1028);
  10550. dic.Add(808, 1029);
  10551. dic.Add(809, 1030);
  10552. dic.Add(810, 1031);
  10553. dic.Add(811, 1032);
  10554. dic.Add(812, 1033);
  10555. foreach (var item in list_visa)
  10556. {
  10557. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  10558. temp.Coefficient = item.coefficient;
  10559. DateTime dtCrt;
  10560. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  10561. if (b1)
  10562. {
  10563. temp.CreateTime = dtCrt;
  10564. }
  10565. else
  10566. {
  10567. temp.CreateTime = DateTime.Now;
  10568. }
  10569. temp.CreateUserId = item.Operators;
  10570. temp.DeleteTime = "";
  10571. temp.DeleteUserId = 0;
  10572. temp.DiId = int.Parse(item.DIID);
  10573. temp.FilePath = item.FilePath;
  10574. temp.IsDel = item.IsDel;
  10575. temp.Price = item.Price;
  10576. temp.PriceCount = 1;
  10577. temp.PriceCurrency = item.Currency;
  10578. int detailId = 0;
  10579. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  10580. {
  10581. detailId = dicDetail[item.PriceTypeDetail];
  10582. }
  10583. temp.PriceDetailType = detailId;
  10584. temp.PriceDt = DateTime.Now;
  10585. temp.PriceName = item.PriceName;
  10586. temp.PriceSum = item.Price;
  10587. int tid = 0;
  10588. if (dic.ContainsKey(item.PriceType))
  10589. {
  10590. tid = dic[item.PriceType];
  10591. }
  10592. temp.PriceType = tid;
  10593. temp.Remark = item.Remark;
  10594. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  10595. }
  10596. return Ok(JsonView(true, "操作成功!"));
  10597. }
  10598. }
  10599. }