GroupsController.cs 636 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. using NPOI.HSSF.Util;
  78. using NPOI.HSSF.UserModel;
  79. using NPOI.SS.UserModel;
  80. using NPOI.XSSF.UserModel;
  81. using MySqlX.XDevAPI.Relational;
  82. using SqlSugar.Extensions;
  83. using Table = Aspose.Words.Tables.Table;
  84. using Aspose.Cells.Tables;
  85. using NPOI.SS.Util;
  86. using RestSharp.Extensions;
  87. using Microsoft.AspNetCore.WebUtilities;
  88. using K4os.Compression.LZ4.Internal;
  89. using static Pipelines.Sockets.Unofficial.SocketConnection;
  90. using System.Diagnostics.PerformanceData;
  91. using System.Drawing.Printing;
  92. using OASystem.Domain.Dtos.FileDto;
  93. using Microsoft.VisualBasic;
  94. using Microsoft.EntityFrameworkCore.Query.Internal;
  95. using MathNet.Numerics.Distributions;
  96. namespace OASystem.API.Controllers
  97. {
  98. /// <summary>
  99. /// 团组相关
  100. /// </summary>
  101. //[Authorize]
  102. [Route("api/[controller]/[action]")]
  103. public class GroupsController : ControllerBase
  104. {
  105. private readonly GrpScheduleRepository _grpScheduleRep;
  106. private readonly IMapper _mapper;
  107. private readonly DelegationInfoRepository _groupRepository;
  108. private readonly TaskAssignmentRepository _taskAssignmentRep;
  109. private readonly AirTicketResRepository _airTicketResRep;
  110. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  111. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  112. private readonly DelegationEnDataRepository _delegationEnDataRep;
  113. private readonly DelegationVisaRepository _delegationVisaRep;
  114. private readonly VisaPriceRepository _visaPriceRep;
  115. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  116. private readonly HotelPriceRepository _hotelPriceRep;
  117. private readonly CustomersRepository _customersRep;
  118. private readonly MessageRepository _message;
  119. private readonly SqlSugarClient _sqlSugar;
  120. private readonly TourClientListRepository _tourClientListRep;
  121. private readonly TeamRateRepository _teamRateRep;
  122. #region 成本相关
  123. private readonly CheckBoxsRepository _checkBoxs;
  124. private readonly GroupCostRepository _GroupCostRepository;
  125. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  126. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  127. #endregion
  128. private readonly SetDataRepository _setDataRep;
  129. private string url;
  130. private string path;
  131. private readonly EnterExitCostRepository _enterExitCostRep;
  132. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  133. private readonly UsersRepository _usersRep;
  134. private readonly IJuHeApiService _juHeApi;
  135. private readonly InvertedListRepository _invertedListRep;
  136. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  137. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  138. private readonly ThreeCodeRepository _threeCodeRepository;
  139. private readonly HotelInquiryRepository _hotelInquiryRep;
  140. private readonly FeeAuditRepository _feeAuditRep;
  141. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  142. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  143. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  144. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  145. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  146. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  147. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  148. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  149. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  150. {
  151. _mapper = mapper;
  152. _grpScheduleRep = grpScheduleRep;
  153. _groupRepository = groupRepository;
  154. _taskAssignmentRep = taskAssignmentRep;
  155. _airTicketResRep = airTicketResRep;
  156. _sqlSugar = sqlSugar;
  157. url = AppSettingsHelper.Get("ExcelBaseUrl");
  158. path = AppSettingsHelper.Get("ExcelBasePath");
  159. if (!System.IO.Directory.Exists(path))
  160. {
  161. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  162. }
  163. _decreasePaymentsRep = decreasePaymentsRep;
  164. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  165. _delegationEnDataRep = delegationEnDataRep;
  166. _enterExitCostRep = enterExitCostRep;
  167. _delegationVisaRep = delegationVisaRep;
  168. _message = message;
  169. _visaPriceRep = visaPriceRep;
  170. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  171. _checkBoxs = checkBoxs;
  172. _GroupCostRepository = GroupCostRepository;
  173. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  174. _GroupCostParameterRepository = GroupCostParameterRepository;
  175. _hotelPriceRep = hotelPriceRep;
  176. _customersRep = customersRep;
  177. _setDataRep = setDataRep;
  178. _tourClientListRep = tourClientListRep;
  179. _teamRateRep = teamRateRep;
  180. _hubContext = hubContext;
  181. _usersRep = usersRep;
  182. _juHeApi = juHeApi;
  183. _invertedListRep = invertedListRep;
  184. _visaFeeInfoRep = visaFeeInfoRep;
  185. _ticketBlackCodeRep = ticketBlackCodeRep;
  186. _hotelInquiryRep = hotelInquiryRep;
  187. _threeCodeRepository = threeCodeRepository;
  188. _feeAuditRep = feeAuditRep;
  189. }
  190. #region 流程管控
  191. /// <summary>
  192. /// 获取团组流程管控信息
  193. /// </summary>
  194. /// <param name="paras">参数Json字符串</param>
  195. /// <returns></returns>
  196. [HttpPost]
  197. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  198. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  199. {
  200. if (string.IsNullOrEmpty(_jsonDto.Paras))
  201. {
  202. return Ok(JsonView(false, "参数为空"));
  203. }
  204. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  205. if (_ScheduleDto != null)
  206. {
  207. if (_ScheduleDto.SearchType == 2)//获取列表
  208. {
  209. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  210. return Ok(JsonView(_grpScheduleViewList));
  211. }
  212. else//获取对象
  213. {
  214. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  215. if (_grpScheduleView != null)
  216. {
  217. return Ok(JsonView(_grpScheduleView));
  218. }
  219. }
  220. }
  221. else
  222. {
  223. return Ok(JsonView(false, "参数反序列化失败"));
  224. }
  225. return Ok(JsonView(false, "暂无数据!"));
  226. }
  227. /// <summary>
  228. /// 修改团组流程管控详细表数据
  229. /// </summary>
  230. /// <param name="paras"></param>
  231. /// <returns></returns>
  232. [HttpPost]
  233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  234. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  235. {
  236. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  237. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  238. .SetColumns(it => it.Duty == _detail.Duty)
  239. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  240. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  241. .SetColumns(it => it.JobContent == _detail.JobContent)
  242. .SetColumns(it => it.Remark == _detail.Remark)
  243. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  244. .Where(s => s.Id == dto.Id)
  245. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  246. .ExecuteCommandAsync();
  247. if (result > 0)
  248. {
  249. return Ok(JsonView(true, "保存成功!"));
  250. }
  251. return Ok(JsonView(false, "保存失败!"));
  252. }
  253. /// <summary>
  254. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  255. /// </summary>
  256. /// <param name="dto"></param>
  257. /// <returns></returns>
  258. [HttpPost]
  259. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  260. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  261. {
  262. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  263. _detail.IsDel = 1;
  264. _detail.DeleteUserId = dto.Duty;
  265. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  266. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  267. .SetColumns(it => it.IsDel == _detail.IsDel)
  268. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  269. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  270. .Where(it => it.Id == dto.Id)
  271. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  272. //.WhereColumns(s => s.Id == dto.Id)
  273. .ExecuteCommandAsync();
  274. if (result > 0)
  275. {
  276. return Ok(JsonView(true, "删除成功!"));
  277. }
  278. return Ok(JsonView(false, "删除失败!"));
  279. }
  280. /// <summary>
  281. /// 增加团组流程管控详细表数据
  282. /// </summary>
  283. /// <param name="dto"></param>
  284. /// <returns></returns>
  285. [HttpPost]
  286. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  287. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  288. {
  289. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  290. if (DateTime.Now < _detail.ExpectBeginDt)
  291. {
  292. _detail.StepStatus = 0;
  293. }
  294. else
  295. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  296. _detail.StepStatus = 1;
  297. }
  298. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  299. if (result > 0)
  300. {
  301. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  302. return Ok(JsonView(true, "添加成功!", _result));
  303. }
  304. return Ok(JsonView(false, "添加失败!"));
  305. }
  306. #endregion
  307. #region 团组基本信息
  308. /// <summary>
  309. /// 接团信息列表
  310. /// </summary>
  311. /// <param name="dto">团组列表请求dto</param>
  312. /// <returns></returns>
  313. [HttpPost]
  314. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  315. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  316. {
  317. var groupData = await _groupRepository.GetGroupList(dto);
  318. if (groupData.Code != 0)
  319. {
  320. return Ok(JsonView(false, groupData.Msg));
  321. }
  322. return Ok(JsonView(groupData.Data));
  323. }
  324. /// <summary>
  325. /// 分页查询团组列表
  326. /// </summary>
  327. /// <param name="dto"></param>
  328. /// <returns></returns>
  329. [HttpPost]
  330. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  331. public async Task<IActionResult> QueryGroupListOffset(QueryGroupListOffsetDto dto)
  332. {
  333. var watch = new Stopwatch();
  334. watch.Start();
  335. RefAsync<int> total = 0;
  336. var countyDatas = await _sqlSugar.Queryable<Grp_DelegationInfo>()
  337. .Where((di) => di.IsDel == 0 && !string.IsNullOrWhiteSpace(di.TeamName))
  338. .WhereIF(!string.IsNullOrEmpty(dto.Search), (di) => di.TeamName.Contains(dto.Search))
  339. .OrderBy((di) => new { id = SqlFunc.Desc(di.Id) })
  340. .Select((di) => new { id = di.Id, name = di.TeamName })
  341. .Distinct()
  342. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  343. watch.Stop();
  344. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  345. }
  346. /// <summary>
  347. /// 接团信息列表 Page
  348. /// </summary>
  349. /// <param name="dto">团组列表请求dto</param>
  350. /// <returns></returns>
  351. [HttpPost]
  352. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  353. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  354. {
  355. #region 参数验证
  356. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  357. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  358. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  359. #region 页面操作权限验证
  360. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  361. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  362. #endregion
  363. #endregion
  364. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  365. {
  366. string sqlWhere = string.Empty;
  367. if (dto.IsSure == 0) //未完成
  368. {
  369. sqlWhere += string.Format(@" And IsSure = 0");
  370. }
  371. else if (dto.IsSure == 1) //已完成
  372. {
  373. sqlWhere += string.Format(@" And IsSure = 1");
  374. }
  375. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  376. {
  377. string tj = dto.SearchCriteria;
  378. 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}%')",
  379. tj, tj, tj, tj, tj);
  380. }
  381. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  382. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  383. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  384. JietuanOperator,IsSure,CreateTime
  385. From (
  386. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  387. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  388. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  389. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  390. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  391. From Grp_DelegationInfo gdi
  392. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  393. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  394. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  395. Where gdi.IsDel = 0 {0}
  396. ) temp", sqlWhere);
  397. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  398. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  399. #region 处理所属部门
  400. /*
  401. * 1.sq 和 gyy 等显示 市场部
  402. * 2.王鸽和主管及张总还有管理员号统一国交部
  403. * 2-1. 4 管理员 ,21 张海麟
  404. */
  405. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  406. List<int> userIds1 = new List<int>() { 4, 21 };
  407. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  408. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  409. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  410. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  411. .ToList();
  412. foreach (var item in _DelegationList)
  413. {
  414. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  415. }
  416. #endregion
  417. var _view = new
  418. {
  419. PageFuncAuth = pageFunAuthView,
  420. Data = _DelegationList
  421. };
  422. return Ok(JsonView(true, "查询成功!", _view, total));
  423. }
  424. else
  425. {
  426. return Ok(JsonView(false, "查询失败"));
  427. }
  428. }
  429. /// <summary>
  430. /// 团组列表
  431. /// </summary>
  432. /// <returns></returns>
  433. [HttpPost]
  434. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  435. {
  436. #region 参数验证
  437. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  438. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  439. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  440. #region 页面操作权限验证
  441. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  442. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  443. #endregion
  444. #endregion
  445. if (dto.PortType != 1 && dto.PortType != 2)
  446. {
  447. return Ok(JsonView(false, "查询失败!"));
  448. }
  449. string orderbyStr = "order by gdi.CreateTime Desc";
  450. string sqlWhere = string.Empty;
  451. if (dto.IsSure == 0) //未完成
  452. {
  453. sqlWhere += string.Format(@" And IsSure = 0");
  454. }
  455. else if (dto.IsSure == 1) //已完成
  456. {
  457. sqlWhere += string.Format(@" And IsSure = 1");
  458. }
  459. //团组类型
  460. if (dto.TeamDid > 0)
  461. {
  462. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  463. }
  464. //团组名称
  465. if (!string.IsNullOrEmpty(dto.TeamName))
  466. {
  467. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  468. }
  469. //客户名称
  470. if (!string.IsNullOrEmpty(dto.ClientName))
  471. {
  472. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  473. }
  474. //客户单位
  475. if (!string.IsNullOrEmpty(dto.ClientUnit))
  476. {
  477. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  478. }
  479. //出访时间
  480. if (!string.IsNullOrEmpty(dto.visitDataTime))
  481. {
  482. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  483. orderbyStr = "order by gdi.VisitDate";
  484. }
  485. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  486. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  487. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  488. JietuanOperator,IsSure,CreateTime
  489. From (
  490. Select row_number() over({0}) as Row_Number,
  491. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  492. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  493. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  494. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  495. From Grp_DelegationInfo gdi
  496. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  497. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  498. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  499. Where gdi.IsDel = 0 {1}
  500. ) temp ", orderbyStr, sqlWhere);
  501. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  502. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  503. #region 处理所属部门
  504. /*
  505. * 1.sq 和 gyy 等显示 市场部
  506. * 2.王鸽和主管及张总还有管理员号统一国交部
  507. * 2-1. 4 管理员 ,21 张海麟
  508. */
  509. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  510. List<int> userIds1 = new List<int>() { 4, 21 };
  511. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  512. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  513. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  514. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  515. .ToList();
  516. foreach (var item in _DelegationList)
  517. {
  518. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  519. }
  520. #endregion
  521. var _view = new
  522. {
  523. PageFuncAuth = pageFunAuthView,
  524. Data = _DelegationList
  525. };
  526. return Ok(JsonView(true, "查询成功!", _view, total));
  527. }
  528. /// <summary>
  529. /// 接团信息详情
  530. /// </summary>
  531. /// <param name="dto">团组info请求dto</param>
  532. /// <returns></returns>
  533. [HttpPost]
  534. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  535. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  536. {
  537. var groupData = await _groupRepository.GetGroupInfo(dto);
  538. if (groupData.Code != 0)
  539. {
  540. return Ok(JsonView(false, groupData.Msg));
  541. }
  542. return Ok(JsonView(groupData.Data));
  543. }
  544. /// <summary>
  545. /// 接团信息 编辑添加
  546. /// 基础信息数据源
  547. /// </summary>
  548. /// <param name="dto"></param>
  549. /// <returns></returns>
  550. [HttpPost]
  551. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  552. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  553. {
  554. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  555. if (groupData.Code != 0)
  556. {
  557. return Ok(JsonView(false, groupData.Msg));
  558. }
  559. return Ok(JsonView(groupData.Data));
  560. }
  561. /// <summary>
  562. /// 接团信息 操作(增改)
  563. /// </summary>
  564. /// <param name="dto"></param>
  565. /// <returns></returns>
  566. [HttpPost]
  567. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  568. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  569. {
  570. try
  571. {
  572. var groupData = await _groupRepository.GroupOperation(dto);
  573. if (groupData.Code != 0)
  574. {
  575. return Ok(JsonView(false, groupData.Msg));
  576. }
  577. int diId = 0;
  578. //添加时 默认加入团组汇率
  579. if (dto.Status == 1) //添加
  580. {
  581. diId = groupData.Data;
  582. //添加默认币种
  583. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  584. //默认分配权限
  585. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  586. //消息提示 王鸽 主管号
  587. List<int> _managerIds = new List<int>() { 22, 32 };
  588. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  589. if (userIds.Count > 0)
  590. {
  591. userIds.Add(208);
  592. //创建团组管控
  593. GroupStepForDelegation.CreateWorkStep(diId);
  594. //发送消息
  595. string groupName = dto.TeamName;
  596. string createGroupUser = string.Empty;
  597. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  598. if (userInfo != null) createGroupUser = userInfo.CnName;
  599. string title = $"系统通知";
  600. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  601. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  602. }
  603. //默认创建倒推表
  604. await _invertedListRep._Create(dto.UserId, diId);
  605. }
  606. else if (dto.Status == 2)
  607. {
  608. diId = dto.Id;
  609. }
  610. return Ok(JsonView(true, "操作成功!", diId));
  611. }
  612. catch (Exception ex)
  613. {
  614. Logs("[response]" + JsonConvert.SerializeObject(dto));
  615. Logs(ex.Message);
  616. return Ok(JsonView(false, ex.Message));
  617. }
  618. }
  619. /// <summary>
  620. /// 接团流程操作(增改)
  621. /// 安卓端使用 建团时添加客户名单
  622. /// </summary>
  623. /// <param name="dto"></param>
  624. /// <returns></returns>
  625. [HttpPost]
  626. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  627. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  628. {
  629. try
  630. {
  631. #region 参数验证
  632. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  633. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  634. #region 页面操作权限验证
  635. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  636. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  637. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  638. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  639. #endregion
  640. #endregion
  641. _sqlSugar.BeginTran();
  642. var _dto = new GroupOperationDto();
  643. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  644. var groupData = await _groupRepository.GroupOperation(_dto);
  645. if (groupData.Code != 0)
  646. {
  647. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  648. }
  649. int diId = 0;
  650. //添加时 默认加入团组汇率
  651. if (dto.Status == 1) //添加
  652. {
  653. diId = groupData.Data;
  654. //添加默认币种
  655. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  656. //默认分配权限
  657. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  658. //消息提示 王鸽 主管号
  659. List<int> _managerIds = new List<int>() { 22, 32 };
  660. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  661. if (userIds.Count > 0)
  662. {
  663. userIds.Add(208);
  664. //创建团组管控
  665. GroupStepForDelegation.CreateWorkStep(diId);
  666. //发送消息
  667. string groupName = dto.TeamName;
  668. string createGroupUser = string.Empty;
  669. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  670. if (userInfo != null) createGroupUser = userInfo.CnName;
  671. string title = $"系统通知";
  672. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  673. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  674. }
  675. }
  676. if (dto.Status == 2)
  677. {
  678. diId = dto.Id;
  679. if (diId == 0)
  680. {
  681. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  682. }
  683. }
  684. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  685. if (viewData.Code != 0)
  686. {
  687. _sqlSugar.RollbackTran();
  688. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  689. }
  690. _sqlSugar.CommitTran();
  691. return Ok(JsonView(true, "添加成功"));
  692. }
  693. catch (Exception ex)
  694. {
  695. _sqlSugar.RollbackTran();
  696. return Ok(JsonView(false, ex.Message));
  697. }
  698. }
  699. /// <summary>
  700. /// 接团信息 操作(删除)
  701. /// </summary>
  702. /// <param name="dto"></param>
  703. /// <returns></returns>
  704. [HttpPost]
  705. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  706. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  707. {
  708. try
  709. {
  710. var groupData = await _groupRepository.GroupDel(dto);
  711. if (groupData.Code != 0)
  712. {
  713. return Ok(JsonView(false, groupData.Msg));
  714. }
  715. return Ok(JsonView(true));
  716. }
  717. catch (Exception ex)
  718. {
  719. Logs("[response]" + JsonConvert.SerializeObject(dto));
  720. Logs(ex.Message);
  721. return Ok(JsonView(false, ex.Message));
  722. }
  723. }
  724. /// <summary>
  725. /// 获取团组销售报价号
  726. /// 团组添加时 使用
  727. /// </summary>
  728. /// <returns></returns>
  729. [HttpPost]
  730. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  731. public async Task<IActionResult> GetGroupSalesQuoteNo()
  732. {
  733. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  734. if (groupData.Code != 0)
  735. {
  736. return Ok(JsonView(false, groupData.Msg));
  737. }
  738. object salesQuoteNo = new
  739. {
  740. SalesQuoteNo = groupData.Data
  741. };
  742. return Ok(JsonView(salesQuoteNo));
  743. }
  744. /// <summary>
  745. /// 设置确认出团
  746. /// </summary>
  747. /// <param name="dto"></param>
  748. /// <returns></returns>
  749. [HttpPost]
  750. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  751. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  752. {
  753. var groupData = await _groupRepository.ConfirmationGroup(dto);
  754. if (groupData.Code != 0)
  755. {
  756. return Ok(JsonView(false, groupData.Msg));
  757. }
  758. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  759. #region OA消息推送
  760. try
  761. {
  762. string groupName = groupInfo.TeamName;
  763. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  764. List<int> userIds = new List<int>();
  765. listUser.ForEach(s => userIds.Add(s.Id));
  766. string title = $"系统通知";
  767. string content = $"团组[{groupName}]已确认出团!";
  768. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  769. }
  770. catch (Exception ex)
  771. {
  772. }
  773. #endregion
  774. #region 应用推送
  775. try
  776. {
  777. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  778. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  779. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  780. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  781. {
  782. List<string> userList = new List<string>() { users.QiyeChatUserId };
  783. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  784. }
  785. }
  786. catch (Exception ex)
  787. {
  788. }
  789. #endregion
  790. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  791. return Ok(JsonView(true, "操作成功!", groupData.Data));
  792. }
  793. /// <summary>
  794. /// 获取团组名称data And 签证国别Data
  795. /// </summary>
  796. /// <param name="dto"></param>
  797. /// <returns></returns>
  798. [HttpPost]
  799. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  800. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  801. {
  802. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  803. if (groupData.Code != 0)
  804. {
  805. return Ok(JsonView(false, groupData.Msg));
  806. }
  807. return Ok(JsonView(groupData.Data));
  808. }
  809. /// <summary>
  810. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  811. /// </summary>
  812. /// <returns></returns>
  813. [HttpPost]
  814. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  815. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  816. {
  817. try
  818. {
  819. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  820. if (groupData.Code != 0)
  821. {
  822. return Ok(JsonView(false, groupData.Msg));
  823. }
  824. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  825. }
  826. catch (Exception ex)
  827. {
  828. return Ok(JsonView(false, "程序错误!"));
  829. throw;
  830. }
  831. }
  832. #endregion
  833. #region 团组&签证
  834. /// <summary>
  835. /// 根据团组Id获取签证客户信息List
  836. /// </summary>
  837. /// <param name="dto">请求dto</param>
  838. /// <returns></returns>
  839. [HttpPost]
  840. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  841. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  842. {
  843. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  844. if (groupData.Code != 0)
  845. {
  846. return Ok(JsonView(false, groupData.Msg));
  847. }
  848. return Ok(JsonView(groupData.Data));
  849. }
  850. /// <summary>
  851. /// IOS获取团组签证拍照上传进度01(团组列表)
  852. /// </summary>
  853. /// <param name="dto">请求dto</param>
  854. /// <returns></returns>
  855. [HttpPost]
  856. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  857. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  858. {
  859. if (dto == null)
  860. {
  861. return Ok(JsonView(false, "参数为空"));
  862. }
  863. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  864. return Ok(JsonView(visaList));
  865. }
  866. /// <summary>
  867. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  868. /// </summary>
  869. /// <returns></returns>
  870. [HttpPost]
  871. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  872. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  873. {
  874. if (dto == null)
  875. {
  876. return Ok(JsonView(false, "请求错误:"));
  877. }
  878. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  879. return Ok(JsonView(list));
  880. }
  881. /// <summary>
  882. /// IOS获取团组签证拍照上传进度03(相册)
  883. /// </summary>
  884. /// <returns></returns>
  885. [HttpPost]
  886. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  887. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  888. {
  889. if (dto == null)
  890. {
  891. return Ok(JsonView(false, "请求错误:"));
  892. }
  893. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  894. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  895. list.ForEach(s => s.url = url);
  896. return Ok(JsonView(list));
  897. }
  898. /// <summary>
  899. /// IOS获取团组签证拍照上传进度04(图片上传)
  900. /// </summary>
  901. /// <param name="dto"></param>
  902. /// <returns></returns>
  903. [HttpPost]
  904. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  905. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  906. {
  907. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  908. //if (!string.IsNullOrEmpty(result))
  909. //{
  910. //}
  911. //else {
  912. // return Ok(JsonView(false, "上传失败"));
  913. //}
  914. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  915. int sucNum = 0;
  916. try
  917. {
  918. foreach (var item in dto.base64DataList)
  919. {
  920. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  921. string result = decodeBase64ToImage(item, imageName);
  922. if (!string.IsNullOrEmpty(result))
  923. {
  924. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  925. pic.CreateUserId = dto.CreateUserId;
  926. pic.PicName = imageName;
  927. pic.PicPath = result;
  928. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  929. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  930. if (insertResult > 0)
  931. {
  932. sucNum++;
  933. }
  934. }
  935. }
  936. }
  937. catch (Exception ex)
  938. {
  939. return Ok(JsonView(false, ex.Message));
  940. }
  941. string msg = string.Format(@"成功上传{0}张", sucNum);
  942. return Ok(JsonView(true, msg));
  943. }
  944. private string decodeBase64ToImage(string base64DataURL, string imgName)
  945. {
  946. string filename = "";//声明一个string类型的相对路径
  947. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  948. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  949. try//会有异常抛出,try,catch一下
  950. {
  951. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  952. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  953. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  954. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  955. //文件名称
  956. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  957. //上传的文件的路径
  958. string filePath = "";
  959. if (!Directory.Exists(fileDir))
  960. {
  961. Directory.CreateDirectory(fileDir);
  962. }
  963. //上传的文件的路径
  964. filePath = fileDir + filename;
  965. //string url = HttpRuntime.AppDomainAppPath.ToString();
  966. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  967. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  968. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  969. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  970. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  971. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  972. ms.Close();//关闭当前流,并释放所有与之关联的资源
  973. bitmap.Dispose();
  974. }
  975. catch (Exception e)
  976. {
  977. string massage = e.Message;
  978. Logs("IOS图片上传Error:" + massage);
  979. //filename = e.Message;
  980. }
  981. return filename;//返回相对路径
  982. }
  983. /// <summary>
  984. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  985. /// </summary>
  986. /// <param name="dto"></param>
  987. /// <returns></returns>
  988. [HttpPost]
  989. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  990. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  991. {
  992. if (dto == null)
  993. {
  994. return Ok(JsonView(false, "请求错误:"));
  995. }
  996. string msg = "参数错误";
  997. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  998. {
  999. try
  1000. {
  1001. //_delegationVisaRep.BeginTran();
  1002. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  1003. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  1004. .Where(s => s.Id == dto.visaProgressCustomerId)
  1005. .ExecuteCommandAsync();
  1006. if (updCount > 0 && dto.publishCode == 1)
  1007. {
  1008. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  1009. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  1010. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  1011. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  1012. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  1013. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  1014. if (groupData == null)
  1015. {
  1016. _delegationVisaRep.RollbackTran();
  1017. }
  1018. string title = string.Format(@"[签证进度更新]");
  1019. string content = string.Format(@"测试文本");
  1020. bool rst = await _message.AddMsg(new MessageDto()
  1021. {
  1022. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  1023. IssuerId = dto.publisher,
  1024. Title = title,
  1025. Content = content,
  1026. ReleaseTime = DateTime.Now,
  1027. UIdList = new List<int> {
  1028. 234
  1029. }
  1030. });
  1031. if (rst)
  1032. {
  1033. return Ok(JsonView(true, "发送通知成功"));
  1034. }
  1035. }
  1036. //_delegationVisaRep.CommitTran();
  1037. }
  1038. catch (Exception)
  1039. {
  1040. //_delegationVisaRep.RollbackTran();
  1041. }
  1042. }
  1043. return Ok(JsonView(true, msg));
  1044. }
  1045. #endregion
  1046. #region 团组任务分配
  1047. /// <summary>
  1048. /// 团组任务分配初始化
  1049. /// </summary>
  1050. /// <param name="dto"></param>
  1051. /// <returns></returns>
  1052. [HttpPost]
  1053. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1054. public async Task<IActionResult> GetTaskAssignmen()
  1055. {
  1056. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1057. if (groupData.Code != 0)
  1058. {
  1059. return Ok(JsonView(false, groupData.Msg));
  1060. }
  1061. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1062. }
  1063. /// <summary>
  1064. /// 团组任务分配查询
  1065. /// </summary>
  1066. /// <param name="dto"></param>
  1067. /// <returns></returns>
  1068. [HttpPost]
  1069. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1070. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1071. {
  1072. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1073. if (groupData.Code != 0)
  1074. {
  1075. return Ok(JsonView(false, groupData.Msg));
  1076. }
  1077. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1078. }
  1079. /// <summary>
  1080. /// 团组任务分配操作
  1081. /// </summary>
  1082. /// <param name="dto"></param>
  1083. /// <returns></returns>
  1084. [HttpPost]
  1085. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1086. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1087. {
  1088. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1089. if (groupData.Code != 0)
  1090. {
  1091. return Ok(JsonView(false, groupData.Msg));
  1092. }
  1093. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1094. }
  1095. #endregion
  1096. #region 团组费用审核
  1097. /// <summary>
  1098. /// 费用审核
  1099. /// 团组列表 Page
  1100. /// </summary>
  1101. /// <param name="_dto">团组列表请求dto</param>
  1102. /// <returns></returns>
  1103. [HttpPost]
  1104. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1105. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1106. {
  1107. #region 参数验证
  1108. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1109. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1110. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1111. #region 页面操作权限验证
  1112. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1113. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1114. #endregion
  1115. #endregion
  1116. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1117. {
  1118. string sqlWhere = string.Empty;
  1119. if (_dto.IsSure == 0) //未完成
  1120. {
  1121. sqlWhere += string.Format(@" And IsSure = 0");
  1122. }
  1123. else if (_dto.IsSure == 1) //已完成
  1124. {
  1125. sqlWhere += string.Format(@" And IsSure = 1");
  1126. }
  1127. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1128. {
  1129. string tj = _dto.SearchCriteria;
  1130. 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}%')",
  1131. tj, tj, tj, tj, tj);
  1132. }
  1133. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1134. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1135. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1136. From (
  1137. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1138. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1139. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1140. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1141. From Grp_DelegationInfo gdi
  1142. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1143. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1144. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1145. Where gdi.IsDel = 0 {0}
  1146. ) temp ", sqlWhere);
  1147. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1148. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1149. var _view = new
  1150. {
  1151. PageFuncAuth = pageFunAuthView,
  1152. Data = _DelegationList
  1153. };
  1154. return Ok(JsonView(true, "查询成功!", _view, total));
  1155. }
  1156. else
  1157. {
  1158. return Ok(JsonView(false, "查询失败"));
  1159. }
  1160. }
  1161. /// <summary>
  1162. /// 获取团组费用审核
  1163. /// </summary>
  1164. /// <param name="paras">参数Json字符串</param>
  1165. /// <returns></returns>
  1166. [HttpPost]
  1167. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1168. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1169. {
  1170. try
  1171. {
  1172. #region 参数验证
  1173. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1174. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1175. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1176. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1177. #region 页面操作权限验证
  1178. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1179. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1180. #endregion
  1181. #endregion
  1182. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1183. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1184. #region 费用清单
  1185. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1186. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1187. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1188. List<Grp_CreditCardPayment> entityList = _groupRepository
  1189. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1190. .Where(exp.ToExpression())
  1191. .ToList();
  1192. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1193. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1194. /*
  1195. * 76://酒店预订
  1196. */
  1197. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1198. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1199. .ToListAsync();
  1200. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1201. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1202. .ToListAsync();
  1203. /*
  1204. * 79://车/导游地接
  1205. */
  1206. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1207. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1208. .ToListAsync();
  1209. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1210. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1211. .ToListAsync();
  1212. /*
  1213. * 80: //签证
  1214. */
  1215. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1216. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1217. .ToListAsync();
  1218. /*
  1219. *81: //邀请/公务活动
  1220. */
  1221. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1222. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1223. .ToListAsync();
  1224. /*
  1225. * 82: //团组客户保险
  1226. */
  1227. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1228. /*
  1229. * Lable = 85 机票预订
  1230. */
  1231. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1232. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1233. .ToListAsync();
  1234. /*
  1235. * 85 机票预定
  1236. */
  1237. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1238. /*
  1239. * 98 其他款项
  1240. */
  1241. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1242. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1243. .ToListAsync();
  1244. /*
  1245. * 285:收款退还
  1246. */
  1247. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1248. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1249. .ToListAsync();
  1250. /*
  1251. * 1015: //超支费用
  1252. */
  1253. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1254. /*
  1255. * 币种信息
  1256. */
  1257. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1258. /*
  1259. * 车/导游地接 费用类型
  1260. */
  1261. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1262. /*
  1263. * 车/导游地接 费用类型
  1264. */
  1265. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1266. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1267. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1268. /*
  1269. * 用户信息
  1270. */
  1271. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1272. /*
  1273. * 费用模块
  1274. */
  1275. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1276. string priceModule = string.Empty;
  1277. if (sdPriceName != null)
  1278. {
  1279. priceModule = sdPriceName.Name;
  1280. }
  1281. /*
  1282. * 成本信息
  1283. */
  1284. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1285. decimal _groupRate = 0.0000M;
  1286. string _groupCurrencyCode = "-";
  1287. if (groupCost != null)
  1288. {
  1289. _groupRate = groupCost.Rate;
  1290. if (int.TryParse(groupCost.Currency, out int _currency))
  1291. {
  1292. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1293. }
  1294. else _groupCurrencyCode = groupCost.Currency;
  1295. }
  1296. string costContentSql = $"Select * From Grp_GroupCost";
  1297. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1298. //处理日期为空的天数
  1299. for (int i = 0; i < groupCostDetails.Count; i++)
  1300. if (i != 0)
  1301. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1302. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1303. /*
  1304. * 处理详情数据
  1305. */
  1306. foreach (var entity in entityList)
  1307. {
  1308. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1309. _detail.Id = entity.Id;
  1310. _detail.PriceName = priceModule;
  1311. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1312. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1313. /*
  1314. * 应付款金额
  1315. */
  1316. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1317. string PaymentCurrency_WaitPay = "Unknown";
  1318. string hotelCurrncyCode = "Unknown";
  1319. string hotelCurrncyName = "Unknown";
  1320. if (sdPaymentCurrency_WaitPay != null)
  1321. {
  1322. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1323. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1324. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1325. if (hotelCurrncyCode.Equals("CNY"))
  1326. {
  1327. entity.DayRate = 1.0000M;
  1328. }
  1329. }
  1330. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1331. /*
  1332. * 此次付款金额
  1333. */
  1334. decimal CurrPayStr = 0;
  1335. if (entity.PayPercentage == 0)
  1336. {
  1337. if (entity.PayThenMoney != 0)
  1338. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1339. }
  1340. else
  1341. {
  1342. if (entity.PayMoney != 0)
  1343. {
  1344. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1345. }
  1346. }
  1347. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1348. /*
  1349. * 剩余尾款
  1350. */
  1351. decimal BalanceStr = 0;
  1352. if (CurrPayStr != 0)
  1353. {
  1354. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1355. BalanceStr = 0;
  1356. else
  1357. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1358. }
  1359. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1360. /*
  1361. * Bus名称
  1362. */
  1363. _detail.BusName = "待增加";
  1364. /*
  1365. *费用所属
  1366. */
  1367. switch (entity.CTable)
  1368. {
  1369. case 76://酒店预订
  1370. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1371. if (hotelReservations != null)
  1372. {
  1373. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1374. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1375. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1376. string roomFeeStr = "", roomFeestr1 = "";
  1377. //是否比较房型价格
  1378. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1379. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1380. if (hotelReservations.SingleRoomPrice > 0)
  1381. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1382. if (hotelReservations.DoubleRoomPrice > 0)
  1383. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1384. if (hotelReservations.SuiteRoomPrice > 0)
  1385. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1386. if (hotelReservations.OtherRoomPrice > 0)
  1387. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1388. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1389. else roomFeeStr += " 0.00 * 0";
  1390. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1391. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1392. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1393. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1394. /*
  1395. * 费用类型
  1396. * 1:房费
  1397. * 2:早餐
  1398. * 3:地税
  1399. * 4:城市税
  1400. * </summary>
  1401. */
  1402. //地税
  1403. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1404. if (governmentRentData != null)
  1405. {
  1406. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1407. governmentRentFee = governmentRentData.Price;
  1408. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1409. if (governmentRentCurrData != null)
  1410. {
  1411. governmentRentCode = governmentRentCurrData.Name;
  1412. governmentRentName = $"({governmentRentCurrData.Remark})";
  1413. }
  1414. }
  1415. //城市税
  1416. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1417. if (cityTaxData != null)
  1418. {
  1419. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1420. cityTaxFee = cityTaxData.Price;
  1421. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1422. if (cityTaxCurrData != null)
  1423. {
  1424. cityTaxCode = cityTaxCurrData.Name;
  1425. cityTaxName = $"({cityTaxCurrData.Remark})";
  1426. }
  1427. }
  1428. //酒店早餐
  1429. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1430. if (breakfastData != null)
  1431. {
  1432. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1433. breakfastFee = breakfastData.Price;
  1434. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1435. if (breakfastCurrData != null)
  1436. {
  1437. breakfastCode = breakfastCurrData.Name;
  1438. breakfastName = $"({breakfastCurrData.Remark})";
  1439. }
  1440. }
  1441. //房间费用
  1442. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1443. if (roomData != null)
  1444. {
  1445. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1446. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1447. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1448. roomFee = roomData.Price;
  1449. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1450. if (roomCurrData != null)
  1451. {
  1452. roomCode = roomCurrData.Name;
  1453. roomName = $"({roomCurrData.Remark})";
  1454. }
  1455. }
  1456. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1457. string hotelCostStr = "";
  1458. decimal hotelCsotTotal = 0.00M;
  1459. if (groupCost != null)
  1460. {
  1461. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1462. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1463. }
  1464. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1465. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1466. string hotelCost_day = "";
  1467. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1468. foreach (var item in hotelCostDetails1)
  1469. {
  1470. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1471. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1472. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1473. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1474. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1475. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1476. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1477. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1478. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1479. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1480. hotelCost_day += @$"</br>";
  1481. }
  1482. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1483. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1484. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1485. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1486. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1487. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1488. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1489. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1490. $"房间说明: {hotelReservations.Remark} <br/>" +
  1491. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1492. $"{hotelBreakfastStr}" +
  1493. $"{hotelGovernmentRentStr}" +
  1494. $"{hotelCityTaxStr}";
  1495. _detail.PriceNameContent = hotelReservations.HotelName;
  1496. }
  1497. break;
  1498. case 79://车/导游地接
  1499. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1500. if (touristGuideGroundReservations != null)
  1501. {
  1502. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1503. {
  1504. _detail.BusName = touristGuideGroundReservations.BusName;
  1505. }
  1506. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1507. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1508. //if (isInt)
  1509. //{
  1510. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1511. // if (cityInfo != null)
  1512. // {
  1513. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1514. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1515. // if (carFeeItem != null)
  1516. // {
  1517. // nameContent += $@"({carFeeItem.Name})";
  1518. // }
  1519. // _detail.PriceNameContent = nameContent;
  1520. // }
  1521. //}
  1522. //else
  1523. //{
  1524. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1525. //}
  1526. var touristGuideGroundReservationsContents =
  1527. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1528. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1529. foreach (var item in touristGuideGroundReservationsContents)
  1530. {
  1531. string typeName = "Unknown";
  1532. string carCurrencyCode = "Unknown";
  1533. string carCurrencyName = "Unknown";
  1534. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1535. if (carTypeData != null) typeName = carTypeData.Name;
  1536. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1537. if (currencyData != null)
  1538. {
  1539. carCurrencyCode = currencyData.Name;
  1540. carCurrencyName = currencyData.Remark;
  1541. }
  1542. string opCostStr = string.Empty;
  1543. decimal opCostTypePrice = 0.00M;
  1544. #region 处理成本各项费用
  1545. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1546. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1547. if (opCost.Count > 0)
  1548. {
  1549. switch (item.SId)
  1550. {
  1551. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1552. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1553. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1554. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1555. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1556. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1557. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1558. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1559. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1560. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1561. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1562. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1563. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1564. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1565. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1566. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1567. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1568. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1569. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1570. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1571. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1572. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1573. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1574. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1575. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1576. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1577. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1578. }
  1579. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1580. }
  1581. #endregion
  1582. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1583. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1584. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1585. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1586. }
  1587. _detail.PriceMsgContent = priceMsg;
  1588. }
  1589. break;
  1590. case 80: //签证
  1591. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1592. if (visaInfo != null)
  1593. {
  1594. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1595. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1596. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1597. }
  1598. break;
  1599. case 81: //邀请/公务活动
  1600. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1601. if (_ioa != null)
  1602. {
  1603. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1604. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1605. sendCurrName = "Unknown", //快递费用币种 Name
  1606. sendCurrCode = "Unknown", //快递费用币种 Code
  1607. eventsCurrName = "Unknown", //公务活动费币种 Name
  1608. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1609. translateCurrName = "Unknown", //公务翻译费 Name
  1610. translateCurrCode = "Unknown"; //公务翻译费 Code
  1611. #region 处理费用币种
  1612. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1613. if (inviteCurrData != null)
  1614. {
  1615. inviteCurrName = inviteCurrData.Remark;
  1616. inviteCurrCode = inviteCurrData.Name;
  1617. }
  1618. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1619. if (sendCurrData != null)
  1620. {
  1621. sendCurrName = sendCurrData.Remark;
  1622. sendCurrCode = sendCurrData.Name;
  1623. }
  1624. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1625. if (eventsCurrData != null)
  1626. {
  1627. eventsCurrName = eventsCurrData.Remark;
  1628. eventsCurrCode = eventsCurrData.Name;
  1629. }
  1630. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1631. if (translateCurrData != null)
  1632. {
  1633. translateCurrName = translateCurrData.Remark;
  1634. translateCurrCode = translateCurrData.Name;
  1635. }
  1636. #endregion
  1637. _detail.PriceNameContent = _ioa.InviterArea;
  1638. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1639. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1640. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1641. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1642. $@"备注:" + _ioa.Remark + "<br/>";
  1643. }
  1644. break;
  1645. case 82: //团组客户保险
  1646. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1647. if (customers != null)
  1648. {
  1649. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1650. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1651. }
  1652. break;
  1653. case 85: //机票预订
  1654. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1655. if (jpRes != null)
  1656. {
  1657. string FlightsDescription = jpRes.FlightsDescription;
  1658. string PriceDescription = jpRes.PriceDescription;
  1659. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1660. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1661. }
  1662. break;
  1663. case 98://其他款项
  1664. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1665. if (gdpRes != null)
  1666. {
  1667. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1668. _detail.PriceNameContent = gdpRes.PriceName;
  1669. }
  1670. break;
  1671. case 285://收款退还
  1672. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1673. if (refundAndOtherMoney != null)
  1674. {
  1675. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1676. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1677. }
  1678. break;
  1679. case 751://酒店早餐
  1680. break;
  1681. case 1015://超支费用
  1682. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1683. if (groupExtraCost != null)
  1684. {
  1685. _detail.PriceNameContent = groupExtraCost.PriceName;
  1686. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1687. }
  1688. break;
  1689. default:
  1690. break;
  1691. }
  1692. /*
  1693. * 申请人
  1694. */
  1695. string operatorName = " - ";
  1696. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1697. if (_opUser != null)
  1698. {
  1699. operatorName = _opUser.CnName;
  1700. }
  1701. _detail.OperatorName = operatorName;
  1702. /*
  1703. * 审核人
  1704. */
  1705. string auditOperatorName = "Unknown";
  1706. if (entity.AuditGMOperate == 0)
  1707. auditOperatorName = " - ";
  1708. else if (entity.AuditGMOperate == 4)
  1709. auditOperatorName = "自动审核";
  1710. else
  1711. {
  1712. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1713. if (_adUser != null)
  1714. {
  1715. auditOperatorName = _adUser.CnName;
  1716. }
  1717. }
  1718. _detail.AuditOperatorName = auditOperatorName;
  1719. /*
  1720. * 超预算比例
  1721. */
  1722. string overBudgetStr = "";
  1723. if (entity.ExceedBudget == -1)
  1724. overBudgetStr = sdPriceName.Name + "尚无预算";
  1725. else if (entity.ExceedBudget == 0)
  1726. {
  1727. if (entity.CTable == 76 || entity.CTable == 79)
  1728. {
  1729. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1730. else overBudgetStr = "超预算";
  1731. }
  1732. else
  1733. {
  1734. overBudgetStr = "未超预算";
  1735. }
  1736. }
  1737. else
  1738. overBudgetStr = entity.ExceedBudget.ToString("P");
  1739. _detail.OverBudget = overBudgetStr;
  1740. /*
  1741. * 费用总计
  1742. */
  1743. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1744. {
  1745. CurrencyId = entity.PaymentCurrency,
  1746. CurrencyName = PaymentCurrency_WaitPay,
  1747. AmountPayable = entity.PayMoney,
  1748. ThisPayment = CurrPayStr,
  1749. BalancePayment = BalanceStr,
  1750. AuditedFunds = CurrPayStr
  1751. });
  1752. _detail.IsAuditGM = entity.IsAuditGM;
  1753. detailList.Add(_detail);
  1754. }
  1755. #endregion
  1756. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1757. /*
  1758. * 下方描述处理
  1759. */
  1760. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1761. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1762. if (ccpCurrencyPrice != null)
  1763. {
  1764. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1765. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1766. }
  1767. else
  1768. {
  1769. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1770. }
  1771. string amountPayableStr = string.Format(@"应付款总金额: ");
  1772. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1773. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1774. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1775. foreach (var item in nonDuplicat)
  1776. {
  1777. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1778. if (strs.Count > 0)
  1779. {
  1780. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1781. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1782. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1783. //单独处理此次付款金额
  1784. if (item.CurrencyId == 836) //人民币
  1785. {
  1786. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1787. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1788. }
  1789. else
  1790. {
  1791. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1792. }
  1793. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1794. //单独处理已审核费用
  1795. if (item.CurrencyId == 836) //人民币
  1796. {
  1797. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1798. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1799. }
  1800. else
  1801. {
  1802. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1803. }
  1804. }
  1805. }
  1806. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1807. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1808. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1809. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1810. var _view1 = new
  1811. {
  1812. PageFuncAuth = pageFunAuthView,
  1813. Data = _view
  1814. };
  1815. return Ok(JsonView(_view1));
  1816. }
  1817. catch (Exception ex)
  1818. {
  1819. return Ok(JsonView(false, ex.Message));
  1820. }
  1821. }
  1822. /// <summary>
  1823. /// 费用审核
  1824. /// 修改团组费用审核状态
  1825. /// </summary>
  1826. /// <param name="_dto">参数Json字符串</param>
  1827. /// <returns></returns>
  1828. [HttpPost]
  1829. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1830. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1831. {
  1832. #region 参数验证
  1833. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1834. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1835. #endregion
  1836. #region 页面操作权限验证
  1837. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1838. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1839. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1840. #endregion
  1841. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1842. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1843. DateTime dtNow = DateTime.Now;
  1844. _groupRepository.BeginTran();
  1845. int rst = 0;
  1846. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1847. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1848. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1849. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1850. List<dynamic> msgDatas = new List<dynamic>();
  1851. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1852. foreach (var item in idList)
  1853. {
  1854. int CreditId = int.Parse(item);
  1855. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1856. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1857. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1858. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1859. .Where(s => s.Id == CreditId)
  1860. .ExecuteCommandAsync();
  1861. if (result < 1)
  1862. {
  1863. rst = -1;
  1864. _groupRepository.RollbackTran();
  1865. return Ok(JsonView(false, "操作失败并回滚!"));
  1866. }
  1867. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1868. if (creditData != null)
  1869. {
  1870. #region 应用通知配置
  1871. try
  1872. {
  1873. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1874. }
  1875. catch (Exception ex)
  1876. {
  1877. }
  1878. #endregion
  1879. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1880. string groupNameStr = string.Empty;
  1881. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1882. if (groupData != null) groupNameStr = groupData.TeamName;
  1883. string creditTypeStr = string.Empty;
  1884. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1885. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1886. string creditCurrency = string.Empty;
  1887. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1888. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1889. if (creditCurrency.Equals("CNY"))
  1890. {
  1891. creditData.DayRate = 1.0000M;
  1892. }
  1893. if (creditData.PayPercentage == 0.00M)
  1894. {
  1895. creditData.PayPercentage = 100M;
  1896. }
  1897. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1898. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1899. string msgContent = "";
  1900. if (creditCurrency.Equals("CNY"))
  1901. {
  1902. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1903. }
  1904. else
  1905. {
  1906. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1907. }
  1908. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1909. }
  1910. }
  1911. if (rst == 0)
  1912. {
  1913. _groupRepository.CommitTran();
  1914. foreach (var item in msgDatas)
  1915. {
  1916. //发送消息
  1917. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1918. }
  1919. #region 应用推送
  1920. try
  1921. {
  1922. foreach (var ccpId in dic_ccp_user.Keys)
  1923. {
  1924. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1925. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1926. }
  1927. }
  1928. catch (Exception)
  1929. {
  1930. }
  1931. #endregion
  1932. return Ok(JsonView(true, "操作成功!"));
  1933. }
  1934. return Ok(JsonView(false, "操作失败!"));
  1935. }
  1936. #endregion
  1937. #region 机票费用录入
  1938. /// <summary>
  1939. /// 机票录入当前登录人可操作团组
  1940. /// </summary>
  1941. /// <param name="dto"></param>
  1942. /// <returns></returns>
  1943. [HttpPost]
  1944. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1945. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1946. {
  1947. try
  1948. {
  1949. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1950. if (groupData.Code != 0)
  1951. {
  1952. return Ok(JsonView(false, groupData.Msg));
  1953. }
  1954. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1955. }
  1956. catch (Exception ex)
  1957. {
  1958. return Ok(JsonView(false, "程序错误!"));
  1959. throw;
  1960. }
  1961. }
  1962. /// <summary>
  1963. /// 机票费用录入列表
  1964. /// </summary>
  1965. /// <param name="dto"></param>
  1966. /// <returns></returns>
  1967. [HttpPost]
  1968. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1969. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1970. {
  1971. try
  1972. {
  1973. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1974. if (groupData.Code != 0)
  1975. {
  1976. return Ok(JsonView(false, groupData.Msg));
  1977. }
  1978. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1979. }
  1980. catch (Exception ex)
  1981. {
  1982. return Ok(JsonView(false, ex.Message));
  1983. throw;
  1984. }
  1985. }
  1986. /// <summary>
  1987. /// 根据id查询费用录入信息
  1988. /// </summary>
  1989. /// <param name="dto"></param>
  1990. /// <returns></returns>
  1991. [HttpPost]
  1992. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1993. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1994. {
  1995. try
  1996. {
  1997. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1998. if (groupData.Code != 0)
  1999. {
  2000. return Ok(JsonView(false, groupData.Msg));
  2001. }
  2002. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2003. }
  2004. catch (Exception ex)
  2005. {
  2006. return Ok(JsonView(false, "程序错误!"));
  2007. throw;
  2008. }
  2009. }
  2010. /// <summary>
  2011. /// 机票费用录入操作(Status:1.新增,2.修改)
  2012. /// </summary>
  2013. /// <param name="dto"></param>
  2014. /// <returns></returns>
  2015. [HttpPost]
  2016. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2017. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  2018. {
  2019. try
  2020. {
  2021. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  2022. if (groupData.Code != 0)
  2023. {
  2024. return Ok(JsonView(false, groupData.Msg));
  2025. }
  2026. #region 应用推送
  2027. try
  2028. {
  2029. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2030. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2031. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2032. }
  2033. catch (Exception ex)
  2034. {
  2035. }
  2036. #endregion
  2037. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2038. }
  2039. catch (Exception ex)
  2040. {
  2041. return Ok(JsonView(false, "程序错误!"));
  2042. throw;
  2043. }
  2044. }
  2045. /// <summary>
  2046. /// 根据舱位类型查询接团客户名单信息
  2047. /// </summary>
  2048. /// <param name="dto"></param>
  2049. /// <returns></returns>
  2050. [HttpPost]
  2051. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2052. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2053. {
  2054. try
  2055. {
  2056. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2057. if (crm_Groups.Count != 0)
  2058. {
  2059. List<dynamic> Customer = new List<dynamic>();
  2060. foreach (var item in crm_Groups)
  2061. {
  2062. var data = new
  2063. {
  2064. Id = item.Id,
  2065. Pinyin = item.Pinyin,
  2066. Name = item.LastName + item.FirstName
  2067. };
  2068. Customer.Add(data);
  2069. }
  2070. return Ok(JsonView(true, "查询成功!", Customer));
  2071. }
  2072. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2073. }
  2074. catch (Exception ex)
  2075. {
  2076. return Ok(JsonView(false, "程序错误!"));
  2077. throw;
  2078. }
  2079. }
  2080. /// <summary>
  2081. /// 根据团号获取客户信息
  2082. /// </summary>
  2083. /// <param name="dto"></param>
  2084. /// <returns></returns>
  2085. [HttpPost]
  2086. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2087. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2088. {
  2089. var jw = JsonView(false);
  2090. if (dto.DIID < 1)
  2091. {
  2092. jw.Msg += "请输入正确的diid";
  2093. return Ok(jw);
  2094. }
  2095. var arr = getSimplClientList(dto.DIID);
  2096. jw = JsonView(true, "获取成功!", arr);
  2097. return Ok(jw);
  2098. }
  2099. private List<SimplClientInfo> getSimplClientList(int diId)
  2100. {
  2101. 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);
  2102. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2103. return arr;
  2104. }
  2105. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2106. {
  2107. string result = origin;
  2108. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2109. {
  2110. string[] temparr = origin.Split(',');
  2111. string fistrStr = temparr[0];
  2112. int count = temparr.Count();
  2113. int tempId;
  2114. bool success = int.TryParse(fistrStr, out tempId);
  2115. if (success)
  2116. {
  2117. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2118. if (tempInfo != null)
  2119. {
  2120. if (count > 1)
  2121. {
  2122. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2123. }
  2124. else
  2125. {
  2126. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2127. }
  2128. }
  2129. }
  2130. }
  2131. return result;
  2132. }
  2133. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2134. {
  2135. string result = origin;
  2136. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2137. {
  2138. string[] temparr = origin.Split(',');
  2139. result = "";
  2140. foreach (var item in temparr)
  2141. {
  2142. int tempId;
  2143. bool success = int.TryParse(item, out tempId);
  2144. if (success)
  2145. {
  2146. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2147. if (tempInfo != null)
  2148. {
  2149. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2150. }
  2151. }
  2152. }
  2153. }
  2154. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2155. return result;
  2156. }
  2157. /// <summary>
  2158. /// 机票费用录入,删除
  2159. /// </summary>
  2160. /// <param name="dto"></param>
  2161. /// <returns></returns>
  2162. [HttpPost]
  2163. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2164. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2165. {
  2166. try
  2167. {
  2168. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2169. if (res)
  2170. {
  2171. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2172. {
  2173. IsDel = 1,
  2174. DeleteUserId = dto.DeleteUserId,
  2175. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2176. }).ExecuteCommandAsync();
  2177. return Ok(JsonView(true, "删除成功!"));
  2178. }
  2179. return Ok(JsonView(false, "删除失败!"));
  2180. }
  2181. catch (Exception ex)
  2182. {
  2183. return Ok(JsonView(false, "程序错误!"));
  2184. throw;
  2185. }
  2186. }
  2187. /// <summary>
  2188. /// 导出机票录入报表
  2189. /// </summary>
  2190. /// <param name="dto"></param>
  2191. /// <returns></returns>
  2192. [HttpPost]
  2193. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2194. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2195. {
  2196. try
  2197. {
  2198. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2199. if (groupData.Code != 0)
  2200. {
  2201. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2202. }
  2203. else
  2204. {
  2205. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2206. if (AirTicketReservations.Count != 0)
  2207. {
  2208. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2209. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2210. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2211. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2212. WorkbookDesigner designer = new WorkbookDesigner();
  2213. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2214. decimal countCost = 0;
  2215. foreach (var item in AirTicketReservations)
  2216. {
  2217. #region 处理客人姓名
  2218. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2219. item.ClientName = clientNames;
  2220. #endregion
  2221. if (item.BankType == "其他")
  2222. {
  2223. item.BankNo = "--";
  2224. }
  2225. else
  2226. {
  2227. if (!string.IsNullOrEmpty(item.BankType))
  2228. {
  2229. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2230. }
  2231. }
  2232. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2233. item.Price = System.Decimal.Round(item.Price, 2);
  2234. countCost += Convert.ToDecimal(item.Price);
  2235. }
  2236. designer.SetDataSource("Export", AirTicketReservations);
  2237. designer.SetDataSource("ExportDiCode", diCode);
  2238. designer.SetDataSource("ExportDiName", diName);
  2239. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2240. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2241. designer.Process();
  2242. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2243. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2244. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2245. return Ok(JsonView(true, "成功", url = rst));
  2246. }
  2247. else
  2248. {
  2249. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2250. }
  2251. }
  2252. }
  2253. catch (Exception ex)
  2254. {
  2255. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2256. throw;
  2257. }
  2258. }
  2259. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2260. /// <summary>
  2261. /// 行程单导出
  2262. /// </summary>
  2263. /// <param name="dto"></param>
  2264. /// <returns></returns>
  2265. [HttpPost]
  2266. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2267. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2268. {
  2269. try
  2270. {
  2271. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2272. if (groupData.Code != 0)
  2273. {
  2274. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2275. }
  2276. else
  2277. {
  2278. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2279. if (dto.Language == "CN")
  2280. {
  2281. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2282. DocumentBuilder builder = new DocumentBuilder(doc);
  2283. int tableIndex = 0;//表格索引
  2284. //得到文档中的第一个表格
  2285. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2286. foreach (var item in _AirTicketReservations)
  2287. {
  2288. #region 处理固定数据
  2289. string[] FlightsCode = item.FlightsCode.Split('/');
  2290. if (FlightsCode.Length != 0)
  2291. {
  2292. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2293. if (_AirCompany != null)
  2294. {
  2295. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2296. }
  2297. else
  2298. {
  2299. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2300. }
  2301. }
  2302. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2303. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2304. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2305. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2306. string name = "";
  2307. foreach (string clientName in nameArray)
  2308. {
  2309. if (!name.Contains(clientName))
  2310. {
  2311. name += clientName + ",";
  2312. }
  2313. }
  2314. if (!string.IsNullOrWhiteSpace(name))
  2315. {
  2316. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2317. }
  2318. else
  2319. {
  2320. table.Range.Bookmarks["ClientName"].Text = "--";
  2321. }
  2322. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2323. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2324. table.Range.Bookmarks["JointTicket"].Text = "--";
  2325. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2326. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2327. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2328. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2329. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2330. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2331. #endregion
  2332. #region 循环数据处理
  2333. List<AirInfo> airs = new List<AirInfo>();
  2334. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2335. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2336. for (int i = 0; i < FlightsCode.Length; i++)
  2337. {
  2338. AirInfo air = new AirInfo();
  2339. string[] tempstr = DayArray[i]
  2340. .Replace("\r\n", string.Empty)
  2341. .Replace("\\r\\n", string.Empty)
  2342. .TrimStart().TrimEnd()
  2343. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2344. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2345. string starCity = "";
  2346. if (star_Three != null)
  2347. {
  2348. starCity = star_Three.AirPort;
  2349. }
  2350. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2351. string EndCity = "";
  2352. if (End_Three != null)
  2353. {
  2354. EndCity = End_Three.AirPort;
  2355. }
  2356. air.Destination = starCity + "/" + EndCity;
  2357. air.Flight = FlightsCode[i];
  2358. air.SeatingClass = item.CTypeName;
  2359. string dateTime = tempstr[2];
  2360. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2361. air.FlightDate = DateTemp;
  2362. air.DepartureTime = tempstr[5];
  2363. air.LandingTime = tempstr[6];
  2364. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2365. air.TicketStatus = "--";
  2366. air.Luggage = "--";
  2367. air.DepartureTerminal = "--";
  2368. air.LandingTerminal = "--";
  2369. airs.Add(air);
  2370. }
  2371. int row = 13;
  2372. for (int i = 0; i < airs.Count; i++)
  2373. {
  2374. if (airs.Count > 2)
  2375. {
  2376. for (int j = 0; j < airs.Count - 2; j++)
  2377. {
  2378. var CopyRow = table.Rows[12].Clone(true);
  2379. table.Rows.Add(CopyRow);
  2380. }
  2381. }
  2382. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2383. int index = 0;
  2384. foreach (PropertyInfo property in properties)
  2385. {
  2386. string value = property.GetValue(airs[i]).ToString();
  2387. Cell ishcel0 = table.Rows[row].Cells[index];
  2388. Paragraph p = new Paragraph(doc);
  2389. string s = value;
  2390. p.AppendChild(new Run(doc, s));
  2391. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2392. ishcel0.AppendChild(p);
  2393. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2394. index++;
  2395. }
  2396. row++;
  2397. }
  2398. #endregion
  2399. Paragraph lastParagraph = new Paragraph(doc);
  2400. //第一个表格末尾加段落
  2401. table.ParentNode.InsertAfter(lastParagraph, table);
  2402. //复制第一个表格
  2403. Table cloneTable = (Table)table.Clone(true);
  2404. //在文档末尾段落后面加入复制的表格
  2405. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2406. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2407. {
  2408. int rownewsIndex = 13;
  2409. for (int i = 0; i < 2; i++)
  2410. {
  2411. var CopyRow = table.Rows[12].Clone(true);
  2412. table.Rows.RemoveAt(13);
  2413. table.Rows.Add(CopyRow);
  2414. rownewsIndex++;
  2415. }
  2416. }
  2417. else
  2418. {
  2419. table.Rows.RemoveAt(12);
  2420. }
  2421. cloneTable.Rows.RemoveAt(12);
  2422. }
  2423. if (_AirTicketReservations.Count != 0)
  2424. {
  2425. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2426. if (FlightsCode.Length != 0)
  2427. {
  2428. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2429. if (_AirCompany != null)
  2430. {
  2431. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2432. }
  2433. else
  2434. {
  2435. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2436. }
  2437. }
  2438. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2439. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2440. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2441. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2442. string name = "";
  2443. foreach (string clientName in nameArray)
  2444. {
  2445. if (!name.Contains(clientName))
  2446. {
  2447. name += clientName + ",";
  2448. }
  2449. }
  2450. if (!string.IsNullOrWhiteSpace(name))
  2451. {
  2452. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2453. }
  2454. else
  2455. {
  2456. table.Range.Bookmarks["ClientName"].Text = "--";
  2457. }
  2458. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2459. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2460. table.Range.Bookmarks["JointTicket"].Text = "--";
  2461. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2462. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2463. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2464. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2465. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2466. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2467. }
  2468. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2469. //保存合并后的文档
  2470. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2471. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2472. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2473. return Ok(JsonView(true, "成功!", rst));
  2474. }
  2475. else
  2476. {
  2477. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2478. DocumentBuilder builder = new DocumentBuilder(doc);
  2479. int tableIndex = 0;//表格索引
  2480. //得到文档中的第一个表格
  2481. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2482. List<string> texts = new List<string>();
  2483. foreach (var item in _AirTicketReservations)
  2484. {
  2485. string[] FlightsCode = item.FlightsCode.Split('/');
  2486. if (FlightsCode.Length != 0)
  2487. {
  2488. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2489. if (_AirCompany != null)
  2490. {
  2491. if (!transDic.ContainsKey(_AirCompany.CnName))
  2492. {
  2493. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2494. }
  2495. }
  2496. else
  2497. {
  2498. if (!transDic.ContainsKey("--"))
  2499. {
  2500. transDic.Add("--", "--");
  2501. }
  2502. }
  2503. }
  2504. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2505. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2506. string name = "";
  2507. foreach (string clientName in nameArray)
  2508. {
  2509. name += clientName + ",";
  2510. }
  2511. if (!texts.Contains(name))
  2512. {
  2513. texts.Add(name);
  2514. }
  2515. List<AirInfo> airs = new List<AirInfo>();
  2516. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2517. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2518. for (int i = 0; i < FlightsCode.Length; i++)
  2519. {
  2520. AirInfo air = new AirInfo();
  2521. string[] tempstr = DayArray[i]
  2522. .Replace("\r\n", string.Empty)
  2523. .Replace("\\r\\n", string.Empty)
  2524. .TrimStart().TrimEnd()
  2525. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2526. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2527. if (star_Three != null)
  2528. {
  2529. if (!transDic.ContainsKey(star_Three.AirPort))
  2530. {
  2531. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2532. }
  2533. }
  2534. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2535. if (End_Three != null)
  2536. {
  2537. if (!transDic.ContainsKey(End_Three.AirPort))
  2538. {
  2539. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2540. }
  2541. }
  2542. if (!texts.Contains(item.CTypeName))
  2543. {
  2544. texts.Add(item.CTypeName);
  2545. }
  2546. }
  2547. }
  2548. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2549. if (transData.Count > 0)
  2550. {
  2551. foreach (TranslateResult item in transData)
  2552. {
  2553. if (!transDic.ContainsKey(item.Query))
  2554. {
  2555. transDic.Add(item.Query, item.Translation);
  2556. }
  2557. }
  2558. }
  2559. foreach (var item in _AirTicketReservations)
  2560. {
  2561. #region 处理固定数据
  2562. string[] FlightsCode = item.FlightsCode.Split('/');
  2563. if (FlightsCode.Length != 0)
  2564. {
  2565. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2566. if (_AirCompany != null)
  2567. {
  2568. string str = "--";
  2569. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2570. if (!string.IsNullOrEmpty(translateResult))
  2571. {
  2572. str = translateResult;
  2573. str = _airTicketResRep.Processing(str);
  2574. }
  2575. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2576. }
  2577. else
  2578. {
  2579. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2580. }
  2581. }
  2582. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2583. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2584. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2585. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2586. string names = "";
  2587. foreach (string clientName in nameArray)
  2588. {
  2589. names += clientName + ",";
  2590. }
  2591. if (!string.IsNullOrWhiteSpace(names))
  2592. {
  2593. string str = "--";
  2594. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2595. if (!string.IsNullOrEmpty(translateResult))
  2596. {
  2597. str = translateResult;
  2598. str = _airTicketResRep.Processing(str);
  2599. }
  2600. table.Range.Bookmarks["ClientName"].Text = str;
  2601. }
  2602. else
  2603. {
  2604. table.Range.Bookmarks["ClientName"].Text = "--";
  2605. }
  2606. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2607. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2608. table.Range.Bookmarks["JointTicket"].Text = "--";
  2609. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2610. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2611. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2612. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2613. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2614. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2615. #endregion
  2616. #region 循环数据处理
  2617. List<AirInfo> airs = new List<AirInfo>();
  2618. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2619. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2620. for (int i = 0; i < FlightsCode.Length; i++)
  2621. {
  2622. AirInfo air = new AirInfo();
  2623. string[] tempstr = DayArray[i]
  2624. .Replace("\r\n", string.Empty)
  2625. .Replace("\\r\\n", string.Empty)
  2626. .TrimStart().TrimEnd()
  2627. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2628. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2629. string starCity = "";
  2630. if (star_Three != null)
  2631. {
  2632. string str2 = "--";
  2633. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2634. if (!string.IsNullOrEmpty(translateResult2))
  2635. {
  2636. str2 = translateResult2;
  2637. str2 = _airTicketResRep.Processing(str2);
  2638. }
  2639. starCity = str2;
  2640. }
  2641. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2642. string EndCity = "";
  2643. if (End_Three != null)
  2644. {
  2645. string str1 = "--";
  2646. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2647. if (!string.IsNullOrEmpty(translateResult1))
  2648. {
  2649. str1 = translateResult1;
  2650. str1 = _airTicketResRep.Processing(str1);
  2651. }
  2652. EndCity = str1;
  2653. }
  2654. air.Destination = starCity + "/" + EndCity;
  2655. air.Flight = FlightsCode[i];
  2656. string str = "--";
  2657. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2658. if (!string.IsNullOrEmpty(translateResult))
  2659. {
  2660. str = translateResult;
  2661. str = _airTicketResRep.Processing(str);
  2662. }
  2663. air.SeatingClass = str;
  2664. string dateTime = tempstr[2];
  2665. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2666. air.FlightDate = DateTemp;
  2667. air.DepartureTime = tempstr[5];
  2668. air.LandingTime = tempstr[6];
  2669. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2670. air.TicketStatus = "--";
  2671. air.Luggage = "--";
  2672. air.DepartureTerminal = "--";
  2673. air.LandingTerminal = "--";
  2674. airs.Add(air);
  2675. }
  2676. int row = 13;
  2677. for (int i = 0; i < airs.Count; i++)
  2678. {
  2679. if (airs.Count > 2)
  2680. {
  2681. for (int j = 0; j < airs.Count - 2; j++)
  2682. {
  2683. var CopyRow = table.Rows[12].Clone(true);
  2684. table.Rows.Add(CopyRow);
  2685. }
  2686. }
  2687. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2688. int index = 0;
  2689. foreach (PropertyInfo property in properties)
  2690. {
  2691. string value = property.GetValue(airs[i]).ToString();
  2692. Cell ishcel0 = table.Rows[row].Cells[index];
  2693. Paragraph p = new Paragraph(doc);
  2694. string s = value;
  2695. p.AppendChild(new Run(doc, s));
  2696. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2697. ishcel0.AppendChild(p);
  2698. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2699. //ishcel0.CellFormat.VerticalAlignment=
  2700. index++;
  2701. }
  2702. row++;
  2703. }
  2704. #endregion
  2705. Paragraph lastParagraph = new Paragraph(doc);
  2706. //第一个表格末尾加段落
  2707. table.ParentNode.InsertAfter(lastParagraph, table);
  2708. //复制第一个表格
  2709. Table cloneTable = (Table)table.Clone(true);
  2710. //在文档末尾段落后面加入复制的表格
  2711. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2712. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2713. {
  2714. int rownewsIndex = 13;
  2715. for (int i = 0; i < 2; i++)
  2716. {
  2717. var CopyRow = table.Rows[12].Clone(true);
  2718. table.Rows.RemoveAt(13);
  2719. table.Rows.Add(CopyRow);
  2720. rownewsIndex++;
  2721. }
  2722. }
  2723. else
  2724. {
  2725. table.Rows.RemoveAt(12);
  2726. }
  2727. cloneTable.Rows.RemoveAt(12);
  2728. }
  2729. if (_AirTicketReservations.Count != 0)
  2730. {
  2731. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2732. if (FlightsCode.Length != 0)
  2733. {
  2734. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2735. if (_AirCompany != null)
  2736. {
  2737. string str = "--";
  2738. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2739. if (!string.IsNullOrEmpty(translateResult))
  2740. {
  2741. str = translateResult;
  2742. str = _airTicketResRep.Processing(str);
  2743. }
  2744. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2745. }
  2746. else
  2747. {
  2748. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2749. }
  2750. }
  2751. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2752. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2753. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2754. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2755. string names = "";
  2756. foreach (string clientName in nameArray)
  2757. {
  2758. names += clientName + ",";
  2759. }
  2760. if (!string.IsNullOrWhiteSpace(names))
  2761. {
  2762. string str = "--";
  2763. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2764. if (!string.IsNullOrEmpty(translateResult))
  2765. {
  2766. str = translateResult;
  2767. str = _airTicketResRep.Processing(str);
  2768. }
  2769. table.Range.Bookmarks["ClientName"].Text = str;
  2770. }
  2771. else
  2772. {
  2773. table.Range.Bookmarks["ClientName"].Text = "--";
  2774. }
  2775. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2776. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2777. table.Range.Bookmarks["JointTicket"].Text = "--";
  2778. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2779. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2780. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2781. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2782. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2783. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2784. }
  2785. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2786. //保存合并后的文档
  2787. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2788. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2789. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2790. return Ok(JsonView(true, "成功!", rst));
  2791. }
  2792. }
  2793. }
  2794. catch (Exception ex)
  2795. {
  2796. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2797. throw;
  2798. }
  2799. }
  2800. #endregion
  2801. #region 团组增减款项 --> 其他款项
  2802. /// <summary>
  2803. /// 团组增减款项下拉框绑定
  2804. /// </summary>
  2805. /// <param name="dto"></param>
  2806. /// <returns></returns>
  2807. [HttpPost]
  2808. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2809. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2810. {
  2811. #region 参数验证
  2812. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2813. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2814. #endregion
  2815. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2816. }
  2817. /// <summary>
  2818. /// 根据团组Id查询团组增减款项
  2819. /// </summary>
  2820. /// <param name="dto"></param>
  2821. /// <returns></returns>
  2822. [HttpPost]
  2823. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2824. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2825. {
  2826. #region 参数验证
  2827. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2828. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2829. #endregion
  2830. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2831. }
  2832. /// <summary>
  2833. /// 团组增减款项操作(Status:1.新增,2.修改)
  2834. /// </summary>
  2835. /// <param name="dto"></param>
  2836. /// <returns></returns>
  2837. [HttpPost]
  2838. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2839. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2840. {
  2841. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2842. if (groupData.Code != 200)
  2843. {
  2844. return Ok(JsonView(false, groupData.Msg));
  2845. }
  2846. #region 应用推送
  2847. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2848. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2849. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2850. #endregion
  2851. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2852. }
  2853. /// <summary>
  2854. /// 团组增减款项操作 删除
  2855. /// </summary>
  2856. /// <param name="dto"></param>
  2857. /// <returns></returns>
  2858. [HttpPost]
  2859. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2860. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2861. {
  2862. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2863. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2864. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2865. if (res.Code == 0)
  2866. {
  2867. return Ok(JsonView(true, "删除成功!"));
  2868. }
  2869. return Ok(JsonView(false, "删除失败!"));
  2870. }
  2871. /// <summary>
  2872. /// 根据团组增减款项Id查询
  2873. /// </summary>
  2874. /// <param name="dto"></param>
  2875. /// <returns></returns>
  2876. [HttpPost]
  2877. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2878. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2879. {
  2880. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2881. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2882. }
  2883. /// <summary>
  2884. /// 查询供应商名称
  2885. /// </summary>
  2886. /// <param name="dto"></param>
  2887. /// <returns></returns>
  2888. [HttpPost]
  2889. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2890. {
  2891. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2892. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2893. ?? new List<Grp_DecreasePayments>();
  2894. dbResult = dbResult.Distinct(new
  2895. ProductComparer()).ToList();
  2896. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2897. {
  2898. x.Id,
  2899. x.SupplierAddress,
  2900. x.SupplierArea,
  2901. x.SupplierContact,
  2902. x.SupplierContactNumber,
  2903. x.SupplierEmail,
  2904. x.SupplierName,
  2905. x.SupplierSocialAccount,
  2906. x.SupplierTypeId,
  2907. }).ToList());
  2908. return Ok(jw);
  2909. }
  2910. #endregion
  2911. #region 文件上传、删除
  2912. /// <summary>
  2913. /// region 文件上传 可以带参数
  2914. /// </summary>
  2915. /// <param name="file"></param>
  2916. /// <returns></returns>
  2917. [HttpPost]
  2918. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2919. public async Task<IActionResult> UploadProject(IFormFile file)
  2920. {
  2921. try
  2922. {
  2923. var TypeName = Request.Headers["TypeName"].ToString();
  2924. if (file != null)
  2925. {
  2926. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2927. //文件名称
  2928. string projectFileName = file.FileName;
  2929. //上传的文件的路径
  2930. string filePath = "";
  2931. if (TypeName == "A")//A代表团组增减款项
  2932. {
  2933. if (!Directory.Exists(fileDir))
  2934. {
  2935. Directory.CreateDirectory(fileDir);
  2936. }
  2937. //上传的文件的路径
  2938. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2939. }
  2940. else if (TypeName == "B")//B代表商邀相关文件
  2941. {
  2942. if (!Directory.Exists(fileDir))
  2943. {
  2944. Directory.CreateDirectory(fileDir);
  2945. }
  2946. //上传的文件的路径
  2947. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2948. }
  2949. using (FileStream fs = System.IO.File.Create(filePath))
  2950. {
  2951. file.CopyTo(fs);
  2952. fs.Flush();
  2953. }
  2954. return Ok(JsonView(true, "上传成功!", projectFileName));
  2955. }
  2956. else
  2957. {
  2958. return Ok(JsonView(false, "上传失败!"));
  2959. }
  2960. }
  2961. catch (Exception ex)
  2962. {
  2963. return Ok(JsonView(false, "程序错误!"));
  2964. throw;
  2965. }
  2966. }
  2967. /// <summary>
  2968. /// 删除指定文件
  2969. /// </summary>
  2970. /// <param name="dto"></param>
  2971. /// <returns></returns>
  2972. [HttpPost]
  2973. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2974. public async Task<IActionResult> DelFile(DelFileDto dto)
  2975. {
  2976. try
  2977. {
  2978. var TypeName = Request.Headers["TypeName"].ToString();
  2979. string filePath = "";
  2980. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2981. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2982. int id = 0;
  2983. if (TypeName == "A")
  2984. {
  2985. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2986. // 删除该文件
  2987. System.IO.File.Delete(filePath);
  2988. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2989. }
  2990. else if (TypeName == "B")
  2991. {
  2992. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2993. // 删除该文件
  2994. System.IO.File.Delete(filePath);
  2995. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2996. }
  2997. if (id != 0)
  2998. {
  2999. return Ok(JsonView(true, "成功!"));
  3000. }
  3001. else
  3002. {
  3003. return Ok(JsonView(false, "失败!"));
  3004. }
  3005. }
  3006. catch (Exception ex)
  3007. {
  3008. return Ok(JsonView(false, "程序错误!"));
  3009. throw;
  3010. }
  3011. }
  3012. #endregion
  3013. #region 商邀费用录入
  3014. /// <summary>
  3015. /// 根据团组Id查询商邀费用列表
  3016. /// </summary>
  3017. /// <param name="dto"></param>
  3018. /// <returns></returns>
  3019. [HttpPost]
  3020. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3021. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  3022. {
  3023. try
  3024. {
  3025. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3026. if (groupData.Code != 0)
  3027. {
  3028. return Ok(JsonView(false, groupData.Msg));
  3029. }
  3030. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3031. }
  3032. catch (Exception ex)
  3033. {
  3034. return Ok(JsonView(false, "程序错误!"));
  3035. throw;
  3036. }
  3037. }
  3038. //
  3039. /// <summary>
  3040. /// 商邀费用 Info Page 基础数据源
  3041. /// </summary>
  3042. /// <param name="dto"></param>
  3043. /// <returns></returns>
  3044. [HttpPost]
  3045. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3046. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3047. {
  3048. try
  3049. {
  3050. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3051. if (groupData.Code != 0)
  3052. {
  3053. return Ok(JsonView(false, groupData.Msg));
  3054. }
  3055. return Ok(JsonView(true, "操作成功", groupData.Data));
  3056. }
  3057. catch (Exception ex)
  3058. {
  3059. return Ok(JsonView(false, ex.Message));
  3060. throw;
  3061. }
  3062. }
  3063. /// <summary>
  3064. /// 根据商邀费用ID查询C表和商邀费用数据
  3065. /// </summary>
  3066. /// <param name="dto"></param>
  3067. /// <returns></returns>
  3068. [HttpPost]
  3069. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3070. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3071. {
  3072. try
  3073. {
  3074. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3075. if (groupData.Code != 0)
  3076. {
  3077. return Ok(JsonView(false, groupData.Msg));
  3078. }
  3079. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3080. }
  3081. catch (Exception ex)
  3082. {
  3083. return Ok(JsonView(false, ex.Message));
  3084. throw;
  3085. }
  3086. }
  3087. /// <summary>
  3088. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3089. /// </summary>
  3090. /// <param name="dto"></param>
  3091. /// <returns></returns>
  3092. [HttpPost]
  3093. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3094. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3095. {
  3096. try
  3097. {
  3098. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3099. if (groupData.Code != 0)
  3100. {
  3101. return Ok(JsonView(false, groupData.Msg));
  3102. }
  3103. #region 应用推送
  3104. try
  3105. {
  3106. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3107. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3108. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3109. }
  3110. catch (Exception ex)
  3111. {
  3112. }
  3113. #endregion
  3114. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3115. }
  3116. catch (Exception ex)
  3117. {
  3118. return Ok(JsonView(false, "程序错误!"));
  3119. throw;
  3120. }
  3121. }
  3122. /// <summary>
  3123. /// 商邀删除
  3124. /// </summary>
  3125. /// <param name="dto"></param>
  3126. /// <returns></returns>
  3127. [HttpPost]
  3128. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3129. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3130. {
  3131. try
  3132. {
  3133. _sqlSugar.BeginTran();
  3134. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3135. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3136. {
  3137. IsDel = 1,
  3138. DeleteUserId = dto.DeleteUserId,
  3139. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3140. })
  3141. .Where(it => it.Id == dto.Id)
  3142. .ExecuteCommand();
  3143. if (res1 > 0)
  3144. {
  3145. int _diId = 0;
  3146. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3147. if (_ioaInfo != null)
  3148. {
  3149. _diId = _ioaInfo.DiId;
  3150. }
  3151. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3152. .SetColumns(a => new Grp_CreditCardPayment()
  3153. {
  3154. IsDel = 1,
  3155. DeleteUserId = dto.DeleteUserId,
  3156. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3157. })
  3158. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3159. .ExecuteCommand();
  3160. if (res2 > 0)
  3161. {
  3162. _sqlSugar.CommitTran();
  3163. return Ok(JsonView(true, "删除成功!"));
  3164. }
  3165. }
  3166. _sqlSugar.RollbackTran();
  3167. return Ok(JsonView(false, "删除失败"));
  3168. }
  3169. catch (Exception ex)
  3170. {
  3171. _sqlSugar.RollbackTran();
  3172. return Ok(JsonView(false, ex.Message));
  3173. }
  3174. }
  3175. /// <summary>
  3176. /// 团组模块文件上传
  3177. /// </summary>
  3178. /// <param name="dto"></param>
  3179. /// <returns></returns>
  3180. [HttpPost]
  3181. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3182. {
  3183. var jw = JsonView(false);
  3184. long M = 1024 * 1024;
  3185. if (dto.Files == null || dto.Files.Count == 0)
  3186. {
  3187. jw.Msg = "无文件信息!";
  3188. return Ok(jw);
  3189. }
  3190. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3191. {
  3192. jw.Msg = "文件大小超过20M!";
  3193. return Ok(jw);
  3194. }
  3195. //var nameSp = dto.File.FileName.Split(".");
  3196. //if (nameSp.Length < 2)
  3197. //{
  3198. // jw.Msg = "拓展名称有误!";
  3199. // return Ok(jw);
  3200. //}
  3201. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3202. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3203. //{
  3204. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3205. // return Ok(jw);
  3206. //}
  3207. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3208. if (Ctable == null)
  3209. {
  3210. jw.Msg = "Ctable指向有误!";
  3211. return Ok(jw);
  3212. }
  3213. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3214. if (groupInfo == null)
  3215. {
  3216. jw.Msg = "团组信息不存在!";
  3217. return Ok(jw);
  3218. }
  3219. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3220. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3221. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3222. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3223. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3224. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3225. try
  3226. {
  3227. if (!Directory.Exists(fileBase))
  3228. {
  3229. Directory.CreateDirectory(fileBase);
  3230. }
  3231. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3232. foreach (var fileStream in dto.Files)
  3233. {
  3234. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3235. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3236. {
  3237. Cid = dto.Cid,
  3238. CreateTime = DateTime.Now,
  3239. CreateUserId = dto.Userid,
  3240. Ctable = dto.Ctable,
  3241. Diid = dto.Diid,
  3242. IsDel = 0,
  3243. FilePath = saveFilePath,
  3244. FileName = fileStream.FileName
  3245. };
  3246. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3247. {
  3248. fileStream.CopyTo(fs);
  3249. fs.Flush();
  3250. }
  3251. saveArr.Add(file);
  3252. }
  3253. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3254. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3255. jw = JsonView(true, "保存成功!", new
  3256. {
  3257. count = addResult,
  3258. filesName = saveArr.Select(x => x.FileName)
  3259. }) ;
  3260. }
  3261. catch (Exception ex)
  3262. {
  3263. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3264. {
  3265. count = 0,
  3266. filesName = new string[0],
  3267. }) ;
  3268. }
  3269. return Ok(jw);
  3270. }
  3271. /// <summary>
  3272. /// 查询各模块已保存文件
  3273. /// </summary>
  3274. /// <param name="dto"></param>
  3275. /// <returns></returns>
  3276. [HttpPost]
  3277. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3278. {
  3279. var expression = Expressionable.Create<Grp_GroupModelFile>()
  3280. .AndIF(dto.UserId != -1 , x => x.CreateUserId == dto.UserId);
  3281. var visaIds = _sqlSugar.Queryable<Sys_Users>().Where(x => x.JobPostId == 26).Select(x=>x.Id).ToList();
  3282. if (visaIds.Contains(dto.UserId) && dto.Ctable == 80)
  3283. {
  3284. expression = Expressionable.Create<Grp_GroupModelFile>()
  3285. .And(x=>visaIds.Contains(x.CreateUserId));
  3286. }
  3287. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3288. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3289. .Where(expression.ToExpression())
  3290. .ToList();
  3291. //.ToPageList(pagenumber, pageSize, ref totalCount, ref totalPage)
  3292. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3293. {
  3294. x.FileName,
  3295. x.Id,
  3296. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"), AppSettingsHelper.Get("GrpFileFtpPath")),
  3297. CreateTime = x.CreateTime.ToString("yyyy-MM-dd HH-mm"),
  3298. })));
  3299. }
  3300. /// <summary>
  3301. /// 下载该团组下的所有文件
  3302. /// </summary>
  3303. /// <param name="dto"></param>
  3304. /// <returns></returns>
  3305. [HttpPost]
  3306. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3307. {
  3308. var jw = JsonView(false);
  3309. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3310. if (groupInfo == null)
  3311. {
  3312. jw.Msg = "团组信息不存在!";
  3313. return Ok(jw);
  3314. }
  3315. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3316. var isModule = Convert.ToBoolean(dto.isModule);
  3317. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3318. IOOperatorHelper io = new IOOperatorHelper();
  3319. if (isModule)
  3320. {
  3321. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3322. foreach (var moduleArr in moduleGroup)
  3323. {
  3324. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3325. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3326. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3327. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3328. foreach (var item in moduleArr)
  3329. {
  3330. if (System.IO.File.Exists(item.FilePath))
  3331. {
  3332. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3333. {
  3334. byte[] bytes = new byte[fileStream.Length];
  3335. fileStream.Read(bytes, 0, bytes.Length);
  3336. fileStream.Close();
  3337. Stream stream = new MemoryStream(bytes);
  3338. chiZips.Add(item.FileName, stream);
  3339. }
  3340. }
  3341. }
  3342. if (chiZips.Count > 0)
  3343. {
  3344. var byts = io.ConvertZipStream(chiZips);
  3345. Stream stream = new MemoryStream(byts);
  3346. Zips.Add(key.Name+"_.zip", stream);
  3347. }
  3348. }
  3349. }
  3350. else
  3351. {
  3352. foreach (var item in dbQuery)
  3353. {
  3354. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3355. {
  3356. byte[] bytes = new byte[fileStream.Length];
  3357. fileStream.Read(bytes, 0, bytes.Length);
  3358. fileStream.Close();
  3359. Stream stream = new MemoryStream(bytes);
  3360. while (Zips.Keys.Contains(item.FileName))
  3361. {
  3362. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3363. }
  3364. Zips.Add(item.FileName, stream);
  3365. }
  3366. }
  3367. }
  3368. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3369. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3370. if (Zips.Count > 0)
  3371. {
  3372. var byts = io.ConvertZipStream(Zips);
  3373. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3374. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3375. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3376. }
  3377. else
  3378. {
  3379. jw.Msg = "暂无生成文件!";
  3380. }
  3381. return Ok(jw);
  3382. }
  3383. /// <summary>
  3384. /// 下载该团组下此模块的所有文件
  3385. /// </summary>
  3386. /// <param name="dto"></param>
  3387. /// <returns></returns>
  3388. [HttpPost]
  3389. public IActionResult ExportGroupByModule(ExportGroupByModuleDto dto)
  3390. {
  3391. var jw = JsonView(false);
  3392. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3393. if (groupInfo == null)
  3394. {
  3395. jw.Msg = "团组信息不存在!";
  3396. return Ok(jw);
  3397. }
  3398. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid && x.Ctable == dto.Ctable).ToList();
  3399. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == dto.Ctable
  3400. && x.IsDel == 0);
  3401. if (key == null)
  3402. {
  3403. jw.Msg = "Ctable指向错误!";
  3404. return Ok(jw);
  3405. }
  3406. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3407. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3408. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3409. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3410. IOOperatorHelper io = new IOOperatorHelper();
  3411. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3412. foreach (var item in dbQuery)
  3413. {
  3414. if (System.IO.File.Exists(item.FilePath))
  3415. {
  3416. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3417. {
  3418. byte[] bytes = new byte[fileStream.Length];
  3419. fileStream.Read(bytes, 0, bytes.Length);
  3420. fileStream.Close();
  3421. Stream stream = new MemoryStream(bytes);
  3422. while (Zips.Keys.Contains(item.FileName))
  3423. {
  3424. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3425. }
  3426. Zips.Add(item.FileName, stream);
  3427. }
  3428. }
  3429. }
  3430. if (Zips.Count > 0)
  3431. {
  3432. var byts = io.ConvertZipStream(Zips);
  3433. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3434. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{key.Name}_.Zip");
  3435. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{key.Name}_.zip" });
  3436. }
  3437. else
  3438. {
  3439. jw.Msg = "暂无生成文件!";
  3440. }
  3441. return Ok(jw);
  3442. }
  3443. /// <summary>
  3444. /// 删除该团组下的指定文件
  3445. /// </summary>
  3446. /// <param name="dto"></param>
  3447. /// <returns></returns>
  3448. [HttpPost]
  3449. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3450. {
  3451. var jw = JsonView(false);
  3452. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3453. if (sing == null)
  3454. {
  3455. jw.Msg = "暂无";
  3456. return Ok(jw);
  3457. }
  3458. if (System.IO.File.Exists(sing.FilePath))
  3459. {
  3460. try
  3461. {
  3462. System.IO.File.Delete(sing.FilePath);
  3463. }
  3464. catch (Exception ex)
  3465. {
  3466. jw.Msg = "删除失败!" + ex.Message;
  3467. return Ok(jw);
  3468. }
  3469. }
  3470. sing.IsDel = 1;
  3471. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3472. sing.DeleteUserId = dto.UserId;
  3473. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3474. jw = JsonView(true, "删除成功!");
  3475. return Ok(jw);
  3476. }
  3477. #endregion
  3478. #region 团组英文资料
  3479. /// <summary>
  3480. /// 查询团组英文所有资料
  3481. /// </summary>
  3482. /// <param name="dto"></param>
  3483. /// <returns></returns>
  3484. [HttpPost]
  3485. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3486. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3487. {
  3488. try
  3489. {
  3490. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3491. if (groupData.Code != 0)
  3492. {
  3493. return Ok(JsonView(false, groupData.Msg));
  3494. }
  3495. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3496. }
  3497. catch (Exception ex)
  3498. {
  3499. return Ok(JsonView(false, "程序错误!"));
  3500. throw;
  3501. }
  3502. }
  3503. /// <summary>
  3504. /// 团组英文资料操作(Status:1.新增,2.修改)
  3505. /// </summary>
  3506. /// <param name="dto"></param>
  3507. /// <returns></returns>
  3508. [HttpPost]
  3509. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3510. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3511. {
  3512. try
  3513. {
  3514. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3515. if (groupData.Code != 0)
  3516. {
  3517. return Ok(JsonView(false, groupData.Msg));
  3518. }
  3519. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3520. }
  3521. catch (Exception ex)
  3522. {
  3523. return Ok(JsonView(false, "程序错误!"));
  3524. throw;
  3525. }
  3526. }
  3527. /// <summary>
  3528. /// 团组英文资料Id查询数据
  3529. /// </summary>
  3530. /// <param name="dto"></param>
  3531. /// <returns></returns>
  3532. [HttpPost]
  3533. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3534. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3535. {
  3536. try
  3537. {
  3538. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3539. if (_DelegationEnData != null)
  3540. {
  3541. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3542. }
  3543. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3544. }
  3545. catch (Exception ex)
  3546. {
  3547. return Ok(JsonView(false, "程序错误!"));
  3548. throw;
  3549. }
  3550. }
  3551. /// <summary>
  3552. /// 团组英文资料删除
  3553. /// </summary>
  3554. /// <param name="dto"></param>
  3555. /// <returns></returns>
  3556. [HttpPost]
  3557. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3558. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3559. {
  3560. try
  3561. {
  3562. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3563. if (!res)
  3564. {
  3565. return Ok(JsonView(false, "删除失败"));
  3566. }
  3567. return Ok(JsonView(true, "删除成功!"));
  3568. }
  3569. catch (Exception ex)
  3570. {
  3571. return Ok(JsonView(false, "程序错误!"));
  3572. throw;
  3573. }
  3574. }
  3575. #endregion
  3576. #region 导出邀请函
  3577. /// <summary>
  3578. /// 导出邀请函页面初始化
  3579. /// </summary>
  3580. /// <param name="dto"></param>
  3581. /// <returns></returns>
  3582. [HttpPost]
  3583. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3584. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3585. {
  3586. try
  3587. {
  3588. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3589. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3590. if (dto.DiId == 0)
  3591. {
  3592. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3593. }
  3594. else
  3595. {
  3596. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3597. }
  3598. return Ok(JsonView(true, "查询成功!", new
  3599. {
  3600. deleClient = crm_Deles,
  3601. delegations = grp_Delegations
  3602. }));
  3603. }
  3604. catch (Exception ex)
  3605. {
  3606. return Ok(JsonView(false, "程序错误!"));
  3607. throw;
  3608. }
  3609. }
  3610. /// <summary>
  3611. /// 导出邀请函
  3612. /// </summary>
  3613. /// <param name="dto"></param>
  3614. /// <returns></returns>
  3615. [HttpPost]
  3616. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3617. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3618. {
  3619. #region 参数验证
  3620. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3621. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3622. #endregion
  3623. try
  3624. {
  3625. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3626. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3627. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3628. From Grp_TourClientList tcl
  3629. Left Join
  3630. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3631. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3632. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3633. From Crm_DeleClient dc
  3634. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3635. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3636. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3637. Where dc.IsDel = 0) temp
  3638. On temp.DcId =tcl.ClientId
  3639. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3640. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3641. List<string> texts = new List<string>();
  3642. if (datas.Count != 0)
  3643. {
  3644. foreach (TourClientListDetailsView item in datas)
  3645. {
  3646. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3647. {
  3648. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3649. }
  3650. else
  3651. {
  3652. string name = item.LastName + item.FirstName;
  3653. texts.Add(name);
  3654. }
  3655. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3656. {
  3657. if (!transDic.ContainsKey(item.Job))
  3658. {
  3659. texts.Add(item.Job);
  3660. }
  3661. }
  3662. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3663. {
  3664. texts.Add(item.CompanyFullName);
  3665. }
  3666. }
  3667. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3668. if (transData.Count > 0)
  3669. {
  3670. foreach (TranslateResult item in transData)
  3671. {
  3672. if (!transDic.ContainsKey(item.Query))
  3673. {
  3674. transDic.Add(item.Query, item.Translation);
  3675. }
  3676. }
  3677. }
  3678. List<GuestList> list = new List<GuestList>();
  3679. foreach (TourClientListDetailsView dele in datas)
  3680. {
  3681. GuestList guestList = new GuestList();
  3682. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3683. {
  3684. guestList.Name = dele.Pinyin;
  3685. }
  3686. else
  3687. {
  3688. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3689. guestList.Name = Name;
  3690. }
  3691. if (dele.Sex == 0)
  3692. {
  3693. guestList.Sex = "Male";
  3694. }
  3695. else if (dele.Sex == 1)
  3696. {
  3697. guestList.Sex = "Female";
  3698. }
  3699. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3700. if (!string.IsNullOrEmpty(dele.Job))
  3701. {
  3702. guestList.Job = dele.Job;
  3703. }
  3704. list.Add(guestList);
  3705. }
  3706. //载入模板
  3707. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3708. DocumentBuilder builder = new DocumentBuilder(doc);
  3709. //获取word里所有表格
  3710. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3711. //获取所填表格的序数
  3712. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3713. var rowStart = tableOne.Rows[0]; //获取第1行
  3714. //循环赋值
  3715. for (int i = 0; i < list.Count; i++)
  3716. {
  3717. builder.MoveToCell(0, i + 1, 0, 0);
  3718. builder.Write(list[i].Name.ToString());
  3719. builder.MoveToCell(0, i + 1, 1, 0);
  3720. builder.Write(list[i].Sex.ToString());
  3721. builder.MoveToCell(0, i + 1, 2, 0);
  3722. builder.Write(list[i].DOB.ToString());
  3723. builder.MoveToCell(0, i + 1, 3, 0);
  3724. builder.Write(list[i].Job.ToString());
  3725. }
  3726. //删除多余行
  3727. while (tableOne.Rows.Count > list.Count + 1)
  3728. {
  3729. tableOne.Rows.RemoveAt(list.Count + 1);
  3730. }
  3731. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3732. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3733. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3734. doc.Save(filePath);
  3735. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3736. return Ok(JsonView(true, "操作成功!", Url));
  3737. }
  3738. else
  3739. {
  3740. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3741. }
  3742. }
  3743. catch (Exception ex)
  3744. {
  3745. return Ok(JsonView(false, ex.Message));
  3746. throw;
  3747. }
  3748. }
  3749. #endregion
  3750. #region 团组经理模块 出入境费用
  3751. ///// <summary>
  3752. ///// 团组模块 - 出入境费用
  3753. ///// </summary>
  3754. ///// <returns></returns>
  3755. //[HttpPost]
  3756. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3757. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3758. //{
  3759. // try
  3760. // {
  3761. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3762. // if (data.Code != 0)
  3763. // {
  3764. // return Ok(JsonView(false, data.Msg));
  3765. // }
  3766. // return Ok(JsonView(true, "查询成功!"));
  3767. // }
  3768. // catch (Exception ex)
  3769. // {
  3770. // return Ok(JsonView(false, ex.Message));
  3771. // throw;
  3772. // }
  3773. //}
  3774. /// <summary>
  3775. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3776. /// </summary>
  3777. /// <returns></returns>
  3778. [HttpPost]
  3779. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3780. public async Task<IActionResult> SetDayAndCostAreaChange()
  3781. {
  3782. try
  3783. {
  3784. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3785. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3786. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3787. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3788. foreach (var item in unite) //处理交集数据
  3789. {
  3790. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3791. }
  3792. foreach (var item in merge) //处理差集数据
  3793. {
  3794. int nationalTravelFeeId = 0;
  3795. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3796. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3797. else
  3798. {
  3799. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3800. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3801. }
  3802. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3803. }
  3804. //只更新dayAndCost 的 nationalTravelFeeId;
  3805. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3806. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3807. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3808. }
  3809. catch (Exception ex)
  3810. {
  3811. return Ok(JsonView(false, ex.Message));
  3812. throw;
  3813. }
  3814. }
  3815. /// <summary>
  3816. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3817. /// </summary>
  3818. /// <returns></returns>
  3819. [HttpPost]
  3820. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3821. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3822. {
  3823. try
  3824. {
  3825. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3826. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3827. //SetDataInfoView
  3828. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3829. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3830. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3831. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3832. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3833. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3834. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3835. //默认币种显示
  3836. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3837. {
  3838. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3839. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3840. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3841. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3842. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3843. };
  3844. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3845. if (_currencyRate.Count > 0)
  3846. {
  3847. foreach (var item in _currencyInfos)
  3848. {
  3849. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3850. if (rateInfo != null)
  3851. {
  3852. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3853. rate1 *= 1.035M;
  3854. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3855. }
  3856. }
  3857. }
  3858. return Ok(JsonView(true, "查询成功!", new
  3859. {
  3860. GroupNameData = groupNameData.Data,
  3861. CurrencyData = _CurrencyData,
  3862. WordTypeData = _WordTypeData,
  3863. ExcelTypeData = _ExcelTypeData,
  3864. CurrencyInit = _currencyInfos
  3865. }));
  3866. }
  3867. catch (Exception ex)
  3868. {
  3869. return Ok(JsonView(false, ex.Message));
  3870. throw;
  3871. }
  3872. }
  3873. /// <summary>
  3874. /// 团组模块 - 出入境费用
  3875. /// 实时汇率 tips
  3876. /// 签证费用 tips
  3877. /// </summary>
  3878. /// <returns></returns>
  3879. [HttpPost]
  3880. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3881. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3882. {
  3883. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3884. //默认币种显示
  3885. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3886. {
  3887. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3888. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3889. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3890. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3891. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3892. };
  3893. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3894. List<dynamic> reteInfos = new List<dynamic>();
  3895. if (_currencyRate.Count > 0)
  3896. {
  3897. foreach (var item in _currencyInfos)
  3898. {
  3899. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3900. if (rateInfo != null)
  3901. {
  3902. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3903. decimal rate1 = item.Rate;
  3904. rate1 *= 1.03M;
  3905. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3906. reteInfos.Add(new
  3907. {
  3908. currCode = item.CurrencyCode,
  3909. currName = item.CurrencyName,
  3910. rate = rate2,
  3911. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3912. });
  3913. }
  3914. }
  3915. }
  3916. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3917. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3918. return Ok(JsonView(true, "查询成功!", new
  3919. {
  3920. //GroupNameData = groupNameData.Data,
  3921. visaData = visaData.Data,
  3922. airData = airData.Data,
  3923. reteInfos = reteInfos
  3924. }));
  3925. }
  3926. /// <summary>
  3927. /// 团组模块 - 出入境费用 - Info
  3928. /// </summary>
  3929. /// <returns></returns>
  3930. [HttpPost]
  3931. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3932. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3933. {
  3934. try
  3935. {
  3936. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3937. if (data.Code != 0)
  3938. {
  3939. return Ok(JsonView(false, data.Msg));
  3940. }
  3941. return Ok(JsonView(true, "查询成功!", data.Data));
  3942. }
  3943. catch (Exception ex)
  3944. {
  3945. return Ok(JsonView(false, ex.Message));
  3946. }
  3947. }
  3948. /// <summary>
  3949. /// 团组模块 - 出入境费用 - Add And Update
  3950. /// </summary>
  3951. /// <returns></returns>
  3952. [HttpPost]
  3953. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3954. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3955. {
  3956. try
  3957. {
  3958. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3959. if (data.Code != 0)
  3960. {
  3961. return Ok(JsonView(false, data.Msg));
  3962. }
  3963. //生成默认文件pdf并且通知人员
  3964. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3965. {
  3966. DiId = dto.DiId,
  3967. ExportType = 1,
  3968. SubTypeId = 1005
  3969. }, "pdf");
  3970. //发送通知
  3971. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3972. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3973. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3974. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3975. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3976. return Ok(JsonView(true, data.Msg, data.Data));
  3977. }
  3978. catch (Exception ex)
  3979. {
  3980. return Ok(JsonView(false, ex.Message));
  3981. }
  3982. }
  3983. /// <summary>
  3984. /// 团组模块 - 出入境费用 - Confirm 费用
  3985. /// </summary>
  3986. /// <returns></returns>
  3987. [HttpPost]
  3988. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3989. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3990. {
  3991. //TODO:测试完毕需把对应的用户ID更改
  3992. //1、数据表添加字段
  3993. //2、更改字段接口()
  3994. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3995. //3、确认成功 给财务发送消息
  3996. if (_view.Code == 200)
  3997. {
  3998. if (dto.Type == 1)
  3999. {
  4000. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  4001. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  4002. }
  4003. }
  4004. return Ok(_view);
  4005. }
  4006. /// <summary>
  4007. /// 团组模块 - 出入境费用 - File downlaod
  4008. /// </summary>
  4009. /// <param name="dto"></param>
  4010. /// <returns></returns>
  4011. [HttpPost]
  4012. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4013. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  4014. {
  4015. try
  4016. {
  4017. if (dto.DiId < 1)
  4018. {
  4019. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4020. }
  4021. if (dto.ExportType < 1)
  4022. {
  4023. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  4024. }
  4025. if (dto.SubTypeId < 1)
  4026. {
  4027. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  4028. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  4029. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  4030. 3 团组成员名单 1 团组成员名单"));
  4031. }
  4032. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4033. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  4034. if (_EnterExitCosts == null)
  4035. {
  4036. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  4037. }
  4038. //数据源
  4039. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  4040. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  4041. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  4042. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  4043. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  4044. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  4045. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  4046. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  4047. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  4048. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  4049. .Select((tcl, dc, cc) => new
  4050. {
  4051. Name = dc.LastName + dc.FirstName,
  4052. Sex = dc.Sex,
  4053. Birthday = dc.BirthDay,
  4054. Company = cc.CompanyFullName,
  4055. Job = dc.Job
  4056. })
  4057. .ToList();
  4058. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4059. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  4060. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  4061. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  4062. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  4063. if (dto.ExportType == 1) //明细表
  4064. {
  4065. if (dto.SubTypeId == 1005) //1005(默认明细表)
  4066. {
  4067. //获取模板
  4068. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  4069. //载入模板
  4070. Document doc = new Document(tempPath);
  4071. DocumentBuilder builder = new DocumentBuilder(doc);
  4072. //利用键值对存放数据
  4073. Dictionary<string, string> dic = new Dictionary<string, string>();
  4074. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  4075. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  4076. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  4077. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  4078. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  4079. string row1_1 = "";
  4080. if (_EnterExitCosts.Visa > 0)
  4081. {
  4082. //insidePayTotal += _EnterExitCosts.Visa;
  4083. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  4084. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  4085. {
  4086. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  4087. }
  4088. }
  4089. string row1_2 = "";
  4090. if (_EnterExitCosts.YiMiao > 0)
  4091. {
  4092. //insidePayTotal += _EnterExitCosts.YiMiao;
  4093. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  4094. }
  4095. if (_EnterExitCosts.HeSuan > 0)
  4096. {
  4097. //insidePayTotal += _EnterExitCosts.HeSuan;
  4098. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4099. }
  4100. if (_EnterExitCosts.Service > 0)
  4101. {
  4102. //insidePayTotal += _EnterExitCosts.Service;
  4103. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4104. }
  4105. string row1_3 = "";
  4106. if (_EnterExitCosts.Safe > 0)
  4107. {
  4108. //insidePayTotal += _EnterExitCosts.Safe;
  4109. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4110. }
  4111. if (_EnterExitCosts.Ticket > 0)
  4112. {
  4113. //insidePayTotal += _EnterExitCosts.Ticket;
  4114. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4115. }
  4116. string row1 = "";
  4117. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4118. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4119. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4120. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4121. dic.Add("Row1Str", row1);
  4122. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  4123. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  4124. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4125. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  4126. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4127. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4128. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4129. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  4130. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  4131. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  4132. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  4133. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  4134. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4135. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4136. #region 填充word模板书签内容
  4137. foreach (var key in dic.Keys)
  4138. {
  4139. builder.MoveToBookmark(key);
  4140. builder.Write(dic[key]);
  4141. }
  4142. #endregion
  4143. #region 填充word表格内容
  4144. ////获读取指定表格方法二
  4145. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4146. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4147. for (int i = 0; i < dac1.Count; i++)
  4148. {
  4149. Grp_DayAndCost dac = dac1[i];
  4150. if (dac == null) continue;
  4151. builder.MoveToCell(0, i, 0, 0);
  4152. builder.Write("第" + dac.Days.ToString() + "晚:");
  4153. builder.MoveToCell(0, i, 1, 0);
  4154. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4155. //builder.Write(dac.Place == null ? "" : dac.Place);
  4156. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4157. builder.MoveToCell(0, i, 2, 0);
  4158. builder.Write("费用标准:");
  4159. string curr = "";
  4160. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4161. if (currData != null)
  4162. {
  4163. curr = currData.Name;
  4164. }
  4165. builder.MoveToCell(0, i, 3, 0);
  4166. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4167. builder.MoveToCell(0, i, 4, 0);
  4168. builder.Write("费用小计:");
  4169. builder.MoveToCell(0, i, 5, 0);
  4170. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4171. }
  4172. //删除多余行
  4173. while (table1.Rows.Count > dac1.Count)
  4174. {
  4175. table1.Rows.RemoveAt(dac1.Count);
  4176. }
  4177. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4178. for (int i = 0; i < dac2.Count; i++)
  4179. {
  4180. Grp_DayAndCost dac = dac2[i];
  4181. if (dac == null) continue;
  4182. builder.MoveToCell(1, i, 0, 0);
  4183. builder.Write("第" + dac.Days.ToString() + "天:");
  4184. builder.MoveToCell(1, i, 1, 0);
  4185. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4186. builder.MoveToCell(1, i, 2, 0);
  4187. builder.Write("费用标准:");
  4188. string curr = "";
  4189. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4190. if (currData != null)
  4191. {
  4192. curr = currData.Name;
  4193. }
  4194. builder.MoveToCell(1, i, 3, 0);
  4195. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4196. builder.MoveToCell(1, i, 4, 0);
  4197. builder.Write("费用小计:");
  4198. builder.MoveToCell(1, i, 5, 0);
  4199. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4200. }
  4201. //删除多余行
  4202. while (table2.Rows.Count > dac2.Count)
  4203. {
  4204. table2.Rows.RemoveAt(dac2.Count);
  4205. }
  4206. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4207. for (int i = 0; i < dac3.Count; i++)
  4208. {
  4209. Grp_DayAndCost dac = dac3[i];
  4210. if (dac == null) continue;
  4211. builder.MoveToCell(2, i, 0, 0);
  4212. builder.Write("第" + dac.Days.ToString() + "天:");
  4213. builder.MoveToCell(2, i, 1, 0);
  4214. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4215. builder.MoveToCell(2, i, 2, 0);
  4216. builder.Write("费用标准:");
  4217. string curr = "";
  4218. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4219. if (currData != null)
  4220. {
  4221. curr = currData.Name;
  4222. }
  4223. builder.MoveToCell(2, i, 3, 0);
  4224. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4225. builder.MoveToCell(2, i, 4, 0);
  4226. builder.Write("费用小计:");
  4227. builder.MoveToCell(2, i, 5, 0);
  4228. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4229. }
  4230. //删除多余行
  4231. while (table3.Rows.Count > dac3.Count)
  4232. {
  4233. table3.Rows.RemoveAt(dac3.Count);
  4234. }
  4235. #endregion
  4236. //文件名
  4237. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4238. AsposeHelper.removewatermark_v2180();
  4239. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4240. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4241. return Ok(JsonView(true, "成功", new { Url = url }));
  4242. }
  4243. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4244. {
  4245. //获取模板
  4246. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4247. //载入模板
  4248. Document doc = new Document(tempPath);
  4249. DocumentBuilder builder = new DocumentBuilder(doc);
  4250. Dictionary<string, string> dic = new Dictionary<string, string>();
  4251. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4252. {
  4253. List<string> list = new List<string>();
  4254. try
  4255. {
  4256. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4257. foreach (var item in spilitArr)
  4258. {
  4259. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4260. var depCode = spDotandEmpty[2].Substring(0, 3);
  4261. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4262. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4263. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4264. list.Add(depName);
  4265. list.Add(arrName);
  4266. }
  4267. list = list.Distinct().ToList();
  4268. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4269. }
  4270. catch (Exception)
  4271. {
  4272. dic.Add("ReturnCode", "行程录入不正确!");
  4273. }
  4274. }
  4275. else
  4276. {
  4277. dic.Add("ReturnCode", "未录入行程!");
  4278. }
  4279. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4280. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4281. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4282. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4283. {
  4284. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4285. dic.Add("Day", sp.Days.ToString());
  4286. }
  4287. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4288. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4289. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4290. //dic.Add("Names", Names);
  4291. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4292. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4293. decimal dac1totalPrice = 0.00M;
  4294. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4295. foreach (var dac in dac1)
  4296. {
  4297. if (dac.SubTotal == 0.00M)
  4298. {
  4299. continue;
  4300. }
  4301. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4302. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4303. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4304. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4305. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4306. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4307. builder.Write(currency);//币种
  4308. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4309. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4310. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4311. builder.Write("");//人数
  4312. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4313. builder.Write("");//天数
  4314. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4315. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4316. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4317. decimal rate = 0.00M;
  4318. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4319. builder.Write(rate.ToString("#0.0000"));//汇率
  4320. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4321. decimal rbmPrice = dac.SubTotal;
  4322. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4323. accommodationStartIndex++;
  4324. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4325. }
  4326. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4327. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4328. {
  4329. table1.Rows.RemoveAt(i - 1);
  4330. foodandotherStartIndex--;
  4331. }
  4332. if (dac2.Count == dac3.Count)//国家 币种 金额
  4333. {
  4334. for (int i = 0; i < dac2.Count; i++)
  4335. {
  4336. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4337. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4338. }
  4339. }
  4340. decimal dac2totalPrice = 0.00M;
  4341. foreach (var dac in dac2)
  4342. {
  4343. if (dac.SubTotal == 0)
  4344. {
  4345. continue;
  4346. }
  4347. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4348. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4349. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4350. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4351. builder.Write(currency);//币种
  4352. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4353. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4354. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4355. builder.Write("");//人数
  4356. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4357. builder.Write("");//天数
  4358. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4359. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4360. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4361. decimal rate = 0.00M;
  4362. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4363. builder.Write(rate.ToString("#0.0000"));//汇率
  4364. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4365. decimal rbmPrice = dac.SubTotal;
  4366. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4367. foodandotherStartIndex++;
  4368. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4369. }
  4370. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4371. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4372. {
  4373. table1.Rows.RemoveAt(i - 1);
  4374. }
  4375. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4376. string otherFeeStr = "";
  4377. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4378. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4379. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4380. if (otherFeeStr.Length > 0)
  4381. {
  4382. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4383. otherFeeStr = $"({otherFeeStr})";
  4384. dic.Add("OtherFeeStr", otherFeeStr);
  4385. }
  4386. //总计
  4387. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4388. //国际旅费
  4389. string outsideJJ = "";
  4390. string allPriceJJ = "";
  4391. if (_EnterExitCosts.SumJJC == 1)
  4392. {
  4393. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4394. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4395. }
  4396. string outsideGW = "";
  4397. string allPriceGW = "";
  4398. if (_EnterExitCosts.SumGWC == 1)
  4399. {
  4400. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4401. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4402. }
  4403. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4404. {
  4405. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4406. dic.Add("InTravelPrice", InTravelPriceStr);
  4407. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4408. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4409. }
  4410. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4411. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4412. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4413. foreach (var key in dic.Keys)
  4414. {
  4415. builder.MoveToBookmark(key);
  4416. builder.Write(dic[key]);
  4417. }
  4418. //模板文件名
  4419. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4420. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4421. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4422. return Ok(JsonView(true, "成功", new { Url = url }));
  4423. }
  4424. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4425. {
  4426. //获取模板
  4427. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4428. //载入模板
  4429. WorkbookDesigner designer = new WorkbookDesigner();
  4430. designer.Workbook = new Workbook(tempPath);
  4431. Dictionary<string, string> dic = new Dictionary<string, string>();
  4432. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4433. {
  4434. List<string> list = new List<string>();
  4435. try
  4436. {
  4437. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4438. foreach (var item in spilitArr)
  4439. {
  4440. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4441. var depCode = spDotandEmpty[2].Substring(0, 3);
  4442. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4443. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4444. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4445. list.Add(depName);
  4446. list.Add(arrName);
  4447. }
  4448. list = list.Distinct().ToList();
  4449. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4450. }
  4451. catch (Exception)
  4452. {
  4453. dic.Add("ReturnCode", "行程录入不正确!");
  4454. }
  4455. }
  4456. else
  4457. {
  4458. dic.Add("ReturnCode", "未录入行程!");
  4459. }
  4460. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4461. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4462. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4463. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4464. {
  4465. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4466. dic.Add("Day", sp.Days.ToString());
  4467. }
  4468. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4469. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4470. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4471. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4472. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4473. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4474. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4475. designer.SetDataSource("Name", Names);
  4476. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4477. designer.SetDataSource("Day", dic["Day"] + "天");
  4478. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4479. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4480. int startIndex = 10;
  4481. const int startIndexcopy = 10;
  4482. if (dac2.Count == dac3.Count)//国家 币种 金额
  4483. {
  4484. for (int i = 0; i < dac2.Count; i++)
  4485. {
  4486. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4487. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4488. }
  4489. }
  4490. DataTable dtdac1 = new DataTable();
  4491. List<string> place = new List<string>();
  4492. dtdac1.Columns.AddRange(new DataColumn[] {
  4493. new DataColumn(){ ColumnName = "city"},
  4494. new DataColumn(){ ColumnName = "curr"},
  4495. new DataColumn(){ ColumnName = "criterion"},
  4496. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4497. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4498. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4499. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4500. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4501. });
  4502. DataTable dtdac2 = new DataTable();
  4503. dtdac2.Columns.AddRange(new DataColumn[] {
  4504. new DataColumn(){ ColumnName = "city"},
  4505. new DataColumn(){ ColumnName = "curr"},
  4506. new DataColumn(){ ColumnName = "criterion"},
  4507. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4508. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4509. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4510. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4511. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4512. });
  4513. dtdac1.TableName = "tb1";
  4514. dtdac2.TableName = "tb2";
  4515. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4516. foreach (var item in dac1)
  4517. {
  4518. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4519. if (place.Contains(item.Place))
  4520. {
  4521. continue;
  4522. }
  4523. DataRow row = dtdac1.NewRow();
  4524. row["city"] = item.Place;
  4525. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4526. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4527. row["curr"] = currency;
  4528. row["rate"] = rate.ToString("#0.0000");
  4529. row["criterion"] = item.Cost.ToString("#0.00");
  4530. row["number"] = 1;
  4531. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4532. //row["costRMB"] = rbmPrice;
  4533. dtdac1.Rows.Add(row);
  4534. place.Add(item.Place);
  4535. }
  4536. place = new List<string>();
  4537. foreach (var item in dac2)
  4538. {
  4539. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4540. if (place.Contains(item.Place))
  4541. {
  4542. continue;
  4543. }
  4544. DataRow row = dtdac2.NewRow();
  4545. row["city"] = item.Place;
  4546. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4547. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4548. row["curr"] = currency;
  4549. row["rate"] = rate.ToString("#0.0000");
  4550. row["criterion"] = item.Cost.ToString("#0.00");
  4551. row["number"] = 1;
  4552. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4553. //row["cost"] = item.SubTotal;
  4554. //row["costRMB"] = rbmPrice;
  4555. dtdac2.Rows.Add(row);
  4556. place.Add(item.Place);
  4557. //dac2totalPrice += rbmPrice;
  4558. }
  4559. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4560. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4561. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4562. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4563. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4564. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4565. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4566. string cellStr = $" 5.其他费用(";
  4567. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4568. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4569. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4570. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4571. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4572. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4573. if (cellStr.Length > 8)
  4574. {
  4575. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4576. }
  4577. cellStr += ")";
  4578. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4579. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4580. decimal pxFee = dac4.Sum(it => it.Cost);
  4581. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4582. string celllastStr1 = "";
  4583. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4584. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4585. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4586. celllastStr1 += $",国际旅费 元";
  4587. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4588. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4589. designer.SetDataSource("cell4Str", cell4Str);
  4590. designer.SetDataSource("cellStr", cellStr);
  4591. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4592. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4593. designer.SetDataSource("celllastStr", celllastStr);
  4594. Workbook wb = designer.Workbook;
  4595. var sheet = wb.Worksheets[0];
  4596. //绑定datatable数据集
  4597. designer.SetDataSource(dtdac1);
  4598. designer.SetDataSource(dtdac2);
  4599. designer.Process();
  4600. var rowStart = dtdac1.Rows.Count;
  4601. while (rowStart > 0)
  4602. {
  4603. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4604. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4605. startIndex++;
  4606. rowStart--;
  4607. }
  4608. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4609. startIndex += 1; //总计行
  4610. rowStart = dtdac2.Rows.Count;
  4611. while (rowStart > 0)
  4612. {
  4613. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4614. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4615. startIndex++;
  4616. rowStart--;
  4617. }
  4618. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4619. wb.CalculateFormula(true);
  4620. //模板文件名
  4621. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4622. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4623. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4624. return Ok(JsonView(true, "成功", new { Url = url }));
  4625. }
  4626. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4627. {
  4628. //获取模板
  4629. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4630. //载入模板
  4631. Document doc = new Document(tempPath);
  4632. DocumentBuilder builder = new DocumentBuilder(doc);
  4633. Dictionary<string, string> dic = new Dictionary<string, string>();
  4634. dic.Add("GroupName", _DelegationInfo.TeamName);
  4635. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4636. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4637. string missionLeaderJob = "";//负责人job
  4638. int groupNumber = 0; //团人数
  4639. if (DeleClientList.Count > 0)
  4640. {
  4641. missionLeader = DeleClientList[0]?.Name ?? "";
  4642. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4643. }
  4644. dic.Add("MissionLeader", missionLeader); //团负责人
  4645. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4646. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4647. #region MyRegion
  4648. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4649. //{
  4650. // List<string> list = new List<string>();
  4651. // try
  4652. // {
  4653. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4654. // foreach (var item in spilitArr)
  4655. // {
  4656. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4657. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4658. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4659. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4660. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4661. // list.Add(depName);
  4662. // list.Add(arrName);
  4663. // }
  4664. // list = list.Distinct().ToList();
  4665. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4666. // }
  4667. // catch (Exception)
  4668. // {
  4669. // dic.Add("ReturnCode", "行程录入不正确!");
  4670. // }
  4671. //}
  4672. //else
  4673. //{
  4674. // dic.Add("ReturnCode", "未录入行程!");
  4675. //}
  4676. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4677. dic.Add("ReturnCode", string.Join("、", countrys));
  4678. #endregion
  4679. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4680. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4681. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4682. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4683. //{
  4684. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4685. // dic.Add("Day", sp.Days.ToString());
  4686. //}
  4687. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4688. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4689. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4690. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4691. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4692. //培训人员名单
  4693. int cultivateRowIndex = 7;
  4694. foreach (var item in DeleClientList)
  4695. {
  4696. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4697. builder.Write(item.Name);
  4698. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4699. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4700. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4701. string birthDay = "";
  4702. if (item.Birthday != null)
  4703. {
  4704. DateTime dt = Convert.ToDateTime(item.Birthday);
  4705. birthDay = $"{dt.Year}.{dt.Month}";
  4706. }
  4707. builder.Write(birthDay);
  4708. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4709. builder.Write(item.Company);
  4710. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4711. builder.Write(item.Job);
  4712. cultivateRowIndex++;
  4713. }
  4714. //删除多余行
  4715. //cultivateRowIndex -= 2;
  4716. int delRows = 10 + 7 - cultivateRowIndex;
  4717. if (delRows > 0)
  4718. {
  4719. for (int i = 0; i < delRows; i++)
  4720. {
  4721. table1.Rows.RemoveAt(cultivateRowIndex);
  4722. //cultivateRowIndex++;
  4723. }
  4724. }
  4725. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4726. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4727. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4728. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4729. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4730. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4731. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4732. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4733. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4734. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4735. //其他费用
  4736. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4737. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4738. //其他费用合计
  4739. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4740. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4741. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4742. //公务舱合计
  4743. //国际旅费
  4744. string outsideJJ = "";
  4745. string allPriceJJ = "";
  4746. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4747. {
  4748. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4749. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4750. }
  4751. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4752. {
  4753. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4754. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4755. }
  4756. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4757. {
  4758. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4759. dic.Add("AirFeeTotal", airFeeTotalStr);
  4760. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4761. dic.Add("FeeTotal", feeTotalStr);
  4762. }
  4763. foreach (var key in dic.Keys)
  4764. {
  4765. builder.MoveToBookmark(key);
  4766. builder.Write(dic[key]);
  4767. }
  4768. //模板文件名
  4769. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4770. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4771. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4772. return Ok(JsonView(true, "成功", new { Url = url }));
  4773. }
  4774. }
  4775. else if (dto.ExportType == 2) //表格
  4776. {
  4777. //利用键值对存放数据
  4778. Dictionary<string, string> dic = new Dictionary<string, string>();
  4779. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4780. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4781. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4782. dic.Add("Day", sp.Days.ToString());
  4783. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4784. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4785. {
  4786. //获取模板
  4787. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4788. //载入模板
  4789. Document doc = new Document(tempPath);
  4790. DocumentBuilder builder = new DocumentBuilder(doc);
  4791. dic.Add("TeamName", _DelegationInfo.TeamName);
  4792. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4793. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4794. string missionLeaderName = "",
  4795. missionLeaderJob = "";
  4796. if (DeleClientList.Count > 0)
  4797. {
  4798. missionLeaderName = DeleClientList[0].Name;
  4799. missionLeaderJob = DeleClientList[0].Job;
  4800. }
  4801. dic.Add("MissionLeaderName", missionLeaderName);
  4802. dic.Add("MissionLeaderJob", missionLeaderJob);
  4803. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4804. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4805. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4806. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4807. int rowCount = 10;//总人数行
  4808. int startRowIndex = 7; //起始行
  4809. for (int i = 0; i < DeleClientList.Count; i++)
  4810. {
  4811. builder.MoveToCell(0, startRowIndex, 0, 0);
  4812. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4813. builder.MoveToCell(0, startRowIndex, 1, 0);
  4814. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4815. builder.Write(sex);//性别
  4816. builder.MoveToCell(0, startRowIndex, 2, 0);
  4817. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4818. builder.MoveToCell(0, startRowIndex, 3, 0);
  4819. builder.Write(DeleClientList[i].Company);//工作单位
  4820. builder.MoveToCell(0, startRowIndex, 4, 0);
  4821. builder.Write(DeleClientList[i].Job);//职务及级别
  4822. builder.MoveToCell(0, startRowIndex, 5, 0);
  4823. builder.Write("");//人员属性
  4824. builder.MoveToCell(0, startRowIndex, 6, 0);
  4825. builder.Write("");//上次出国时间
  4826. startRowIndex++;
  4827. }
  4828. int nullRow = rowCount - DeleClientList.Count;//空行
  4829. for (int i = 0; i < nullRow; i++)
  4830. {
  4831. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4832. }
  4833. foreach (var key in dic.Keys)
  4834. {
  4835. builder.MoveToBookmark(key);
  4836. builder.Write(dic[key]);
  4837. }
  4838. //模板文件名
  4839. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4840. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4841. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4842. return Ok(JsonView(true, "成功", new { Url = url }));
  4843. }
  4844. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4845. {
  4846. //获取模板
  4847. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4848. //载入模板
  4849. Document doc = new Document(tempPath);
  4850. DocumentBuilder builder = new DocumentBuilder(doc);
  4851. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4852. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4853. dic.Add("Names", Names);
  4854. int accommodationRows = 12, foodandotherRows = 12;
  4855. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4856. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4857. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4858. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4859. int accommodationStartIndex = 6;
  4860. decimal dac1totalPrice = 0.00M;
  4861. foreach (var dac in dac1)
  4862. {
  4863. if (dac.SubTotal == 0)
  4864. {
  4865. continue;
  4866. }
  4867. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4868. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4869. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4870. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4871. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4872. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4873. builder.Write(currency);//币种
  4874. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4875. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4876. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4877. builder.Write("");//人数
  4878. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4879. builder.Write("");//天数
  4880. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4881. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4882. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4883. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4884. builder.Write(rate.ToString("#0.0000"));//汇率
  4885. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4886. decimal rbmPrice = rate * dac.SubTotal;
  4887. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4888. accommodationStartIndex++;
  4889. dac1totalPrice += rbmPrice;
  4890. }
  4891. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4892. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4893. builder.Write("小计");
  4894. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4895. builder.Write(dac1totalPrice.ToString("#0.00"));
  4896. accommodationStartIndex++;
  4897. int nullRow = accommodationRows - dac1.Count;
  4898. //删除空行
  4899. //if (nullRow > 0)
  4900. //{
  4901. // int rowIndex = accommodationStartIndex;
  4902. // for (int i = 0; i < nullRow; i++)
  4903. // {
  4904. // Row row = table1.Rows[rowIndex];
  4905. // row.Remove();
  4906. // rowIndex++;
  4907. // }
  4908. //}
  4909. if (dac2.Count == dac3.Count)//国家 币种 金额
  4910. {
  4911. for (int i = 0; i < dac2.Count; i++)
  4912. {
  4913. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4914. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4915. }
  4916. }
  4917. int foodandotherStartIndex = 19;//
  4918. decimal dac2totalPrice = 0.00M;
  4919. foreach (var dac in dac2)
  4920. {
  4921. if (dac.SubTotal == 0)
  4922. {
  4923. continue;
  4924. }
  4925. //foodandotherStartIndex = 12;
  4926. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4927. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4928. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4929. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4930. builder.Write(currency);//币种
  4931. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4932. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4933. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4934. builder.Write("");//人数
  4935. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4936. builder.Write("");//天数
  4937. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4938. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4939. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4940. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4941. builder.Write(rate.ToString("#0.0000"));//汇率
  4942. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4943. decimal rbmPrice = rate * dac.SubTotal;
  4944. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4945. foodandotherStartIndex++;
  4946. dac2totalPrice += rbmPrice;
  4947. }
  4948. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4949. //删除空行
  4950. if (dac2.Count < foodandotherRows)
  4951. {
  4952. //int nullRow = accommodationRows - dac2.Count;
  4953. //while (table2.Rows.Count > dac2.Count)
  4954. //{
  4955. // table2.Rows.RemoveAt(dac2.Count);
  4956. //}
  4957. }
  4958. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4959. string otherFeeStr = "";
  4960. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4961. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4962. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4963. if (otherFeeStr.Length > 0)
  4964. {
  4965. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4966. otherFeeStr = $"({otherFeeStr})";
  4967. dic.Add("OtherFeeStr", otherFeeStr);
  4968. }
  4969. foreach (var key in dic.Keys)
  4970. {
  4971. builder.MoveToBookmark(key);
  4972. builder.Write(dic[key]);
  4973. }
  4974. //模板文件名
  4975. string strFileName = $"省级单位出(境)经费报销单.docx";
  4976. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4977. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4978. return Ok(JsonView(true, "成功", new { Url = url }));
  4979. }
  4980. }
  4981. else if (dto.ExportType == 3)
  4982. {
  4983. if (dto.SubTypeId == 1) //团组成员名单
  4984. {
  4985. if (DeleClientList.Count < 1)
  4986. {
  4987. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4988. }
  4989. //获取模板
  4990. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4991. //载入模板
  4992. Document doc = new Document(tempPath);
  4993. DocumentBuilder builder = new DocumentBuilder(doc);
  4994. //获取word里所有表格
  4995. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4996. //获取所填表格的序数
  4997. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4998. var rowStart = tableOne.Rows[0]; //获取第1行
  4999. //循环赋值
  5000. for (int i = 0; i < DeleClientList.Count; i++)
  5001. {
  5002. builder.MoveToCell(0, i + 1, 0, 0);
  5003. builder.Write(DeleClientList[i].Name);
  5004. builder.MoveToCell(0, i + 1, 1, 0);
  5005. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  5006. builder.Write(sex);
  5007. builder.MoveToCell(0, i + 1, 2, 0);
  5008. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  5009. builder.MoveToCell(0, i + 1, 3, 0);
  5010. builder.Write(DeleClientList[i].Company);
  5011. builder.MoveToCell(0, i + 1, 4, 0);
  5012. builder.Write(DeleClientList[i].Job);
  5013. }
  5014. //删除多余行
  5015. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  5016. {
  5017. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  5018. }
  5019. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  5020. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  5021. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  5022. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5023. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5024. return Ok(JsonView(true, "成功", new { Url = url }));
  5025. }
  5026. }
  5027. return Ok(JsonView(false, "操作失败!"));
  5028. }
  5029. catch (Exception ex)
  5030. {
  5031. return Ok(JsonView(false, ex.Message));
  5032. }
  5033. }
  5034. /// <summary>
  5035. /// 获取三公费用标准city
  5036. /// </summary>
  5037. /// <param name="placeData"></param>
  5038. /// <param name="nationalTravelFeeId"></param>
  5039. /// <returns></returns>
  5040. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  5041. {
  5042. string _city = string.Empty;
  5043. if (placeData.Count < 1) return _city;
  5044. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  5045. if (data == null) return _city;
  5046. string country = data.Country;
  5047. string city = data.City;
  5048. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  5049. else _city = city;
  5050. return _city;
  5051. }
  5052. /// <summary>
  5053. /// 团组模块 - 出入境费用 - 明细表导出
  5054. /// </summary>
  5055. /// <returns></returns>
  5056. [HttpPost]
  5057. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5058. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  5059. {
  5060. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  5061. if (data.Code != 0)
  5062. {
  5063. return Ok(JsonView(false, data.Msg));
  5064. }
  5065. return Ok(JsonView(true, data.Msg, data.Data));
  5066. }
  5067. /// <summary>
  5068. /// 团组模块 - 出入境费用 - 一键清空
  5069. /// </summary>
  5070. /// <returns></returns>
  5071. [HttpPost]
  5072. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5073. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  5074. {
  5075. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  5076. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  5077. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  5078. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  5079. if (_view.Code == 0)
  5080. {
  5081. return Ok(JsonView(true, "操作成功"));
  5082. }
  5083. return Ok(JsonView(false, "操作失败"));
  5084. }
  5085. /// <summary>
  5086. /// 团组模块 - 出入境费用 - 子项删除
  5087. /// </summary>
  5088. /// <returns></returns>
  5089. [HttpPost]
  5090. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5091. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  5092. {
  5093. try
  5094. {
  5095. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  5096. if (data.Code != 0)
  5097. {
  5098. return Ok(JsonView(false, data.Msg));
  5099. }
  5100. return Ok(JsonView(true, "操作成功!", data.Data));
  5101. }
  5102. catch (Exception ex)
  5103. {
  5104. return Ok(JsonView(false, ex.Message));
  5105. }
  5106. }
  5107. /// <summary>
  5108. /// 团组模块 - 出入境国家费用标准 List
  5109. /// </summary>
  5110. /// <returns></returns>
  5111. [HttpPost]
  5112. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5113. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5114. {
  5115. try
  5116. {
  5117. Stopwatch sw = new Stopwatch();
  5118. sw.Start();
  5119. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5120. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5121. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5122. Where gntf.Isdel = 0");
  5123. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5124. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5125. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5126. //foreach (var item in nationalTravel)
  5127. //{
  5128. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5129. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5130. // if (otherData != null)
  5131. // {
  5132. // cityData.Remove(otherData);
  5133. // cityData.Add(otherData);
  5134. // }
  5135. // nationalTravelFeeData1.Add(new
  5136. // {
  5137. // Country = item.Country,
  5138. // CityData = cityData
  5139. // });
  5140. //}
  5141. sw.Stop();
  5142. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5143. }
  5144. catch (Exception ex)
  5145. {
  5146. return Ok(JsonView(false, ex.Message));
  5147. throw;
  5148. }
  5149. }
  5150. /// <summary>
  5151. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5152. /// </summary>
  5153. /// <returns></returns>
  5154. [HttpPost]
  5155. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5156. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5157. {
  5158. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5159. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5160. List<string> countryData = new List<string>();
  5161. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5162. countryData = countryData.Distinct().ToList();
  5163. List<dynamic> dataSource = new List<dynamic>();
  5164. foreach (var item in countryData)
  5165. {
  5166. List<string> cityData1 = new List<string>();
  5167. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5168. var countryData2 = new
  5169. {
  5170. CountryName = item,
  5171. CityData = cityData1
  5172. };
  5173. dataSource.Add(countryData2);
  5174. }
  5175. return Ok(JsonView(true, "查询成功!", dataSource));
  5176. }
  5177. /// <summary>
  5178. /// 团组模块 - 出入境国家费用标准 Page List
  5179. /// </summary>
  5180. /// <returns></returns>
  5181. [HttpPost]
  5182. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5183. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5184. {
  5185. int portId = dto.PortType;
  5186. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5187. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5188. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5189. string whereSql = string.Empty;
  5190. if (!string.IsNullOrEmpty(dto.Country))
  5191. {
  5192. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5193. }
  5194. if (!string.IsNullOrEmpty(dto.City))
  5195. {
  5196. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5197. }
  5198. string pageSql = string.Format(@"Select * From (
  5199. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5200. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5201. From Grp_NationalTravelFee gntf
  5202. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5203. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5204. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5205. RefAsync<int> total = 0;
  5206. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5207. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5208. }
  5209. /// <summary>
  5210. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5211. /// </summary>
  5212. /// <returns></returns>
  5213. [HttpPost]
  5214. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5215. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5216. {
  5217. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5218. int portId = dto.PortType;
  5219. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5220. string whereSql = string.Empty;
  5221. if (!string.IsNullOrEmpty(dto.Country))
  5222. {
  5223. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5224. }
  5225. if (!string.IsNullOrEmpty(dto.City))
  5226. {
  5227. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5228. }
  5229. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5230. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5231. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5232. From Grp_NationalTravelFee gntf
  5233. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5234. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5235. Where gntf.Isdel = 0 {0} ", whereSql);
  5236. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5237. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5238. }
  5239. /// <summary>
  5240. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5241. /// </summary>
  5242. /// <returns></returns>
  5243. [HttpPost]
  5244. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5245. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5246. {
  5247. try
  5248. {
  5249. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5250. if (data.Code != 0)
  5251. {
  5252. return Ok(JsonView(false, data.Msg));
  5253. }
  5254. return Ok(JsonView(true, "操作成功!", data.Data));
  5255. }
  5256. catch (Exception ex)
  5257. {
  5258. return Ok(JsonView(false, ex.Message));
  5259. }
  5260. }
  5261. /// <summary>
  5262. /// 团组模块 - 出入境国家费用标准 - Del
  5263. /// </summary>
  5264. /// <returns></returns>
  5265. [HttpPost]
  5266. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5267. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5268. {
  5269. try
  5270. {
  5271. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5272. {
  5273. Id = dto.Id,
  5274. DeleteUserId = dto.DeleteUserId,
  5275. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5276. IsDel = 1
  5277. };
  5278. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5279. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5280. .WhereColumns(it => new { it.Id })
  5281. .ExecuteCommandAsync();
  5282. if (delStatus <= 0)
  5283. {
  5284. return Ok(JsonView(false, "删除失败!"));
  5285. }
  5286. return Ok(JsonView(true, "操作成功!"));
  5287. }
  5288. catch (Exception ex)
  5289. {
  5290. return Ok(JsonView(false, ex.Message));
  5291. }
  5292. }
  5293. #endregion
  5294. #region 签证费用录入
  5295. /// <summary>
  5296. /// 根据diid查询签证费用列表
  5297. /// </summary>
  5298. /// <param name="dto"></param>
  5299. /// <returns></returns>
  5300. [HttpPost]
  5301. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5302. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5303. {
  5304. try
  5305. {
  5306. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5307. if (groupData.Code != 0)
  5308. {
  5309. return Ok(JsonView(false, groupData.Msg));
  5310. }
  5311. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5312. }
  5313. catch (Exception ex)
  5314. {
  5315. return Ok(JsonView(false, ex.Message));
  5316. }
  5317. }
  5318. /// <summary>
  5319. /// 根据签证费用Id查询单条数据及c表数据
  5320. /// </summary>
  5321. /// <param name="dto"></param>
  5322. /// <returns></returns>
  5323. [HttpPost]
  5324. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5325. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5326. {
  5327. try
  5328. {
  5329. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5330. if (groupData.Code != 0)
  5331. {
  5332. return Ok(JsonView(false, groupData.Msg));
  5333. }
  5334. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5335. }
  5336. catch (Exception ex)
  5337. {
  5338. return Ok(JsonView(false, ex.Message));
  5339. }
  5340. }
  5341. /// <summary>
  5342. /// 签证费用删除
  5343. /// </summary>
  5344. /// <param name="dto"></param>
  5345. /// <returns></returns>
  5346. [HttpPost]
  5347. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5348. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5349. {
  5350. _sqlSugar.BeginTran();
  5351. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5352. if (!res)
  5353. {
  5354. _sqlSugar.RollbackTran();
  5355. return Ok(JsonView(false, "删除失败"));
  5356. }
  5357. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5358. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5359. .SetColumns(a => new Grp_CreditCardPayment()
  5360. {
  5361. IsDel = 1,
  5362. DeleteUserId = dto.DeleteUserId,
  5363. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5364. }).ExecuteCommand();
  5365. if (resSub < 1)
  5366. {
  5367. _sqlSugar.RollbackTran();
  5368. return Ok(JsonView(false, "删除失败"));
  5369. }
  5370. _sqlSugar.CommitTran();
  5371. return Ok(JsonView(true, "删除成功!"));
  5372. }
  5373. /// <summary>
  5374. /// 签证费用录入下拉框初始化
  5375. /// </summary>
  5376. /// <returns></returns>
  5377. [HttpPost]
  5378. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5379. public async Task<IActionResult> VisaPriceAddSelect()
  5380. {
  5381. try
  5382. {
  5383. //支付方式
  5384. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5385. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5386. //币种
  5387. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5388. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5389. //乘客类型
  5390. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5391. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5392. //卡类型
  5393. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5394. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5395. var data = new
  5396. {
  5397. Payment = _Payment,
  5398. CurrencyList = _CurrencyList,
  5399. PassengerType = _PassengerType,
  5400. BankCard = _BankCard
  5401. };
  5402. return Ok(JsonView(true, "查询成功!", data));
  5403. }
  5404. catch (Exception ex)
  5405. {
  5406. return Ok(JsonView(false, "程序错误!"));
  5407. throw;
  5408. }
  5409. }
  5410. /// <summary>
  5411. /// 签证费用录入操作(Status:1.新增,2.修改)
  5412. /// </summary>
  5413. /// <param name="dto"></param>
  5414. /// <returns></returns>
  5415. [HttpPost]
  5416. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5417. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5418. {
  5419. try
  5420. {
  5421. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5422. if (groupData.Code != 0)
  5423. {
  5424. return Ok(JsonView(false, groupData.Msg));
  5425. }
  5426. #region 应用推送
  5427. try
  5428. {
  5429. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5430. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5431. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5432. }
  5433. catch (Exception ex)
  5434. {
  5435. }
  5436. #endregion
  5437. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5438. }
  5439. catch (Exception ex)
  5440. {
  5441. return Ok(JsonView(false, ex.Message));
  5442. }
  5443. }
  5444. #endregion
  5445. #region op费用录入
  5446. /// <summary>
  5447. /// 根据diid查询op费用列表
  5448. /// </summary>
  5449. /// <param name="dto"></param>
  5450. /// <returns></returns>
  5451. [HttpPost]
  5452. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5453. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5454. {
  5455. try
  5456. {
  5457. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5458. if (groupData.Code != 0)
  5459. {
  5460. return Ok(JsonView(false, groupData.Msg));
  5461. }
  5462. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5463. }
  5464. catch (Exception ex)
  5465. {
  5466. return Ok(JsonView(false, ex.Message));
  5467. }
  5468. }
  5469. /// <summary>
  5470. /// 根据op费用Id查询单条数据及c表数据
  5471. /// </summary>
  5472. /// <param name="dto"></param>
  5473. /// <returns></returns>
  5474. [HttpPost]
  5475. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5476. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5477. {
  5478. try
  5479. {
  5480. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5481. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5482. var data = new
  5483. {
  5484. CarTouristGuideGround = _groupData,
  5485. CreditCardPayment = _creditCardPayment
  5486. };
  5487. return Ok(JsonView(true, "查询成功!", data));
  5488. }
  5489. catch (Exception ex)
  5490. {
  5491. return Ok(JsonView(false, "程序错误!"));
  5492. }
  5493. }
  5494. /// <summary>
  5495. /// op费用删除
  5496. /// </summary>
  5497. /// <param name="dto"></param>
  5498. /// <returns></returns>
  5499. [HttpPost]
  5500. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5501. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5502. {
  5503. try
  5504. {
  5505. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5506. if (!res)
  5507. {
  5508. return Ok(JsonView(false, "删除失败"));
  5509. }
  5510. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5511. {
  5512. IsDel = 1,
  5513. DeleteUserId = dto.DeleteUserId,
  5514. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5515. }).ExecuteCommandAsync();
  5516. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5517. {
  5518. IsDel = 1,
  5519. DeleteUserId = dto.DeleteUserId,
  5520. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5521. }).ExecuteCommandAsync();
  5522. return Ok(JsonView(true, "删除成功!"));
  5523. }
  5524. catch (Exception ex)
  5525. {
  5526. return Ok(JsonView(false, "程序错误!"));
  5527. throw;
  5528. }
  5529. }
  5530. /// <summary>
  5531. /// op费用录入操作(Status:1.新增,2.修改)
  5532. /// </summary>
  5533. /// <param name="dto"></param>
  5534. /// <returns></returns>
  5535. [HttpPost]
  5536. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5537. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5538. {
  5539. try
  5540. {
  5541. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5542. if (groupData.Code != 0)
  5543. {
  5544. return Ok(JsonView(false, groupData.Msg));
  5545. }
  5546. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5547. }
  5548. catch (Exception ex)
  5549. {
  5550. return Ok(JsonView(false, ex.Message));
  5551. }
  5552. }
  5553. /// <summary>
  5554. /// 填写费用详细页面初始化绑定
  5555. /// </summary>
  5556. /// <param name="dto"></param>
  5557. /// <returns></returns>
  5558. [HttpPost]
  5559. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5560. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5561. {
  5562. try
  5563. {
  5564. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5565. if (groupData.Code != 0)
  5566. {
  5567. return Ok(JsonView(false, groupData.Msg));
  5568. }
  5569. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5570. }
  5571. catch (Exception ex)
  5572. {
  5573. return Ok(JsonView(false, ex.Message));
  5574. }
  5575. }
  5576. /// <summary>
  5577. /// 根据op费用Id查询详细数据
  5578. /// </summary>
  5579. /// <param name="dto"></param>
  5580. /// <returns></returns>
  5581. [HttpPost]
  5582. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5583. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5584. {
  5585. try
  5586. {
  5587. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5588. if (groupData.Code != 0)
  5589. {
  5590. return Ok(JsonView(false, groupData.Msg));
  5591. }
  5592. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5593. }
  5594. catch (Exception ex)
  5595. {
  5596. return Ok(JsonView(false, ex.Message));
  5597. }
  5598. }
  5599. /// <summary>
  5600. /// OP费用录入填写详情
  5601. /// </summary>
  5602. /// <param name="dto"></param>
  5603. /// <returns></returns>
  5604. [HttpPost]
  5605. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5606. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5607. {
  5608. try
  5609. {
  5610. #region 参数校验
  5611. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5612. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5613. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5614. #endregion
  5615. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5616. if (groupData.Code != 0)
  5617. {
  5618. return Ok(JsonView(false, groupData.Msg));
  5619. }
  5620. //自动审核
  5621. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5622. #region 应用推送
  5623. try
  5624. {
  5625. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5626. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5627. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5628. }
  5629. catch (Exception ex)
  5630. {
  5631. }
  5632. #endregion
  5633. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5634. }
  5635. catch (Exception ex)
  5636. {
  5637. return Ok(JsonView(false, ex.Message));
  5638. }
  5639. }
  5640. /// <summary>
  5641. /// 获取三公详细所有城市
  5642. /// </summary>
  5643. /// <returns></returns>
  5644. [HttpGet]
  5645. public IActionResult OpCarCityResult()
  5646. {
  5647. var jw = JsonView(false);
  5648. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5649. {
  5650. x.Id,
  5651. x.Country,
  5652. x.City,
  5653. }).ToList();
  5654. if (data.Count > 0)
  5655. {
  5656. jw = JsonView(true, "获取成功!", data);
  5657. }
  5658. else
  5659. {
  5660. jw.Msg = "城市数据为空!";
  5661. jw.Data = new string[0];
  5662. }
  5663. return Ok(jw);
  5664. }
  5665. /// <summary>
  5666. /// 导出地接费用明细
  5667. /// </summary>
  5668. /// <param name="dto"></param>
  5669. /// <returns></returns>
  5670. [HttpPost]
  5671. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5672. {
  5673. var jw = JsonView(false);
  5674. if (dto.Diid < 1)
  5675. {
  5676. jw.Msg = "请输入正确的diid!";
  5677. return Ok(jw);
  5678. }
  5679. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5680. if (group == null)
  5681. {
  5682. jw.Msg = "未找到团组信息!";
  5683. return Ok(jw);
  5684. }
  5685. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5686. if (localGuideArr.Count == 0)
  5687. {
  5688. jw.Msg = "该团组暂无地接信息!";
  5689. return Ok(jw);
  5690. }
  5691. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5692. var overspendSoure = new Dictionary<int, int>
  5693. {
  5694. { 91, 982 }, //车
  5695. { 92 , 1059} ,//导游
  5696. { 994 , 1073}, //翻译
  5697. { 988 , 1074 }, //早餐
  5698. { 93 , 1075 }, //午餐
  5699. { 989 , 1076 }, //晚餐
  5700. };
  5701. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5702. foreach (var groupArr in localGroup)
  5703. {
  5704. var keyValue = groupArr.Key;
  5705. if (int.TryParse(keyValue, out int cityid))
  5706. {
  5707. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5708. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5709. }
  5710. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5711. foreach (var item in groupArr)
  5712. {
  5713. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5714. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5715. new Grp_CarTouristGuideGroundReservationsContentExtend
  5716. {
  5717. Count = a.Count,
  5718. CreateTime = a.CreateTime,
  5719. CreateUserId = a.CreateUserId,
  5720. CTGGRId = a.CTGGRId,
  5721. Currency = a.Currency,
  5722. DatePrice = a.DatePrice,
  5723. DeleteTime = a.DeleteTime,
  5724. DeleteUserId = a.DeleteUserId,
  5725. DiId = a.DiId,
  5726. Id = a.Id,
  5727. IsDel = a.IsDel,
  5728. Price = a.Price,
  5729. PriceContent = a.PriceContent,
  5730. Remark = a.Remark,
  5731. SId = a.SId,
  5732. SidName = b.Name,
  5733. Units = a.Units,
  5734. }
  5735. ).ToList();
  5736. if (content.Count > 0)
  5737. {
  5738. contentArr.Add(content);
  5739. }
  5740. }
  5741. //open excel
  5742. //set excel
  5743. //save excel
  5744. try
  5745. {
  5746. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5747. IWorkbook workbook;
  5748. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5749. {
  5750. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5751. }
  5752. else
  5753. {
  5754. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5755. }
  5756. ISheet sheet = workbook.GetSheetAt(0);
  5757. var rowStartIndex = 2;
  5758. var clounmCount = 10;
  5759. var initStyleRow = sheet.GetRow(2);
  5760. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5761. //var overspendArrDetail =
  5762. var existsId = new List<CarCompare>();
  5763. var lastElem = arr.Last();
  5764. var thisSid = -1;
  5765. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5766. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5767. {
  5768. Name = "未知币种!",
  5769. Remark = "未知币种!",
  5770. };
  5771. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5772. Action cloneRowFn = () =>
  5773. {
  5774. rowStartIndex++;
  5775. var cloneRow = sheet.CreateRow(rowStartIndex);
  5776. // 复制样式
  5777. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5778. {
  5779. ICell sourceCell = initStyleRow.GetCell(i);
  5780. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5781. // 确保单元格存在样式
  5782. if (sourceCell.CellStyle != null)
  5783. {
  5784. targetCell.CellStyle = sourceCell.CellStyle;
  5785. }
  5786. }
  5787. };
  5788. var mergeRow = () =>
  5789. {
  5790. for (int i = 2; i < sheet.LastRowNum; i++)
  5791. {
  5792. var row = sheet.GetRow(i);
  5793. var cellFirst = row.GetCell(0);
  5794. var thisIndex = i + 1;
  5795. while (thisIndex < sheet.LastRowNum)
  5796. {
  5797. var nextRow = sheet.GetRow(thisIndex);
  5798. var nextCellFirst = nextRow.GetCell(0);
  5799. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5800. {
  5801. thisIndex++;
  5802. }
  5803. else
  5804. {
  5805. break;
  5806. }
  5807. }
  5808. thisIndex--;
  5809. if (thisIndex != i)
  5810. {
  5811. //合并row
  5812. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5813. i, // 起始行索引(0-based)
  5814. thisIndex, // 结束行索引(0-based)
  5815. 0, // 起始列索引(0-based)
  5816. 0 // 结束列索引(0-based)
  5817. );
  5818. sheet.AddMergedRegion(cellRangeAddress);
  5819. i = thisIndex;
  5820. }
  5821. }
  5822. };
  5823. var chaoshiNumber = 0;
  5824. var totalNumber = 0.00M;
  5825. string lastStr = "";
  5826. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5827. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5828. {
  5829. b.IsAuditGM,
  5830. x.Id,
  5831. x.Area,
  5832. b.PayPercentage,
  5833. b.PayMoney,
  5834. }).ToList();
  5835. string yesPayment = "", noPayment = "";
  5836. foreach (var item in queryCarArrByCityAndDiid)
  5837. {
  5838. if (item.IsAuditGM == 1)
  5839. {
  5840. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5841. }
  5842. else
  5843. {
  5844. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5845. }
  5846. }
  5847. lastStr = yesPayment + noPayment;
  5848. foreach (var item in arr)
  5849. {
  5850. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5851. {
  5852. if (thisSid != item.SId)
  5853. {
  5854. if (thisSid == -1)
  5855. {
  5856. thisSid = item.SId;
  5857. }
  5858. else
  5859. {
  5860. //合并小计行
  5861. //创建合并区域的实例
  5862. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5863. rowStartIndex, // 起始行索引(0-based)
  5864. rowStartIndex, // 结束行索引(0-based)
  5865. 0, // 起始列索引(0-based)
  5866. 3 // 结束列索引(0-based)
  5867. );
  5868. sheet.AddMergedRegion(cellRangeAddress);
  5869. var CellStyle = workbook.CreateCellStyle();
  5870. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5871. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5872. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5873. for (int i = 0; i <= clounmCount; i++)
  5874. {
  5875. if (i > 6)
  5876. {
  5877. var CellStyle1 = workbook.CreateCellStyle();
  5878. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5879. IFont Font = workbook.CreateFont(); // 创建字体
  5880. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5881. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5882. CellStyle1.SetFont(Font);
  5883. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5884. }
  5885. else
  5886. {
  5887. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5888. }
  5889. }
  5890. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5891. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5892. //超时合计
  5893. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5894. //超时数
  5895. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5896. //超时合计费用
  5897. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5898. thisSid = item.SId;
  5899. cloneRowFn();
  5900. chaoshiNumber = 0;
  5901. totalNumber = 0;
  5902. }
  5903. }
  5904. IRow row = sheet.GetRow(rowStartIndex);
  5905. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5906. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5907. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5908. if (isOpenOverspendSoure)
  5909. {
  5910. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5911. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5912. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5913. }
  5914. for (int i = 0; i <= clounmCount; i++)
  5915. {
  5916. var cell = row.GetCell(i);
  5917. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5918. if (cell == null)
  5919. {
  5920. cell = row.CreateCell(i);
  5921. }
  5922. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5923. fontRed.CloneStyleFrom(cell.CellStyle);
  5924. IFont Font = workbook.CreateFont(); // 创建字体
  5925. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5926. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5927. fontRed.SetFont(Font);
  5928. byte[] rgb = new byte[3] { 255, 242, 204 };
  5929. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5930. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5931. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5932. if (workbook is XSSFWorkbook)
  5933. {
  5934. BackgroundColor255_242_204.FillForegroundColor = 0;
  5935. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5936. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5937. }
  5938. else
  5939. {
  5940. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5941. }
  5942. if (i == 1 || i > 6)
  5943. {
  5944. if (i > 6)
  5945. {
  5946. fontRed.FillForegroundColor = 0;
  5947. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5948. fontRed.FillPattern = FillPattern.SolidForeground;
  5949. }
  5950. cell.CellStyle = fontRed;
  5951. }
  5952. if (i > 2 && i < 7)
  5953. {
  5954. cell.CellStyle = BackgroundColor255_242_204;
  5955. }
  5956. cell.SetCellValue(setCellValue); //写入单元格
  5957. }
  5958. if (overspendSoure.ContainsKey(thisSid))
  5959. {
  5960. var overspendId = overspendSoure[thisSid];
  5961. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5962. }
  5963. cloneRowFn();
  5964. existsId.Add(new CarCompare
  5965. {
  5966. DataPrice = item.DatePrice.ObjToDate(),
  5967. Sid = item.SId
  5968. });
  5969. }
  5970. if (item.Equals(lastElem))
  5971. {
  5972. //合并小计行
  5973. //创建合并区域的实例
  5974. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5975. rowStartIndex, // 起始行索引(0-based)
  5976. rowStartIndex, // 结束行索引(0-based)
  5977. 0, // 起始列索引(0-based)
  5978. 3 // 结束列索引(0-based)
  5979. );
  5980. sheet.AddMergedRegion(cellRangeAddress);
  5981. var CellStyle = workbook.CreateCellStyle();
  5982. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5983. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5984. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5985. for (int i = 0; i <= clounmCount; i++)
  5986. {
  5987. if (i > 6)
  5988. {
  5989. var CellStyle1 = workbook.CreateCellStyle();
  5990. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5991. IFont Font = workbook.CreateFont(); // 创建字体
  5992. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5993. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5994. CellStyle1.SetFont(Font);
  5995. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5996. }
  5997. else
  5998. {
  5999. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6000. }
  6001. }
  6002. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6003. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6004. //超时合计
  6005. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6006. //超时数
  6007. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6008. //超时合计费用
  6009. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6010. cloneRowFn();
  6011. // 创建合并区域的实例
  6012. cellRangeAddress = new CellRangeAddress(
  6013. rowStartIndex, // 起始行索引(0-based)
  6014. rowStartIndex, // 结束行索引(0-based)
  6015. 0, // 起始列索引(0-based)
  6016. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  6017. );
  6018. // 添加合并区域
  6019. sheet.AddMergedRegion(cellRangeAddress);
  6020. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  6021. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  6022. }
  6023. }
  6024. mergeRow();
  6025. // 保存修改后的Excel文件到新文件
  6026. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  6027. // new FileStream(newFilePath, FileMode.CreateNew)
  6028. using (var stream = new MemoryStream())
  6029. {
  6030. workbook.Write(stream, true);
  6031. stream.Flush();
  6032. stream.Seek(0, SeekOrigin.Begin);
  6033. MemoryStream memoryStream = new MemoryStream();
  6034. stream.CopyTo(memoryStream);
  6035. memoryStream.Seek(0, SeekOrigin.Begin);
  6036. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  6037. }
  6038. workbook.Close();
  6039. workbook.Dispose();
  6040. }
  6041. catch (Exception ex)
  6042. {
  6043. jw.Msg = "出现异常!" + ex.Message;
  6044. return Ok(jw);
  6045. }
  6046. }
  6047. if (Zips.Count > 0)
  6048. {
  6049. IOOperatorHelper io = new IOOperatorHelper();
  6050. var byts = io.ConvertZipStream(Zips);
  6051. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  6052. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  6053. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  6054. }
  6055. else
  6056. {
  6057. jw.Msg = "暂无生成文件!";
  6058. }
  6059. return Ok(jw);
  6060. }
  6061. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  6062. {
  6063. string outStr = string.Empty;
  6064. switch (i)
  6065. {
  6066. case 0:
  6067. outStr = arr[0].SidName;
  6068. break;
  6069. case 1:
  6070. outStr = arr[0].DataPriceStr;
  6071. break;
  6072. case 2:
  6073. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  6074. break;
  6075. case 4:
  6076. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  6077. break;
  6078. case 7:
  6079. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6080. {
  6081. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  6082. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  6083. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  6084. }
  6085. break;
  6086. case 8:
  6087. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6088. {
  6089. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  6090. }
  6091. break;
  6092. case 9:
  6093. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6094. {
  6095. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  6096. }
  6097. break;
  6098. case 10:
  6099. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6100. {
  6101. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6102. }
  6103. break;
  6104. }
  6105. return outStr;
  6106. }
  6107. #region OP行程单
  6108. /// <summary>
  6109. /// OP行程单初始化
  6110. /// </summary>
  6111. /// <param name="dto"></param>
  6112. /// <returns></returns>
  6113. [HttpPost]
  6114. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6115. {
  6116. var jw = JsonView(false);
  6117. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6118. var group = groupList.First();
  6119. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6120. if (group == null)
  6121. {
  6122. jw.Msg = "暂无团组!";
  6123. return Ok(jw);
  6124. }
  6125. group = groupList.Find(x => x.Id == diid);
  6126. if (group == null)
  6127. {
  6128. jw.Msg = "请输入正确的团组ID!";
  6129. return Ok(jw);
  6130. }
  6131. string city = string.Empty;
  6132. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6133. if (blackCode.Count > 0)
  6134. {
  6135. var black = blackCode.First();
  6136. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6137. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6138. if (blackSp.Length > 0)
  6139. {
  6140. try
  6141. {
  6142. var cityArrCode = new List<string>(20);
  6143. foreach (var item in blackSp)
  6144. {
  6145. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6146. var IndexSelect = itemSp[2];
  6147. var cityArrCodeLength = cityArrCode.Count - 1;
  6148. var startCity = IndexSelect.Substring(0, 3);
  6149. if (cityArrCodeLength > 0)
  6150. {
  6151. var arrEndCity = cityArrCode[cityArrCodeLength];
  6152. if (arrEndCity != startCity)
  6153. {
  6154. cityArrCode.Add(startCity.ToUpper());
  6155. }
  6156. }
  6157. else
  6158. {
  6159. cityArrCode.Add(startCity.ToUpper());
  6160. }
  6161. var endCity = IndexSelect.Substring(3, 3);
  6162. cityArrCode.Add(endCity.ToUpper());
  6163. }
  6164. var cityThree = string.Empty;
  6165. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6166. cityThree = cityThree.TrimEnd(',');
  6167. if (string.IsNullOrWhiteSpace(cityThree))
  6168. {
  6169. throw new
  6170. Exception("error");
  6171. }
  6172. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6173. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6174. foreach (var item in cityArrCode)
  6175. {
  6176. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6177. if (find != null)
  6178. {
  6179. city += find.City + "/";
  6180. }
  6181. else
  6182. {
  6183. city += item + "三字码未收入/";
  6184. }
  6185. }
  6186. city = city.TrimEnd('/');
  6187. }
  6188. catch (Exception e)
  6189. {
  6190. city = "黑屏代码格式不正确!";
  6191. }
  6192. }
  6193. }
  6194. else
  6195. {
  6196. city = "未录入黑屏代码";
  6197. }
  6198. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6199. {
  6200. Date = x.Date,
  6201. Days = x.Days,
  6202. Diffgroup = x.Diffgroup,
  6203. Diid = x.Diid,
  6204. Traffic_First = x.Traffic_First,
  6205. Traffic_Second = x.Traffic_Second,
  6206. Trip = x.Trip,
  6207. WeekDay = x.WeekDay,
  6208. Id = x.Id
  6209. }).ToList();
  6210. jw.Data = new
  6211. {
  6212. groupList = groupList.Select(x => new
  6213. {
  6214. x.Id,
  6215. x.TeamName,
  6216. x.TourCode
  6217. }).ToList(),
  6218. groupInfo = new
  6219. {
  6220. group.VisitDays,
  6221. group.TourCode,
  6222. group.VisitPNumber,
  6223. group.TeamName,
  6224. city
  6225. },
  6226. OpTravelList
  6227. };
  6228. jw.Code = 200;
  6229. jw.Msg = "操作成功!";
  6230. return Ok(jw);
  6231. }
  6232. /// <summary>
  6233. /// 删除团组行程单
  6234. /// </summary>
  6235. /// <returns></returns>
  6236. [HttpPost]
  6237. public IActionResult DelTravel(DelOpTravelDto dto)
  6238. {
  6239. var jw = JsonView(false);
  6240. if (dto.UserId <= 0 || dto.Diid <= 0)
  6241. {
  6242. jw.Msg = "请输入正确的参数!";
  6243. return Ok(jw);
  6244. }
  6245. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6246. .SetColumns(x => new Grp_TravelList
  6247. {
  6248. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6249. DeleteUserId = dto.UserId,
  6250. IsDel = 1,
  6251. }).ExecuteCommand();
  6252. jw = JsonView(true);
  6253. return Ok(jw);
  6254. }
  6255. /// <summary>
  6256. /// 行程单保存
  6257. /// </summary>
  6258. /// <returns></returns>
  6259. [HttpPost]
  6260. public IActionResult TravelSave(TravelSaveDto dto)
  6261. {
  6262. var jw = JsonView(false);
  6263. if (dto.Arr.Count > 0)
  6264. {
  6265. try
  6266. {
  6267. _sqlSugar.BeginTran();
  6268. foreach (var item in dto.Arr)
  6269. {
  6270. if (item.Id == 0)
  6271. {
  6272. throw new Exception("请传入正确的Id");
  6273. }
  6274. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6275. .SetColumns(x => new Grp_TravelList
  6276. {
  6277. Trip = item.Trip
  6278. }).ExecuteCommand();
  6279. }
  6280. _sqlSugar.CommitTran();
  6281. jw = JsonView(true);
  6282. }
  6283. catch (Exception ex)
  6284. {
  6285. _sqlSugar.RollbackTran();
  6286. jw.Msg = "程序异常!" + ex.Message;
  6287. }
  6288. }
  6289. else
  6290. {
  6291. jw.Msg = "请传入正确的参数!";
  6292. }
  6293. return Ok(jw);
  6294. }
  6295. /// <summary>
  6296. /// 导出行程单
  6297. /// </summary>
  6298. /// <param name="dto"></param>
  6299. /// <returns></returns>
  6300. [HttpPost]
  6301. public IActionResult ExportTravel(ExportTravelDto dto)
  6302. {
  6303. var jw = JsonView(false);
  6304. jw.Data = "";
  6305. int diid = 0;
  6306. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6307. if (Find == null)
  6308. {
  6309. jw.Msg = "请选择正确的团组!";
  6310. return Ok(jw);
  6311. }
  6312. else
  6313. {
  6314. diid = Find.Id;
  6315. }
  6316. //数据源
  6317. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6318. DataTable dtBlack = null;
  6319. try
  6320. {
  6321. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6322. }
  6323. catch (Exception)
  6324. {
  6325. jw.Msg = "机票黑屏代码有误!";
  6326. return Ok(jw);
  6327. }
  6328. string CityStr = string.Empty;
  6329. if (dtBlack.Rows.Count == 0)
  6330. {
  6331. jw.Msg = "机票黑屏代码有误!";
  6332. return Ok(jw);
  6333. }
  6334. else
  6335. {
  6336. foreach (DataRow row in dtBlack.Rows)
  6337. {
  6338. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6339. {
  6340. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6341. return Ok(jw);
  6342. }
  6343. }
  6344. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6345. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6346. }
  6347. //创建数据源Table
  6348. DataTable dtSource = new DataTable();
  6349. dtSource.Columns.Add("Days", typeof(string));
  6350. dtSource.Columns.Add("Date", typeof(string));
  6351. dtSource.Columns.Add("Week", typeof(string));
  6352. dtSource.Columns.Add("Traffic", typeof(string));
  6353. dtSource.Columns.Add("Trip", typeof(string));
  6354. //获取数据,放到datatable
  6355. foreach (var item in _travelList)
  6356. {
  6357. DataRow dr = dtSource.NewRow();
  6358. dr["Days"] = item.Days;
  6359. dr["Date"] = item.Date;
  6360. dr["Week"] = item.WeekDay;
  6361. dr["Traffic"] = item.Traffic_First
  6362. + "\r\n"
  6363. + item.Traffic_Second;
  6364. dr["Trip"] = item.Trip;
  6365. dtSource.Rows.Add(dr);
  6366. }
  6367. Dictionary<string, string> dic = new Dictionary<string, string>();
  6368. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6369. dic.Add("City", CityStr);
  6370. dic.Add("Days", Find.VisitDays.ToString());
  6371. dic.Add("DeleCode", Find.TourCode);
  6372. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6373. //模板路径
  6374. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6375. //载入模板
  6376. Document doc = null;
  6377. DocumentBuilder builder = null;
  6378. try
  6379. {
  6380. //载入模板
  6381. doc = new Document(tempPath);
  6382. builder = new DocumentBuilder(doc);
  6383. }
  6384. catch (Exception)
  6385. {
  6386. jw.Msg = "模板位置不存在!";
  6387. return Ok(jw);
  6388. }
  6389. foreach (var key in dic.Keys)
  6390. {
  6391. Bookmark bookmark = doc.Range.Bookmarks[key];
  6392. if (bookmark != null)
  6393. {
  6394. builder.MoveToBookmark(key);
  6395. builder.Write(dic[key]);
  6396. }
  6397. }
  6398. //获取word里所有表格
  6399. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6400. //获取所填表格的序数
  6401. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6402. try
  6403. {
  6404. //循环赋值
  6405. for (int i = 0; i < dtSource.Rows.Count; i++)
  6406. {
  6407. builder.MoveToCell(0, i + 1, 0, 0);
  6408. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6409. builder.MoveToCell(0, i + 1, 1, 0);
  6410. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6411. builder.MoveToCell(0, i + 1, 2, 0);
  6412. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6413. var trip = dtSource.Rows[i]["Trip"].ToString();
  6414. builder.MoveToCell(0, i + 1, 3, 0);
  6415. builder.Write(trip);
  6416. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6417. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6418. // 获取特定索引的段落
  6419. Paragraph paragraph = (Paragraph)paragraphs[0];
  6420. Run run = paragraph.Runs[0];
  6421. Aspose.Words.Font font = run.Font;
  6422. font.Name = "黑体";
  6423. //设置双休红色
  6424. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6425. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6426. paragraph = (Paragraph)paragraphs[1];
  6427. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6428. {
  6429. run = paragraph.Runs[0];
  6430. font = run.Font;
  6431. font.Color = Color.Red;
  6432. }
  6433. }
  6434. }
  6435. catch (Exception ex)
  6436. {
  6437. }
  6438. //删除多余行
  6439. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6440. {
  6441. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6442. }
  6443. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6444. if (!Directory.Exists(savePath))
  6445. {
  6446. try
  6447. {
  6448. Directory.CreateDirectory(savePath);
  6449. }
  6450. catch
  6451. {
  6452. }
  6453. }
  6454. string path = savePath + Find.TeamName + "出访日程";
  6455. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6456. try
  6457. {
  6458. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6459. string postfix = ".docx";
  6460. if (dto.IsPDF == 1)
  6461. {
  6462. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6463. postfix = ".pdf";
  6464. }
  6465. doc.Save(path + postfix, saveFormat);
  6466. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6467. }
  6468. catch (Exception)
  6469. {
  6470. jw = JsonView(false);
  6471. }
  6472. return Ok(jw);
  6473. }
  6474. /// <summary>
  6475. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6476. /// </summary>
  6477. /// <param name="num"></param>
  6478. /// <returns></returns>
  6479. string GetNum(string num)
  6480. {
  6481. string str = "";
  6482. switch (num)
  6483. {
  6484. case "1":
  6485. str = "一";
  6486. break;
  6487. case "2":
  6488. str = "二";
  6489. break;
  6490. case "3":
  6491. str = "三";
  6492. break;
  6493. case "4":
  6494. str = "四";
  6495. break;
  6496. case "5":
  6497. str = "五";
  6498. break;
  6499. case "6":
  6500. str = "六";
  6501. break;
  6502. case "7":
  6503. str = "七";
  6504. break;
  6505. case "8":
  6506. str = "八";
  6507. break;
  6508. case "9":
  6509. str = "九";
  6510. break;
  6511. case "10":
  6512. str = "十";
  6513. break;
  6514. case "11":
  6515. str = "十一";
  6516. break;
  6517. case "12":
  6518. str = "十二";
  6519. break;
  6520. case "一":
  6521. str = "1";
  6522. break;
  6523. case "二":
  6524. str = "2";
  6525. break;
  6526. case "三":
  6527. str = "3";
  6528. break;
  6529. case "四":
  6530. str = "4";
  6531. break;
  6532. case "五":
  6533. str = "5";
  6534. break;
  6535. case "六":
  6536. str = "6";
  6537. break;
  6538. case "七":
  6539. str = "7";
  6540. break;
  6541. case "八":
  6542. str = "8";
  6543. break;
  6544. case "九":
  6545. str = "9";
  6546. break;
  6547. case "十":
  6548. str = "10";
  6549. break;
  6550. case "十一":
  6551. str = "11";
  6552. break;
  6553. case "十二":
  6554. str = "12";
  6555. break;
  6556. }
  6557. return str;
  6558. }
  6559. #endregion
  6560. #endregion
  6561. #region 团组成本
  6562. /// <summary>
  6563. /// 团组成本数据初始化
  6564. /// </summary>
  6565. /// <param name="dto"></param>
  6566. /// <returns></returns>
  6567. [HttpPost]
  6568. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6569. {
  6570. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6571. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6572. WHEN COUNT(*) >= 0 THEN 'True'
  6573. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6574. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6575. ").ToList(); //团组列表
  6576. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6577. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6578. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6579. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6580. if (groupinfoValue != null)
  6581. {
  6582. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6583. var spArr = new string[1] { countryArr };
  6584. if (countryArr.Contains("|"))
  6585. {
  6586. spArr = countryArr.Split("|");
  6587. }
  6588. else if (countryArr.Contains("、"))
  6589. {
  6590. spArr = countryArr.Split("、");
  6591. }
  6592. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6593. {
  6594. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6595. if (dbQueryCountry != null)
  6596. {
  6597. visaCountryInfoArr.Add(dbQueryCountry);
  6598. }
  6599. }
  6600. }
  6601. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6602. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6603. var create = _GroupCostRepository.
  6604. CreateGroupCostByBlackCode(dto.Diid);
  6605. if (groupCost.Count == 0 && create.Code == 0)
  6606. {
  6607. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6608. }
  6609. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6610. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6611. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6612. groupCostMap = groupCostMap.Select(x =>
  6613. {
  6614. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6615. {
  6616. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6617. }
  6618. return x;
  6619. }).ToList();
  6620. //GroupCostParameter.Add(new
  6621. // Grp_GroupCostParameter());
  6622. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6623. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6624. return Ok(JsonView(new
  6625. {
  6626. groupList,
  6627. groupInfo,
  6628. groupChecks,
  6629. groupCost = groupCostMap,
  6630. hotelNumber,
  6631. GroupCostParameter = GroupCostParameterMap,
  6632. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6633. {
  6634. x.VisaCountry,
  6635. x.VisaPrice,
  6636. x.Id,
  6637. }).ToList(),
  6638. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6639. blackCodeIsTrue = create.Code == 0 ? true : false,
  6640. hotelIsTrue = hotelIsTrue,
  6641. }));
  6642. }
  6643. /// <summary>
  6644. /// 团组成本信息保存
  6645. /// </summary>
  6646. /// <param name="dto"></param>
  6647. /// <returns></returns>
  6648. [HttpPost]
  6649. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6650. {
  6651. if (dto.Diid <= 0 || dto.Userid <= 0)
  6652. {
  6653. return Ok(JsonView(false));
  6654. }
  6655. JsonView jw = null;
  6656. bool isTrue = false;
  6657. #region 复制团组成本
  6658. //if (dto.Diid == 2581)
  6659. //{
  6660. // dto.Diid = 2599;
  6661. // dto.CheckBoxs.ForEach(x =>
  6662. // {
  6663. // x.Diid = 2599;
  6664. // });
  6665. // dto.GroupCosts.ForEach(x =>
  6666. // {
  6667. // x.Diid = 2599;
  6668. // });
  6669. // dto.CostTypeHotelNumbers.ForEach(x =>
  6670. // {
  6671. // x.Diid = 2599;
  6672. // });
  6673. // dto.GroupCostParameters.ForEach(x =>
  6674. // {
  6675. // x.DiId = 2599;
  6676. // });
  6677. //}
  6678. #endregion
  6679. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6680. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6681. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6682. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6683. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6684. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6685. try
  6686. {
  6687. _sqlSugar.BeginTran();
  6688. isTrue = await _GroupCostRepository.
  6689. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6690. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6691. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6692. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6693. _sqlSugar.CommitTran();
  6694. jw = JsonView(true, "保存成功!", isTrue);
  6695. }
  6696. catch (Exception)
  6697. {
  6698. _sqlSugar.RollbackTran();
  6699. jw = JsonView(false);
  6700. }
  6701. return Ok(jw);
  6702. }
  6703. /// <summary>
  6704. /// 司兼导数据
  6705. /// </summary>
  6706. /// <param name="dto"></param>
  6707. /// <returns></returns>
  6708. [HttpPost]
  6709. public IActionResult GetCarGuides(CarGuidesDto dto)
  6710. {
  6711. JsonView jw = null;
  6712. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6713. jw = JsonView(true, "获取成功!", Data);
  6714. return Ok(jw);
  6715. }
  6716. /// <summary>
  6717. /// 导游数据
  6718. /// </summary>
  6719. /// <param name="dto"></param>
  6720. /// <returns></returns>
  6721. [HttpPost]
  6722. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6723. {
  6724. JsonView jw = null;
  6725. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6726. // 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
  6727. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6728. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6729. jw = JsonView(true, "获取成功!", Data);
  6730. return Ok(jw);
  6731. }
  6732. /// <summary>
  6733. /// 成本车数据
  6734. /// </summary>
  6735. /// <param name="dto"></param>
  6736. /// <returns></returns>
  6737. [HttpPost]
  6738. public IActionResult GetCarInfo(CarGuidesDto dto)
  6739. {
  6740. JsonView jw = null;
  6741. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6742. jw = JsonView(true, "获取成功!", Data);
  6743. return Ok(jw);
  6744. }
  6745. /// <summary>
  6746. /// 景点数据
  6747. /// </summary>
  6748. /// <param name="dto"></param>
  6749. /// <returns></returns>
  6750. [HttpPost]
  6751. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6752. {
  6753. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6754. return Ok(JsonView(true, "获取成功!", Data));
  6755. }
  6756. /// <summary>
  6757. /// 成本通知
  6758. /// </summary>
  6759. /// <param name="dto"></param>
  6760. /// <returns></returns>
  6761. [HttpPost]
  6762. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6763. {
  6764. if (dto.Diid < 0)
  6765. {
  6766. return Ok(JsonView(false));
  6767. }
  6768. JsonView jw = null;
  6769. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6770. if (GroupCostParameter != null)
  6771. {
  6772. int IsShare = 0;
  6773. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6774. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6775. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6776. string msg = string.Empty;
  6777. if (isTrue)
  6778. {
  6779. if (IsShare == 0)
  6780. {
  6781. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6782. }
  6783. else
  6784. {
  6785. #region 企微通知对应岗位用户
  6786. try
  6787. {
  6788. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6789. }
  6790. catch (Exception ex)
  6791. {
  6792. }
  6793. #endregion
  6794. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6795. }
  6796. jw = JsonView(isTrue, msg, new { IsShare });
  6797. }
  6798. else
  6799. {
  6800. msg = "修改失败!";
  6801. jw = JsonView(isTrue, msg);
  6802. }
  6803. }
  6804. else
  6805. {
  6806. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6807. }
  6808. return Ok(jw);
  6809. }
  6810. /// <summary>
  6811. /// 导出报价单
  6812. /// </summary>
  6813. /// <param name="dto"></param>
  6814. /// <returns></returns>
  6815. [HttpPost]
  6816. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6817. {
  6818. if (dto.Diid == 0)
  6819. {
  6820. return Ok(JsonView(false, "请传递团组id"));
  6821. }
  6822. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6823. if (deleInfo.Code != 0)
  6824. {
  6825. return Ok(JsonView(false, "团组信息查询失败!"));
  6826. }
  6827. var di = deleInfo.Data as DelegationInfoWebView;
  6828. if (di != null)
  6829. {
  6830. //文件名
  6831. string strFileName = di.TeamName + "-收款账单.doc";
  6832. //获取模板
  6833. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6834. //载入模板
  6835. Document doc = new Document(tmppath);
  6836. decimal TotalPrice = 0.00M;
  6837. string itemStr = string.Empty;
  6838. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6839. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6840. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6841. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6842. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6843. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6844. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6845. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6846. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6847. foreach (var cost in groupCostType)
  6848. {
  6849. var List = cost.ToList();
  6850. if (cost.Key == "A")
  6851. {
  6852. foreach (var ListItem in List)
  6853. {
  6854. if (ListItem.number > 0)
  6855. {
  6856. if (ListItem.code.Contains("TBR"))
  6857. {
  6858. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6859. }
  6860. else
  6861. {
  6862. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6863. }
  6864. TotalPrice += (ListItem.number * ListItem.price);
  6865. }
  6866. }
  6867. }
  6868. else
  6869. {
  6870. itemStr = itemStr.Insert(0, "A段\r\n");
  6871. itemStr += "B段\r\n";
  6872. foreach (var ListItem in List)
  6873. {
  6874. if (ListItem.number > 0)
  6875. {
  6876. if (ListItem.code.Contains("TBR"))
  6877. {
  6878. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6879. }
  6880. else
  6881. {
  6882. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6883. }
  6884. TotalPrice += (ListItem.number * ListItem.price);
  6885. }
  6886. }
  6887. }
  6888. }
  6889. #region 替换Word模板书签内容
  6890. Dictionary<string, string> marks = new Dictionary<string, string>();
  6891. marks.Add("To", di.ClientUnit);//付款方
  6892. marks.Add("ToTel", di.TellPhone);//付款方电话
  6893. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6894. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6895. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6896. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6897. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6898. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6899. marks.Add("PayItemContent", itemStr);//详细信息
  6900. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6901. #endregion
  6902. ////注
  6903. //if (doc.Range.Bookmarks["Attention"] != null)
  6904. //{
  6905. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6906. // mark.Text = frList[0].Attention;
  6907. //}
  6908. foreach (var item in marks.Keys)
  6909. {
  6910. if (doc.Range.Bookmarks[item] != null)
  6911. {
  6912. Bookmark mark = doc.Range.Bookmarks[item];
  6913. mark.Text = marks[item];
  6914. }
  6915. }
  6916. byte[] bytes = null;
  6917. using (MemoryStream stream = new MemoryStream())
  6918. {
  6919. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6920. bytes = stream.ToArray();
  6921. }
  6922. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6923. return Ok(JsonView(true, "", new
  6924. {
  6925. Data = bytes,
  6926. strFileName,
  6927. }));
  6928. }
  6929. else
  6930. {
  6931. return Ok(JsonView(false, "团组信息不存在!"));
  6932. }
  6933. }
  6934. /// <summary>
  6935. /// 导出团组成本
  6936. /// </summary>
  6937. /// <param name="dto"></param>
  6938. /// <returns></returns>
  6939. [HttpPost]
  6940. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6941. {
  6942. var jw = JsonView(false);
  6943. if (dto.Diid == 0)
  6944. {
  6945. return Ok(JsonView(false, "请传递团组id"));
  6946. }
  6947. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6948. if (deleInfo.Code != 0)
  6949. {
  6950. return Ok(JsonView(false, "团组信息查询失败!"));
  6951. }
  6952. var di = deleInfo.Data as DelegationInfoWebView;
  6953. if (di == null)
  6954. {
  6955. return Ok(JsonView(false, "团组信息查询失败!"));
  6956. }
  6957. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6958. WorkbookDesigner designer = new WorkbookDesigner();
  6959. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6960. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6961. for (int i = 0; i < List_GC.Count; i++)
  6962. {
  6963. GroupCost_Excel gc = new GroupCost_Excel();
  6964. gc.Id = List_GC[i].Id;
  6965. gc.Diid = List_GC[i].Diid.ToString();
  6966. gc.DAY = List_GC[i].DAY;
  6967. string week = "";
  6968. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6969. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6970. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6971. gc.ITIN = List_GC[i].ITIN;
  6972. gc.CarType = List_GC[i].CarType;
  6973. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6974. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6975. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6976. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6977. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6978. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6979. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6980. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6981. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6982. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6983. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6984. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6985. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6986. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6987. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6988. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6989. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6990. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6991. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6992. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6993. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6994. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6995. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6996. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6997. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6998. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6999. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  7000. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  7001. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  7002. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  7003. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  7004. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  7005. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  7006. List_GC1.Add(gc);
  7007. }
  7008. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  7009. dt.TableName = "TB";
  7010. //报表标题等不用dt的值
  7011. designer.SetDataSource("TeamName", dto.title.TeamName);
  7012. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  7013. designer.SetDataSource("Tax", dto.title.Tax);
  7014. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  7015. designer.SetDataSource("Currency", dto.title.Currency);
  7016. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  7017. designer.SetDataSource("Rate", dto.title.Rate);
  7018. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  7019. var Aparams = hotels.Find(x => x.Type == "Default");
  7020. if (Aparams == null)
  7021. {
  7022. return Ok(jw);
  7023. }
  7024. //酒店数量
  7025. var txtSGRNumber = Aparams.SGR.ToString();
  7026. var txtTBRNumber = Aparams.TBR.ToString();
  7027. var txtJSESNumber = Aparams.JSES.ToString();
  7028. var txtSUITENumbe = Aparams.SUITE.ToString();
  7029. if (dto.costType == "B")
  7030. {
  7031. Aparams = hotels.Find(x => x.Type == "A");
  7032. var Bparams = hotels.Find(x => x.Type == "B");
  7033. if (Aparams == null || Bparams == null)
  7034. {
  7035. return Ok(jw);
  7036. }
  7037. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  7038. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  7039. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  7040. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  7041. }
  7042. designer.SetDataSource("SGRNumber", txtSGRNumber);
  7043. designer.SetDataSource("TBRNumber", txtTBRNumber);
  7044. designer.SetDataSource("JSESNumber", txtJSESNumber);
  7045. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  7046. var ws = designer.Workbook.Worksheets[0];
  7047. int Row = List_GC.Count;
  7048. int startIndex = 11;
  7049. int HideRows = 0;
  7050. List<int> hideRowsList = new List<int>();
  7051. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  7052. #region A段left数据
  7053. var left = dto.leftInfo.Find(x => x.Type == "A");
  7054. if (left == null)
  7055. {
  7056. return Ok(jw);
  7057. }
  7058. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  7059. if (leftBindData != null)
  7060. {
  7061. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  7062. designer.SetDataSource("VisaRS", leftBindData.rs);
  7063. designer.SetDataSource("VisaXS", leftBindData.xs);
  7064. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7065. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7066. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7067. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7068. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7069. }
  7070. else
  7071. {
  7072. hideRowsList.Add(Row + startIndex + HideRows);
  7073. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7074. }
  7075. HideRows += 2;
  7076. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  7077. if (leftBindData != null)
  7078. {
  7079. designer.SetDataSource("BXDRCB", leftBindData.cb);
  7080. designer.SetDataSource("BXRS", leftBindData.rs);
  7081. designer.SetDataSource("BXXS", leftBindData.xs);
  7082. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7083. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7084. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7085. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7086. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7087. }
  7088. else
  7089. {
  7090. hideRowsList.Add(Row + startIndex + HideRows);
  7091. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7092. }
  7093. HideRows += 2;
  7094. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7095. if (leftBindData != null)
  7096. {
  7097. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7098. designer.SetDataSource("HSRS", leftBindData.rs);
  7099. designer.SetDataSource("HSXS", leftBindData.xs);
  7100. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7101. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7102. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7103. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7104. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7105. }
  7106. else
  7107. {
  7108. hideRowsList.Add(Row + startIndex + HideRows);
  7109. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7110. }
  7111. HideRows += 2;
  7112. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7113. if (leftBindData != null)
  7114. {
  7115. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7116. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7117. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7118. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7119. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7120. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7121. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7122. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7123. }
  7124. else
  7125. {
  7126. hideRowsList.Add(Row + startIndex + HideRows);
  7127. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7128. }
  7129. HideRows += 2;
  7130. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7131. if (leftBindData != null)
  7132. {
  7133. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7134. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7135. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7136. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7137. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7138. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7139. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7140. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7141. }
  7142. else
  7143. {
  7144. hideRowsList.Add(Row + startIndex + HideRows);
  7145. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7146. }
  7147. HideRows += 2;
  7148. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7149. if (leftBindData != null)
  7150. {
  7151. ////TBR
  7152. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7153. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7154. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7155. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7156. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7157. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7158. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7159. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7160. }
  7161. else
  7162. {
  7163. hideRowsList.Add(Row + startIndex + HideRows);
  7164. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7165. }
  7166. HideRows += 2;
  7167. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7168. if (leftBindData != null)
  7169. {
  7170. ////SGR
  7171. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7172. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7173. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7174. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7175. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7176. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7177. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7178. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7179. }
  7180. else
  7181. {
  7182. hideRowsList.Add(Row + startIndex + HideRows);
  7183. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7184. }
  7185. HideRows += 2;
  7186. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7187. if (leftBindData != null)
  7188. {
  7189. ////JS/ES
  7190. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7191. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7192. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7193. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7194. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7195. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7196. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7197. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7198. }
  7199. else
  7200. {
  7201. hideRowsList.Add(Row + startIndex + HideRows);
  7202. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7203. }
  7204. HideRows += 2;
  7205. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7206. if (leftBindData != null)
  7207. {
  7208. ////SUITE
  7209. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7210. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7211. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7212. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7213. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7214. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7215. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7216. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7217. }
  7218. else
  7219. {
  7220. hideRowsList.Add(Row + startIndex + HideRows);
  7221. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7222. }
  7223. HideRows += 2;
  7224. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7225. if (leftBindData != null)
  7226. {
  7227. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7228. designer.SetDataSource("DJRS", leftBindData.rs);
  7229. designer.SetDataSource("DJXS", leftBindData.xs);
  7230. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7231. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7232. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7233. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7234. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7235. }
  7236. else
  7237. {
  7238. hideRowsList.Add(Row + startIndex + HideRows);
  7239. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7240. }
  7241. HideRows += 2;
  7242. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7243. if (leftBindData != null)
  7244. {
  7245. designer.SetDataSource("HCPCB", leftBindData.cb);
  7246. designer.SetDataSource("HCPRS", leftBindData.rs);
  7247. designer.SetDataSource("HCPXS", leftBindData.xs);
  7248. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7249. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7250. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7251. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7252. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7253. }
  7254. else
  7255. {
  7256. hideRowsList.Add(Row + startIndex + HideRows);
  7257. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7258. }
  7259. HideRows += 2;
  7260. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7261. if (leftBindData != null)
  7262. {
  7263. designer.SetDataSource("CPCB", leftBindData.cb);
  7264. designer.SetDataSource("CPRS", leftBindData.rs);
  7265. designer.SetDataSource("CPXS", leftBindData.xs);
  7266. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7267. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7268. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7269. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7270. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7271. }
  7272. else
  7273. {
  7274. hideRowsList.Add(Row + startIndex + HideRows);
  7275. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7276. }
  7277. HideRows += 2;
  7278. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7279. if (leftBindData != null)
  7280. {
  7281. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7282. designer.SetDataSource("GWRS", leftBindData.rs);
  7283. designer.SetDataSource("GWXS", leftBindData.xs);
  7284. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7285. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7286. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7287. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7288. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7289. }
  7290. else
  7291. {
  7292. hideRowsList.Add(Row + startIndex + HideRows);
  7293. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7294. }
  7295. HideRows += 2;
  7296. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7297. if (leftBindData != null)
  7298. {
  7299. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7300. designer.SetDataSource("LYJRS", leftBindData.rs);
  7301. designer.SetDataSource("LYJXS", leftBindData.xs);
  7302. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7303. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7304. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7305. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7306. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7307. }
  7308. else
  7309. {
  7310. hideRowsList.Add(Row + startIndex + HideRows);
  7311. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7312. }
  7313. #endregion
  7314. #region A段Right信息
  7315. var right = dto.rightInfo.Find(x => x.Type == "A");
  7316. if (right == null)
  7317. {
  7318. return Ok(jw);
  7319. }
  7320. HideRows += 4;
  7321. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7322. if (rightBindData != null)
  7323. {
  7324. //经济舱 + 双人间 TBR
  7325. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7326. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7327. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7328. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7329. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7330. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7331. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7332. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7333. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7334. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7335. }
  7336. else
  7337. {
  7338. hideRowsList.Add(Row + startIndex + HideRows);
  7339. }
  7340. HideRows += 2;
  7341. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7342. if (rightBindData != null)
  7343. {
  7344. //经济舱 + 单人间 SGR
  7345. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7346. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7347. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7348. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7349. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7350. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7351. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7352. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7353. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7354. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7355. }
  7356. else
  7357. {
  7358. hideRowsList.Add(Row + startIndex + HideRows);
  7359. }
  7360. HideRows += 2;
  7361. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7362. if (rightBindData != null)
  7363. {
  7364. //公务舱 + 单人间 SGR
  7365. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7366. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7367. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7368. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7369. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7370. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7371. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7372. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7373. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7374. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7375. }
  7376. else
  7377. {
  7378. hideRowsList.Add(Row + startIndex + HideRows);
  7379. }
  7380. HideRows += 2;
  7381. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7382. if (rightBindData != null)
  7383. {
  7384. //公务舱 + 小套房 JSES
  7385. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7386. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7387. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7388. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7389. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7390. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7391. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7392. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7393. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7394. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7395. }
  7396. else
  7397. {
  7398. hideRowsList.Add(Row + startIndex + HideRows);
  7399. }
  7400. HideRows += 2;
  7401. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7402. if (rightBindData != null)
  7403. {
  7404. //公务舱 + 小套房 JSES
  7405. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7406. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7407. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7408. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7409. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7410. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7411. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7412. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7413. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7414. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7415. }
  7416. else
  7417. {
  7418. hideRowsList.Add(Row + startIndex + HideRows);
  7419. }
  7420. HideRows += 2;
  7421. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7422. if (rightBindData != null)
  7423. {
  7424. //经济舱 + 大套房
  7425. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7426. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7427. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7428. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7429. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7430. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7431. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7432. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7433. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7434. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7435. }
  7436. else
  7437. {
  7438. hideRowsList.Add(Row + startIndex + HideRows);
  7439. }
  7440. #endregion
  7441. #region B段标题清空
  7442. designer.SetDataSource("CostBDRCB", "");
  7443. designer.SetDataSource("CostBRS", "");
  7444. designer.SetDataSource("CostBXS", "");
  7445. designer.SetDataSource("CostBZCB", "");
  7446. designer.SetDataSource("CostBDRBJ", "");
  7447. designer.SetDataSource("CostBZBJ", "");
  7448. designer.SetDataSource("CostBDRLR", "");
  7449. designer.SetDataSource("CostBZLR", "");
  7450. designer.SetDataSource("CostBDRCBOM", "");
  7451. designer.SetDataSource("CostBRSOM", "");
  7452. designer.SetDataSource("CostBZCBOM", "");
  7453. designer.SetDataSource("CostBDRBJOM", "");
  7454. designer.SetDataSource("CostBZBJOM", "");
  7455. designer.SetDataSource("CostBDRLROM", "");
  7456. designer.SetDataSource("CostBZLROM", "");
  7457. #endregion
  7458. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7459. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7460. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7461. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7462. designer.SetDataSource("DJName", "地接(CNY)");
  7463. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7464. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7465. designer.SetDataSource("GWName", "公务(CNY)");
  7466. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7467. designer.SetDataSource("LYJName", "零用金(CNY)");
  7468. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7469. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7470. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7471. designer.SetDataSource("BXName", "保险(CNY)");
  7472. designer.SetDataSource("VisaName", "签证(CNY)");
  7473. #region B段基本数据
  7474. if (dto.costType == "B")
  7475. {
  7476. left = dto.leftInfo.Find(x => x.Type == "B");
  7477. if (left == null)
  7478. {
  7479. return Ok(jw);
  7480. }
  7481. #region B段left数据
  7482. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7483. if (leftBindData != null)
  7484. {
  7485. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7486. designer.SetDataSource("BHSRS", leftBindData.rs);
  7487. designer.SetDataSource("BHSXS", leftBindData.xs);
  7488. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7489. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7490. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7491. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7492. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7493. }
  7494. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7495. if (leftBindData != null)
  7496. {
  7497. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7498. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7499. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7500. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7501. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7502. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7503. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7504. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7505. }
  7506. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7507. if (leftBindData != null)
  7508. {
  7509. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7510. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7511. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7512. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7513. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7514. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7515. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7516. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7517. }
  7518. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7519. if (leftBindData != null)
  7520. {
  7521. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7522. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7523. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7524. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7525. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7526. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7527. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7528. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7529. }
  7530. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7531. if (leftBindData != null)
  7532. {
  7533. designer.SetDataSource("BCPCB", leftBindData.cb);
  7534. designer.SetDataSource("BCPRS", leftBindData.rs);
  7535. designer.SetDataSource("BCPXS", leftBindData.xs);
  7536. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7537. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7538. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7539. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7540. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7541. }
  7542. //TBR
  7543. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7544. if (leftBindData != null)
  7545. {
  7546. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7547. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7548. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7549. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7550. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7551. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7552. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7553. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7554. }
  7555. //SGR
  7556. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7557. if (leftBindData != null)
  7558. {
  7559. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7560. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7561. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7562. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7563. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7564. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7565. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7566. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7567. }
  7568. //JS/ES
  7569. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7570. if (leftBindData != null)
  7571. {
  7572. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7573. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7574. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7575. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7576. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7577. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7578. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7579. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7580. }
  7581. //SUITE
  7582. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7583. if (leftBindData != null)
  7584. {
  7585. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7586. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7587. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7588. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7589. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7590. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7591. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7592. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7593. }
  7594. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7595. if (leftBindData != null)
  7596. {
  7597. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7598. designer.SetDataSource("BDJRS", leftBindData.rs);
  7599. designer.SetDataSource("BDJXS", leftBindData.xs);
  7600. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7601. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7602. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7603. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7604. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7605. }
  7606. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7607. if (leftBindData != null)
  7608. {
  7609. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7610. designer.SetDataSource("BGWRS", leftBindData.rs);
  7611. designer.SetDataSource("BGWXS", leftBindData.xs);
  7612. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7613. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7614. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7615. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7616. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7617. }
  7618. #region 优化方案
  7619. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7620. //excelBind.Add("零用金", new {
  7621. //cb="",
  7622. //rs="",
  7623. //xs ="",
  7624. //zcb = "",
  7625. //});
  7626. #endregion
  7627. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7628. if (leftBindData != null)
  7629. {
  7630. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7631. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7632. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7633. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7634. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7635. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7636. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7637. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7638. }
  7639. #endregion
  7640. #region B段Right信息
  7641. right = dto.rightInfo.Find(x => x.Type == "B");
  7642. if (right == null)
  7643. {
  7644. return Ok(jw);
  7645. }
  7646. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7647. if (rightBindData != null)
  7648. {
  7649. //经济舱 + 双人间 TBR
  7650. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7651. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7652. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7653. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7654. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7655. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7656. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7657. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7658. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7659. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7660. }
  7661. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7662. if (rightBindData != null)
  7663. {
  7664. //经济舱 + 单人间 SGR
  7665. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7666. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7667. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7668. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7669. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7670. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7671. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7672. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7673. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7674. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7675. }
  7676. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7677. if (rightBindData != null)
  7678. {
  7679. //公务舱 + 单人间 SGR
  7680. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7681. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7682. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7683. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7684. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7685. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7686. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7687. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7688. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7689. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7690. }
  7691. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7692. if (rightBindData != null)
  7693. {
  7694. //公务舱 + 小套房 JSES
  7695. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7696. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7697. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7698. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7699. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7700. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7701. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7702. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7703. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7704. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7705. }
  7706. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7707. if (rightBindData != null)
  7708. {
  7709. //公务舱 + 小套房 JSES
  7710. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7711. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7712. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7713. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7714. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7715. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7716. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7717. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7718. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7719. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7720. }
  7721. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7722. if (rightBindData != null)
  7723. {
  7724. //经济舱 + 大套房
  7725. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7726. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7727. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7728. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7729. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7730. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7731. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7732. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7733. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7734. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7735. }
  7736. #endregion
  7737. #region 标题
  7738. designer.SetDataSource("CostBDRCB", "单人成本");
  7739. designer.SetDataSource("CostBRS", "人数");
  7740. designer.SetDataSource("CostBXS", "系数");
  7741. designer.SetDataSource("CostBZCB", "总成本");
  7742. designer.SetDataSource("CostBDRBJ", "单人报价");
  7743. designer.SetDataSource("CostBZBJ", "总报价");
  7744. designer.SetDataSource("CostBDRLR", "单人利润");
  7745. designer.SetDataSource("CostBZLR", "总利润");
  7746. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7747. designer.SetDataSource("CostBRSOM", "人数");
  7748. designer.SetDataSource("CostBZCBOM", "总成本");
  7749. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7750. designer.SetDataSource("CostBZBJOM", "总报价");
  7751. designer.SetDataSource("CostBDRLROM", "单人利润");
  7752. designer.SetDataSource("CostBZLROM", "总利润");
  7753. #endregion
  7754. }
  7755. #endregion
  7756. designer.SetDataSource("TzZCB2", TzZCB2);
  7757. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7758. designer.SetDataSource("TzZLR2", TzZLR2);
  7759. string[] dataSourceKeys = new string[]
  7760. {
  7761. "VF",
  7762. "TGS",
  7763. "TGOF",
  7764. "TGM",
  7765. "TGA",
  7766. "TGTF",
  7767. "TGEF",
  7768. "CFM",
  7769. "CFOF",
  7770. "B",
  7771. "L",
  7772. "D",
  7773. "TBR",
  7774. "SGR",
  7775. "JSES",
  7776. "Suite",
  7777. "TV",
  7778. "1L",
  7779. "IF",
  7780. "EF",
  7781. "BRF",
  7782. "TE",
  7783. "TGT",
  7784. "DRVT",
  7785. "PC",
  7786. "TLF",
  7787. "ECT"
  7788. };
  7789. foreach (var item in dataSourceKeys)
  7790. {
  7791. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7792. if (find != null)
  7793. {
  7794. designer.SetDataSource(item, find.text);
  7795. }
  7796. else
  7797. {
  7798. designer.SetDataSource(item, 0);
  7799. }
  7800. }
  7801. designer.SetDataSource(dt);
  7802. //根据数据源处理生成报表内容
  7803. designer.Process();
  7804. designer.Workbook.Worksheets[0].Name = "清单";
  7805. Worksheet sheet = designer.Workbook.Worksheets[0];
  7806. foreach (var Rowindex in hideRowsList)
  7807. {
  7808. ws.Cells.HideRows(Rowindex, 2);
  7809. }
  7810. byte[] bytes = null;
  7811. string strFileName = di.TeamName + "-团组-成本.xls";
  7812. using (MemoryStream stream = new MemoryStream())
  7813. {
  7814. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7815. bytes = stream.ToArray();
  7816. }
  7817. return Ok(JsonView(true, "", new
  7818. {
  7819. Data = bytes,
  7820. strFileName,
  7821. }));
  7822. }
  7823. /// <summary>
  7824. /// 导出客户报表
  7825. /// </summary>
  7826. /// <returns></returns>
  7827. [HttpPost]
  7828. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7829. {
  7830. var jw = JsonView(false);
  7831. if (dto.Diid == 0)
  7832. {
  7833. return Ok(JsonView(false, "请传递团组id"));
  7834. }
  7835. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7836. if (deleInfo.Code != 0)
  7837. {
  7838. return Ok(JsonView(false, "团组信息查询失败!"));
  7839. }
  7840. var di = deleInfo.Data as DelegationInfoWebView;
  7841. if (di == null)
  7842. {
  7843. return Ok(JsonView(false, "团组信息查询失败!"));
  7844. }
  7845. //文件名
  7846. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7847. //获取模板
  7848. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7849. //载入模板
  7850. Document doc = new Document(tmppath);
  7851. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7852. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7853. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7854. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7855. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7856. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7857. if (AParameter == null)
  7858. {
  7859. return Ok(JsonView(false, "系数不存在!"));
  7860. }
  7861. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7862. , TzAirDesc, TzZCost;
  7863. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7864. = TzAirDesc = TzZCost = string.Empty;
  7865. TzNumber = AParameter.CostTypenumber.ToString();
  7866. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7867. CarGuides1 = dto.CarGuides1;
  7868. Meal = dto.Meal;
  7869. SubsidizedMeals = dto.SubsidizedMeals;
  7870. NightRepair = dto.NightRepair;
  7871. AttractionsTickets = dto.AttractionsTickets;
  7872. MiscellaneousFees = dto.MiscellaneousFees;
  7873. ATip = dto.ATip;
  7874. TzHotelDesc = "";
  7875. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7876. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7877. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7878. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7879. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7880. TzAirDesc = "";
  7881. TzZCost = dto.TzZCost;
  7882. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7883. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7884. var index = 1;
  7885. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7886. foreach (var item in TzHotelDescArr)
  7887. {
  7888. if (AinfoArr != null)
  7889. {
  7890. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7891. if (Ainfo != null)
  7892. {
  7893. if (int.Parse(Ainfo.rs) <= 0)
  7894. {
  7895. continue;
  7896. }
  7897. var hotelText = string.Empty;
  7898. switch (item)
  7899. {
  7900. case "SGR":
  7901. hotelText = "单人间";
  7902. break;
  7903. case "JSES":
  7904. hotelText = "小套房";
  7905. break;
  7906. case "SUITE":
  7907. hotelText = "套房";
  7908. break;
  7909. case "TBR":
  7910. hotelText = "双人间";
  7911. break;
  7912. }
  7913. if (item != "TBR")
  7914. {
  7915. 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";
  7916. }
  7917. else
  7918. {
  7919. 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";
  7920. }
  7921. index++;
  7922. }
  7923. }
  7924. }
  7925. index = 1;
  7926. foreach (var item in TzAirDescArr)
  7927. {
  7928. if (AinfoArr != null)
  7929. {
  7930. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7931. if (Ainfo != null)
  7932. {
  7933. if (int.Parse(Ainfo.rs) <= 0)
  7934. {
  7935. continue;
  7936. }
  7937. 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";
  7938. index++;
  7939. }
  7940. }
  7941. }
  7942. if (dto.costType == "B")
  7943. {
  7944. if (BParameter == null)
  7945. {
  7946. return Ok(JsonView(false, "B段系数不存在!"));
  7947. }
  7948. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7949. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7950. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7951. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7952. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7953. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7954. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7955. foreach (var item in TzHotelDescArr)
  7956. {
  7957. if (AinfoArr != null)
  7958. {
  7959. TzHotelDesc += "B段信息 \r\n";
  7960. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7961. if (Ainfo != null)
  7962. {
  7963. if (int.Parse(Ainfo.rs) <= 0)
  7964. {
  7965. continue;
  7966. }
  7967. var hotelText = string.Empty;
  7968. switch (item)
  7969. {
  7970. case "SGR":
  7971. hotelText = "单人间";
  7972. break;
  7973. case "JSES":
  7974. hotelText = "小套房";
  7975. break;
  7976. case "SUITE":
  7977. hotelText = "套房";
  7978. break;
  7979. case "TBR":
  7980. hotelText = "双人间";
  7981. break;
  7982. }
  7983. if (item != "TBR")
  7984. {
  7985. 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";
  7986. }
  7987. else
  7988. {
  7989. 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";
  7990. }
  7991. index++;
  7992. }
  7993. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7994. }
  7995. }
  7996. index = 1;
  7997. foreach (var item in TzAirDescArr)
  7998. {
  7999. if (AinfoArr != null)
  8000. {
  8001. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8002. if (Ainfo != null)
  8003. {
  8004. if (int.Parse(Ainfo.rs) <= 0)
  8005. {
  8006. continue;
  8007. }
  8008. 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";
  8009. index++;
  8010. }
  8011. }
  8012. }
  8013. }
  8014. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  8015. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  8016. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  8017. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  8018. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  8019. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  8020. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  8021. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  8022. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  8023. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  8024. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  8025. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  8026. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  8027. DickeyValue.Add("Visa", Visa); // 签证单人报价
  8028. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  8029. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  8030. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  8031. DickeyValue.Add("TzZCost", TzZCost);
  8032. foreach (var key in DickeyValue.Keys)
  8033. {
  8034. if (doc.Range.Bookmarks[key] != null)
  8035. {
  8036. Bookmark mark = doc.Range.Bookmarks[key];
  8037. mark.Text = DickeyValue[key];
  8038. }
  8039. }
  8040. byte[] bytes = null;
  8041. string strFileName = di.TeamName + "-客户报价.doc";
  8042. using (MemoryStream stream = new MemoryStream())
  8043. {
  8044. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  8045. bytes = stream.ToArray();
  8046. }
  8047. return Ok(JsonView(true, "", new
  8048. {
  8049. Data = bytes,
  8050. strFileName,
  8051. }));
  8052. }
  8053. /// <summary>
  8054. /// 团组成本 各模块(酒店,地接,机票)成本提示
  8055. /// </summary>
  8056. /// <param name="dto"></param>
  8057. /// <returns></returns>
  8058. [HttpPost]
  8059. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8060. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  8061. {
  8062. try
  8063. {
  8064. #region 参数验证
  8065. if (dto.DiId < 0)
  8066. {
  8067. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  8068. }
  8069. List<int> cTableIds = new List<int>() {
  8070. 76 ,//酒店预订
  8071. 77 ,//行程
  8072. 79 ,//车/导游地接
  8073. 80 ,//签证
  8074. 81 ,//邀请/公务活
  8075. 82 ,//团组客户保险
  8076. 85 ,//机票预订
  8077. 98 ,//其他款项
  8078. 285 ,//收款退还
  8079. 751 ,//酒店早餐
  8080. 1015 // 超支费用
  8081. };
  8082. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  8083. {
  8084. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  8085. }
  8086. #endregion
  8087. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  8088. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  8089. if (_GroupCostParameters.Count <= 0)
  8090. {
  8091. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  8092. }
  8093. if (_GroupCostParameters[0].IsShare == 0)
  8094. {
  8095. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  8096. }
  8097. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8098. //处理date为空问题
  8099. if (_GroupCosts.Count > 0)
  8100. {
  8101. for (int i = 0; i < _GroupCosts.Count; i++)
  8102. {
  8103. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8104. {
  8105. if (i > 0)
  8106. {
  8107. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8108. }
  8109. }
  8110. }
  8111. }
  8112. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8113. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8114. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8115. string currCode = "";
  8116. #region currCode 验证
  8117. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8118. if (isInt)
  8119. {
  8120. var currData = currDatas.Find(it => it.Id == intCurrency);
  8121. if (currData != null)
  8122. {
  8123. currCode = currData.Name;
  8124. }
  8125. }
  8126. else
  8127. {
  8128. currCode = _GroupCostParameters[0].Currency.Trim();
  8129. }
  8130. #endregion
  8131. //op,酒店单段模式存储
  8132. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8133. {
  8134. CurrencyCode = currCode,
  8135. Rate = _GroupCostParameters[0].Rate,
  8136. CostType = _GroupCostParameters[0].CostType,
  8137. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8138. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8139. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8140. };
  8141. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8142. if (_GroupCostParameters.Count == 2)
  8143. {
  8144. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8145. }
  8146. foreach (var item in _GroupCostParameters)
  8147. {
  8148. decimal _rate = 1;
  8149. decimal _rate1 = item.Rate;
  8150. decimal _scale = 1;
  8151. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8152. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8153. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8154. //if (userInfo != null)
  8155. //{
  8156. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8157. // {
  8158. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8159. // {
  8160. // _scale = 1.00M;
  8161. // }
  8162. // }
  8163. //}
  8164. #endregion
  8165. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8166. {
  8167. CurrencyCode = currCode,
  8168. Rate = _rate1,
  8169. CostType = item.CostType,
  8170. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8171. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8172. CostTypeNumber = item.CostTypenumber
  8173. };
  8174. if (_GroupCostParameters.Count > 1)
  8175. {
  8176. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8177. }
  8178. else
  8179. {
  8180. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8181. }
  8182. if (dto.CTable == 79)//
  8183. {
  8184. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8185. modulePromptInfo.TotalCost = item.DJCB;
  8186. }
  8187. List<string> costTypes = new List<string>() { "A", "B" };
  8188. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8189. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8190. if (_GroupCostsDuplicates.Count() == 1)
  8191. {
  8192. _GroupCostsTypeData = _GroupCosts;
  8193. }
  8194. else
  8195. {
  8196. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8197. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8198. }
  8199. /*
  8200. * 76 酒店预订
  8201. * 77 行程
  8202. * 79 车/导游地接
  8203. * 80 签证
  8204. * 81 邀请/公务活动
  8205. * 82 团组客户保险
  8206. * 85 机票预订
  8207. * 98 其他款项
  8208. * 285 收款退还
  8209. * 751 酒店早餐
  8210. * 1015 超支费用
  8211. */
  8212. switch (dto.CTable)
  8213. {
  8214. case 76: // 酒店预订
  8215. _ModuleSubPromptInfo.AddRange(
  8216. _GroupCostsTypeData.Select(it => new
  8217. {
  8218. it.DAY,
  8219. it.Date,
  8220. it.ACCON,
  8221. it.ITIN,
  8222. it.SGR,
  8223. it.TBR,
  8224. it.JS_ES,
  8225. it.Suite
  8226. })
  8227. );
  8228. break;
  8229. case 79: // 车/导游地接
  8230. _ModuleSubPromptInfo.AddRange(
  8231. _GroupCostsTypeData.Select(it => new
  8232. {
  8233. Date = it.Date, //日期
  8234. CarFee = it.CarCost * _rate * _scale, //车费用
  8235. CarType = it.CarType, //车型
  8236. DriverFee = it.CFS * _rate * _scale, //司机工资
  8237. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8238. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8239. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8240. GuideFee = it.TGS * _rate * _scale, //导游费用
  8241. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8242. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8243. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8244. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8245. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8246. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8247. Breakfast = it.B * _rate * _scale, //早餐费
  8248. Lunch = it.L * _rate * _scale, //午餐费
  8249. Dinner = it.D * _rate * _scale, //晚餐费
  8250. TicketFee = it.EF * _rate * _scale, //门票费
  8251. SpentCash = it.PC * _rate * _scale, //零用金
  8252. LeadersFee = it.TLF * _rate * _scale, //领队费
  8253. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8254. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8255. })
  8256. );
  8257. break;
  8258. case 85: // 机票
  8259. List<dynamic> datas = new List<dynamic>();
  8260. datas.Add(
  8261. new
  8262. {
  8263. AirType = "经济舱",
  8264. AirNum = item.JJCRS,
  8265. AirDRCB = item.JJCCB,
  8266. AirZCB = (item.JJCRS * item.JJCCB)
  8267. }
  8268. );
  8269. datas.Add(
  8270. new
  8271. {
  8272. AirType = "公务舱",
  8273. AirNum = item.GWCRS,
  8274. AirDRCB = item.GWCCB,
  8275. AirZCB = (item.GWCRS * item.GWCCB)
  8276. }
  8277. );
  8278. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8279. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8280. modulePromptInfo.Data = new
  8281. {
  8282. airFeeData = datas,
  8283. airInitData = initDatas
  8284. };
  8285. _ModulePromptInfos.Add(modulePromptInfo);
  8286. break;
  8287. default:
  8288. break;
  8289. }
  8290. }
  8291. if (dto.CTable != 85)
  8292. {
  8293. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8294. _ModulePromptInfos.Add(_ModulePromptInfo);
  8295. }
  8296. _view.ModulePromptInfos = _ModulePromptInfos;
  8297. return Ok(JsonView(true, "操作成功!", _view));
  8298. }
  8299. catch (Exception ex)
  8300. {
  8301. return Ok(JsonView(false, ex.Message));
  8302. }
  8303. }
  8304. /// <summary>
  8305. /// 根据黑屏代码重新生成行程
  8306. /// </summary>
  8307. /// <param name="dto"></param>
  8308. /// <returns></returns>
  8309. [HttpPost]
  8310. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8311. {
  8312. var jw = JsonView(false);
  8313. var Create = _GroupCostRepository.
  8314. CreateGroupCostByBlackCode(dto.Diid);
  8315. jw.Msg = Create.Msg;
  8316. if (Create.Code == 0)
  8317. {
  8318. jw.Code = 200;
  8319. jw.Data = new
  8320. {
  8321. groupCost = Create.Data,
  8322. blackCodeIsTrue = true
  8323. };
  8324. }
  8325. else
  8326. {
  8327. jw.Code = 400;
  8328. jw.Data = new
  8329. {
  8330. groupCost = Create.Data,
  8331. blackCodeIsTrue = false,
  8332. };
  8333. }
  8334. return Ok(jw);
  8335. }
  8336. /// <summary>
  8337. /// 成本获取OP历史车费用
  8338. /// </summary>
  8339. /// <param name="dto"></param>
  8340. /// <returns></returns>
  8341. [HttpPost]
  8342. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8343. {
  8344. var jw = JsonView(false);
  8345. try
  8346. {
  8347. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8348. //获取现有所有车的数据
  8349. if (!dto.Param.IsNullOrWhiteSpace())
  8350. {
  8351. string sql = $@"
  8352. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8353. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8354. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8355. WHERE gctggr.IsDel = 0 and gctggrc.SId = 91 AND gdi.IsDel = 0 AND gctggrc.Price != 0 AND (ssd.Id in (1061,1069) or ssd.Id is NULL) AND gctggr.ServiceStartTime is not null
  8356. AND gctggr.ServiceEndTime is not NULL
  8357. ORDER by gctggrc.id DESC
  8358. ";
  8359. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8360. var numeberResult = await Task.Run(() =>
  8361. {
  8362. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8363. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8364. return numberArr;
  8365. });
  8366. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8367. foreach (var item in numeberResult)
  8368. {
  8369. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8370. {
  8371. Country = "数据异常!",
  8372. City = string.Empty,
  8373. };
  8374. item.Area = find.Country + " " + find.City;
  8375. }
  8376. dbResult.AddRange(numeberResult);
  8377. if (dto.Param.Contains("、"))
  8378. {
  8379. var sp = dto.Param.Split("、");
  8380. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8381. .Where(x =>
  8382. {
  8383. return System.Array.Exists(sp, e =>
  8384. {
  8385. bool where = false;
  8386. if (x.Area != null)
  8387. {
  8388. where = x.Area.Contains(e);
  8389. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8390. {
  8391. return false;
  8392. }
  8393. }
  8394. if (x.PriceName != null && !where)
  8395. {
  8396. where = x.PriceName.Contains(e);
  8397. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8398. {
  8399. return false;
  8400. }
  8401. }
  8402. return where;
  8403. });
  8404. }).ToList();
  8405. }
  8406. else
  8407. {
  8408. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8409. .Where(x =>
  8410. {
  8411. bool where = false;
  8412. if (x.Area != null)
  8413. {
  8414. where = x.Area.Contains(dto.Param);
  8415. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8416. {
  8417. return false;
  8418. }
  8419. }
  8420. if (x.PriceName != null && !where)
  8421. {
  8422. where = x.PriceName.Contains(dto.Param);
  8423. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8424. {
  8425. return false;
  8426. }
  8427. }
  8428. return where;
  8429. }
  8430. )
  8431. .ToList();
  8432. }
  8433. }
  8434. var view = dbResult.Select(x =>
  8435. {
  8436. decimal dp = 0.00M;
  8437. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8438. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8439. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8440. {
  8441. if (startB && endB)
  8442. {
  8443. var timesp = endD.Subtract(startD);
  8444. if ((timesp.Days + 1) != 0)
  8445. {
  8446. dp = x.Price / (timesp.Days + 1);
  8447. }
  8448. }
  8449. }
  8450. else
  8451. {
  8452. dp = x.Price;
  8453. }
  8454. return new
  8455. {
  8456. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8457. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8458. x.Area,
  8459. x.id,
  8460. price = x.Price.ToString("F2"),
  8461. x.PriceName,
  8462. x.PriceContent,
  8463. x.TeamName,
  8464. x.DatePrice,
  8465. dayPrice = dp.ToString("F2"),
  8466. };
  8467. }).OrderByDescending(x => x.id).ToList();
  8468. jw = JsonView(true, "获取成功!", view);
  8469. }
  8470. catch (Exception e)
  8471. {
  8472. jw = JsonView(false, e.Message);
  8473. }
  8474. return Ok(jw);
  8475. }
  8476. #endregion
  8477. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8478. /// <summary>
  8479. /// 酒店预订
  8480. /// 酒店费用列表 根据团组Id查询
  8481. /// </summary>
  8482. /// <param name="_dto"></param>
  8483. /// <returns></returns>
  8484. [HttpPost]
  8485. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8486. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8487. {
  8488. #region 参数验证
  8489. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8490. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8491. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8492. #region 团组操作权限验证 76 酒店预定模块
  8493. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8494. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8495. #endregion
  8496. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8497. #region 页面操作权限验证
  8498. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8499. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8500. #endregion
  8501. #endregion
  8502. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8503. }
  8504. /// <summary>
  8505. /// 酒店预订
  8506. /// 基础数据
  8507. /// </summary>
  8508. /// <param name="_dto"></param>
  8509. /// <returns></returns>
  8510. [HttpPost]
  8511. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8512. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8513. {
  8514. #region 参数验证
  8515. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8516. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8517. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8518. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8519. #region 页面操作权限验证
  8520. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8521. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8522. #endregion
  8523. #region 团组操作权限验证 76 酒店预定模块
  8524. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8525. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8526. #endregion
  8527. #endregion
  8528. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8529. }
  8530. /// <summary>
  8531. /// 酒店预订
  8532. /// 创建 入住卷号码
  8533. /// </summary>
  8534. /// <param name="_dto"></param>
  8535. /// <returns></returns>
  8536. [HttpPost]
  8537. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8538. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8539. {
  8540. try
  8541. {
  8542. #region 参数验证
  8543. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8544. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8545. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8546. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8547. #region 页面操作权限验证
  8548. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8549. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8550. #endregion
  8551. #region 团组操作权限验证 76 酒店预定模块
  8552. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8553. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8554. #endregion
  8555. #endregion
  8556. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8557. if (data.Code != 0)
  8558. {
  8559. return Ok(JsonView(false, data.Msg));
  8560. }
  8561. return Ok(JsonView(true, data.Msg, data.Data));
  8562. }
  8563. catch (Exception ex)
  8564. {
  8565. return Ok(JsonView(false, ex.Message));
  8566. }
  8567. }
  8568. /// <summary>
  8569. /// 酒店预订
  8570. /// 详情
  8571. /// </summary>
  8572. /// <param name="_dto"></param>
  8573. /// <returns></returns>
  8574. [HttpPost]
  8575. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8576. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8577. {
  8578. #region 参数验证
  8579. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8580. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8581. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8582. #region 团组操作权限验证 76 酒店预定模块
  8583. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8584. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8585. #endregion
  8586. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8587. #region 页面操作权限验证
  8588. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8589. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8590. #endregion
  8591. #endregion
  8592. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8593. }
  8594. /// <summary>
  8595. /// 酒店预订
  8596. /// Add Or Edit
  8597. /// </summary>
  8598. /// <param name="_dto"></param>
  8599. /// <returns></returns>
  8600. [HttpPost]
  8601. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8602. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8603. {
  8604. #region 参数验证
  8605. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8606. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8607. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8608. #region 团组操作权限验证 76 酒店预定模块
  8609. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8610. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8611. #endregion
  8612. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8613. #region 页面操作权限验证
  8614. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8615. if (_dto.Id == 0) // Add
  8616. {
  8617. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8618. }
  8619. else if (_dto.Id > 1) // Edit
  8620. {
  8621. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8622. }
  8623. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8624. #endregion
  8625. #endregion
  8626. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8627. if (_view.Code != 200)
  8628. {
  8629. return Ok(_view);
  8630. }
  8631. #region 应用推送
  8632. try
  8633. {
  8634. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8635. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8636. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8637. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8638. //自动审核
  8639. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8640. }
  8641. catch (Exception ex)
  8642. {
  8643. }
  8644. #endregion
  8645. return Ok(_view);
  8646. }
  8647. /// <summary>
  8648. /// 酒店预订
  8649. /// Del
  8650. /// </summary>
  8651. /// <param name="_dto"></param>
  8652. /// <returns></returns>
  8653. [HttpPost]
  8654. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8655. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8656. {
  8657. #region 参数验证
  8658. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8659. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8660. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8661. #region 团组操作权限验证 76 酒店预定模块
  8662. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8663. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8664. #endregion
  8665. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8666. #region 页面操作权限验证
  8667. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8668. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8669. #endregion
  8670. #endregion
  8671. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8672. }
  8673. /// <summary>
  8674. /// 酒店预订
  8675. /// 生成VOUCHER
  8676. /// 2024.05.06 之前版本
  8677. /// </summary>
  8678. /// <param name="_dto"></param>
  8679. /// <returns></returns>
  8680. [HttpPost]
  8681. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8682. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8683. {
  8684. try
  8685. {
  8686. #region 参数验证
  8687. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8688. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8689. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8690. #region 团组操作权限验证 76 酒店预定模块
  8691. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8692. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8693. #endregion
  8694. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8695. #region 页面操作权限验证
  8696. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8697. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8698. #endregion
  8699. #endregion
  8700. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8701. //判断数据是否完整
  8702. if (hr != null)
  8703. {
  8704. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8705. {
  8706. string strFileName = "HotelStatement/";
  8707. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8708. if (dele != null)
  8709. strFileName += dele.TourCode;
  8710. //载入模板
  8711. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8712. Document doc = new Document(sss);
  8713. DocumentBuilder builder = new DocumentBuilder(doc);
  8714. #region 替换Word模板书签内容
  8715. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8716. //入住卷预定号码
  8717. if (doc.Range.Bookmarks["VNO"] != null)
  8718. {
  8719. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8720. mark.Text = hr.CheckNumber;
  8721. }
  8722. //酒店时间
  8723. if (doc.Range.Bookmarks["Date"] != null)
  8724. {
  8725. Bookmark mark = doc.Range.Bookmarks["Date"];
  8726. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8727. }
  8728. //团号
  8729. if (doc.Range.Bookmarks["TNo"] != null)
  8730. {
  8731. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8732. mark.Text = dele.TourCode;
  8733. }
  8734. //预定号码
  8735. if (doc.Range.Bookmarks["BookingId"] != null)
  8736. {
  8737. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8738. mark.Text = hr.ReservationsNo;
  8739. }
  8740. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8741. {
  8742. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8743. mark.Text = hr.DetermineNo;
  8744. }
  8745. //酒店城市
  8746. if (doc.Range.Bookmarks["City"] != null)
  8747. {
  8748. Bookmark mark = doc.Range.Bookmarks["City"];
  8749. mark.Text = hr.City;
  8750. }
  8751. //酒店名称
  8752. if (doc.Range.Bookmarks["HName"] != null)
  8753. {
  8754. Bookmark mark = doc.Range.Bookmarks["HName"];
  8755. mark.Text = hr.HotelName;
  8756. }
  8757. //酒店地址
  8758. if (doc.Range.Bookmarks["Address"] != null)
  8759. {
  8760. Bookmark mark = doc.Range.Bookmarks["Address"];
  8761. mark.Text = hr.HotelAddress;
  8762. }
  8763. //酒店电话
  8764. if (doc.Range.Bookmarks["Tel"] != null)
  8765. {
  8766. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8767. mark.Text = hr.HotelTel;
  8768. }
  8769. //酒店传真
  8770. if (doc.Range.Bookmarks["Fax"] != null)
  8771. {
  8772. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8773. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8774. {
  8775. mark.Text = hr.HotelFax;
  8776. }
  8777. }
  8778. //入住时间
  8779. if (doc.Range.Bookmarks["CIn"] != null)
  8780. {
  8781. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8782. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8783. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8784. }
  8785. //退房时间
  8786. if (doc.Range.Bookmarks["COut"] != null)
  8787. {
  8788. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8789. Bookmark mark = doc.Range.Bookmarks["COut"];
  8790. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8791. }
  8792. //客户名称
  8793. if (doc.Range.Bookmarks["GName"] != null)
  8794. {
  8795. string guestName = "";
  8796. string[] clients = new string[] { };
  8797. if (hr.GuestName.Contains(","))
  8798. {
  8799. clients = hr.GuestName.Split(",");
  8800. }
  8801. else
  8802. {
  8803. clients = new string[] { hr.GuestName };
  8804. }
  8805. List<int> clientIds_int = new List<int>();
  8806. if (clients.Length > 0)
  8807. {
  8808. foreach (var item in clients)
  8809. {
  8810. if (item.IsNumeric())
  8811. {
  8812. clientIds_int.Add(int.Parse(item));
  8813. }
  8814. }
  8815. }
  8816. if (clientIds_int.Count > 0)
  8817. {
  8818. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8819. foreach (var client in _clientDatas)
  8820. {
  8821. //男
  8822. if (client.Sex == 0) guestName += $"Mr.";
  8823. //女
  8824. else if (client.Sex == 1) guestName += $"Ms.";
  8825. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8826. {
  8827. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8828. }
  8829. //guestName += $"{client.Pinyin},";
  8830. }
  8831. if (guestName.Length > 0)
  8832. {
  8833. guestName = guestName.Substring(0, guestName.Length - 1);
  8834. }
  8835. }
  8836. else
  8837. {
  8838. guestName = hr.GuestName;
  8839. }
  8840. Bookmark mark = doc.Range.Bookmarks["GName"];
  8841. mark.Text = guestName;
  8842. }
  8843. //房间介绍
  8844. if (doc.Range.Bookmarks["ROOM"] != null)
  8845. {
  8846. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8847. mark.Text = hr.RoomExplanation;
  8848. }
  8849. //报价描述
  8850. if (doc.Range.Bookmarks["NOTE"] != null)
  8851. {
  8852. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8853. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8854. if (ss != null)
  8855. mark.Text = ss.Name;
  8856. }
  8857. //入住时间
  8858. if (doc.Range.Bookmarks["CheckIn"] != null)
  8859. {
  8860. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8861. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8862. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8863. }
  8864. //退房时间
  8865. if (doc.Range.Bookmarks["CheckOut"] != null)
  8866. {
  8867. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8868. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8869. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8870. }
  8871. //日期
  8872. if (doc.Range.Bookmarks["DT"] != null)
  8873. {
  8874. Bookmark mark = doc.Range.Bookmarks["DT"];
  8875. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8876. }
  8877. //名称
  8878. if (doc.Range.Bookmarks["VName"] != null)
  8879. {
  8880. Bookmark mark = doc.Range.Bookmarks["VName"];
  8881. mark.Text = hr.HotelName;
  8882. }
  8883. //号码
  8884. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8885. {
  8886. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8887. mark.Text = hr.CheckNumber;
  8888. }
  8889. #endregion
  8890. strFileName += "VOUCHER.doc";
  8891. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8892. doc.Save(fileDir);
  8893. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8894. return Ok(JsonView(true, "操作成功!", Url));
  8895. }
  8896. else
  8897. {
  8898. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8899. }
  8900. }
  8901. else
  8902. {
  8903. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8904. }
  8905. }
  8906. catch (Exception ex)
  8907. {
  8908. return Ok(JsonView(false, ex.Message));
  8909. }
  8910. }
  8911. /// <summary>
  8912. /// 酒店预订
  8913. /// 生成VOUCHER
  8914. /// 2024.05.06 之后版本
  8915. /// </summary>
  8916. /// <param name="_dto"></param>
  8917. /// <returns></returns>
  8918. [HttpPost]
  8919. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8920. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8921. {
  8922. #region 参数验证
  8923. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8924. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8925. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8926. #region 团组操作权限验证 76 酒店预定模块
  8927. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8928. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8929. #endregion
  8930. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8931. #region 页面操作权限验证
  8932. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8933. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8934. #endregion
  8935. #endregion
  8936. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8937. //判断数据是否完整
  8938. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8939. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8940. string strFileName = "HotelStatement/";
  8941. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8942. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8943. #region 数据处理
  8944. List<int> guestIds = new List<int>();
  8945. int index = 0;
  8946. foreach (var item in hrDtas)
  8947. {
  8948. if (item.GuestName.Contains(","))
  8949. {
  8950. string[] guestIdArr = item.GuestName.Split(',');
  8951. foreach (var guestIdStr in guestIdArr)
  8952. {
  8953. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8954. if (guestBool)
  8955. {
  8956. guestIds.Add(guestId);
  8957. }
  8958. }
  8959. }
  8960. else guestNames += item.GuestName;
  8961. var voucherInfo = new HotelVoucherInfoView()
  8962. {
  8963. HotelName = item.HotelName,
  8964. CheckInDate = item.CheckInDate,
  8965. CheckOutDate = item.CheckOutDate,
  8966. ConfirmationNumber = item.DetermineNo.Trim(),
  8967. RoomType = item.RoomExplanation
  8968. };
  8969. vouchers.Add(voucherInfo);
  8970. }
  8971. if (guestIds.Count > 0)
  8972. {
  8973. guestIds = guestIds.Distinct().ToList();
  8974. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8975. if (guestDatas.Count > 0)
  8976. {
  8977. guestNames = "";
  8978. foreach (var guest in guestDatas)
  8979. {
  8980. string guestName = "";
  8981. if (guest.Sex == 0) guestName += @"MR.";
  8982. else if (guest.Sex == 1) guestName += @"MS.";
  8983. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8984. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8985. guestNames += @$"{guestName.Trim()}、";
  8986. }
  8987. if (guestNames.Length > 0)
  8988. {
  8989. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8990. }
  8991. }
  8992. }
  8993. #endregion
  8994. //载入模板
  8995. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8996. Document doc = new Document(sss);
  8997. DocumentBuilder builder = new DocumentBuilder(doc);
  8998. if (doc.Range.Bookmarks["GuestName"] != null)
  8999. {
  9000. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9001. mark.Text = guestNames;
  9002. }
  9003. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9004. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9005. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9006. for (int i = 1; i <= vouchers.Count; i++)
  9007. {
  9008. HotelVoucherInfoView hviv = vouchers[i - 1];
  9009. builder.MoveToCell(0, i, 0, 0);
  9010. builder.Write(hviv.HotelName);
  9011. builder.MoveToCell(0, i, 1, 0);
  9012. builder.Write(hviv.CheckInDate);
  9013. builder.MoveToCell(0, i, 2, 0);
  9014. builder.Write(hviv.CheckOutDate);
  9015. builder.MoveToCell(0, i, 3, 0);
  9016. builder.Write(hviv.RoomType);
  9017. builder.MoveToCell(0, i, 4, 0);
  9018. builder.Write(hviv.ConfirmationNumber);
  9019. }
  9020. //删除多余行
  9021. int currRowIndex = vouchers.Count + 1;
  9022. int delRows = 21 - currRowIndex;
  9023. if (delRows > 0)
  9024. {
  9025. for (int i = 0; i < delRows; i++)
  9026. {
  9027. table.Rows.RemoveAt(currRowIndex);
  9028. //cultivateRowIndex++;
  9029. }
  9030. }
  9031. strFileName += "VOUCHER.docx";
  9032. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9033. doc.Save(fileDir);
  9034. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9035. return Ok(JsonView(true, "操作成功!", Url));
  9036. }
  9037. /// <summary>
  9038. /// 酒店预订
  9039. /// 生成 预定成本 Excel
  9040. /// </summary>
  9041. /// <param name="_dto"></param>
  9042. /// <returns></returns>
  9043. [HttpPost]
  9044. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9045. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9046. {
  9047. #region 参数验证
  9048. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9049. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9050. if (!vadalitorRes.IsValid)
  9051. {
  9052. var errors = new StringBuilder();
  9053. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9054. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  9055. }
  9056. #region 团组操作权限验证 76 酒店预定模块
  9057. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9058. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9059. #endregion
  9060. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9061. #region 页面操作权限验证
  9062. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9063. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9064. #endregion
  9065. #endregion
  9066. decimal _rate = 1.00M;
  9067. string _currency = "";
  9068. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9069. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9070. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  9071. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9072. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  9073. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9074. {
  9075. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  9076. }
  9077. _currency = _GroupCostParameter.Currency;
  9078. bool isIntType = int.TryParse(_currency, out int currId);
  9079. if (isIntType)
  9080. {
  9081. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9082. }
  9083. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9084. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9085. if (currInfo == null)
  9086. {
  9087. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  9088. }
  9089. if (!_currency.ToUpper().Equals("CNY"))
  9090. {
  9091. _rate = _GroupCostParameter.Rate;
  9092. }
  9093. _rate = currInfo.Rate;
  9094. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9095. string strFileName = "HotelStatement/";
  9096. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9097. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9098. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  9099. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  9100. #region 数据处理
  9101. foreach (var item in hrDtas)
  9102. {
  9103. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9104. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  9105. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  9106. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  9107. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  9108. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  9109. string singleRoomFeeStr = string.Empty,
  9110. doubleRoomFeeStr = string.Empty,
  9111. suiteRoomFeeStr = string.Empty,
  9112. otherRoomFeeStr = string.Empty,
  9113. payMoneyStr = string.Empty,
  9114. cardPriceStr = string.Empty;
  9115. if (roomCurr.Equals(_currency))
  9116. {
  9117. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9118. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9119. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9120. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9121. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9122. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9123. }
  9124. else
  9125. {
  9126. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9127. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9128. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9129. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9130. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9131. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9132. }
  9133. string breakfastPriceStr = string.Empty,
  9134. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9135. governmentRentStr = string.Empty,
  9136. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9137. cityTaxStrStr = string.Empty,
  9138. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9139. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  9140. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  9141. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  9142. pcfds.Add(new HotelReservations_PCFD_View()
  9143. {
  9144. City = item.City,
  9145. HotelName = item.HotelName,
  9146. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9147. // SingleRoomCount = item.SingleRoomCount,
  9148. SingleRoomPrice = singleRoomFeeStr,
  9149. // DoubleRoomCount = item.DoubleRoomCount,
  9150. DoubleRoomPrice = doubleRoomFeeStr,
  9151. //SuiteRoomCount = item.SuiteRoomCount,
  9152. SuiteRoomPrice = suiteRoomFeeStr,
  9153. OtherRoomPrice = otherRoomFeeStr,
  9154. //OtherRoomCount = item.OtherRoomCount,
  9155. BreakfastPrice = breakfastPriceStr,
  9156. GovernmentRent = governmentRentStr,
  9157. CityTax = cityTaxStrStr,
  9158. RoomExplanation = item.RoomExplanation,
  9159. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  9160. PayTime = roomInfo.ConsumptionDate,
  9161. BankNo = roomInfo.BankNo,
  9162. PayMoney = payMoneyStr,
  9163. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9164. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  9165. CardPrice = cardPriceStr,
  9166. Remark = ccpInfo.Remark
  9167. });
  9168. }
  9169. #endregion
  9170. //载入模板
  9171. WorkbookDesigner designer = new WorkbookDesigner();
  9172. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9173. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9174. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9175. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9176. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9177. designer.SetDataSource("Opertor", userInfo.CnName);
  9178. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9179. dt.TableName = "ViewMyHotelReservations";
  9180. designer.SetDataSource(dt);
  9181. designer.Process();
  9182. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  9183. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9184. designer.Workbook.Save(serverPath);
  9185. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9186. #region 删除指定行
  9187. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  9188. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9189. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9190. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9191. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9192. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9193. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9194. cssIndex = dt.Columns["CityTax"].Ordinal,
  9195. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9196. remarkIndex = dt.Columns["Remark"].Ordinal;
  9197. //删除指定列
  9198. foreach (DataRow item in dt.Rows)
  9199. {
  9200. string singleStr = item["SingleRoomPrice"].ToString();
  9201. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9202. if (containsDigitButNotZero1) singleDel = false;
  9203. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9204. string doubleStr = item["DoubleRoomPrice"].ToString();
  9205. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9206. if (containsDigitButNotZero2) doubleDel = false;
  9207. string suiteStr = item["SuiteRoomPrice"].ToString();
  9208. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9209. if (containsDigitButNotZero3) suiteDel = false;
  9210. string otherStr = item["OtherRoomPrice"].ToString();
  9211. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9212. if (containsDigitButNotZero4) otherDel = false;
  9213. string zcStr = item["BreakfastPrice"].ToString();
  9214. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9215. if (containsDigitButNotZero5) zcDel = false;
  9216. string dsStr = item["GovernmentRent"].ToString();
  9217. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9218. if (containsDigitButNotZero6) dsDel = false;
  9219. string cssStr = item["CityTax"].ToString();
  9220. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9221. if (containsDigitButNotZero7) cssDel = false;
  9222. string cpStr = item["ConsumptionPatterns"].ToString();
  9223. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9224. string remarkStr = item["Remark"].ToString();
  9225. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9226. }
  9227. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9228. DeleteColumn(serverPath, cpIndex, cpDel);
  9229. DeleteColumn(serverPath, dsIndex, dsDel);
  9230. DeleteColumn(serverPath, cssIndex, cssDel);
  9231. DeleteColumn(serverPath, zcIndex, zcDel);
  9232. DeleteColumn(serverPath, otherIndex, otherDel);
  9233. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9234. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9235. DeleteColumn(serverPath, singleIndex, singleDel);
  9236. #endregion
  9237. //只保留第一个表格
  9238. DeleteSheet(serverPath);
  9239. return Ok(JsonView(true, "操作成功", url = rst));
  9240. }
  9241. /// <summary>
  9242. /// 删除指定列
  9243. /// </summary>
  9244. /// <param name="file"></param>
  9245. /// <param name="columnIndex"></param>
  9246. /// <param name="isDel"></param>
  9247. private void DeleteColumn(string file, int columnIndex, bool isDel)
  9248. {
  9249. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9250. //wb.Save(file);
  9251. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9252. if (sheet1 != null)
  9253. {
  9254. if (isDel)
  9255. {
  9256. Cells cells = sheet1.Cells;
  9257. cells.DeleteColumn(columnIndex);
  9258. }
  9259. }
  9260. wb.Save(file);
  9261. }
  9262. /// <summary>
  9263. /// 删除sheet
  9264. /// </summary>
  9265. /// <param name="file"></param>
  9266. /// <param name="sheetName"></param>
  9267. private void DeleteSheet(string file, string sheetName = "")
  9268. {
  9269. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9270. //wb.Save(file);
  9271. List<string> sheets = new List<string>();
  9272. foreach (var item in wb.Worksheets)
  9273. {
  9274. sheets.Add(item.Name);
  9275. }
  9276. if (sheets.Count > 0)
  9277. {
  9278. sheets.RemoveAt(0);//不删除第一个sheet
  9279. foreach (var item in sheets)
  9280. {
  9281. wb.Worksheets.RemoveAt(item);
  9282. }
  9283. }
  9284. wb.Save(file);
  9285. }
  9286. /// <summary>
  9287. /// 酒店预订
  9288. /// 确认单
  9289. /// </summary>
  9290. /// <param name="_dto"></param>
  9291. /// <returns></returns>
  9292. [HttpPost]
  9293. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9294. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9295. {
  9296. try
  9297. {
  9298. #region 参数验证
  9299. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9300. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9301. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9302. #region 团组操作权限验证 76 酒店预定模块
  9303. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9304. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9305. #endregion
  9306. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9307. #region 页面操作权限验证
  9308. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9309. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9310. #endregion
  9311. #endregion
  9312. //团组信息
  9313. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9314. //酒店数据
  9315. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9316. if (listhoteldata.Count < 0)
  9317. {
  9318. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9319. }
  9320. //利datatable存储
  9321. DataTable dt = new DataTable();
  9322. dt.Columns.Add("CheckInDate", typeof(string));
  9323. dt.Columns.Add("City", typeof(string));
  9324. dt.Columns.Add("Hotel", typeof(string));
  9325. dt.Columns.Add("Room", typeof(string));
  9326. for (int i = 0; i < listhoteldata.Count; i++)
  9327. {
  9328. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9329. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9330. while (dayStart < dayEnd)
  9331. {
  9332. string temp = "";
  9333. DataRow row = dt.NewRow();
  9334. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9335. row["City"] = listhoteldata[i].City;
  9336. row["Hotel"] = listhoteldata[i].HotelName;
  9337. if (listhoteldata[i].SingleRoomCount > 0)
  9338. {
  9339. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9340. }
  9341. if (listhoteldata[i].DoubleRoomCount > 0)
  9342. {
  9343. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9344. }
  9345. if (listhoteldata[i].SuiteRoomCount > 0)
  9346. {
  9347. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9348. }
  9349. if (listhoteldata[i].OtherRoomCount > 0)
  9350. {
  9351. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9352. }
  9353. row["Room"] = temp;
  9354. dt.Rows.Add(row);
  9355. dayStart = dayStart.AddDays(1);
  9356. }
  9357. }
  9358. Dictionary<string, string> dic = new Dictionary<string, string>();
  9359. dic.Add("Dele", di.TeamName);
  9360. dic.Add("City", di.VisitCountry);
  9361. //模板路径
  9362. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9363. //载入模板
  9364. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9365. DocumentBuilder builder = new DocumentBuilder(doc);
  9366. foreach (var key in dic.Keys)
  9367. {
  9368. builder.MoveToBookmark(key);
  9369. builder.Write(dic[key]);
  9370. }
  9371. //获取word里所有表格
  9372. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9373. //获取所填表格的序数
  9374. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9375. var rowStart = tableOne.Rows[0]; //获取第1行
  9376. //循环赋值
  9377. for (int i = 0; i < dt.Rows.Count; i++)
  9378. {
  9379. builder.MoveToCell(0, i + 1, 0, 0);
  9380. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9381. builder.MoveToCell(0, i + 1, 1, 0);
  9382. builder.Write(dt.Rows[i]["City"].ToString());
  9383. builder.MoveToCell(0, i + 1, 2, 0);
  9384. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9385. builder.MoveToCell(0, i + 1, 3, 0);
  9386. builder.Write(dt.Rows[i]["Room"].ToString());
  9387. }
  9388. //删除多余行
  9389. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9390. {
  9391. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9392. }
  9393. string strFileName = di.TeamName + "酒店确认单.doc";
  9394. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9395. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9396. return Ok(JsonView(true, "成功", url));
  9397. }
  9398. catch (Exception ex)
  9399. {
  9400. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9401. }
  9402. }
  9403. #endregion
  9404. #region 团组状态
  9405. /// <summary>
  9406. /// 团组状态列表 Page
  9407. /// </summary>
  9408. /// <param name="dto">团组列表请求dto</param>
  9409. /// <returns></returns>
  9410. [HttpPost]
  9411. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9412. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9413. {
  9414. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9415. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9416. {
  9417. string sqlWhere = string.Empty;
  9418. if (dto.IsSure == 0) //未完成
  9419. {
  9420. sqlWhere += string.Format(@" And IsSure = 0");
  9421. }
  9422. else if (dto.IsSure == 1) //已完成
  9423. {
  9424. sqlWhere += string.Format(@" And IsSure = 1");
  9425. }
  9426. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9427. {
  9428. string tj = dto.SearchCriteria;
  9429. 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}%')",
  9430. tj, tj, tj, tj, tj);
  9431. }
  9432. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9433. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9434. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9435. From (
  9436. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9437. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9438. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9439. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9440. From Grp_DelegationInfo gdi
  9441. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9442. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9443. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9444. Where gdi.IsDel = 0 {0}
  9445. ) temp ", sqlWhere);
  9446. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9447. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9448. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9449. }
  9450. else
  9451. {
  9452. return Ok(JsonView(false, "查询失败"));
  9453. }
  9454. }
  9455. /// <summary>
  9456. /// 团组状态
  9457. /// 设置操作完成
  9458. /// </summary>
  9459. /// <param name="dto">团组列表请求dto</param>
  9460. /// <returns></returns>
  9461. [HttpPost]
  9462. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9463. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9464. {
  9465. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9466. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9467. {
  9468. Id = dto.Id,
  9469. IsSure = 1
  9470. };
  9471. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9472. .UpdateColumns(it => new { it.IsSure })
  9473. .WhereColumns(it => new { it.Id })
  9474. .ExecuteCommandAsync();
  9475. if (result > 0)
  9476. {
  9477. return Ok(JsonView(true, "操作完成!"));
  9478. }
  9479. return Ok(JsonView(false, "操作失败!"));
  9480. }
  9481. #endregion
  9482. #region 保险费用录入
  9483. /// <summary>
  9484. /// 根据团组Id查询保险费用列表
  9485. /// </summary>
  9486. /// <param name="dto"></param>
  9487. /// <returns></returns>
  9488. [HttpPost]
  9489. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9490. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9491. {
  9492. try
  9493. {
  9494. Result groupData = await _customersRep.CustomersByDiId(dto);
  9495. if (groupData.Code != 0)
  9496. {
  9497. return Ok(JsonView(false, groupData.Msg));
  9498. }
  9499. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9500. }
  9501. catch (Exception ex)
  9502. {
  9503. return Ok(JsonView(false, ex.Message));
  9504. }
  9505. }
  9506. /// <summary>
  9507. /// 根据保险费用Id查询保险费用详细
  9508. /// </summary>
  9509. /// <param name="dto"></param>
  9510. /// <returns></returns>
  9511. [HttpPost]
  9512. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9513. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9514. {
  9515. try
  9516. {
  9517. Result groupData = await _customersRep.CustomersById(dto);
  9518. if (groupData.Code != 0)
  9519. {
  9520. return Ok(JsonView(false, groupData.Msg));
  9521. }
  9522. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9523. }
  9524. catch (Exception ex)
  9525. {
  9526. return Ok(JsonView(false, ex.Message));
  9527. }
  9528. }
  9529. /// <summary>
  9530. /// 保险费用录入页面初始化绑定
  9531. /// </summary>
  9532. /// <param name="dto"></param>
  9533. /// <returns></returns>
  9534. [HttpPost]
  9535. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9536. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9537. {
  9538. try
  9539. {
  9540. Result groupData = await _customersRep.CustomersInitialize(dto);
  9541. if (groupData.Code != 0)
  9542. {
  9543. return Ok(JsonView(false, groupData.Msg));
  9544. }
  9545. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9546. }
  9547. catch (Exception ex)
  9548. {
  9549. return Ok(JsonView(false, ex.Message));
  9550. }
  9551. }
  9552. /// <summary>
  9553. /// 保险费用操作(Status:1.新增,2.修改)
  9554. /// </summary>
  9555. /// <param name="dto"></param>
  9556. /// <returns></returns>
  9557. [HttpPost]
  9558. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9559. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9560. {
  9561. try
  9562. {
  9563. Result groupData = await _customersRep.OpCustomers(dto);
  9564. if (groupData.Code != 0)
  9565. {
  9566. return Ok(JsonView(false, groupData.Msg));
  9567. }
  9568. #region 应用推送
  9569. try
  9570. {
  9571. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9572. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9573. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9574. }
  9575. catch (Exception ex)
  9576. {
  9577. }
  9578. #endregion
  9579. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9580. }
  9581. catch (Exception ex)
  9582. {
  9583. return Ok(JsonView(false, ex.Message));
  9584. }
  9585. }
  9586. /// <summary>
  9587. /// 保险文件上传
  9588. /// </summary>
  9589. /// <param name="file"></param>
  9590. /// <returns></returns>
  9591. [HttpPost]
  9592. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9593. public async Task<IActionResult> UploadCus(IFormFile file)
  9594. {
  9595. try
  9596. {
  9597. if (file != null)
  9598. {
  9599. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9600. //文件名称
  9601. string projectFileName = file.FileName;
  9602. //上传的文件的路径
  9603. string filePath = "";
  9604. if (!Directory.Exists(fileDir))
  9605. {
  9606. Directory.CreateDirectory(fileDir);
  9607. }
  9608. //上传的文件的路径
  9609. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9610. using (FileStream fs = System.IO.File.Create(filePath))
  9611. {
  9612. file.CopyTo(fs);
  9613. fs.Flush();
  9614. }
  9615. return Ok(JsonView(true, "上传成功!", projectFileName));
  9616. }
  9617. else
  9618. {
  9619. return Ok(JsonView(false, "上传失败!"));
  9620. }
  9621. }
  9622. catch (Exception ex)
  9623. {
  9624. return Ok(JsonView(false, "程序错误!"));
  9625. throw;
  9626. }
  9627. }
  9628. /// <summary>
  9629. /// 保险删除指定文件
  9630. /// </summary>
  9631. /// <param name="dto"></param>
  9632. /// <returns></returns>
  9633. [HttpPost]
  9634. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9635. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9636. {
  9637. try
  9638. {
  9639. string filePath = "";
  9640. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9641. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9642. //int id = 0;
  9643. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9644. // 删除该文件
  9645. try
  9646. {
  9647. System.IO.File.Delete(filePath);
  9648. 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()
  9649. {
  9650. Attachment = "",
  9651. }).ExecuteCommandAsync();
  9652. if (result != 0)
  9653. {
  9654. return Ok(JsonView(true, "成功!"));
  9655. }
  9656. else
  9657. {
  9658. return Ok(JsonView(false, "失败!"));
  9659. }
  9660. }
  9661. catch (Exception)
  9662. {
  9663. 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()
  9664. {
  9665. Attachment = "",
  9666. }).ExecuteCommandAsync();
  9667. if (result != 0)
  9668. {
  9669. return Ok(JsonView(true, "成功!"));
  9670. }
  9671. else
  9672. {
  9673. return Ok(JsonView(false, "失败!"));
  9674. }
  9675. }
  9676. }
  9677. catch (Exception ex)
  9678. {
  9679. return Ok(JsonView(false, "程序错误!"));
  9680. throw;
  9681. }
  9682. }
  9683. /// <summary>
  9684. /// 保险费用操作(删除)
  9685. /// </summary>
  9686. /// <param name="dto"></param>
  9687. /// <returns></returns>
  9688. [HttpPost]
  9689. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9690. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9691. {
  9692. try
  9693. {
  9694. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9695. if (!res)
  9696. {
  9697. return Ok(JsonView(false, "删除失败"));
  9698. }
  9699. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9700. {
  9701. IsDel = 1,
  9702. DeleteUserId = dto.DeleteUserId,
  9703. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9704. }).ExecuteCommandAsync();
  9705. return Ok(JsonView(true, "删除成功!"));
  9706. }
  9707. catch (Exception ex)
  9708. {
  9709. return Ok(JsonView(false, "程序错误!"));
  9710. throw;
  9711. }
  9712. }
  9713. #endregion
  9714. #region 接团客户名单 PageId 104
  9715. /// <summary>
  9716. /// 接团客户名单
  9717. /// 迁移数据(慎用!)
  9718. /// </summary>
  9719. /// <param name="dto"></param>
  9720. /// <returns></returns>
  9721. [HttpPost]
  9722. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9723. public async Task<IActionResult> PostTourClientListChange()
  9724. {
  9725. try
  9726. {
  9727. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9728. //var groupClinetData1
  9729. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9730. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9731. int updateCount = 0;
  9732. if (oldOAClientList.Count > 0)
  9733. {
  9734. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9735. _sqlSugar.BeginTran();
  9736. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9737. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9738. foreach (var item in oldOAClientList)
  9739. {
  9740. int comId = 0;
  9741. string format = "yyyy-MM-dd HH:mm:ss";
  9742. string data11 = "1990-01-01 00:00";
  9743. var data1 = IsValidDate(item.OPdate, format);
  9744. if (data1) data11 = item.OPdate;
  9745. //客户公司验证
  9746. if (!string.IsNullOrEmpty(item.Company))
  9747. {
  9748. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9749. if (clientComInfo == null) // add
  9750. {
  9751. var addInfo = new Crm_CustomerCompany()
  9752. {
  9753. CompanyAbbreviation = "",
  9754. CompanyFullName = item.Company,
  9755. Address = "",
  9756. PostCodes = "",
  9757. LastedOpUserId = item.OPer,
  9758. LastedOpDt = Convert.ToDateTime(data11),
  9759. CreateUserId = item.OPer,
  9760. CreateTime = Convert.ToDateTime(data11),
  9761. IsDel = 0
  9762. };
  9763. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9764. if (comId1 > 0) comId = comId1;
  9765. }
  9766. else comId = clientComInfo.Id;
  9767. }
  9768. //客户人员验证
  9769. int clientId = 0;
  9770. string name = item.LastName + item.Name;
  9771. if (!string.IsNullOrEmpty(name))
  9772. {
  9773. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9774. if (clientInfo == null)
  9775. {
  9776. DateTime? dateTime = null;
  9777. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9778. if (isDt) dateTime = birthDayDt;
  9779. var addInfo1 = new Crm_DeleClient()
  9780. {
  9781. CrmCompanyId = comId,
  9782. DiId = -1,
  9783. LastName = item.LastName,
  9784. FirstName = item.Name,
  9785. OldName = "",
  9786. Pinyin = item.Pinyin,
  9787. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9788. Marriage = 0,
  9789. Phone = item.Phone,
  9790. Job = item.Job,
  9791. BirthDay = dateTime
  9792. };
  9793. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9794. if (clientId1 > 0) clientId = clientId1;
  9795. }
  9796. else clientId = clientInfo.Id;
  9797. }
  9798. if (clientId < 1)
  9799. {
  9800. continue;
  9801. }
  9802. int airType = 0;
  9803. if (item.AirType == "超经舱") airType = 459;
  9804. else if (item.AirType == "公务舱") airType = 458;
  9805. else if (item.AirType == "经济舱") airType = 460;
  9806. else if (item.AirType == "其他") airType = 565;
  9807. else if (item.AirType == "头等舱") airType = 457;
  9808. var _TourClientListEntity = new Grp_TourClientList()
  9809. {
  9810. DiId = item.Diid,
  9811. ClientId = clientId,
  9812. CreateUserId = item.OPer,
  9813. CreateTime = Convert.ToDateTime(data11),
  9814. Remark = item.Remark,
  9815. IsDel = item.Isdel,
  9816. ShippingSpaceTypeId = airType,
  9817. ShippingSpaceSpecialNeeds = item.AirRemark,
  9818. HotelSpecialNeeds = item.RoomType
  9819. };
  9820. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9821. if (_TourClientList > 0)
  9822. {
  9823. updateCount++;
  9824. }
  9825. }
  9826. _sqlSugar.CommitTran();
  9827. }
  9828. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9829. }
  9830. catch (Exception ex)
  9831. {
  9832. _sqlSugar.RollbackTran();
  9833. return Ok(JsonView(false, ex.Message));
  9834. }
  9835. return Ok(JsonView(true));
  9836. }
  9837. private bool IsValidDate(string dateString, string format)
  9838. {
  9839. DateTime dateValue;
  9840. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9841. return valid;
  9842. }
  9843. /// <summary>
  9844. /// 接团客户名单
  9845. /// 根据团组Id查询List
  9846. /// </summary>
  9847. /// <param name="dto"></param>
  9848. /// <returns></returns>
  9849. [HttpPost]
  9850. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9851. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9852. {
  9853. #region 参数验证
  9854. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9855. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9856. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9857. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9858. #region 页面操作权限验证
  9859. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9860. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9861. #endregion
  9862. #endregion
  9863. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9864. if (viewData.Code != 0)
  9865. {
  9866. return Ok(JsonView(false, viewData.Msg));
  9867. }
  9868. return Ok(JsonView(viewData.Data));
  9869. }
  9870. /// <summary>
  9871. /// 接团客户名单
  9872. /// 基础数据 Init
  9873. /// </summary>
  9874. /// <param name="_dto"></param>
  9875. /// <returns></returns>
  9876. [HttpPost]
  9877. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9878. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9879. {
  9880. #region 参数验证
  9881. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9882. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9883. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9884. #region 页面操作权限验证
  9885. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9886. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9887. #endregion
  9888. #endregion
  9889. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9890. if (viewData.Code != 0)
  9891. {
  9892. return Ok(JsonView(false, viewData.Msg));
  9893. }
  9894. return Ok(JsonView(viewData.Data));
  9895. }
  9896. /// <summary>
  9897. /// 接团客户名单
  9898. /// 根据 Id查询 Details
  9899. /// </summary>
  9900. /// <param name="_dto"></param>
  9901. /// <returns></returns>
  9902. [HttpPost]
  9903. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9904. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9905. {
  9906. #region 参数验证
  9907. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9908. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9909. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9910. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9911. #region 页面操作权限验证
  9912. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9913. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9914. #endregion
  9915. #endregion
  9916. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9917. if (viewData.Code != 0)
  9918. {
  9919. return Ok(JsonView(false, viewData.Msg));
  9920. }
  9921. return Ok(JsonView(viewData.Data));
  9922. }
  9923. /// <summary>
  9924. /// 接团客户名单
  9925. /// Add Or Edit
  9926. /// </summary>
  9927. /// <param name="_dto"></param>
  9928. /// <returns></returns>
  9929. [HttpPost]
  9930. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9931. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9932. {
  9933. #region 参数验证
  9934. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9935. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9936. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9937. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9938. #region 页面操作权限验证
  9939. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9940. if (_dto.Id == 0) //添加
  9941. {
  9942. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9943. }
  9944. else if (_dto.Id >= 0) //修改
  9945. {
  9946. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9947. }
  9948. #endregion
  9949. #endregion
  9950. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9951. if (viewData.Code != 0)
  9952. {
  9953. return Ok(JsonView(false, viewData.Msg));
  9954. }
  9955. return Ok(JsonView(true));
  9956. }
  9957. /// <summary>
  9958. /// 接团客户名单
  9959. /// AddMultiple(添加多个)
  9960. /// </summary>
  9961. /// <param name="_dto"></param>
  9962. /// <returns></returns>
  9963. [HttpPost]
  9964. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9965. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9966. {
  9967. #region 参数验证
  9968. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9969. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9970. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9971. #region 页面操作权限验证
  9972. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9973. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9974. #endregion
  9975. #endregion
  9976. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9977. if (viewData.Code != 0)
  9978. {
  9979. return Ok(JsonView(false, viewData.Msg));
  9980. }
  9981. return Ok(JsonView(true));
  9982. }
  9983. /// <summary>
  9984. /// 接团客户名单
  9985. /// Del
  9986. /// </summary>
  9987. /// <param name="_dto"></param>
  9988. /// <returns></returns>
  9989. [HttpPost]
  9990. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9991. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9992. {
  9993. #region 参数验证
  9994. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9995. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9996. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9997. #region 页面操作权限验证
  9998. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9999. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  10000. #endregion
  10001. #endregion
  10002. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  10003. if (viewData.Code != 0)
  10004. {
  10005. return Ok(JsonView(false, viewData.Msg));
  10006. }
  10007. return Ok(JsonView(true));
  10008. }
  10009. /// <summary>
  10010. /// 接团客户名单
  10011. /// 文件下载 客户名单
  10012. /// </summary>
  10013. /// <param name="_dto"></param>
  10014. /// <returns></returns>
  10015. [HttpPost]
  10016. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10017. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  10018. {
  10019. #region 参数验证
  10020. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10021. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10022. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10023. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10024. #region 页面操作权限验证
  10025. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10026. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10027. #endregion
  10028. #endregion
  10029. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10030. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10031. From Grp_TourClientList tcl
  10032. Left Join
  10033. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10034. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10035. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10036. From Crm_DeleClient dc
  10037. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10038. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10039. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10040. Where dc.IsDel = 0) temp
  10041. On temp.DcId =tcl.ClientId
  10042. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10043. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10044. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10045. //载入模板
  10046. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10047. if (_dto.Language == 1)
  10048. {
  10049. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10050. }
  10051. //载入模板
  10052. var doc = new Document(tempPath);
  10053. DocumentBuilder builder = new DocumentBuilder(doc);
  10054. //获取word里所有表格
  10055. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10056. //获取所填表格的序数
  10057. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10058. var rowStart = tableOne.Rows[0]; //获取第1行
  10059. if (_dto.Language == 0)
  10060. {
  10061. //循环赋值
  10062. for (int i = 0; i < DcList.Count; i++)
  10063. {
  10064. builder.MoveToCell(0, i + 1, 0, 0);
  10065. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10066. builder.MoveToCell(0, i + 1, 1, 0);
  10067. int sex = DcList[i].Sex;
  10068. string sexStr = string.Empty;
  10069. if (sex == 0) sexStr = "男";
  10070. else if (sex == 1) sexStr = "女";
  10071. else sexStr = "未设置";
  10072. builder.Write(sexStr);
  10073. builder.MoveToCell(0, i + 1, 2, 0);
  10074. string birthDay = DcList[i].BirthDay;
  10075. string birthDayStr = string.Empty;
  10076. if (!string.IsNullOrEmpty(birthDay))
  10077. {
  10078. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10079. }
  10080. builder.Write(birthDayStr);
  10081. builder.MoveToCell(0, i + 1, 3, 0);
  10082. string company = "";
  10083. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10084. {
  10085. company = DcList[i].CompanyFullName.ToString();
  10086. }
  10087. builder.Write(company);
  10088. builder.MoveToCell(0, i + 1, 4, 0);
  10089. builder.Write(DcList[i].Job);
  10090. }
  10091. }
  10092. else if (_dto.Language == 1)
  10093. {
  10094. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10095. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10096. List<string> transArrayStr = new List<string>();
  10097. string transStrRes1 = "";
  10098. for (int i = 0; i < DcList.Count; i++)
  10099. {
  10100. var dc = DcList[i];
  10101. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  10102. if (dc.Job.Equals("暂无")) dc.Job = "-";
  10103. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  10104. if (DcList.Count - 1 == i) transStrRes1 += str1;
  10105. else transStrRes1 += $"{str1}|";
  10106. }
  10107. //string transStrRes = "0 & Provincial Health & Health Commission Deputy Director | 1 & Provincial People's Hospital & Provincial People's Hospital Chief Accountant | 2 & Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College & North Sichuan Medical College | 3 & Provincial Health Commission Planning & Provincial Health Commission Planning and Information Division Director | 4 &-& Deputy Director | 5 & Provincial Health Commission population and Family Division & Provincial Health Commission population and Family Division Director";
  10108. string transStrRes = "";
  10109. if (transStrRes1.Length > 0 )
  10110. {
  10111. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  10112. }
  10113. //0、 Deputy Director of the Provincial Health and Health Commission | 1、 Chief Accountant of the provincial People's Hospital | 2、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 3、 Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director | 5、 Director of the population and Family Department of the Provincial Health and Health Commission | 3、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 4、 Deputy Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director of the population and Family Department of the Provincial Health and Health Commission | 5、 Director of the population and Family Department of the Provincial Health and Health Commission
  10114. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  10115. //List<string> transArray = new List<string> { };
  10116. List<TranslateInfo> transArray = new List<TranslateInfo>();
  10117. if (transStrRes.Contains("|"))
  10118. {
  10119. string[] transArray1 = transStrRes.Split('|');
  10120. if (transArray1.Length > 0)
  10121. {
  10122. foreach (var item in transArray1)
  10123. {
  10124. if (item.Contains("&"))
  10125. {
  10126. string[] transArray2 = item.Split('&');
  10127. int index = 0;
  10128. string companyName = "", job = "";
  10129. if (transArray2.Length > 0)
  10130. {
  10131. bool success = int.TryParse(transArray2[0].Trim(), out index);
  10132. if (1 < transArray2.Length) companyName = transArray2[1];
  10133. if (2 < transArray2.Length) job = transArray2[2];
  10134. }
  10135. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  10136. }
  10137. }
  10138. }
  10139. }
  10140. //循环赋值
  10141. for (int i = 0; i < DcList.Count; i++)
  10142. {
  10143. string PYName = "";
  10144. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10145. {
  10146. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10147. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10148. PYName = PY_First + " " + PY_Last;
  10149. }
  10150. else
  10151. {
  10152. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10153. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10154. PYName = PY_First + " " + PY_Last;
  10155. }
  10156. builder.MoveToCell(0, i + 1, 0, 0);
  10157. builder.Write(PYName);
  10158. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10159. builder.MoveToCell(0, i + 1, 1, 0);
  10160. builder.Write(sex);
  10161. DateTime birthDt;
  10162. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10163. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  10164. builder.MoveToCell(0, i + 1, 2, 0);
  10165. builder.Write(birthday);
  10166. string company = string.Empty,job = string.Empty;
  10167. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  10168. if (dcTransInfo != null)
  10169. {
  10170. company = dcTransInfo.CompanyName;
  10171. job = dcTransInfo.Job;
  10172. }
  10173. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10174. {
  10175. //查询对照表
  10176. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10177. if (tempCec != null)
  10178. {
  10179. company = tempCec.enName;
  10180. }
  10181. //翻译
  10182. else
  10183. {
  10184. }
  10185. }
  10186. builder.MoveToCell(0, i + 1, 3, 0);
  10187. builder.Write(company);
  10188. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10189. {
  10190. //查询对照表
  10191. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10192. if (tempPec != null)
  10193. {
  10194. job = tempPec.enName;
  10195. }
  10196. //翻译
  10197. else
  10198. {
  10199. }
  10200. }
  10201. builder.MoveToCell(0, i + 1, 4, 0);
  10202. builder.Write(job);
  10203. }
  10204. }
  10205. //删除多余行
  10206. while (tableOne.Rows.Count > DcList.Count + 1)
  10207. {
  10208. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10209. }
  10210. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10211. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10212. doc.Save(fileDir);
  10213. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10214. return Ok(JsonView(true, "操作成功!", Url));
  10215. }
  10216. private class TranslateInfo
  10217. {
  10218. public int Index { get; set; }
  10219. public string CompanyName { get; set; }
  10220. public string Job { get; set; }
  10221. }
  10222. #endregion
  10223. #region 团组倒推表
  10224. /// <summary>
  10225. /// 倒推表基础数据
  10226. /// Init
  10227. /// </summary>
  10228. /// <param name="dto"></param>
  10229. /// <returns></returns>
  10230. [HttpPost]
  10231. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10232. public async Task<IActionResult> PostInvertedListInit()
  10233. {
  10234. var viewData = await _invertedListRep._Init();
  10235. if (viewData.Code != 0)
  10236. {
  10237. return Ok(JsonView(false, viewData.Msg));
  10238. }
  10239. return Ok(JsonView(viewData.Data));
  10240. }
  10241. /// <summary>
  10242. /// 倒推表
  10243. /// Info
  10244. /// </summary>
  10245. /// <param name="dto"></param>
  10246. /// <returns></returns>
  10247. [HttpPost]
  10248. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10249. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10250. {
  10251. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10252. if (viewData.Code != 0)
  10253. {
  10254. return Ok(JsonView(false, viewData.Msg));
  10255. }
  10256. return Ok(JsonView(viewData.Data));
  10257. }
  10258. /// <summary>
  10259. /// 倒推表
  10260. /// Create
  10261. /// </summary>
  10262. /// <param name="dto"></param>
  10263. /// <returns></returns>
  10264. [HttpPost]
  10265. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10266. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10267. {
  10268. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10269. if (viewData.Code != 0)
  10270. {
  10271. return Ok(JsonView(false, viewData.Msg));
  10272. }
  10273. return Ok(JsonView(viewData.Data));
  10274. }
  10275. /// <summary>
  10276. /// 倒推表
  10277. /// Update
  10278. /// </summary>
  10279. /// <param name="dto"></param>
  10280. /// <returns></returns>
  10281. [HttpPost]
  10282. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10283. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10284. {
  10285. var viewData = await _invertedListRep._Update(dto);
  10286. if (viewData.Code != 0)
  10287. {
  10288. return Ok(JsonView(false, viewData.Msg));
  10289. }
  10290. return Ok(JsonView(viewData.Data));
  10291. }
  10292. /// <summary>
  10293. /// 倒推表
  10294. /// File Download
  10295. /// </summary>
  10296. /// <param name="dto"></param>
  10297. /// <returns></returns>
  10298. [HttpPost]
  10299. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10300. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10301. {
  10302. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10303. if (info2.Code != 0)
  10304. {
  10305. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10306. }
  10307. var info1 = info2.Data as InvertedListInfoView;
  10308. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10309. string teamName = "";
  10310. if (info != null) teamName = info.TeamName;
  10311. //载入模板
  10312. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10313. DocumentBuilder builder = new DocumentBuilder(doc);
  10314. //利用键值对存放数据
  10315. Dictionary<string, string> dic = new Dictionary<string, string>();
  10316. dic.Add("TeamName", teamName);
  10317. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10318. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10319. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10320. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10321. dic.Add("SQRemark", info1.ApprovalRemark);
  10322. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10323. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10324. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10325. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10326. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10327. dic.Add("QZRemark", info1.VisaInformationRemark);
  10328. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10329. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10330. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10331. dic.Add("CQRemark", info1.IssueVisaRemark);
  10332. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10333. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10334. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10335. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10336. #region 填充word模板书签内容
  10337. foreach (var key in dic.Keys)
  10338. {
  10339. builder.MoveToBookmark(key);
  10340. builder.Write(dic[key]);
  10341. }
  10342. #endregion
  10343. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10344. string fileName = $"{teamName}团出行准备流程表.doc";
  10345. string filePath = fileDir + $@"InvertedList/{fileName}";
  10346. doc.Save(filePath);
  10347. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10348. return Ok(JsonView(true, "操作成功!", Url));
  10349. }
  10350. #endregion
  10351. #region 三公签证费用(签证费、代办费)
  10352. /// <summary>
  10353. /// 三公签证费用(签证费、代办费)
  10354. /// List
  10355. /// </summary>
  10356. /// <returns></returns>
  10357. [HttpPost]
  10358. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10359. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10360. {
  10361. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10362. if (_view.Code != 0)
  10363. {
  10364. return Ok(JsonView(false, _view.Msg));
  10365. }
  10366. return Ok(JsonView(true, "操作成功!", _view.Data));
  10367. }
  10368. /// <summary>
  10369. /// 三公签证费用(签证费、代办费)
  10370. /// Add Or Update
  10371. /// </summary>
  10372. /// <returns></returns>
  10373. [HttpPost]
  10374. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10375. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10376. {
  10377. var _view = await _visaFeeInfoRep._Update(_dto);
  10378. if (_view.Code != 0)
  10379. {
  10380. return Ok(JsonView(false, _view.Msg));
  10381. }
  10382. return Ok(JsonView(true, _view.Msg));
  10383. }
  10384. #endregion
  10385. #region 酒店询价
  10386. /// <summary>
  10387. /// 酒店询价
  10388. /// Init
  10389. /// </summary>
  10390. /// <param name="dto"></param>
  10391. /// <returns></returns>
  10392. [HttpPost]
  10393. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10394. public async Task<IActionResult> PostHotelInquiryInit()
  10395. {
  10396. var res = await _hotelInquiryRep._Init();
  10397. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10398. return Ok(JsonView(true, res.Msg, res.Data));
  10399. }
  10400. /// <summary>
  10401. /// 酒店询价
  10402. /// page Item
  10403. /// </summary>
  10404. /// <param name="_dto"></param>
  10405. /// <returns></returns>
  10406. [HttpPost]
  10407. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10408. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10409. {
  10410. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10411. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10412. var view = res.Data as PageDataViewBase;
  10413. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10414. }
  10415. /// <summary>
  10416. /// 酒店询价
  10417. /// info
  10418. /// </summary>
  10419. /// <param name="_dto"></param>
  10420. /// <returns></returns>
  10421. [HttpPost]
  10422. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10423. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10424. {
  10425. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10426. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10427. return Ok(JsonView(true, res.Msg, res.Data));
  10428. }
  10429. /// <summary>
  10430. /// 酒店询价
  10431. /// Add Or Edit
  10432. /// </summary>
  10433. /// <param name="_dto"></param>
  10434. /// <returns></returns>
  10435. [HttpPost]
  10436. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10437. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10438. {
  10439. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10440. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10441. return Ok(JsonView(true, res.Msg, res.Data));
  10442. }
  10443. /// <summary>
  10444. /// 酒店询价
  10445. /// Del
  10446. /// </summary>
  10447. /// <param name="_dto"></param>
  10448. /// <returns></returns>
  10449. [HttpPost]
  10450. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10451. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10452. {
  10453. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10454. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10455. return Ok(JsonView(true, res.Msg, res.Data));
  10456. }
  10457. #endregion
  10458. #region 下载匹配op行程单
  10459. /// <summary>
  10460. /// 匹配op行程单
  10461. /// Init
  10462. /// </summary>
  10463. /// <param name="dto">团组列表请求dto</param>
  10464. /// <returns></returns>
  10465. [HttpPost]
  10466. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10467. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10468. {
  10469. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10470. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10471. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10472. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10473. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10474. .Where(it => it.IsDel == 0)
  10475. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10476. .OrderByDescending(it => it.CreateUserId)
  10477. .ToList();
  10478. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10479. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10480. var diids = groupInfos.Select(it => it.Id).ToList();
  10481. List<string> countrys = new List<string>();
  10482. foreach (var item in country)
  10483. {
  10484. var data = _groupRepository.FormartTeamName(item);
  10485. var dataArray = _groupRepository.GroupSplitCountry(data);
  10486. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10487. }
  10488. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10489. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10490. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10491. foreach (var item in areaItem)
  10492. {
  10493. string areaStr = item.Value;
  10494. if (!string.IsNullOrEmpty(areaStr))
  10495. {
  10496. string[] str1 = areaStr.Split("-");
  10497. if (str1.Length > 0)
  10498. {
  10499. areaArray.AddRange(str1);
  10500. }
  10501. }
  10502. }
  10503. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10504. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10505. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10506. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10507. .ToList();
  10508. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10509. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10510. .Where(it => countriesIds.Contains(it.Id))
  10511. .Select(it => new { it.Id, Name = it.Name_CN })
  10512. .ToList();
  10513. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10514. .Select(it => it.TeamName).ToList();
  10515. stopwatch.Stop();
  10516. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10517. }
  10518. ///// <summary>
  10519. ///// 匹配op行程单
  10520. ///// Init 查询区域数据
  10521. ///// </summary>
  10522. ///// <param name="dto">团组列表请求dto</param>
  10523. ///// <returns></returns>
  10524. //[HttpPost]
  10525. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10526. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10527. //{
  10528. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10529. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10530. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10531. // if (string.IsNullOrEmpty(countriesDataStr))
  10532. // {
  10533. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10534. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10535. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10536. // }
  10537. // else
  10538. // {
  10539. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10540. // }
  10541. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10542. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10543. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10544. // List<dynamic> childList = new List<dynamic>();
  10545. // int parentId = dto.CountriesId;
  10546. // if (provinceData.Count > 1)
  10547. // {
  10548. // foreach (var item1 in provinceData)
  10549. // {
  10550. // List<dynamic> childList1 = new List<dynamic>();
  10551. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10552. // foreach (var item2 in citiesData1)
  10553. // {
  10554. // List<dynamic> childList2 = new List<dynamic>();
  10555. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10556. // foreach (var item3 in countiesData1)
  10557. // {
  10558. // childList2.Add(new
  10559. // {
  10560. // id = item3.Id,
  10561. // parentId = item2.Id,
  10562. // level = "district",
  10563. // name = item3.Name_CN,
  10564. // });
  10565. // }
  10566. // childList1.Add(new
  10567. // {
  10568. // id = item2.Id,
  10569. // parentId = item1.Id,
  10570. // level = "city",
  10571. // name = item2.Name_CN,
  10572. // childList = childList2
  10573. // });
  10574. // }
  10575. // childList.Add(new
  10576. // {
  10577. // id = item1.Id,
  10578. // parentId = parentId,
  10579. // level = "province",
  10580. // name = item1.Name_CN,
  10581. // childList = childList1
  10582. // });
  10583. // }
  10584. // //城市
  10585. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10586. // foreach (var item2 in citiesData2)
  10587. // {
  10588. // List<dynamic> childList22 = new List<dynamic>();
  10589. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10590. // foreach (var item3 in countiesData1)
  10591. // {
  10592. // childList22.Add(new
  10593. // {
  10594. // id = item3.Id,
  10595. // parentId = item2.Id,
  10596. // level = "district",
  10597. // name = item3.Name_CN,
  10598. // });
  10599. // }
  10600. // childList.Add(new
  10601. // {
  10602. // id = item2.Id,
  10603. // parentId = parentId,
  10604. // level = "city",
  10605. // name = item2.Name_CN,
  10606. // childList = childList22
  10607. // });
  10608. // }
  10609. // }
  10610. // else
  10611. // {
  10612. // foreach (var item2 in citiesData)
  10613. // {
  10614. // string cname = item2.Name_CN;
  10615. // List<dynamic> childList1 = new List<dynamic>();
  10616. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10617. // foreach (var item3 in countiesData1)
  10618. // {
  10619. // childList1.Add(new
  10620. // {
  10621. // Id = item3.Id,
  10622. // parentId = item2.Id,
  10623. // level = "district",
  10624. // name = item3.Name_CN
  10625. // });
  10626. // }
  10627. // childList.Add(new
  10628. // {
  10629. // id = item2.Id,
  10630. // parentId = parentId,
  10631. // level = "city",
  10632. // name = item2.Name_CN,
  10633. // childList = childList1
  10634. // });
  10635. // }
  10636. // }
  10637. // stopwatch.Stop();
  10638. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10639. //}
  10640. /// <summary>
  10641. /// 匹配op行程单
  10642. /// 接团信息列表 Page
  10643. /// </summary>
  10644. /// <param name="dto">团组列表请求dto</param>
  10645. /// <returns></returns>
  10646. [HttpPost]
  10647. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10648. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10649. {
  10650. var swatch = new Stopwatch();
  10651. swatch.Start();
  10652. #region 参数验证
  10653. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10654. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10655. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10656. #region 页面操作权限验证
  10657. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10658. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10659. #endregion
  10660. #endregion
  10661. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10662. {
  10663. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10664. string sqlWhere = "";
  10665. if (!string.IsNullOrEmpty(dto.Country))
  10666. {
  10667. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10668. }
  10669. if (!string.IsNullOrEmpty(dto.Area))
  10670. {
  10671. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10672. }
  10673. if (!string.IsNullOrEmpty(dto.TeamName))
  10674. {
  10675. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10676. }
  10677. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10678. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10679. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10680. swatch.Stop();
  10681. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10682. }
  10683. else
  10684. {
  10685. return Ok(JsonView(false, "查询失败"));
  10686. }
  10687. }
  10688. /// <summary>
  10689. /// 匹配op行程单
  10690. /// 行程单下载
  10691. /// </summary>
  10692. /// <param name="dto">团组列表请求dto</param>
  10693. /// <returns></returns>
  10694. [HttpPost]
  10695. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10696. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10697. {
  10698. #region 参数验证
  10699. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10700. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10701. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10702. #region 页面操作权限验证
  10703. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10704. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10705. #endregion
  10706. #endregion
  10707. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10708. {
  10709. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10710. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10711. }
  10712. else
  10713. {
  10714. return Ok(JsonView(false, "下载失败!"));
  10715. }
  10716. }
  10717. #endregion
  10718. #region 国家信息 数据 注释
  10719. //[HttpPost]
  10720. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10721. //{
  10722. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10723. // foreach (var item in dto)
  10724. // {
  10725. // infos.Add(new Grp_GroupsTaskAssignment()
  10726. // {
  10727. // DIId = item,
  10728. // CTId = 82,
  10729. // UId = 248,
  10730. // IsEnable = 1,
  10731. // CreateUserId = 233,
  10732. // CreateTime = DateTime.Now,
  10733. // IsDel = 0
  10734. // });
  10735. // infos.Add(new Grp_GroupsTaskAssignment()
  10736. // {
  10737. // DIId = item,
  10738. // CTId = 82,
  10739. // UId = 286,
  10740. // IsEnable = 1,
  10741. // CreateUserId = 233,
  10742. // CreateTime = DateTime.Now,
  10743. // IsDel = 0
  10744. // });
  10745. // }
  10746. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10747. // return Ok("操作成功");
  10748. //}
  10749. //public class paramJsonDto
  10750. //{
  10751. // public List<CountriesInfo> str { get; set; }
  10752. //}
  10753. //[HttpPost]
  10754. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10755. //{
  10756. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10757. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10758. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10759. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10760. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10761. // _sqlSugar.BeginTran();
  10762. // int countitiesIndex = 0;
  10763. // foreach (var item in dto.str)
  10764. // {
  10765. // dynamic data = item.c;
  10766. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10767. // if (data != null)
  10768. // {
  10769. // countitiesIndex++;
  10770. // foreach (var item1 in data)
  10771. // {
  10772. // string cnname = item1.cn;
  10773. // string enname = item1.en;
  10774. // Sys_Cities provinceInfo = new Sys_Cities()
  10775. // {
  10776. // CountriesId = countriesId,
  10777. // Name_CN = cnname,
  10778. // Name_EN = enname,
  10779. // ParentId = 0,
  10780. // IsCapital = 1,
  10781. // CreateUserId = 208,
  10782. // CreateTime = DateTime.Now,
  10783. // IsDel = 0
  10784. // };
  10785. // if (item1.lv == "province") //省份
  10786. // {
  10787. // provinceInfo.Level = 1;
  10788. // int provinceId = 0;
  10789. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10790. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10791. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10792. // var data1 = item1.c;
  10793. // foreach (var item2 in data1)
  10794. // {
  10795. // if (item2.lv == "city")
  10796. // {
  10797. // string citycnname = item2.cn;
  10798. // string cityenname = item2.en;
  10799. // Sys_Cities cityInfo = new Sys_Cities()
  10800. // {
  10801. // CountriesId = countriesId,
  10802. // ParentId = provinceId,
  10803. // Level = 2,
  10804. // Name_CN = citycnname,
  10805. // Name_EN = cityenname,
  10806. // IsCapital = 1,
  10807. // CreateUserId = 208,
  10808. // CreateTime = DateTime.Now,
  10809. // IsDel = 0
  10810. // };
  10811. // if (item2.c != null)
  10812. // {
  10813. // int cityId = 0;
  10814. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10815. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10816. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10817. // foreach (var item3 in item2.c)
  10818. // {
  10819. // if (item3.lv == "district")
  10820. // {
  10821. // var districtInfo = new Sys_Cities()
  10822. // {
  10823. // CountriesId = countriesId,
  10824. // Name_CN = item3.cn,
  10825. // Name_EN = item3.en,
  10826. // Level = 3,
  10827. // ParentId = cityId,
  10828. // IsCapital = 1,
  10829. // CreateUserId = 208,
  10830. // CreateTime = DateTime.Now,
  10831. // IsDel = 0
  10832. // };
  10833. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10834. // //{
  10835. // districts.Add(districtInfo);
  10836. // //}
  10837. // }
  10838. // }
  10839. // }
  10840. // else
  10841. // {
  10842. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10843. // //{
  10844. // cities.Add(cityInfo);
  10845. // //}
  10846. // }
  10847. // }
  10848. // }
  10849. // }
  10850. // else if (item1.lv == "city")//城市
  10851. // {
  10852. // provinceInfo.Level = 2;
  10853. // if (item1.c != null)
  10854. // {
  10855. // int cityId = 0;
  10856. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10857. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10858. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10859. // foreach (var item3 in item1.c)
  10860. // {
  10861. // if (item3.lv == "district")
  10862. // {
  10863. // var districtInfo = new Sys_Cities()
  10864. // {
  10865. // CountriesId = countriesId,
  10866. // Name_CN = item3.cn,
  10867. // Name_EN = item3.en,
  10868. // Level = 3,
  10869. // ParentId = cityId,
  10870. // IsCapital = 1,
  10871. // CreateUserId = 208,
  10872. // CreateTime = DateTime.Now,
  10873. // IsDel = 0
  10874. // };
  10875. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10876. // //{
  10877. // districts.Add(districtInfo);
  10878. // //}
  10879. // }
  10880. // }
  10881. // }
  10882. // else
  10883. // {
  10884. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10885. // //{
  10886. // cities.Add(provinceInfo);
  10887. // //}
  10888. // }
  10889. // }
  10890. // }
  10891. // }
  10892. // }
  10893. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10894. // cities = cities.Distinct().ToList();
  10895. // districts = districts.Distinct().ToList();
  10896. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10897. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10898. // cities.AddRange(districts);
  10899. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10900. // //_sqlSugar.RollbackTran();
  10901. // _sqlSugar.CommitTran();
  10902. // return Ok(JsonView(false, "操作成功!"));
  10903. //}
  10904. //[HttpPost]
  10905. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10906. //{
  10907. // List<CountitiesInfo> infos = dto.MyProperty;
  10908. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10909. // _sqlSugar.BeginTran();
  10910. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10911. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10912. // foreach (var item in infos)
  10913. // {
  10914. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10915. // if (countryInfo != null)
  10916. // {
  10917. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10918. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10919. // if (cityInfo1 != null)
  10920. // {
  10921. // cityInfo1.IsCapital = 0;
  10922. // cityInfos.Add(cityInfo1);
  10923. // }
  10924. // }
  10925. // }
  10926. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10927. // .UpdateColumns(it => it.IsCapital)
  10928. // .WhereColumns(it => it.Id)
  10929. // .ExecuteCommand();
  10930. // //_sqlSugar.RollbackTran();
  10931. // _sqlSugar.CommitTran();
  10932. // return Ok(JsonView(false, "操作成功!"));
  10933. //}
  10934. //public class CounrtiesDto
  10935. //{
  10936. // public List<CountitiesInfo> MyProperty { get; set; }
  10937. //}
  10938. //public class CountitiesInfo
  10939. //{
  10940. // /// <summary>
  10941. // /// 圣约翰
  10942. // /// </summary>
  10943. // public string capital_name_chinese { get; set; }
  10944. // /// <summary>
  10945. // ///
  10946. // /// </summary>
  10947. // public string capital_name { get; set; }
  10948. // /// <summary>
  10949. // ///
  10950. // /// </summary>
  10951. // public string country_type { get; set; }
  10952. // /// <summary>
  10953. // /// 安提瓜和巴布达
  10954. // /// </summary>
  10955. // public string country_name_chinese { get; set; }
  10956. // /// <summary>
  10957. // /// 安提瓜和巴布达
  10958. // /// </summary>
  10959. // public string country_name_chinese_short { get; set; }
  10960. // /// <summary>
  10961. // /// 安提瓜和巴布达
  10962. // /// </summary>
  10963. // public string country_name_chinese_UN { get; set; }
  10964. // /// <summary>
  10965. // ///
  10966. // /// </summary>
  10967. // public string country_name_english_abbreviation { get; set; }
  10968. // /// <summary>
  10969. // ///
  10970. // /// </summary>
  10971. // public string country_name_english_formal { get; set; }
  10972. // /// <summary>
  10973. // ///
  10974. // /// </summary>
  10975. // public string country_name_english_UN { get; set; }
  10976. // /// <summary>
  10977. // ///
  10978. // /// </summary>
  10979. // public string continent_name { get; set; }
  10980. // /// <summary>
  10981. // ///
  10982. // /// </summary>
  10983. // public string subregion_name { get; set; }
  10984. // /// <summary>
  10985. // ///
  10986. // /// </summary>
  10987. // public string country_code2 { get; set; }
  10988. // /// <summary>
  10989. // ///
  10990. // /// </summary>
  10991. // public string country_code3 { get; set; }
  10992. // /// <summary>
  10993. // ///
  10994. // /// </summary>
  10995. // public string phone_code { get; set; }
  10996. //}
  10997. //public class CountriesInfo : BasicInfo
  10998. //{
  10999. // public List<CitiesInfo> c { get; set; }
  11000. //}
  11001. //public class CitiesInfo : BasicInfo
  11002. //{
  11003. // public List<AreaInfo> c { get; set; }
  11004. //}
  11005. //public class AreaInfo : BasicInfo
  11006. //{
  11007. // public List<AreaInfo> c { get; set; }
  11008. //}
  11009. //public class BasicInfo
  11010. //{
  11011. // public string code { get; set; }
  11012. // public string cn { get; set; }
  11013. // public string lv { get; set; }
  11014. // public string en { get; set; }
  11015. //}
  11016. #endregion
  11017. #region 查看邀请方
  11018. /// <summary>
  11019. /// 查看邀请方
  11020. /// 邀请方信息 Init
  11021. /// </summary>
  11022. /// <param name="dto"></param>
  11023. /// <returns></returns>
  11024. [HttpPost]
  11025. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11026. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  11027. {
  11028. string sqlWhere = string.Empty;
  11029. if (!string.IsNullOrEmpty(dto.Search))
  11030. {
  11031. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  11032. }
  11033. string sql = string.Format($@"Select
  11034. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  11035. Id,
  11036. UnitName
  11037. From Res_InvitationOfficialActivityData
  11038. Where IsDel = 0
  11039. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  11040. RefAsync<int> total = 0;
  11041. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11042. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  11043. }
  11044. /// <summary>
  11045. /// 查看邀请方
  11046. /// 国家信息 Init
  11047. /// </summary>
  11048. /// <param name="dto"></param>
  11049. /// <returns></returns>
  11050. [HttpPost]
  11051. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11052. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  11053. {
  11054. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  11055. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11056. var diids = groupInfos.Select(it => it.Id).ToList();
  11057. List<string> countrys = new List<string>();
  11058. foreach (var item in country)
  11059. {
  11060. var data = _groupRepository.FormartTeamName(item);
  11061. var dataArray = _groupRepository.GroupSplitCountry(data);
  11062. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11063. }
  11064. countrys = countrys.Distinct().ToList();
  11065. for (int i = 0; i < countrys.Count; i++)
  11066. {
  11067. string item = countrys[i];
  11068. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  11069. {
  11070. countrys.Remove(item);
  11071. i--;
  11072. }
  11073. }
  11074. RefAsync<int> total = 0;
  11075. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  11076. .Where(it => countrys.Contains(it.Name_CN))
  11077. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11078. .Select(it => new { id = it.Id, name = it.Name_CN })
  11079. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11080. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11081. }
  11082. /// <summary>
  11083. /// 查看邀请方
  11084. /// 城市信息 Init
  11085. /// </summary>
  11086. /// <param name="dto"></param>
  11087. /// <returns></returns>
  11088. [HttpPost]
  11089. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11090. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  11091. {
  11092. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  11093. RefAsync<int> total = 0;
  11094. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  11095. .Where(it => it.CountriesId == dto.CountiesId)
  11096. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11097. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  11098. .Select(it => new { id = it.Id, name = it.Name_CN })
  11099. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11100. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11101. }
  11102. /// <summary>
  11103. /// 查看邀请方
  11104. /// 团组名称 Init
  11105. /// </summary>
  11106. /// <param name="dto"></param>
  11107. /// <returns></returns>
  11108. [HttpPost]
  11109. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11110. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  11111. {
  11112. var watch = new Stopwatch();
  11113. watch.Start();
  11114. RefAsync<int> total = 0;
  11115. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  11116. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  11117. .Where((oa, di) => oa.IsDel == 0)
  11118. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  11119. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  11120. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  11121. .Distinct()
  11122. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11123. watch.Stop();
  11124. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  11125. }
  11126. /// <summary>
  11127. /// 查看邀请方
  11128. /// 团组 & 邀请方信息
  11129. /// </summary>
  11130. /// <param name="dto"></param>
  11131. /// <returns></returns>
  11132. [HttpPost]
  11133. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11134. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  11135. {
  11136. var watch = new Stopwatch();
  11137. watch.Start();
  11138. RefAsync<int> total = 0;
  11139. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  11140. .AS("Grp_DelegationInfo")
  11141. .Includes(x => x.InvitingInfos)
  11142. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  11143. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  11144. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  11145. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  11146. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  11147. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  11148. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11149. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  11150. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  11151. infos.ForEach(x =>
  11152. {
  11153. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  11154. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  11155. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  11156. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  11157. });
  11158. watch.Stop();
  11159. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  11160. }
  11161. #endregion
  11162. #region 报批行程
  11163. /// <summary>
  11164. /// 报批行程初始化
  11165. /// </summary>
  11166. /// <param name="dto"></param>
  11167. /// <returns></returns>
  11168. [HttpPost]
  11169. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  11170. {
  11171. const int chiNumber = 5;
  11172. var jw = JsonView(false);
  11173. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  11174. var group = groupList.First();
  11175. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  11176. group = groupList.First(x => x.Id == diid);
  11177. if (group == null)
  11178. {
  11179. jw.Msg = "暂无团组!";
  11180. return Ok(jw);
  11181. }
  11182. var data = new
  11183. {
  11184. groupList = groupList.Select(x => new
  11185. {
  11186. x.TeamName,
  11187. x.Id
  11188. }),
  11189. content = new ArrayList(),
  11190. groupInfo = new
  11191. {
  11192. group.VisitDays,
  11193. group.TourCode,
  11194. group.VisitPNumber,
  11195. group.TeamName,
  11196. group.Id,
  11197. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  11198. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  11199. },
  11200. };
  11201. var resultArr = new ArrayList();
  11202. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  11203. if (content.Count == 0)
  11204. {
  11205. var stay = "-";
  11206. var cityPath = "-";
  11207. //添加城市路径以及住宿地
  11208. //黑屏代码数据
  11209. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11210. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11211. {
  11212. jw = JsonView(true, "黑屏代码有误!", data);
  11213. return Ok(jw);
  11214. }
  11215. foreach (DataRow row in dtBlack.Rows)
  11216. {
  11217. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11218. {
  11219. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  11220. return Ok(jw);
  11221. }
  11222. }
  11223. //黑屏代码获取时间区间
  11224. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11225. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11226. _sqlSugar.BeginTran();
  11227. for (int i = 0; i < timeArr.Count; i++)
  11228. {
  11229. stay = "-";
  11230. cityPath = "-";
  11231. DateTime NewData = DateTime.Parse(timeArr[i]);
  11232. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11233. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11234. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11235. if (tbSelect.Length > 0)
  11236. {
  11237. List<string> threeCodeStr = new List<string>();
  11238. foreach (var item in tbSelect)
  11239. {
  11240. var threeCode = item["Three"].ToString() ?? "";
  11241. if (threeCode.Length == 6)
  11242. {
  11243. var start = threeCode.Substring(0, 3);
  11244. var end = threeCode.Substring(3, 3);
  11245. if (threeCodeStr.Count == 0)
  11246. {
  11247. threeCodeStr.Add(start);
  11248. threeCodeStr.Add(end);
  11249. }
  11250. else
  11251. {
  11252. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11253. {
  11254. threeCodeStr.Add(end);
  11255. }
  11256. else
  11257. {
  11258. threeCodeStr.Add(start);
  11259. threeCodeStr.Add(end);
  11260. }
  11261. }
  11262. }
  11263. }
  11264. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11265. var last = threeCodeStr.Last();
  11266. foreach (var item in threeCodeStr)
  11267. {
  11268. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11269. if (item.Equals(last))
  11270. {
  11271. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11272. }
  11273. }
  11274. cityPath = cityPath.Trim('-');
  11275. }
  11276. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11277. appro.Diid = diid ?? -1;
  11278. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11279. appro.Id = thisId;
  11280. appro.CreateUserId = dto.UserId;
  11281. appro.CreateTime = DateTime.Now;
  11282. content.Add(appro);
  11283. }
  11284. _sqlSugar.CommitTran();
  11285. }
  11286. foreach (var x in content)
  11287. {
  11288. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  11289. if (chiList.Count < chiNumber)
  11290. {
  11291. for (int i = chiList.Count; i < chiNumber; i++)
  11292. {
  11293. chiList.Add(new Grp_ApprovalTravelDetails());
  11294. }
  11295. }
  11296. resultArr.Add(new
  11297. {
  11298. x.Id,
  11299. x.Date,
  11300. x.Diid,
  11301. chiList = chiList.Select(x1 => new
  11302. {
  11303. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11304. x1.Details,
  11305. x1.ParentId,
  11306. x1.Id
  11307. })
  11308. });
  11309. }
  11310. data = data with
  11311. {
  11312. content = resultArr,
  11313. };
  11314. jw = JsonView(true, "获取成功!", data);
  11315. return Ok(jw);
  11316. }
  11317. /// <summary>
  11318. /// 报批行程删除
  11319. /// </summary>
  11320. /// <param name="dto"></param>
  11321. /// <returns></returns>
  11322. [HttpPost]
  11323. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11324. {
  11325. var jw = JsonView(false);
  11326. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11327. if (group == null)
  11328. {
  11329. jw.Msg = "团组参数有误!";
  11330. return Ok(jw);
  11331. }
  11332. try
  11333. {
  11334. _sqlSugar.BeginTran();
  11335. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11336. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11337. {
  11338. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11339. DeleteUserId = dto.uesrId,
  11340. IsDel = 1
  11341. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11342. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11343. {
  11344. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11345. DeleteUserId = dto.uesrId,
  11346. IsDel = 1
  11347. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11348. _sqlSugar.CommitTran();
  11349. jw = JsonView(true, "删除成功");
  11350. }
  11351. catch (Exception ex)
  11352. {
  11353. jw = JsonView(false, ex.Message);
  11354. }
  11355. return Ok(jw);
  11356. }
  11357. /// <summary>
  11358. /// 报批行程保存
  11359. /// </summary>
  11360. /// <param name="dto"></param>
  11361. /// <returns></returns>
  11362. [HttpPost]
  11363. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11364. {
  11365. var jw = JsonView(false);
  11366. var Find = dto.Arr.Find(x => x.id == 0);
  11367. if (Find != null)
  11368. {
  11369. jw.Msg = "生成的ID为0!";
  11370. return Ok(jw);
  11371. }
  11372. foreach (var item in dto.Arr)
  11373. {
  11374. foreach (var chi in item.chiList)
  11375. {
  11376. if (chi.parentId == 0)
  11377. {
  11378. chi.parentId = item.id;
  11379. }
  11380. }
  11381. }
  11382. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11383. _sqlSugar.BeginTran();
  11384. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11385. {
  11386. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11387. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11388. {
  11389. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11390. DeleteUserId = dto.UserId,
  11391. IsDel = 1
  11392. }).ExecuteCommand();
  11393. }
  11394. try
  11395. {
  11396. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11397. {
  11398. CreateTime = DateTime.Now,
  11399. CreateUserId = dto.UserId,
  11400. Details = x.details,
  11401. ParentId = x.parentId,
  11402. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11403. Remark = "",
  11404. IsDel = 0
  11405. }).ToList()).ExecuteCommand();
  11406. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11407. {
  11408. Id = x.id,
  11409. Details = x.details,
  11410. ParentId = x.parentId,
  11411. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11412. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11413. {
  11414. Details = x.Details,
  11415. ParentId = x.ParentId,
  11416. Time = x.Time
  11417. }).ExecuteCommand();
  11418. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11419. {
  11420. Id = x.id,
  11421. Date = x.date,
  11422. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11423. {
  11424. Date = x.Date
  11425. }).ExecuteCommand();
  11426. _sqlSugar.CommitTran();
  11427. jw = JsonView(true, "保存成功!");
  11428. }
  11429. catch (Exception ex)
  11430. {
  11431. _sqlSugar.RollbackTran();
  11432. jw = JsonView(false, "保存失败!" + ex.Message);
  11433. }
  11434. return Ok(jw);
  11435. }
  11436. /// <summary>
  11437. /// 报批行程生成
  11438. /// </summary>
  11439. /// <param name="dto"></param>
  11440. /// <returns></returns>
  11441. [HttpPost]
  11442. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11443. {
  11444. var jw = JsonView(false);
  11445. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11446. if (group == null)
  11447. {
  11448. jw.Msg = "暂无该团组!";
  11449. return Ok(jw);
  11450. }
  11451. //黑屏代码数据
  11452. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11453. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11454. {
  11455. jw.Msg = "黑屏代码有误!";
  11456. return Ok(jw);
  11457. }
  11458. foreach (DataRow row in dtBlack.Rows)
  11459. {
  11460. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11461. {
  11462. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11463. return Ok(jw);
  11464. }
  11465. }
  11466. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11467. var resultArr = new ArrayList();
  11468. if (officialActivitiesArr.Count == 0)
  11469. {
  11470. jw.Msg = "暂无公务出访信息!";
  11471. return Ok(jw);
  11472. }
  11473. try
  11474. {
  11475. _sqlSugar.BeginTran();
  11476. DeleteApprovalJourney(new
  11477. Domain.Dtos.Groups.DeleteApprovalJourney
  11478. {
  11479. Diid = dto.Diid,
  11480. uesrId = dto.Userid
  11481. });
  11482. var stay = "-";
  11483. var cityPath = "-";
  11484. //添加城市路径以及住宿地
  11485. //黑屏代码获取时间区间
  11486. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11487. var empty = "【未收入该三字码!请机票同事录入】";
  11488. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11489. for (int i = 0; i < timeArr.Count; i++)
  11490. {
  11491. stay = "-";
  11492. cityPath = "-";
  11493. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11494. DateTime NewData = DateTime.Parse(timeArr[i]);
  11495. var gwinfo = officialActivitiesArr.Where(x => DateTime.TryParse(x.Date, out DateTime gwData) && gwData.ToString("yyyy-MM-dd") == NewData.ToString("yyyy-MM-dd")).OrderBy(x => x.Time).ToList();
  11496. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11497. if (tbSelect.Length > 0)
  11498. {
  11499. List<string> threeCodeStr = new List<string>();
  11500. bool isTrade = false;
  11501. string trip = string.Empty;
  11502. var rowLast = tbSelect.Last();
  11503. var rowFirst = tbSelect.First();
  11504. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11505. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11506. var takeOffTime = DateTime.Parse(timeArr[i]);
  11507. var fallToTime = DateTime.Parse(timeArr[i]);
  11508. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11509. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11510. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11511. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11512. foreach (var item in tbSelect)
  11513. {
  11514. var start = string.Empty;
  11515. var end = string.Empty;
  11516. var threeCode = item["Three"].ToString() ?? "";
  11517. if (threeCode.Length == 6)
  11518. {
  11519. start = threeCode.Substring(0, 3);
  11520. end = threeCode.Substring(3, 3);
  11521. if (threeCodeStr.Count == 0)
  11522. {
  11523. threeCodeStr.Add(start);
  11524. threeCodeStr.Add(end);
  11525. }
  11526. else
  11527. {
  11528. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11529. {
  11530. threeCodeStr.Add(end);
  11531. }
  11532. else
  11533. {
  11534. threeCodeStr.Add(start);
  11535. threeCodeStr.Add(end);
  11536. }
  11537. }
  11538. }
  11539. //处理机票信息
  11540. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11541. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11542. if (start_Object == null)
  11543. {
  11544. start_Object = new Res_ThreeCode()
  11545. {
  11546. AirPort = empty,
  11547. AirPort_En = empty,
  11548. City = empty,
  11549. Country = empty,
  11550. Four = empty,
  11551. Three = empty,
  11552. };
  11553. }
  11554. if (end_Object == null)
  11555. {
  11556. end_Object = new Res_ThreeCode()
  11557. {
  11558. AirPort = empty,
  11559. AirPort_En = empty,
  11560. City = empty,
  11561. Country = empty,
  11562. Four = empty,
  11563. Three = empty,
  11564. };
  11565. }
  11566. //机型判断
  11567. string airModel = item["AirModel"].ToString();
  11568. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11569. string flightTime = item["FlightTime"].ToString();
  11570. if (flightTime!.Contains(":"))
  11571. {
  11572. flightTime = flightTime.Replace(":", "小时");
  11573. flightTime += "分钟";
  11574. }
  11575. if (flightTime.Contains("H"))
  11576. {
  11577. flightTime = flightTime.Replace("H", "小时");
  11578. }
  11579. if (flightTime.Contains("M"))
  11580. {
  11581. flightTime = flightTime.Replace("M", "分钟");
  11582. }
  11583. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11584. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11585. {
  11586. flightTime = flightDataTime.Hour > 0
  11587. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11588. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11589. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11590. }
  11591. //航班号
  11592. string flightcode = item["Fliagtcode"].ToString();
  11593. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11594. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11595. if (aircompany == null)
  11596. {
  11597. aircompany = new Res_AirCompany
  11598. {
  11599. CnName = hsEmpty,
  11600. EnName = hsEmpty,
  11601. ShortCode = hsEmpty,
  11602. };
  11603. }
  11604. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11605. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11606. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11607. if (isTrade)
  11608. {
  11609. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11610. }
  11611. else
  11612. {
  11613. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11614. }
  11615. }
  11616. chiarr.Add(new Grp_ApprovalTravelDetails
  11617. {
  11618. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11619. CreateTime = DateTime.Now,
  11620. CreateUserId = dto.Userid,
  11621. ParentId = 0,
  11622. Details = trip
  11623. });
  11624. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11625. var last = threeCodeStr.Last();
  11626. foreach (var item in threeCodeStr)
  11627. {
  11628. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11629. if (item.Equals(last))
  11630. {
  11631. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11632. }
  11633. }
  11634. cityPath = cityPath.Trim('-');
  11635. }
  11636. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11637. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11638. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11639. appro.Diid = dto.Diid;
  11640. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11641. appro.Id = thisId;
  11642. appro.CreateUserId = dto.Userid;
  11643. appro.CreateTime = DateTime.Now;
  11644. foreach (var item in gwinfo)
  11645. {
  11646. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11647. chi.Details = "拜访" + item.Client;
  11648. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11649. {
  11650. chi.Details += "," + item.ReqSample;
  11651. }
  11652. chi.ParentId = thisId;
  11653. chi.Time = item.Time;
  11654. chiarr.Add(chi);
  11655. }
  11656. if (chiarr.Count < 5)
  11657. {
  11658. for (int j = chiarr.Count; j < 5; j++)
  11659. {
  11660. chiarr.Add(new
  11661. Grp_ApprovalTravelDetails());
  11662. }
  11663. }
  11664. resultArr.Add(new
  11665. {
  11666. appro.Id,
  11667. appro.Date,
  11668. appro.Diid,
  11669. chiList = chiarr.Select(x1 => new
  11670. {
  11671. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11672. x1.Details,
  11673. x1.ParentId,
  11674. x1.Id
  11675. })
  11676. });
  11677. }
  11678. _sqlSugar.CommitTran();
  11679. jw = JsonView(true, "生成成功!", resultArr);
  11680. }
  11681. catch (Exception ex)
  11682. {
  11683. jw.Code = 400;
  11684. jw.Msg = "生成失败!" + ex.Message;
  11685. }
  11686. return Ok(jw);
  11687. }
  11688. /// <summary>
  11689. /// 报批行程word导出
  11690. /// </summary>
  11691. /// <param name="dto"></param>
  11692. /// <returns></returns>
  11693. [HttpPost]
  11694. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11695. {
  11696. var jw = JsonView(false);
  11697. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11698. if (group == null)
  11699. {
  11700. jw.Msg = "暂无该团组!";
  11701. return Ok(jw);
  11702. }
  11703. //模板路径
  11704. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11705. //载入模板
  11706. Document doc = new Document(tempPath);
  11707. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11708. //获取所填表格的序数
  11709. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11710. Aspose.Words.Tables.Row titleRowClone = null;
  11711. Aspose.Words.Tables.Row CenterRowClone = null;
  11712. int index = 0;
  11713. int indexChi = 0;
  11714. int SetIndex = 0;
  11715. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11716. //获取数据,放到datatable
  11717. foreach (var item in ApprovalTravelArr)
  11718. {
  11719. if (index > 0)
  11720. {
  11721. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11722. tableOne.AppendChild(titleRowClone);
  11723. }
  11724. var textTime = item.Date;
  11725. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11726. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11727. SetIndex++;
  11728. if (ChiRep.Count > 0)
  11729. {
  11730. foreach (var itemChi in ChiRep)
  11731. {
  11732. var txtTime = itemChi.Time;
  11733. var txtDetail = itemChi.Details;
  11734. if (indexChi > 0)
  11735. {
  11736. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11737. tableOne.AppendChild(CenterRowClone);
  11738. }
  11739. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11740. {
  11741. SetCells(tableOne, doc, SetIndex, 0, "");
  11742. SetCells(tableOne, doc, SetIndex, 1, "");
  11743. indexChi++;
  11744. SetIndex++;
  11745. break;
  11746. }
  11747. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11748. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11749. indexChi++;
  11750. SetIndex++;
  11751. }
  11752. }
  11753. else
  11754. {
  11755. if (indexChi > 0)
  11756. {
  11757. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11758. tableOne.AppendChild(CenterRowClone);
  11759. }
  11760. SetCells(tableOne, doc, SetIndex, 0, "");
  11761. SetCells(tableOne, doc, SetIndex, 1, "");
  11762. indexChi++;
  11763. SetIndex++;
  11764. }
  11765. index++;
  11766. }
  11767. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11768. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11769. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11770. jw.Code = 200;
  11771. jw.Msg = "";
  11772. return Ok(jw);
  11773. }
  11774. private string intToString(int numberVal)
  11775. {
  11776. string numberval = numberVal.ToString();
  11777. Dictionary<char, string> Number = new Dictionary<char, string>();
  11778. Number.Add('1', "一");
  11779. Number.Add('2', "二");
  11780. Number.Add('3', "三");
  11781. Number.Add('4', "四");
  11782. Number.Add('5', "五");
  11783. Number.Add('6', "六");
  11784. Number.Add('7', "七");
  11785. Number.Add('8', "八");
  11786. Number.Add('9', "九");
  11787. string stringNumberVal = string.Empty;
  11788. for (int i = 0; i < numberval.Length; i++)
  11789. {
  11790. if (i == 0)
  11791. {
  11792. stringNumberVal += Number[numberval[i]];
  11793. }
  11794. else if (i >= 1)
  11795. {
  11796. if (numberval[i] == '0')
  11797. {
  11798. stringNumberVal = "十";
  11799. }
  11800. else
  11801. {
  11802. stringNumberVal += "十" + Number[numberval[i]];
  11803. }
  11804. }
  11805. }
  11806. return stringNumberVal;
  11807. }
  11808. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11809. {
  11810. //获取table中的某个单元格,从0开始
  11811. Cell lshCell = table.Rows[rows].Cells[cells];
  11812. //将单元格中段落移除
  11813. foreach (Node item in lshCell.Paragraphs)
  11814. {
  11815. lshCell.Paragraphs.Remove(item);
  11816. }
  11817. if (val.Contains("\r\n"))
  11818. {
  11819. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11820. foreach (var item in spArr)
  11821. {
  11822. //新建一个段落
  11823. Paragraph p = new Paragraph(doc);
  11824. var r = new Run(doc, item);
  11825. //把设置的值赋给之前新建的段落
  11826. p.AppendChild(r);
  11827. //将此段落加到单元格内
  11828. lshCell.AppendChild(p);
  11829. }
  11830. }
  11831. else
  11832. {
  11833. //新建一个段落
  11834. Paragraph p = new Paragraph(doc);
  11835. var r = new Run(doc, val);
  11836. //把设置的值赋给之前新建的段落
  11837. p.AppendChild(r);
  11838. //将此段落加到单元格内
  11839. lshCell.AppendChild(p);
  11840. }
  11841. }
  11842. [HttpPost]
  11843. public async Task<IActionResult> ServerHttp(string paramStr)
  11844. {
  11845. paramStr = paramStr.TrimEnd('\'');
  11846. paramStr = paramStr.TrimStart('\'');
  11847. JsonView jw = JsonView(false);
  11848. JObject param = JObject.Parse(paramStr);
  11849. if (!param.ContainsKey("url"))
  11850. {
  11851. jw.Msg = "url null";
  11852. return Ok(jw);
  11853. }
  11854. string url = param["url"]!.ToString();
  11855. var methon = "get";
  11856. Dictionary<string, string> bodyValues = null;
  11857. Dictionary<string, string> headValues = null;
  11858. if (param.ContainsKey("methon"))
  11859. {
  11860. methon = param["methon"]!.ToString();
  11861. }
  11862. if (param.ContainsKey("header"))
  11863. {
  11864. var header = param["header"]!.ToString();
  11865. JObject headerJobject = JObject.Parse(header);
  11866. headValues = new Dictionary<string, string>();
  11867. foreach (JProperty item in headerJobject.Properties())
  11868. {
  11869. var value = item.Value.ToString();
  11870. var head = item.Path;
  11871. headValues.Add(head, value);
  11872. }
  11873. }
  11874. if (param.ContainsKey("body"))
  11875. {
  11876. var body = param["body"]!.ToString();
  11877. bodyValues = new Dictionary<string, string>();
  11878. JObject bodyJobject = JObject.Parse(body);
  11879. foreach (JProperty item in bodyJobject.Properties())
  11880. {
  11881. var value = item.Value.ToString();
  11882. var head = item.Path;
  11883. bodyValues.Add(head, value);
  11884. }
  11885. }
  11886. HttpClient client = new HttpClient();
  11887. string responseString = string.Empty;
  11888. if (param.ContainsKey("isJson"))
  11889. {
  11890. }
  11891. if (headValues != null)
  11892. {
  11893. foreach (var item in headValues.Keys)
  11894. {
  11895. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11896. }
  11897. }
  11898. try
  11899. {
  11900. if (methon == "get")
  11901. {
  11902. responseString = await client.GetStringAsync(url);
  11903. }
  11904. else if (methon == "post")
  11905. {
  11906. if (bodyValues == null)
  11907. {
  11908. jw.Msg = "methon post body null";
  11909. return Ok(jw);
  11910. }
  11911. // 数据转化为 key=val 格式
  11912. var content = new FormUrlEncodedContent(bodyValues);
  11913. var response = await client.PostAsync(url, content);
  11914. // 获取数据
  11915. responseString = await response.Content.ReadAsStringAsync();
  11916. }
  11917. else
  11918. {
  11919. jw.Msg = "methon error";
  11920. }
  11921. jw = JsonView(true, "success", responseString);
  11922. }
  11923. catch (Exception ex)
  11924. {
  11925. jw.Msg = "error " + ex.Message;
  11926. jw.Data = ex.StackTrace;
  11927. }
  11928. finally
  11929. {
  11930. client.Dispose();
  11931. }
  11932. return Ok(jw);
  11933. }
  11934. #endregion
  11935. // /// <summary>
  11936. // ///
  11937. // /// </summary>
  11938. // /// <param name="_dto"></param>
  11939. // /// <returns></returns>
  11940. // [HttpPost]
  11941. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11942. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11943. // {
  11944. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11945. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11946. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11947. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11948. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11949. // dic_psg.Add("客人", 974);
  11950. // dic_psg.Add("司机", 975);
  11951. // dic_psg.Add("导游", 976);
  11952. // dic_psg.Add("公司内部人员", 977);
  11953. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11954. // foreach (var item in list_visa)
  11955. // {
  11956. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11957. // temp.Id = item.Id;
  11958. // temp.DIId = item.DIId;
  11959. // temp.VisaClient = item.VisaClient;
  11960. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  11961. // temp.VisaCurrency = item.VisaCurrency;
  11962. // temp.IsThird = item.IsThird;
  11963. // if (dic_psg.ContainsKey(item.PassengerType))
  11964. // {
  11965. // temp.PassengerType = dic_psg[item.PassengerType];
  11966. // }
  11967. // else {
  11968. // temp.PassengerType = -1;
  11969. // }
  11970. // temp.VisaNumber = item.VisaNumber;
  11971. // temp.VisaFreeNumber = item.VisaFreeNumber;
  11972. // temp.CreateUserId = item.Operators;
  11973. // DateTime dt_ct;
  11974. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  11975. // if (b_ct)
  11976. // {
  11977. // temp.CreateTime = dt_ct;
  11978. // }
  11979. // else
  11980. // {
  11981. // temp.CreateTime = DateTime.Now;
  11982. // }
  11983. // temp.DeleteTime = "";
  11984. // temp.DeleteUserId = 0;
  11985. // temp.Remark = item.Remark;
  11986. // if (string.IsNullOrEmpty(temp.Remark)) {
  11987. // temp.Remark = "";
  11988. // }
  11989. // temp.IsDel = item.IsDel;
  11990. // temp.VisaDescription = item.VisaAttachment;
  11991. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  11992. //([Id]
  11993. // ,[DIId]
  11994. // ,[VisaClient]
  11995. // ,[VisaPrice]
  11996. // ,[VisaCurrency]
  11997. // ,[IsThird]
  11998. // ,[PassengerType]
  11999. // ,[VisaNumber]
  12000. // ,[VisaFreeNumber]
  12001. // ,[CreateUserId]
  12002. // ,[CreateTime]
  12003. // ,[DeleteTime]
  12004. // ,[DeleteUserId]
  12005. // ,[Remark]
  12006. // ,[IsDel]
  12007. // ,[visaDescription])
  12008. // VALUES
  12009. // ({0},{1},'{2}',{3},{4}
  12010. //,{5},{6},{7},{8},{9}
  12011. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  12012. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  12013. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  12014. //);
  12015. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  12016. // }
  12017. // return Ok(JsonView(true, "操作成功!"));
  12018. // }
  12019. /// <summary>
  12020. /// 123132123
  12021. /// </summary>
  12022. /// <param name="_dto"></param>
  12023. /// <returns></returns>
  12024. [HttpPost]
  12025. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12026. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12027. {
  12028. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12029. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  12030. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  12031. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12032. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  12033. dicDetail.Add(789, 1034);
  12034. dicDetail.Add(790, 1035);
  12035. dicDetail.Add(791, 1036);
  12036. dicDetail.Add(792, 1037);
  12037. dicDetail.Add(793, 1038);
  12038. dicDetail.Add(794, 1039);
  12039. dicDetail.Add(795, 1040);
  12040. dicDetail.Add(796, 1041);
  12041. dicDetail.Add(797, 1042);
  12042. dicDetail.Add(798, 1043);
  12043. dicDetail.Add(801, 1044);
  12044. dicDetail.Add(802, 1045);
  12045. dicDetail.Add(803, 1046);
  12046. Dictionary<int, int> dic = new Dictionary<int, int>();
  12047. dic.Add(806, 1027);
  12048. dic.Add(807, 1028);
  12049. dic.Add(808, 1029);
  12050. dic.Add(809, 1030);
  12051. dic.Add(810, 1031);
  12052. dic.Add(811, 1032);
  12053. dic.Add(812, 1033);
  12054. foreach (var item in list_visa)
  12055. {
  12056. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  12057. temp.Coefficient = item.coefficient;
  12058. DateTime dtCrt;
  12059. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  12060. if (b1)
  12061. {
  12062. temp.CreateTime = dtCrt;
  12063. }
  12064. else
  12065. {
  12066. temp.CreateTime = DateTime.Now;
  12067. }
  12068. temp.CreateUserId = item.Operators;
  12069. temp.DeleteTime = "";
  12070. temp.DeleteUserId = 0;
  12071. temp.DiId = int.Parse(item.DIID);
  12072. temp.FilePath = item.FilePath;
  12073. temp.IsDel = item.IsDel;
  12074. temp.Price = item.Price;
  12075. temp.PriceCount = 1;
  12076. temp.PriceCurrency = item.Currency;
  12077. int detailId = 0;
  12078. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  12079. {
  12080. detailId = dicDetail[item.PriceTypeDetail];
  12081. }
  12082. temp.PriceDetailType = detailId;
  12083. temp.PriceDt = DateTime.Now;
  12084. temp.PriceName = item.PriceName;
  12085. temp.PriceSum = item.Price;
  12086. int tid = 0;
  12087. if (dic.ContainsKey(item.PriceType))
  12088. {
  12089. tid = dic[item.PriceType];
  12090. }
  12091. temp.PriceType = tid;
  12092. temp.Remark = item.Remark;
  12093. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  12094. }
  12095. return Ok(JsonView(true, "操作成功!"));
  12096. }
  12097. }
  12098. }