GroupsController.cs 640 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997
  1. using Aspose.Cells;
  2. using Aspose.Words;
  3. using Aspose.Words.Tables;
  4. using Microsoft.AspNetCore.SignalR;
  5. using NPOI.HSSF.UserModel;
  6. using NPOI.SS.UserModel;
  7. using NPOI.SS.Util;
  8. using NPOI.XSSF.UserModel;
  9. using OASystem.API.OAMethodLib;
  10. using OASystem.API.OAMethodLib.File;
  11. using OASystem.API.OAMethodLib.Hub.HubClients;
  12. using OASystem.API.OAMethodLib.Hub.Hubs;
  13. using OASystem.API.OAMethodLib.JuHeAPI;
  14. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  15. using OASystem.Domain.Dtos.CRM;
  16. using OASystem.Domain.Dtos.FileDto;
  17. using OASystem.Domain.Dtos.Groups;
  18. using OASystem.Domain.Entities.Customer;
  19. using OASystem.Domain.Entities.Financial;
  20. using OASystem.Domain.Entities.Groups;
  21. using OASystem.Domain.ViewModels.Groups;
  22. using OASystem.Infrastructure.Repositories.Groups;
  23. using Quartz.Util;
  24. using SqlSugar.Extensions;
  25. using System.Collections;
  26. using System.Data;
  27. using System.Diagnostics;
  28. using System.Globalization;
  29. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  30. using Bookmark = Aspose.Words.Bookmark;
  31. using Cell = Aspose.Words.Tables.Cell;
  32. using Table = Aspose.Words.Tables.Table;
  33. namespace OASystem.API.Controllers
  34. {
  35. /// <summary>
  36. /// 团组相关
  37. /// </summary>
  38. //[Authorize]
  39. [Route("api/[controller]/[action]")]
  40. public class GroupsController : ControllerBase
  41. {
  42. private readonly GrpScheduleRepository _grpScheduleRep;
  43. private readonly IMapper _mapper;
  44. private readonly DelegationInfoRepository _groupRepository;
  45. private readonly TaskAssignmentRepository _taskAssignmentRep;
  46. private readonly AirTicketResRepository _airTicketResRep;
  47. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  48. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  49. private readonly DelegationEnDataRepository _delegationEnDataRep;
  50. private readonly DelegationVisaRepository _delegationVisaRep;
  51. private readonly VisaPriceRepository _visaPriceRep;
  52. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  53. private readonly HotelPriceRepository _hotelPriceRep;
  54. private readonly CustomersRepository _customersRep;
  55. private readonly MessageRepository _message;
  56. private readonly SqlSugarClient _sqlSugar;
  57. private readonly TourClientListRepository _tourClientListRep;
  58. private readonly TeamRateRepository _teamRateRep;
  59. #region 成本相关
  60. private readonly CheckBoxsRepository _checkBoxs;
  61. private readonly GroupCostRepository _GroupCostRepository;
  62. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  63. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  64. #endregion
  65. private readonly SetDataRepository _setDataRep;
  66. private string url;
  67. private string path;
  68. private readonly EnterExitCostRepository _enterExitCostRep;
  69. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  70. private readonly UsersRepository _usersRep;
  71. private readonly IJuHeApiService _juHeApi;
  72. private readonly InvertedListRepository _invertedListRep;
  73. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  74. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  75. private readonly ThreeCodeRepository _threeCodeRepository;
  76. private readonly HotelInquiryRepository _hotelInquiryRep;
  77. private readonly FeeAuditRepository _feeAuditRep;
  78. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  79. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  80. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  81. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  82. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  83. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  84. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  85. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  86. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  87. {
  88. _mapper = mapper;
  89. _grpScheduleRep = grpScheduleRep;
  90. _groupRepository = groupRepository;
  91. _taskAssignmentRep = taskAssignmentRep;
  92. _airTicketResRep = airTicketResRep;
  93. _sqlSugar = sqlSugar;
  94. url = AppSettingsHelper.Get("ExcelBaseUrl");
  95. path = AppSettingsHelper.Get("ExcelBasePath");
  96. if (!System.IO.Directory.Exists(path))
  97. {
  98. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  99. }
  100. _decreasePaymentsRep = decreasePaymentsRep;
  101. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  102. _delegationEnDataRep = delegationEnDataRep;
  103. _enterExitCostRep = enterExitCostRep;
  104. _delegationVisaRep = delegationVisaRep;
  105. _message = message;
  106. _visaPriceRep = visaPriceRep;
  107. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  108. _checkBoxs = checkBoxs;
  109. _GroupCostRepository = GroupCostRepository;
  110. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  111. _GroupCostParameterRepository = GroupCostParameterRepository;
  112. _hotelPriceRep = hotelPriceRep;
  113. _customersRep = customersRep;
  114. _setDataRep = setDataRep;
  115. _tourClientListRep = tourClientListRep;
  116. _teamRateRep = teamRateRep;
  117. _hubContext = hubContext;
  118. _usersRep = usersRep;
  119. _juHeApi = juHeApi;
  120. _invertedListRep = invertedListRep;
  121. _visaFeeInfoRep = visaFeeInfoRep;
  122. _ticketBlackCodeRep = ticketBlackCodeRep;
  123. _hotelInquiryRep = hotelInquiryRep;
  124. _threeCodeRepository = threeCodeRepository;
  125. _feeAuditRep = feeAuditRep;
  126. }
  127. #region 流程管控
  128. /// <summary>
  129. /// 获取团组流程管控信息
  130. /// </summary>
  131. /// <param name="paras">参数Json字符串</param>
  132. /// <returns></returns>
  133. [HttpPost]
  134. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  135. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  136. {
  137. if (string.IsNullOrEmpty(_jsonDto.Paras))
  138. {
  139. return Ok(JsonView(false, "参数为空"));
  140. }
  141. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  142. if (_ScheduleDto != null)
  143. {
  144. if (_ScheduleDto.SearchType == 2)//获取列表
  145. {
  146. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  147. return Ok(JsonView(_grpScheduleViewList));
  148. }
  149. else//获取对象
  150. {
  151. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  152. if (_grpScheduleView != null)
  153. {
  154. return Ok(JsonView(_grpScheduleView));
  155. }
  156. }
  157. }
  158. else
  159. {
  160. return Ok(JsonView(false, "参数反序列化失败"));
  161. }
  162. return Ok(JsonView(false, "暂无数据!"));
  163. }
  164. /// <summary>
  165. /// 修改团组流程管控详细表数据
  166. /// </summary>
  167. /// <param name="paras"></param>
  168. /// <returns></returns>
  169. [HttpPost]
  170. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  171. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  172. {
  173. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  174. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  175. .SetColumns(it => it.Duty == _detail.Duty)
  176. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  177. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  178. .SetColumns(it => it.JobContent == _detail.JobContent)
  179. .SetColumns(it => it.Remark == _detail.Remark)
  180. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  181. .Where(s => s.Id == dto.Id)
  182. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  183. .ExecuteCommandAsync();
  184. if (result > 0)
  185. {
  186. return Ok(JsonView(true, "保存成功!"));
  187. }
  188. return Ok(JsonView(false, "保存失败!"));
  189. }
  190. /// <summary>
  191. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  192. /// </summary>
  193. /// <param name="dto"></param>
  194. /// <returns></returns>
  195. [HttpPost]
  196. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  197. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  198. {
  199. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  200. _detail.IsDel = 1;
  201. _detail.DeleteUserId = dto.Duty;
  202. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  203. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  204. .SetColumns(it => it.IsDel == _detail.IsDel)
  205. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  206. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  207. .Where(it => it.Id == dto.Id)
  208. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  209. //.WhereColumns(s => s.Id == dto.Id)
  210. .ExecuteCommandAsync();
  211. if (result > 0)
  212. {
  213. return Ok(JsonView(true, "删除成功!"));
  214. }
  215. return Ok(JsonView(false, "删除失败!"));
  216. }
  217. /// <summary>
  218. /// 增加团组流程管控详细表数据
  219. /// </summary>
  220. /// <param name="dto"></param>
  221. /// <returns></returns>
  222. [HttpPost]
  223. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  224. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  225. {
  226. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  227. if (DateTime.Now < _detail.ExpectBeginDt)
  228. {
  229. _detail.StepStatus = 0;
  230. }
  231. else
  232. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  233. _detail.StepStatus = 1;
  234. }
  235. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  236. if (result > 0)
  237. {
  238. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  239. return Ok(JsonView(true, "添加成功!", _result));
  240. }
  241. return Ok(JsonView(false, "添加失败!"));
  242. }
  243. #endregion
  244. #region 团组基本信息
  245. /// <summary>
  246. /// 接团信息列表
  247. /// </summary>
  248. /// <param name="dto">团组列表请求dto</param>
  249. /// <returns></returns>
  250. [HttpPost]
  251. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  252. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  253. {
  254. var groupData = await _groupRepository.GetGroupList(dto);
  255. if (groupData.Code != 0)
  256. {
  257. return Ok(JsonView(false, groupData.Msg));
  258. }
  259. return Ok(JsonView(groupData.Data));
  260. }
  261. /// <summary>
  262. /// 分页查询团组列表
  263. /// </summary>
  264. /// <param name="dto"></param>
  265. /// <returns></returns>
  266. [HttpPost]
  267. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  268. public async Task<IActionResult> QueryGroupListOffset(QueryGroupListOffsetDto dto)
  269. {
  270. var watch = new Stopwatch();
  271. watch.Start();
  272. RefAsync<int> total = 0;
  273. var countyDatas = await _sqlSugar.Queryable<Grp_DelegationInfo>()
  274. .Where((di) => di.IsDel == 0 && !string.IsNullOrWhiteSpace(di.TeamName))
  275. .WhereIF(!string.IsNullOrEmpty(dto.Search), (di) => di.TeamName.Contains(dto.Search))
  276. .OrderBy((di) => new { id = SqlFunc.Desc(di.Id) })
  277. .Select((di) => new { id = di.Id, name = di.TeamName })
  278. .Distinct()
  279. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  280. watch.Stop();
  281. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  282. }
  283. /// <summary>
  284. /// 接团信息列表 Page
  285. /// </summary>
  286. /// <param name="dto">团组列表请求dto</param>
  287. /// <returns></returns>
  288. [HttpPost]
  289. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  290. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  291. {
  292. #region 参数验证
  293. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  294. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  295. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  296. #region 页面操作权限验证
  297. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  298. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  299. #endregion
  300. #endregion
  301. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  302. {
  303. string sqlWhere = string.Empty;
  304. if (dto.IsSure == 0) //未完成
  305. {
  306. sqlWhere += string.Format(@" And IsSure = 0");
  307. }
  308. else if (dto.IsSure == 1) //已完成
  309. {
  310. sqlWhere += string.Format(@" And IsSure = 1");
  311. }
  312. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  313. {
  314. string tj = dto.SearchCriteria;
  315. 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}%')",
  316. tj, tj, tj, tj, tj);
  317. }
  318. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  319. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  320. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  321. JietuanOperator,IsSure,CreateTime,IsBid
  322. From (
  323. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  324. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  325. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  326. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  327. su.CnName JietuanOperator,IsSure,gdi.CreateTime,gdi.IsBid
  328. From Grp_DelegationInfo gdi
  329. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  330. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  331. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  332. Where gdi.IsDel = 0 {0}
  333. ) temp", sqlWhere);
  334. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  335. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  336. #region 处理所属部门
  337. /*
  338. * 1.sq 和 gyy 等显示 市场部
  339. * 2.王鸽和主管及张总还有管理员号统一国交部
  340. * 2-1. 4 管理员 ,21 张海麟
  341. */
  342. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  343. List<int> userIds1 = new List<int>() { 4, 21 };
  344. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  345. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  346. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  347. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  348. .ToList();
  349. foreach (var item in _DelegationList)
  350. {
  351. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  352. }
  353. #endregion
  354. var _view = new
  355. {
  356. PageFuncAuth = pageFunAuthView,
  357. Data = _DelegationList
  358. };
  359. return Ok(JsonView(true, "查询成功!", _view, total));
  360. }
  361. else
  362. {
  363. return Ok(JsonView(false, "查询失败"));
  364. }
  365. }
  366. /// <summary>
  367. /// 团组列表
  368. /// </summary>
  369. /// <returns></returns>
  370. [HttpPost]
  371. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  372. {
  373. #region 参数验证
  374. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  375. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  376. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  377. #region 页面操作权限验证
  378. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  379. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  380. #endregion
  381. #endregion
  382. if (dto.PortType != 1 && dto.PortType != 2)
  383. {
  384. return Ok(JsonView(false, "查询失败!"));
  385. }
  386. string orderbyStr = "order by gdi.CreateTime Desc";
  387. string sqlWhere = string.Empty;
  388. if (dto.IsSure == 0) //未完成
  389. {
  390. sqlWhere += string.Format(@" And IsSure = 0");
  391. }
  392. else if (dto.IsSure == 1) //已完成
  393. {
  394. sqlWhere += string.Format(@" And IsSure = 1");
  395. }
  396. //团组类型
  397. if (dto.TeamDid > 0)
  398. {
  399. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  400. }
  401. //团组名称
  402. if (!string.IsNullOrEmpty(dto.TeamName))
  403. {
  404. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  405. }
  406. //客户名称
  407. if (!string.IsNullOrEmpty(dto.ClientName))
  408. {
  409. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  410. }
  411. //客户单位
  412. if (!string.IsNullOrEmpty(dto.ClientUnit))
  413. {
  414. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  415. }
  416. //出访时间
  417. if (!string.IsNullOrEmpty(dto.visitDataTime))
  418. {
  419. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  420. orderbyStr = "order by gdi.VisitDate";
  421. }
  422. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  423. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  424. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  425. JietuanOperator,IsSure,CreateTime
  426. From (
  427. Select row_number() over({0}) as Row_Number,
  428. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  429. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  430. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  431. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  432. From Grp_DelegationInfo gdi
  433. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  434. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  435. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  436. Where gdi.IsDel = 0 {1}
  437. ) temp ", orderbyStr, sqlWhere);
  438. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  439. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  440. #region 处理所属部门
  441. /*
  442. * 1.sq 和 gyy 等显示 市场部
  443. * 2.王鸽和主管及张总还有管理员号统一国交部
  444. * 2-1. 4 管理员 ,21 张海麟
  445. */
  446. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  447. List<int> userIds1 = new List<int>() { 4, 21 };
  448. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  449. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  450. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  451. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  452. .ToList();
  453. foreach (var item in _DelegationList)
  454. {
  455. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  456. }
  457. #endregion
  458. var _view = new
  459. {
  460. PageFuncAuth = pageFunAuthView,
  461. Data = _DelegationList
  462. };
  463. return Ok(JsonView(true, "查询成功!", _view, total));
  464. }
  465. /// <summary>
  466. /// 接团信息详情
  467. /// </summary>
  468. /// <param name="dto">团组info请求dto</param>
  469. /// <returns></returns>
  470. [HttpPost]
  471. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  472. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  473. {
  474. var groupData = await _groupRepository.GetGroupInfo(dto);
  475. if (groupData.Code != 0)
  476. {
  477. return Ok(JsonView(false, groupData.Msg));
  478. }
  479. return Ok(JsonView(groupData.Data));
  480. }
  481. /// <summary>
  482. /// 接团信息 编辑添加
  483. /// 基础信息数据源
  484. /// </summary>
  485. /// <param name="dto"></param>
  486. /// <returns></returns>
  487. [HttpPost]
  488. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  489. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  490. {
  491. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  492. if (groupData.Code != 0)
  493. {
  494. return Ok(JsonView(false, groupData.Msg));
  495. }
  496. return Ok(JsonView(groupData.Data));
  497. }
  498. /// <summary>
  499. /// 接团信息 操作(增改)
  500. /// </summary>
  501. /// <param name="dto"></param>
  502. /// <returns></returns>
  503. [HttpPost]
  504. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  505. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  506. {
  507. try
  508. {
  509. var groupData = await _groupRepository.GroupOperation(dto);
  510. if (groupData.Code != 0)
  511. {
  512. return Ok(JsonView(false, groupData.Msg));
  513. }
  514. int diId = 0;
  515. //添加时 默认加入团组汇率
  516. if (dto.Status == 1) //添加
  517. {
  518. diId = groupData.Data;
  519. //添加默认币种
  520. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  521. //默认分配权限
  522. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  523. //消息提示 王鸽 主管号
  524. List<int> _managerIds = new List<int>() { 22, 32 };
  525. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  526. if (userIds.Count > 0)
  527. {
  528. userIds.Add(208);
  529. //创建团组管控
  530. GroupStepForDelegation.CreateWorkStep(diId);
  531. //发送消息
  532. string groupName = dto.TeamName;
  533. string createGroupUser = string.Empty;
  534. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  535. if (userInfo != null) createGroupUser = userInfo.CnName;
  536. string title = $"系统通知";
  537. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  538. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  539. }
  540. //默认创建倒推表
  541. await _invertedListRep._Create(dto.UserId, diId);
  542. }
  543. else if (dto.Status == 2)
  544. {
  545. diId = dto.Id;
  546. }
  547. return Ok(JsonView(true, "操作成功!", diId));
  548. }
  549. catch (Exception ex)
  550. {
  551. Logs("[response]" + JsonConvert.SerializeObject(dto));
  552. Logs(ex.Message);
  553. return Ok(JsonView(false, ex.Message));
  554. }
  555. }
  556. /// <summary>
  557. /// 接团流程操作(增改)
  558. /// 安卓端使用 建团时添加客户名单
  559. /// </summary>
  560. /// <param name="dto"></param>
  561. /// <returns></returns>
  562. [HttpPost]
  563. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  564. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  565. {
  566. try
  567. {
  568. #region 参数验证
  569. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  570. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  571. #region 页面操作权限验证
  572. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  573. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  574. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  575. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  576. #endregion
  577. #endregion
  578. _sqlSugar.BeginTran();
  579. var _dto = new GroupOperationDto();
  580. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  581. var groupData = await _groupRepository.GroupOperation(_dto);
  582. if (groupData.Code != 0)
  583. {
  584. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  585. }
  586. int diId = 0;
  587. //添加时 默认加入团组汇率
  588. if (dto.Status == 1) //添加
  589. {
  590. diId = groupData.Data;
  591. //添加默认币种
  592. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  593. //默认分配权限
  594. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  595. //消息提示 王鸽 主管号
  596. List<int> _managerIds = new List<int>() { 22, 32 };
  597. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  598. if (userIds.Count > 0)
  599. {
  600. userIds.Add(208);
  601. //创建团组管控
  602. GroupStepForDelegation.CreateWorkStep(diId);
  603. //发送消息
  604. string groupName = dto.TeamName;
  605. string createGroupUser = string.Empty;
  606. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  607. if (userInfo != null) createGroupUser = userInfo.CnName;
  608. string title = $"系统通知";
  609. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  610. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  611. }
  612. }
  613. if (dto.Status == 2)
  614. {
  615. diId = dto.Id;
  616. if (diId == 0)
  617. {
  618. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  619. }
  620. }
  621. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  622. if (viewData.Code != 0)
  623. {
  624. _sqlSugar.RollbackTran();
  625. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  626. }
  627. _sqlSugar.CommitTran();
  628. return Ok(JsonView(true, "添加成功"));
  629. }
  630. catch (Exception ex)
  631. {
  632. _sqlSugar.RollbackTran();
  633. return Ok(JsonView(false, ex.Message));
  634. }
  635. }
  636. /// <summary>
  637. /// 接团信息 操作(删除)
  638. /// </summary>
  639. /// <param name="dto"></param>
  640. /// <returns></returns>
  641. [HttpPost]
  642. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  643. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  644. {
  645. try
  646. {
  647. var groupData = await _groupRepository.GroupDel(dto);
  648. if (groupData.Code != 0)
  649. {
  650. return Ok(JsonView(false, groupData.Msg));
  651. }
  652. return Ok(JsonView(true));
  653. }
  654. catch (Exception ex)
  655. {
  656. Logs("[response]" + JsonConvert.SerializeObject(dto));
  657. Logs(ex.Message);
  658. return Ok(JsonView(false, ex.Message));
  659. }
  660. }
  661. /// <summary>
  662. /// 获取团组销售报价号
  663. /// 团组添加时 使用
  664. /// </summary>
  665. /// <returns></returns>
  666. [HttpPost]
  667. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  668. public async Task<IActionResult> GetGroupSalesQuoteNo()
  669. {
  670. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  671. if (groupData.Code != 0)
  672. {
  673. return Ok(JsonView(false, groupData.Msg));
  674. }
  675. object salesQuoteNo = new
  676. {
  677. SalesQuoteNo = groupData.Data
  678. };
  679. return Ok(JsonView(salesQuoteNo));
  680. }
  681. /// <summary>
  682. /// 设置确认出团
  683. /// </summary>
  684. /// <param name="dto"></param>
  685. /// <returns></returns>
  686. [HttpPost]
  687. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  688. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  689. {
  690. var groupData = await _groupRepository.ConfirmationGroup(dto);
  691. if (groupData.Code != 0)
  692. {
  693. return Ok(JsonView(false, groupData.Msg));
  694. }
  695. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  696. #region OA消息推送
  697. try
  698. {
  699. string groupName = groupInfo.TeamName;
  700. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  701. List<int> userIds = new List<int>();
  702. listUser.ForEach(s => userIds.Add(s.Id));
  703. string title = $"系统通知";
  704. string content = $"团组[{groupName}]已确认出团!";
  705. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  706. }
  707. catch (Exception ex)
  708. {
  709. }
  710. #endregion
  711. #region 应用推送
  712. try
  713. {
  714. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  715. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  716. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  717. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  718. {
  719. List<string> userList = new List<string>() { users.QiyeChatUserId };
  720. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  721. }
  722. }
  723. catch (Exception ex)
  724. {
  725. }
  726. #endregion
  727. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  728. return Ok(JsonView(true, "操作成功!", groupData.Data));
  729. }
  730. /// <summary>
  731. /// 获取团组名称data And 签证国别Data
  732. /// </summary>
  733. /// <param name="dto"></param>
  734. /// <returns></returns>
  735. [HttpPost]
  736. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  737. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  738. {
  739. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  740. if (groupData.Code != 0)
  741. {
  742. return Ok(JsonView(false, groupData.Msg));
  743. }
  744. return Ok(JsonView(groupData.Data));
  745. }
  746. /// <summary>
  747. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  748. /// </summary>
  749. /// <returns></returns>
  750. [HttpPost]
  751. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  752. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  753. {
  754. try
  755. {
  756. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  757. if (groupData.Code != 0)
  758. {
  759. return Ok(JsonView(false, groupData.Msg));
  760. }
  761. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  762. }
  763. catch (Exception ex)
  764. {
  765. return Ok(JsonView(false, "程序错误!"));
  766. throw;
  767. }
  768. }
  769. #endregion
  770. #region 团组&签证
  771. /// <summary>
  772. /// 根据团组Id获取签证客户信息List
  773. /// </summary>
  774. /// <param name="dto">请求dto</param>
  775. /// <returns></returns>
  776. [HttpPost]
  777. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  778. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  779. {
  780. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  781. if (groupData.Code != 0)
  782. {
  783. return Ok(JsonView(false, groupData.Msg));
  784. }
  785. return Ok(JsonView(groupData.Data));
  786. }
  787. /// <summary>
  788. /// IOS获取团组签证拍照上传进度01(团组列表)
  789. /// </summary>
  790. /// <param name="dto">请求dto</param>
  791. /// <returns></returns>
  792. [HttpPost]
  793. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  794. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  795. {
  796. if (dto == null)
  797. {
  798. return Ok(JsonView(false, "参数为空"));
  799. }
  800. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  801. return Ok(JsonView(visaList));
  802. }
  803. /// <summary>
  804. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  805. /// </summary>
  806. /// <returns></returns>
  807. [HttpPost]
  808. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  809. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  810. {
  811. if (dto == null)
  812. {
  813. return Ok(JsonView(false, "请求错误:"));
  814. }
  815. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  816. return Ok(JsonView(list));
  817. }
  818. /// <summary>
  819. /// IOS获取团组签证拍照上传进度03(相册)
  820. /// </summary>
  821. /// <returns></returns>
  822. [HttpPost]
  823. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  824. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  825. {
  826. if (dto == null)
  827. {
  828. return Ok(JsonView(false, "请求错误:"));
  829. }
  830. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  831. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  832. list.ForEach(s => s.url = url);
  833. return Ok(JsonView(list));
  834. }
  835. /// <summary>
  836. /// IOS获取团组签证拍照上传进度04(图片上传)
  837. /// </summary>
  838. /// <param name="dto"></param>
  839. /// <returns></returns>
  840. [HttpPost]
  841. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  842. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  843. {
  844. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  845. //if (!string.IsNullOrEmpty(result))
  846. //{
  847. //}
  848. //else {
  849. // return Ok(JsonView(false, "上传失败"));
  850. //}
  851. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  852. int sucNum = 0;
  853. try
  854. {
  855. foreach (var item in dto.base64DataList)
  856. {
  857. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  858. string result = decodeBase64ToImage(item, imageName);
  859. if (!string.IsNullOrEmpty(result))
  860. {
  861. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  862. pic.CreateUserId = dto.CreateUserId;
  863. pic.PicName = imageName;
  864. pic.PicPath = result;
  865. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  866. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  867. if (insertResult > 0)
  868. {
  869. sucNum++;
  870. }
  871. }
  872. }
  873. }
  874. catch (Exception ex)
  875. {
  876. return Ok(JsonView(false, ex.Message));
  877. }
  878. string msg = string.Format(@"成功上传{0}张", sucNum);
  879. return Ok(JsonView(true, msg));
  880. }
  881. private string decodeBase64ToImage(string base64DataURL, string imgName)
  882. {
  883. string filename = "";//声明一个string类型的相对路径
  884. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  885. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  886. try//会有异常抛出,try,catch一下
  887. {
  888. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  889. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  890. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  891. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  892. //文件名称
  893. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  894. //上传的文件的路径
  895. string filePath = "";
  896. if (!Directory.Exists(fileDir))
  897. {
  898. Directory.CreateDirectory(fileDir);
  899. }
  900. //上传的文件的路径
  901. filePath = fileDir + filename;
  902. //string url = HttpRuntime.AppDomainAppPath.ToString();
  903. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  904. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  905. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  906. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  907. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  908. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  909. ms.Close();//关闭当前流,并释放所有与之关联的资源
  910. bitmap.Dispose();
  911. }
  912. catch (Exception e)
  913. {
  914. string massage = e.Message;
  915. Logs("IOS图片上传Error:" + massage);
  916. //filename = e.Message;
  917. }
  918. return filename;//返回相对路径
  919. }
  920. /// <summary>
  921. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  922. /// </summary>
  923. /// <param name="dto"></param>
  924. /// <returns></returns>
  925. [HttpPost]
  926. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  927. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  928. {
  929. if (dto == null)
  930. {
  931. return Ok(JsonView(false, "请求错误:"));
  932. }
  933. string msg = "参数错误";
  934. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  935. {
  936. try
  937. {
  938. //_delegationVisaRep.BeginTran();
  939. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  940. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  941. .Where(s => s.Id == dto.visaProgressCustomerId)
  942. .ExecuteCommandAsync();
  943. if (updCount > 0 && dto.publishCode == 1)
  944. {
  945. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  946. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  947. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  948. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  949. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  950. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  951. if (groupData == null)
  952. {
  953. _delegationVisaRep.RollbackTran();
  954. }
  955. string title = string.Format(@"[签证进度更新]");
  956. string content = string.Format(@"测试文本");
  957. bool rst = await _message.AddMsg(new MessageDto()
  958. {
  959. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  960. IssuerId = dto.publisher,
  961. Title = title,
  962. Content = content,
  963. ReleaseTime = DateTime.Now,
  964. UIdList = new List<int> {
  965. 234
  966. }
  967. });
  968. if (rst)
  969. {
  970. return Ok(JsonView(true, "发送通知成功"));
  971. }
  972. }
  973. //_delegationVisaRep.CommitTran();
  974. }
  975. catch (Exception)
  976. {
  977. //_delegationVisaRep.RollbackTran();
  978. }
  979. }
  980. return Ok(JsonView(true, msg));
  981. }
  982. #endregion
  983. #region 团组任务分配
  984. /// <summary>
  985. /// 团组任务分配初始化
  986. /// </summary>
  987. /// <param name="dto"></param>
  988. /// <returns></returns>
  989. [HttpPost]
  990. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  991. public async Task<IActionResult> GetTaskAssignmen()
  992. {
  993. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  994. if (groupData.Code != 0)
  995. {
  996. return Ok(JsonView(false, groupData.Msg));
  997. }
  998. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  999. }
  1000. /// <summary>
  1001. /// 团组任务分配查询
  1002. /// </summary>
  1003. /// <param name="dto"></param>
  1004. /// <returns></returns>
  1005. [HttpPost]
  1006. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1007. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1008. {
  1009. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1010. if (groupData.Code != 0)
  1011. {
  1012. return Ok(JsonView(false, groupData.Msg));
  1013. }
  1014. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1015. }
  1016. /// <summary>
  1017. /// 团组任务分配操作
  1018. /// </summary>
  1019. /// <param name="dto"></param>
  1020. /// <returns></returns>
  1021. [HttpPost]
  1022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1023. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1024. {
  1025. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1026. if (groupData.Code != 0)
  1027. {
  1028. return Ok(JsonView(false, groupData.Msg));
  1029. }
  1030. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1031. }
  1032. #endregion
  1033. #region 团组费用审核
  1034. /// <summary>
  1035. /// 费用审核
  1036. /// 团组列表 Page
  1037. /// </summary>
  1038. /// <param name="_dto">团组列表请求dto</param>
  1039. /// <returns></returns>
  1040. [HttpPost]
  1041. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1042. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1043. {
  1044. #region 参数验证
  1045. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1046. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1047. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1048. #region 页面操作权限验证
  1049. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1050. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1051. #endregion
  1052. #endregion
  1053. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1054. {
  1055. string sqlWhere = string.Empty;
  1056. if (_dto.IsSure == 0) //未完成
  1057. {
  1058. sqlWhere += string.Format(@" And IsSure = 0");
  1059. }
  1060. else if (_dto.IsSure == 1) //已完成
  1061. {
  1062. sqlWhere += string.Format(@" And IsSure = 1");
  1063. }
  1064. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1065. {
  1066. string tj = _dto.SearchCriteria;
  1067. 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}%')",
  1068. tj, tj, tj, tj, tj);
  1069. }
  1070. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1071. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1072. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1073. From (
  1074. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1075. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1076. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1077. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1078. From Grp_DelegationInfo gdi
  1079. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1080. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1081. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1082. Where gdi.IsDel = 0 {0}
  1083. ) temp ", sqlWhere);
  1084. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1085. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1086. var _view = new
  1087. {
  1088. PageFuncAuth = pageFunAuthView,
  1089. Data = _DelegationList
  1090. };
  1091. return Ok(JsonView(true, "查询成功!", _view, total));
  1092. }
  1093. else
  1094. {
  1095. return Ok(JsonView(false, "查询失败"));
  1096. }
  1097. }
  1098. /// <summary>
  1099. /// 获取团组费用审核
  1100. /// </summary>
  1101. /// <param name="paras">参数Json字符串</param>
  1102. /// <returns></returns>
  1103. [HttpPost]
  1104. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1105. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1106. {
  1107. try
  1108. {
  1109. #region 参数验证
  1110. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1111. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1112. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1113. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1114. #region 页面操作权限验证
  1115. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1116. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1117. #endregion
  1118. #endregion
  1119. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1120. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1121. #region 费用清单
  1122. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1123. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1124. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1125. List<Grp_CreditCardPayment> entityList = _groupRepository
  1126. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1127. .Where(exp.ToExpression())
  1128. .ToList();
  1129. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1130. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1131. /*
  1132. * 76://酒店预订
  1133. */
  1134. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1135. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1136. .ToListAsync();
  1137. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1138. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1139. .ToListAsync();
  1140. /*
  1141. * 79://车/导游地接
  1142. */
  1143. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1144. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1145. .ToListAsync();
  1146. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1147. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1148. .ToListAsync();
  1149. /*
  1150. * 80: //签证
  1151. */
  1152. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1153. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1154. .ToListAsync();
  1155. /*
  1156. *81: //邀请/公务活动
  1157. */
  1158. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1159. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1160. .ToListAsync();
  1161. /*
  1162. * 82: //团组客户保险
  1163. */
  1164. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1165. /*
  1166. * Lable = 85 机票预订
  1167. */
  1168. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1169. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1170. .ToListAsync();
  1171. /*
  1172. * 85 机票预定
  1173. */
  1174. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1175. /*
  1176. * 98 其他款项
  1177. */
  1178. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1179. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1180. .ToListAsync();
  1181. /*
  1182. * 285:收款退还
  1183. */
  1184. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1185. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1186. .ToListAsync();
  1187. /*
  1188. * 1015: //超支费用
  1189. */
  1190. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1191. /*
  1192. * 币种信息
  1193. */
  1194. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1195. /*
  1196. * 车/导游地接 费用类型
  1197. */
  1198. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1199. /*
  1200. * 车/导游地接 费用类型
  1201. */
  1202. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1203. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1204. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1205. /*
  1206. * 用户信息
  1207. */
  1208. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1209. /*
  1210. * 费用模块
  1211. */
  1212. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1213. string priceModule = string.Empty;
  1214. if (sdPriceName != null)
  1215. {
  1216. priceModule = sdPriceName.Name;
  1217. }
  1218. /*
  1219. * 成本信息
  1220. */
  1221. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1222. decimal _groupRate = 0.0000M;
  1223. string _groupCurrencyCode = "-";
  1224. if (groupCost != null)
  1225. {
  1226. _groupRate = groupCost.Rate;
  1227. if (int.TryParse(groupCost.Currency, out int _currency))
  1228. {
  1229. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1230. }
  1231. else _groupCurrencyCode = groupCost.Currency;
  1232. }
  1233. string costContentSql = $"Select * From Grp_GroupCost";
  1234. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1235. //处理日期为空的天数
  1236. for (int i = 0; i < groupCostDetails.Count; i++)
  1237. if (i != 0)
  1238. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1239. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1240. /*
  1241. * 处理详情数据
  1242. */
  1243. foreach (var entity in entityList)
  1244. {
  1245. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1246. _detail.Id = entity.Id;
  1247. _detail.PriceName = priceModule;
  1248. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1249. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1250. /*
  1251. * 应付款金额
  1252. */
  1253. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1254. string PaymentCurrency_WaitPay = "Unknown";
  1255. string hotelCurrncyCode = "Unknown";
  1256. string hotelCurrncyName = "Unknown";
  1257. if (sdPaymentCurrency_WaitPay != null)
  1258. {
  1259. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1260. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1261. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1262. if (hotelCurrncyCode.Equals("CNY"))
  1263. {
  1264. entity.DayRate = 1.0000M;
  1265. }
  1266. }
  1267. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1268. /*
  1269. * 此次付款金额
  1270. */
  1271. decimal CurrPayStr = 0;
  1272. if (entity.PayPercentage == 0)
  1273. {
  1274. if (entity.PayThenMoney != 0)
  1275. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1276. }
  1277. else
  1278. {
  1279. if (entity.PayMoney != 0)
  1280. {
  1281. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1282. }
  1283. }
  1284. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1285. /*
  1286. * 剩余尾款
  1287. */
  1288. decimal BalanceStr = 0;
  1289. if (CurrPayStr != 0)
  1290. {
  1291. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1292. BalanceStr = 0;
  1293. else
  1294. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1295. }
  1296. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1297. /*
  1298. * Bus名称
  1299. */
  1300. _detail.BusName = "待增加";
  1301. /*
  1302. *费用所属
  1303. */
  1304. switch (entity.CTable)
  1305. {
  1306. case 76://酒店预订
  1307. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1308. if (hotelReservations != null)
  1309. {
  1310. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1311. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1312. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1313. string roomFeeStr = "", roomFeestr1 = "";
  1314. //是否比较房型价格
  1315. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1316. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1317. if (hotelReservations.SingleRoomPrice > 0)
  1318. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1319. if (hotelReservations.DoubleRoomPrice > 0)
  1320. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1321. if (hotelReservations.SuiteRoomPrice > 0)
  1322. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1323. if (hotelReservations.OtherRoomPrice > 0)
  1324. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1325. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1326. else roomFeeStr += " 0.00 * 0";
  1327. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1328. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1329. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1330. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1331. /*
  1332. * 费用类型
  1333. * 1:房费
  1334. * 2:早餐
  1335. * 3:地税
  1336. * 4:城市税
  1337. * </summary>
  1338. */
  1339. //地税
  1340. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1341. if (governmentRentData != null)
  1342. {
  1343. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1344. governmentRentFee = governmentRentData.Price;
  1345. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1346. if (governmentRentCurrData != null)
  1347. {
  1348. governmentRentCode = governmentRentCurrData.Name;
  1349. governmentRentName = $"({governmentRentCurrData.Remark})";
  1350. }
  1351. }
  1352. //城市税
  1353. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1354. if (cityTaxData != null)
  1355. {
  1356. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1357. cityTaxFee = cityTaxData.Price;
  1358. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1359. if (cityTaxCurrData != null)
  1360. {
  1361. cityTaxCode = cityTaxCurrData.Name;
  1362. cityTaxName = $"({cityTaxCurrData.Remark})";
  1363. }
  1364. }
  1365. //酒店早餐
  1366. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1367. if (breakfastData != null)
  1368. {
  1369. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1370. breakfastFee = breakfastData.Price;
  1371. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1372. if (breakfastCurrData != null)
  1373. {
  1374. breakfastCode = breakfastCurrData.Name;
  1375. breakfastName = $"({breakfastCurrData.Remark})";
  1376. }
  1377. }
  1378. //房间费用
  1379. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1380. if (roomData != null)
  1381. {
  1382. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1383. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1384. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1385. roomFee = roomData.Price;
  1386. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1387. if (roomCurrData != null)
  1388. {
  1389. roomCode = roomCurrData.Name;
  1390. roomName = $"({roomCurrData.Remark})";
  1391. }
  1392. }
  1393. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1394. string hotelCostStr = "";
  1395. decimal hotelCsotTotal = 0.00M;
  1396. if (groupCost != null)
  1397. {
  1398. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1399. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1400. }
  1401. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1402. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1403. string hotelCost_day = "";
  1404. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1405. foreach (var item in hotelCostDetails1)
  1406. {
  1407. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1408. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1409. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1410. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1411. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1412. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1413. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1414. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1415. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1416. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1417. hotelCost_day += @$"</br>";
  1418. }
  1419. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1420. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1421. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1422. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1423. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1424. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1425. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1426. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1427. $"房间说明: {hotelReservations.Remark} <br/>" +
  1428. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1429. $"{hotelBreakfastStr}" +
  1430. $"{hotelGovernmentRentStr}" +
  1431. $"{hotelCityTaxStr}";
  1432. _detail.PriceNameContent = hotelReservations.HotelName;
  1433. }
  1434. break;
  1435. case 79://车/导游地接
  1436. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1437. if (touristGuideGroundReservations != null)
  1438. {
  1439. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1440. {
  1441. _detail.BusName = touristGuideGroundReservations.BusName;
  1442. }
  1443. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1444. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1445. //if (isInt)
  1446. //{
  1447. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1448. // if (cityInfo != null)
  1449. // {
  1450. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1451. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1452. // if (carFeeItem != null)
  1453. // {
  1454. // nameContent += $@"({carFeeItem.Name})";
  1455. // }
  1456. // _detail.PriceNameContent = nameContent;
  1457. // }
  1458. //}
  1459. //else
  1460. //{
  1461. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1462. //}
  1463. var touristGuideGroundReservationsContents =
  1464. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1465. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1466. foreach (var item in touristGuideGroundReservationsContents)
  1467. {
  1468. string typeName = "Unknown";
  1469. string carCurrencyCode = "Unknown";
  1470. string carCurrencyName = "Unknown";
  1471. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1472. if (carTypeData != null) typeName = carTypeData.Name;
  1473. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1474. if (currencyData != null)
  1475. {
  1476. carCurrencyCode = currencyData.Name;
  1477. carCurrencyName = currencyData.Remark;
  1478. }
  1479. string opCostStr = string.Empty;
  1480. decimal opCostTypePrice = 0.00M;
  1481. #region 处理成本各项费用
  1482. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1483. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1484. if (opCost.Count > 0)
  1485. {
  1486. switch (item.SId)
  1487. {
  1488. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1489. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1490. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1491. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1492. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1493. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1494. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1495. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1496. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1497. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1498. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1499. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1500. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1501. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1502. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1503. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1504. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1505. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1506. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1507. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1508. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1509. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1510. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1511. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1512. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1513. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1514. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1515. }
  1516. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1517. }
  1518. #endregion
  1519. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1520. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1521. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1522. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1523. }
  1524. _detail.PriceMsgContent = priceMsg;
  1525. }
  1526. break;
  1527. case 80: //签证
  1528. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1529. if (visaInfo != null)
  1530. {
  1531. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1532. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1533. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1534. }
  1535. break;
  1536. case 81: //邀请/公务活动
  1537. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1538. if (_ioa != null)
  1539. {
  1540. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1541. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1542. sendCurrName = "Unknown", //快递费用币种 Name
  1543. sendCurrCode = "Unknown", //快递费用币种 Code
  1544. eventsCurrName = "Unknown", //公务活动费币种 Name
  1545. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1546. translateCurrName = "Unknown", //公务翻译费 Name
  1547. translateCurrCode = "Unknown"; //公务翻译费 Code
  1548. #region 处理费用币种
  1549. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1550. if (inviteCurrData != null)
  1551. {
  1552. inviteCurrName = inviteCurrData.Remark;
  1553. inviteCurrCode = inviteCurrData.Name;
  1554. }
  1555. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1556. if (sendCurrData != null)
  1557. {
  1558. sendCurrName = sendCurrData.Remark;
  1559. sendCurrCode = sendCurrData.Name;
  1560. }
  1561. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1562. if (eventsCurrData != null)
  1563. {
  1564. eventsCurrName = eventsCurrData.Remark;
  1565. eventsCurrCode = eventsCurrData.Name;
  1566. }
  1567. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1568. if (translateCurrData != null)
  1569. {
  1570. translateCurrName = translateCurrData.Remark;
  1571. translateCurrCode = translateCurrData.Name;
  1572. }
  1573. #endregion
  1574. _detail.PriceNameContent = _ioa.InviterArea;
  1575. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1576. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1577. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1578. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1579. $@"备注:" + _ioa.Remark + "<br/>";
  1580. }
  1581. break;
  1582. case 82: //团组客户保险
  1583. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1584. if (customers != null)
  1585. {
  1586. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1587. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1588. }
  1589. break;
  1590. case 85: //机票预订
  1591. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1592. if (jpRes != null)
  1593. {
  1594. string FlightsDescription = jpRes.FlightsDescription;
  1595. string PriceDescription = jpRes.PriceDescription;
  1596. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1597. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1598. }
  1599. break;
  1600. case 98://其他款项
  1601. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1602. if (gdpRes != null)
  1603. {
  1604. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1605. _detail.PriceNameContent = gdpRes.PriceName;
  1606. }
  1607. break;
  1608. case 285://收款退还
  1609. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1610. if (refundAndOtherMoney != null)
  1611. {
  1612. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1613. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1614. }
  1615. break;
  1616. case 751://酒店早餐
  1617. break;
  1618. case 1015://超支费用
  1619. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1620. if (groupExtraCost != null)
  1621. {
  1622. _detail.PriceNameContent = groupExtraCost.PriceName;
  1623. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1624. }
  1625. break;
  1626. default:
  1627. break;
  1628. }
  1629. /*
  1630. * 申请人
  1631. */
  1632. string operatorName = " - ";
  1633. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1634. if (_opUser != null)
  1635. {
  1636. operatorName = _opUser.CnName;
  1637. }
  1638. _detail.OperatorName = operatorName;
  1639. /*
  1640. * 审核人
  1641. */
  1642. string auditOperatorName = "Unknown";
  1643. if (entity.AuditGMOperate == 0)
  1644. auditOperatorName = " - ";
  1645. else if (entity.AuditGMOperate == 4)
  1646. auditOperatorName = "自动审核";
  1647. else
  1648. {
  1649. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1650. if (_adUser != null)
  1651. {
  1652. auditOperatorName = _adUser.CnName;
  1653. }
  1654. }
  1655. _detail.AuditOperatorName = auditOperatorName;
  1656. /*
  1657. * 超预算比例
  1658. */
  1659. string overBudgetStr = "";
  1660. if (entity.ExceedBudget == -1)
  1661. overBudgetStr = sdPriceName.Name + "尚无预算";
  1662. else if (entity.ExceedBudget == 0)
  1663. {
  1664. if (entity.CTable == 76 || entity.CTable == 79)
  1665. {
  1666. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1667. else overBudgetStr = "超预算";
  1668. }
  1669. else
  1670. {
  1671. overBudgetStr = "未超预算";
  1672. }
  1673. }
  1674. else
  1675. overBudgetStr = entity.ExceedBudget.ToString("P");
  1676. _detail.OverBudget = overBudgetStr;
  1677. /*
  1678. * 费用总计
  1679. */
  1680. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1681. {
  1682. CurrencyId = entity.PaymentCurrency,
  1683. CurrencyName = PaymentCurrency_WaitPay,
  1684. AmountPayable = entity.PayMoney,
  1685. ThisPayment = CurrPayStr,
  1686. BalancePayment = BalanceStr,
  1687. AuditedFunds = CurrPayStr
  1688. });
  1689. _detail.IsAuditGM = entity.IsAuditGM;
  1690. detailList.Add(_detail);
  1691. }
  1692. #endregion
  1693. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1694. /*
  1695. * 下方描述处理
  1696. */
  1697. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1698. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1699. if (ccpCurrencyPrice != null)
  1700. {
  1701. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1702. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1703. }
  1704. else
  1705. {
  1706. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1707. }
  1708. string amountPayableStr = string.Format(@"应付款总金额: ");
  1709. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1710. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1711. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1712. foreach (var item in nonDuplicat)
  1713. {
  1714. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1715. if (strs.Count > 0)
  1716. {
  1717. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1718. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1719. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1720. //单独处理此次付款金额
  1721. if (item.CurrencyId == 836) //人民币
  1722. {
  1723. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1724. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1725. }
  1726. else
  1727. {
  1728. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1729. }
  1730. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1731. //单独处理已审核费用
  1732. if (item.CurrencyId == 836) //人民币
  1733. {
  1734. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1735. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1736. }
  1737. else
  1738. {
  1739. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1740. }
  1741. }
  1742. }
  1743. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1744. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1745. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1746. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1747. var _view1 = new
  1748. {
  1749. PageFuncAuth = pageFunAuthView,
  1750. Data = _view
  1751. };
  1752. return Ok(JsonView(_view1));
  1753. }
  1754. catch (Exception ex)
  1755. {
  1756. return Ok(JsonView(false, ex.Message));
  1757. }
  1758. }
  1759. /// <summary>
  1760. /// 费用审核
  1761. /// 修改团组费用审核状态
  1762. /// </summary>
  1763. /// <param name="_dto">参数Json字符串</param>
  1764. /// <returns></returns>
  1765. [HttpPost]
  1766. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1767. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1768. {
  1769. #region 参数验证
  1770. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1771. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1772. #endregion
  1773. #region 页面操作权限验证
  1774. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1775. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1776. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1777. #endregion
  1778. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1779. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1780. DateTime dtNow = DateTime.Now;
  1781. _groupRepository.BeginTran();
  1782. int rst = 0;
  1783. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1784. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1785. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1786. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1787. List<dynamic> msgDatas = new List<dynamic>();
  1788. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1789. foreach (var item in idList)
  1790. {
  1791. int CreditId = int.Parse(item);
  1792. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1793. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1794. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1795. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1796. .Where(s => s.Id == CreditId)
  1797. .ExecuteCommandAsync();
  1798. if (result < 1)
  1799. {
  1800. rst = -1;
  1801. _groupRepository.RollbackTran();
  1802. return Ok(JsonView(false, "操作失败并回滚!"));
  1803. }
  1804. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1805. if (creditData != null)
  1806. {
  1807. #region 应用通知配置
  1808. try
  1809. {
  1810. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1811. }
  1812. catch (Exception ex)
  1813. {
  1814. }
  1815. #endregion
  1816. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1817. string groupNameStr = string.Empty;
  1818. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1819. if (groupData != null) groupNameStr = groupData.TeamName;
  1820. string creditTypeStr = string.Empty;
  1821. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1822. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1823. string creditCurrency = string.Empty;
  1824. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1825. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1826. if (creditCurrency.Equals("CNY"))
  1827. {
  1828. creditData.DayRate = 1.0000M;
  1829. }
  1830. if (creditData.PayPercentage == 0.00M)
  1831. {
  1832. creditData.PayPercentage = 100M;
  1833. }
  1834. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1835. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1836. string msgContent = "";
  1837. if (creditCurrency.Equals("CNY"))
  1838. {
  1839. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1840. }
  1841. else
  1842. {
  1843. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1844. }
  1845. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1846. }
  1847. }
  1848. if (rst == 0)
  1849. {
  1850. _groupRepository.CommitTran();
  1851. foreach (var item in msgDatas)
  1852. {
  1853. //发送消息
  1854. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1855. }
  1856. #region 应用推送
  1857. try
  1858. {
  1859. foreach (var ccpId in dic_ccp_user.Keys)
  1860. {
  1861. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1862. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1863. }
  1864. }
  1865. catch (Exception)
  1866. {
  1867. }
  1868. #endregion
  1869. return Ok(JsonView(true, "操作成功!"));
  1870. }
  1871. return Ok(JsonView(false, "操作失败!"));
  1872. }
  1873. #endregion
  1874. #region 机票费用录入
  1875. /// <summary>
  1876. /// 机票录入当前登录人可操作团组
  1877. /// </summary>
  1878. /// <param name="dto"></param>
  1879. /// <returns></returns>
  1880. [HttpPost]
  1881. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1882. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1883. {
  1884. try
  1885. {
  1886. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1887. if (groupData.Code != 0)
  1888. {
  1889. return Ok(JsonView(false, groupData.Msg));
  1890. }
  1891. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1892. }
  1893. catch (Exception ex)
  1894. {
  1895. return Ok(JsonView(false, "程序错误!"));
  1896. throw;
  1897. }
  1898. }
  1899. /// <summary>
  1900. /// 机票费用录入列表
  1901. /// </summary>
  1902. /// <param name="dto"></param>
  1903. /// <returns></returns>
  1904. [HttpPost]
  1905. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1906. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1907. {
  1908. try
  1909. {
  1910. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1911. if (groupData.Code != 0)
  1912. {
  1913. return Ok(JsonView(false, groupData.Msg));
  1914. }
  1915. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1916. }
  1917. catch (Exception ex)
  1918. {
  1919. return Ok(JsonView(false, ex.Message));
  1920. throw;
  1921. }
  1922. }
  1923. /// <summary>
  1924. /// 根据id查询费用录入信息
  1925. /// </summary>
  1926. /// <param name="dto"></param>
  1927. /// <returns></returns>
  1928. [HttpPost]
  1929. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1930. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1931. {
  1932. try
  1933. {
  1934. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1935. if (groupData.Code != 0)
  1936. {
  1937. return Ok(JsonView(false, groupData.Msg));
  1938. }
  1939. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1940. }
  1941. catch (Exception ex)
  1942. {
  1943. return Ok(JsonView(false, "程序错误!"));
  1944. throw;
  1945. }
  1946. }
  1947. /// <summary>
  1948. /// 机票费用录入操作(Status:1.新增,2.修改)
  1949. /// </summary>
  1950. /// <param name="dto"></param>
  1951. /// <returns></returns>
  1952. [HttpPost]
  1953. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1954. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1955. {
  1956. try
  1957. {
  1958. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1959. if (groupData.Code != 0)
  1960. {
  1961. return Ok(JsonView(false, groupData.Msg));
  1962. }
  1963. #region 应用推送
  1964. try
  1965. {
  1966. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  1967. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  1968. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  1969. }
  1970. catch (Exception ex)
  1971. {
  1972. }
  1973. #endregion
  1974. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1975. }
  1976. catch (Exception ex)
  1977. {
  1978. return Ok(JsonView(false, "程序错误!"));
  1979. throw;
  1980. }
  1981. }
  1982. /// <summary>
  1983. /// 根据舱位类型查询接团客户名单信息
  1984. /// </summary>
  1985. /// <param name="dto"></param>
  1986. /// <returns></returns>
  1987. [HttpPost]
  1988. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1989. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  1990. {
  1991. try
  1992. {
  1993. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  1994. if (crm_Groups.Count != 0)
  1995. {
  1996. List<dynamic> Customer = new List<dynamic>();
  1997. foreach (var item in crm_Groups)
  1998. {
  1999. var data = new
  2000. {
  2001. Id = item.Id,
  2002. Pinyin = item.Pinyin,
  2003. Name = item.LastName + item.FirstName
  2004. };
  2005. Customer.Add(data);
  2006. }
  2007. return Ok(JsonView(true, "查询成功!", Customer));
  2008. }
  2009. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2010. }
  2011. catch (Exception ex)
  2012. {
  2013. return Ok(JsonView(false, "程序错误!"));
  2014. throw;
  2015. }
  2016. }
  2017. /// <summary>
  2018. /// 根据团号获取客户信息
  2019. /// </summary>
  2020. /// <param name="dto"></param>
  2021. /// <returns></returns>
  2022. [HttpPost]
  2023. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2024. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2025. {
  2026. var jw = JsonView(false);
  2027. if (dto.DIID < 1)
  2028. {
  2029. jw.Msg += "请输入正确的diid";
  2030. return Ok(jw);
  2031. }
  2032. var arr = getSimplClientList(dto.DIID);
  2033. jw = JsonView(true, "获取成功!", arr);
  2034. return Ok(jw);
  2035. }
  2036. private List<SimplClientInfo> getSimplClientList(int diId)
  2037. {
  2038. 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);
  2039. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2040. return arr;
  2041. }
  2042. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2043. {
  2044. string result = origin;
  2045. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2046. {
  2047. string[] temparr = origin.Split(',');
  2048. string fistrStr = temparr[0];
  2049. int count = temparr.Count();
  2050. int tempId;
  2051. bool success = int.TryParse(fistrStr, out tempId);
  2052. if (success)
  2053. {
  2054. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2055. if (tempInfo != null)
  2056. {
  2057. if (count > 1)
  2058. {
  2059. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2060. }
  2061. else
  2062. {
  2063. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2064. }
  2065. }
  2066. }
  2067. }
  2068. return result;
  2069. }
  2070. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2071. {
  2072. string result = origin;
  2073. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2074. {
  2075. string[] temparr = origin.Split(',');
  2076. result = "";
  2077. foreach (var item in temparr)
  2078. {
  2079. int tempId;
  2080. bool success = int.TryParse(item, out tempId);
  2081. if (success)
  2082. {
  2083. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2084. if (tempInfo != null)
  2085. {
  2086. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2087. }
  2088. }
  2089. }
  2090. }
  2091. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2092. return result;
  2093. }
  2094. /// <summary>
  2095. /// 机票费用录入,删除
  2096. /// </summary>
  2097. /// <param name="dto"></param>
  2098. /// <returns></returns>
  2099. [HttpPost]
  2100. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2101. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2102. {
  2103. try
  2104. {
  2105. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2106. if (res)
  2107. {
  2108. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2109. {
  2110. IsDel = 1,
  2111. DeleteUserId = dto.DeleteUserId,
  2112. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2113. }).ExecuteCommandAsync();
  2114. return Ok(JsonView(true, "删除成功!"));
  2115. }
  2116. return Ok(JsonView(false, "删除失败!"));
  2117. }
  2118. catch (Exception ex)
  2119. {
  2120. return Ok(JsonView(false, "程序错误!"));
  2121. throw;
  2122. }
  2123. }
  2124. /// <summary>
  2125. /// 导出机票录入报表
  2126. /// </summary>
  2127. /// <param name="dto"></param>
  2128. /// <returns></returns>
  2129. [HttpPost]
  2130. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2131. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2132. {
  2133. try
  2134. {
  2135. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2136. if (groupData.Code != 0)
  2137. {
  2138. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2139. }
  2140. else
  2141. {
  2142. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2143. if (AirTicketReservations.Count != 0)
  2144. {
  2145. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2146. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2147. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2148. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2149. WorkbookDesigner designer = new WorkbookDesigner();
  2150. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2151. decimal countCost = 0;
  2152. foreach (var item in AirTicketReservations)
  2153. {
  2154. #region 处理客人姓名
  2155. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2156. item.ClientName = clientNames;
  2157. #endregion
  2158. if (item.BankType == "其他")
  2159. {
  2160. item.BankNo = "--";
  2161. }
  2162. else
  2163. {
  2164. if (!string.IsNullOrEmpty(item.BankType))
  2165. {
  2166. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2167. }
  2168. }
  2169. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2170. item.Price = System.Decimal.Round(item.Price, 2);
  2171. countCost += Convert.ToDecimal(item.Price);
  2172. }
  2173. designer.SetDataSource("Export", AirTicketReservations);
  2174. designer.SetDataSource("ExportDiCode", diCode);
  2175. designer.SetDataSource("ExportDiName", diName);
  2176. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2177. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2178. designer.Process();
  2179. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2180. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2181. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2182. return Ok(JsonView(true, "成功", url = rst));
  2183. }
  2184. else
  2185. {
  2186. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2187. }
  2188. }
  2189. }
  2190. catch (Exception ex)
  2191. {
  2192. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2193. throw;
  2194. }
  2195. }
  2196. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2197. /// <summary>
  2198. /// 行程单导出
  2199. /// </summary>
  2200. /// <param name="dto"></param>
  2201. /// <returns></returns>
  2202. [HttpPost]
  2203. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2204. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2205. {
  2206. try
  2207. {
  2208. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2209. if (groupData.Code != 0)
  2210. {
  2211. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2212. }
  2213. else
  2214. {
  2215. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2216. if (dto.Language == "CN")
  2217. {
  2218. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2219. DocumentBuilder builder = new DocumentBuilder(doc);
  2220. int tableIndex = 0;//表格索引
  2221. //得到文档中的第一个表格
  2222. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2223. foreach (var item in _AirTicketReservations)
  2224. {
  2225. #region 处理固定数据
  2226. string[] FlightsCode = item.FlightsCode.Split('/');
  2227. if (FlightsCode.Length != 0)
  2228. {
  2229. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2230. if (_AirCompany != null)
  2231. {
  2232. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2233. }
  2234. else
  2235. {
  2236. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2237. }
  2238. }
  2239. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2240. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2241. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2242. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2243. string name = "";
  2244. foreach (string clientName in nameArray)
  2245. {
  2246. if (!name.Contains(clientName))
  2247. {
  2248. name += clientName + ",";
  2249. }
  2250. }
  2251. if (!string.IsNullOrWhiteSpace(name))
  2252. {
  2253. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2254. }
  2255. else
  2256. {
  2257. table.Range.Bookmarks["ClientName"].Text = "--";
  2258. }
  2259. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2260. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2261. table.Range.Bookmarks["JointTicket"].Text = "--";
  2262. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2263. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2264. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2265. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2266. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2267. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2268. #endregion
  2269. #region 循环数据处理
  2270. List<AirInfo> airs = new List<AirInfo>();
  2271. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2272. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2273. for (int i = 0; i < FlightsCode.Length; i++)
  2274. {
  2275. AirInfo air = new AirInfo();
  2276. string[] tempstr = DayArray[i]
  2277. .Replace("\r\n", string.Empty)
  2278. .Replace("\\r\\n", string.Empty)
  2279. .TrimStart().TrimEnd()
  2280. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2281. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2282. string starCity = "";
  2283. if (star_Three != null)
  2284. {
  2285. starCity = star_Three.AirPort;
  2286. }
  2287. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2288. string EndCity = "";
  2289. if (End_Three != null)
  2290. {
  2291. EndCity = End_Three.AirPort;
  2292. }
  2293. air.Destination = starCity + "/" + EndCity;
  2294. air.Flight = FlightsCode[i];
  2295. air.SeatingClass = item.CTypeName;
  2296. string dateTime = tempstr[2];
  2297. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2298. air.FlightDate = DateTemp;
  2299. air.DepartureTime = tempstr[5];
  2300. air.LandingTime = tempstr[6];
  2301. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2302. air.TicketStatus = "--";
  2303. air.Luggage = "--";
  2304. air.DepartureTerminal = "--";
  2305. air.LandingTerminal = "--";
  2306. airs.Add(air);
  2307. }
  2308. int row = 13;
  2309. for (int i = 0; i < airs.Count; i++)
  2310. {
  2311. if (airs.Count > 2)
  2312. {
  2313. for (int j = 0; j < airs.Count - 2; j++)
  2314. {
  2315. var CopyRow = table.Rows[12].Clone(true);
  2316. table.Rows.Add(CopyRow);
  2317. }
  2318. }
  2319. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2320. int index = 0;
  2321. foreach (PropertyInfo property in properties)
  2322. {
  2323. string value = property.GetValue(airs[i]).ToString();
  2324. Cell ishcel0 = table.Rows[row].Cells[index];
  2325. Paragraph p = new Paragraph(doc);
  2326. string s = value;
  2327. p.AppendChild(new Run(doc, s));
  2328. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2329. ishcel0.AppendChild(p);
  2330. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2331. index++;
  2332. }
  2333. row++;
  2334. }
  2335. #endregion
  2336. Paragraph lastParagraph = new Paragraph(doc);
  2337. //第一个表格末尾加段落
  2338. table.ParentNode.InsertAfter(lastParagraph, table);
  2339. //复制第一个表格
  2340. Table cloneTable = (Table)table.Clone(true);
  2341. //在文档末尾段落后面加入复制的表格
  2342. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2343. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2344. {
  2345. int rownewsIndex = 13;
  2346. for (int i = 0; i < 2; i++)
  2347. {
  2348. var CopyRow = table.Rows[12].Clone(true);
  2349. table.Rows.RemoveAt(13);
  2350. table.Rows.Add(CopyRow);
  2351. rownewsIndex++;
  2352. }
  2353. }
  2354. else
  2355. {
  2356. table.Rows.RemoveAt(12);
  2357. }
  2358. cloneTable.Rows.RemoveAt(12);
  2359. }
  2360. if (_AirTicketReservations.Count != 0)
  2361. {
  2362. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2363. if (FlightsCode.Length != 0)
  2364. {
  2365. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2366. if (_AirCompany != null)
  2367. {
  2368. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2369. }
  2370. else
  2371. {
  2372. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2373. }
  2374. }
  2375. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2376. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2377. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2378. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2379. string name = "";
  2380. foreach (string clientName in nameArray)
  2381. {
  2382. if (!name.Contains(clientName))
  2383. {
  2384. name += clientName + ",";
  2385. }
  2386. }
  2387. if (!string.IsNullOrWhiteSpace(name))
  2388. {
  2389. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2390. }
  2391. else
  2392. {
  2393. table.Range.Bookmarks["ClientName"].Text = "--";
  2394. }
  2395. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2396. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2397. table.Range.Bookmarks["JointTicket"].Text = "--";
  2398. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2399. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2400. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2401. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2402. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2403. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2404. }
  2405. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2406. //保存合并后的文档
  2407. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2408. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2409. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2410. return Ok(JsonView(true, "成功!", rst));
  2411. }
  2412. else
  2413. {
  2414. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2415. DocumentBuilder builder = new DocumentBuilder(doc);
  2416. int tableIndex = 0;//表格索引
  2417. //得到文档中的第一个表格
  2418. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2419. List<string> texts = new List<string>();
  2420. foreach (var item in _AirTicketReservations)
  2421. {
  2422. string[] FlightsCode = item.FlightsCode.Split('/');
  2423. if (FlightsCode.Length != 0)
  2424. {
  2425. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2426. if (_AirCompany != null)
  2427. {
  2428. if (!transDic.ContainsKey(_AirCompany.CnName))
  2429. {
  2430. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2431. }
  2432. }
  2433. else
  2434. {
  2435. if (!transDic.ContainsKey("--"))
  2436. {
  2437. transDic.Add("--", "--");
  2438. }
  2439. }
  2440. }
  2441. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2442. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2443. string name = "";
  2444. foreach (string clientName in nameArray)
  2445. {
  2446. name += clientName + ",";
  2447. }
  2448. if (!texts.Contains(name))
  2449. {
  2450. texts.Add(name);
  2451. }
  2452. List<AirInfo> airs = new List<AirInfo>();
  2453. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2454. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2455. for (int i = 0; i < FlightsCode.Length; i++)
  2456. {
  2457. AirInfo air = new AirInfo();
  2458. string[] tempstr = DayArray[i]
  2459. .Replace("\r\n", string.Empty)
  2460. .Replace("\\r\\n", string.Empty)
  2461. .TrimStart().TrimEnd()
  2462. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2463. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2464. if (star_Three != null)
  2465. {
  2466. if (!transDic.ContainsKey(star_Three.AirPort))
  2467. {
  2468. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2469. }
  2470. }
  2471. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2472. if (End_Three != null)
  2473. {
  2474. if (!transDic.ContainsKey(End_Three.AirPort))
  2475. {
  2476. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2477. }
  2478. }
  2479. if (!texts.Contains(item.CTypeName))
  2480. {
  2481. texts.Add(item.CTypeName);
  2482. }
  2483. }
  2484. }
  2485. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2486. if (transData.Count > 0)
  2487. {
  2488. foreach (TranslateResult item in transData)
  2489. {
  2490. if (!transDic.ContainsKey(item.Query))
  2491. {
  2492. transDic.Add(item.Query, item.Translation);
  2493. }
  2494. }
  2495. }
  2496. foreach (var item in _AirTicketReservations)
  2497. {
  2498. #region 处理固定数据
  2499. string[] FlightsCode = item.FlightsCode.Split('/');
  2500. if (FlightsCode.Length != 0)
  2501. {
  2502. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2503. if (_AirCompany != null)
  2504. {
  2505. string str = "--";
  2506. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2507. if (!string.IsNullOrEmpty(translateResult))
  2508. {
  2509. str = translateResult;
  2510. str = _airTicketResRep.Processing(str);
  2511. }
  2512. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2513. }
  2514. else
  2515. {
  2516. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2517. }
  2518. }
  2519. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2520. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2521. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2522. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2523. string names = "";
  2524. foreach (string clientName in nameArray)
  2525. {
  2526. names += clientName + ",";
  2527. }
  2528. if (!string.IsNullOrWhiteSpace(names))
  2529. {
  2530. string str = "--";
  2531. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2532. if (!string.IsNullOrEmpty(translateResult))
  2533. {
  2534. str = translateResult;
  2535. str = _airTicketResRep.Processing(str);
  2536. }
  2537. table.Range.Bookmarks["ClientName"].Text = str;
  2538. }
  2539. else
  2540. {
  2541. table.Range.Bookmarks["ClientName"].Text = "--";
  2542. }
  2543. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2544. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2545. table.Range.Bookmarks["JointTicket"].Text = "--";
  2546. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2547. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2548. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2549. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2550. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2551. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2552. #endregion
  2553. #region 循环数据处理
  2554. List<AirInfo> airs = new List<AirInfo>();
  2555. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2556. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2557. for (int i = 0; i < FlightsCode.Length; i++)
  2558. {
  2559. AirInfo air = new AirInfo();
  2560. string[] tempstr = DayArray[i]
  2561. .Replace("\r\n", string.Empty)
  2562. .Replace("\\r\\n", string.Empty)
  2563. .TrimStart().TrimEnd()
  2564. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2565. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2566. string starCity = "";
  2567. if (star_Three != null)
  2568. {
  2569. string str2 = "--";
  2570. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2571. if (!string.IsNullOrEmpty(translateResult2))
  2572. {
  2573. str2 = translateResult2;
  2574. str2 = _airTicketResRep.Processing(str2);
  2575. }
  2576. starCity = str2;
  2577. }
  2578. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2579. string EndCity = "";
  2580. if (End_Three != null)
  2581. {
  2582. string str1 = "--";
  2583. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2584. if (!string.IsNullOrEmpty(translateResult1))
  2585. {
  2586. str1 = translateResult1;
  2587. str1 = _airTicketResRep.Processing(str1);
  2588. }
  2589. EndCity = str1;
  2590. }
  2591. air.Destination = starCity + "/" + EndCity;
  2592. air.Flight = FlightsCode[i];
  2593. string str = "--";
  2594. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2595. if (!string.IsNullOrEmpty(translateResult))
  2596. {
  2597. str = translateResult;
  2598. str = _airTicketResRep.Processing(str);
  2599. }
  2600. air.SeatingClass = str;
  2601. string dateTime = tempstr[2];
  2602. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2603. air.FlightDate = DateTemp;
  2604. air.DepartureTime = tempstr[5];
  2605. air.LandingTime = tempstr[6];
  2606. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2607. air.TicketStatus = "--";
  2608. air.Luggage = "--";
  2609. air.DepartureTerminal = "--";
  2610. air.LandingTerminal = "--";
  2611. airs.Add(air);
  2612. }
  2613. int row = 13;
  2614. for (int i = 0; i < airs.Count; i++)
  2615. {
  2616. if (airs.Count > 2)
  2617. {
  2618. for (int j = 0; j < airs.Count - 2; j++)
  2619. {
  2620. var CopyRow = table.Rows[12].Clone(true);
  2621. table.Rows.Add(CopyRow);
  2622. }
  2623. }
  2624. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2625. int index = 0;
  2626. foreach (PropertyInfo property in properties)
  2627. {
  2628. string value = property.GetValue(airs[i]).ToString();
  2629. Cell ishcel0 = table.Rows[row].Cells[index];
  2630. Paragraph p = new Paragraph(doc);
  2631. string s = value;
  2632. p.AppendChild(new Run(doc, s));
  2633. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2634. ishcel0.AppendChild(p);
  2635. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2636. //ishcel0.CellFormat.VerticalAlignment=
  2637. index++;
  2638. }
  2639. row++;
  2640. }
  2641. #endregion
  2642. Paragraph lastParagraph = new Paragraph(doc);
  2643. //第一个表格末尾加段落
  2644. table.ParentNode.InsertAfter(lastParagraph, table);
  2645. //复制第一个表格
  2646. Table cloneTable = (Table)table.Clone(true);
  2647. //在文档末尾段落后面加入复制的表格
  2648. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2649. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2650. {
  2651. int rownewsIndex = 13;
  2652. for (int i = 0; i < 2; i++)
  2653. {
  2654. var CopyRow = table.Rows[12].Clone(true);
  2655. table.Rows.RemoveAt(13);
  2656. table.Rows.Add(CopyRow);
  2657. rownewsIndex++;
  2658. }
  2659. }
  2660. else
  2661. {
  2662. table.Rows.RemoveAt(12);
  2663. }
  2664. cloneTable.Rows.RemoveAt(12);
  2665. }
  2666. if (_AirTicketReservations.Count != 0)
  2667. {
  2668. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2669. if (FlightsCode.Length != 0)
  2670. {
  2671. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2672. if (_AirCompany != null)
  2673. {
  2674. string str = "--";
  2675. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2676. if (!string.IsNullOrEmpty(translateResult))
  2677. {
  2678. str = translateResult;
  2679. str = _airTicketResRep.Processing(str);
  2680. }
  2681. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2682. }
  2683. else
  2684. {
  2685. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2686. }
  2687. }
  2688. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2689. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2690. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2691. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2692. string names = "";
  2693. foreach (string clientName in nameArray)
  2694. {
  2695. names += clientName + ",";
  2696. }
  2697. if (!string.IsNullOrWhiteSpace(names))
  2698. {
  2699. string str = "--";
  2700. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2701. if (!string.IsNullOrEmpty(translateResult))
  2702. {
  2703. str = translateResult;
  2704. str = _airTicketResRep.Processing(str);
  2705. }
  2706. table.Range.Bookmarks["ClientName"].Text = str;
  2707. }
  2708. else
  2709. {
  2710. table.Range.Bookmarks["ClientName"].Text = "--";
  2711. }
  2712. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2713. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2714. table.Range.Bookmarks["JointTicket"].Text = "--";
  2715. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2716. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2717. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2718. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2719. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2720. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2721. }
  2722. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2723. //保存合并后的文档
  2724. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2725. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2726. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2727. return Ok(JsonView(true, "成功!", rst));
  2728. }
  2729. }
  2730. }
  2731. catch (Exception ex)
  2732. {
  2733. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2734. throw;
  2735. }
  2736. }
  2737. #endregion
  2738. #region 团组增减款项 --> 其他款项
  2739. /// <summary>
  2740. /// 团组增减款项下拉框绑定
  2741. /// </summary>
  2742. /// <param name="dto"></param>
  2743. /// <returns></returns>
  2744. [HttpPost]
  2745. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2746. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2747. {
  2748. #region 参数验证
  2749. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2750. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2751. #endregion
  2752. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2753. }
  2754. /// <summary>
  2755. /// 根据团组Id查询团组增减款项
  2756. /// </summary>
  2757. /// <param name="dto"></param>
  2758. /// <returns></returns>
  2759. [HttpPost]
  2760. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2761. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2762. {
  2763. #region 参数验证
  2764. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2765. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2766. #endregion
  2767. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2768. }
  2769. /// <summary>
  2770. /// 团组增减款项操作(Status:1.新增,2.修改)
  2771. /// </summary>
  2772. /// <param name="dto"></param>
  2773. /// <returns></returns>
  2774. [HttpPost]
  2775. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2776. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2777. {
  2778. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2779. if (groupData.Code != 200)
  2780. {
  2781. return Ok(JsonView(false, groupData.Msg));
  2782. }
  2783. #region 应用推送
  2784. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2785. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2786. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2787. #endregion
  2788. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2789. }
  2790. /// <summary>
  2791. /// 团组增减款项操作 删除
  2792. /// </summary>
  2793. /// <param name="dto"></param>
  2794. /// <returns></returns>
  2795. [HttpPost]
  2796. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2797. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2798. {
  2799. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2800. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2801. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2802. if (res.Code == 0)
  2803. {
  2804. return Ok(JsonView(true, "删除成功!"));
  2805. }
  2806. return Ok(JsonView(false, "删除失败!"));
  2807. }
  2808. /// <summary>
  2809. /// 根据团组增减款项Id查询
  2810. /// </summary>
  2811. /// <param name="dto"></param>
  2812. /// <returns></returns>
  2813. [HttpPost]
  2814. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2815. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2816. {
  2817. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2818. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2819. }
  2820. /// <summary>
  2821. /// 查询供应商名称
  2822. /// </summary>
  2823. /// <param name="dto"></param>
  2824. /// <returns></returns>
  2825. [HttpPost]
  2826. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2827. {
  2828. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2829. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2830. ?? new List<Grp_DecreasePayments>();
  2831. dbResult = dbResult.Distinct(new
  2832. ProductComparer()).ToList();
  2833. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2834. {
  2835. x.Id,
  2836. x.SupplierAddress,
  2837. x.SupplierArea,
  2838. x.SupplierContact,
  2839. x.SupplierContactNumber,
  2840. x.SupplierEmail,
  2841. x.SupplierName,
  2842. x.SupplierSocialAccount,
  2843. x.SupplierTypeId,
  2844. }).ToList());
  2845. return Ok(jw);
  2846. }
  2847. #endregion
  2848. #region 文件上传、删除
  2849. /// <summary>
  2850. /// region 文件上传 可以带参数
  2851. /// </summary>
  2852. /// <param name="file"></param>
  2853. /// <returns></returns>
  2854. [HttpPost]
  2855. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2856. public async Task<IActionResult> UploadProject(IFormFile file)
  2857. {
  2858. try
  2859. {
  2860. var TypeName = Request.Headers["TypeName"].ToString();
  2861. if (file != null)
  2862. {
  2863. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2864. //文件名称
  2865. string projectFileName = file.FileName;
  2866. //上传的文件的路径
  2867. string filePath = "";
  2868. if (TypeName == "A")//A代表团组增减款项
  2869. {
  2870. if (!Directory.Exists(fileDir))
  2871. {
  2872. Directory.CreateDirectory(fileDir);
  2873. }
  2874. //上传的文件的路径
  2875. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2876. }
  2877. else if (TypeName == "B")//B代表商邀相关文件
  2878. {
  2879. if (!Directory.Exists(fileDir))
  2880. {
  2881. Directory.CreateDirectory(fileDir);
  2882. }
  2883. //上传的文件的路径
  2884. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2885. }
  2886. using (FileStream fs = System.IO.File.Create(filePath))
  2887. {
  2888. file.CopyTo(fs);
  2889. fs.Flush();
  2890. }
  2891. return Ok(JsonView(true, "上传成功!", projectFileName));
  2892. }
  2893. else
  2894. {
  2895. return Ok(JsonView(false, "上传失败!"));
  2896. }
  2897. }
  2898. catch (Exception ex)
  2899. {
  2900. return Ok(JsonView(false, "程序错误!"));
  2901. throw;
  2902. }
  2903. }
  2904. /// <summary>
  2905. /// 删除指定文件
  2906. /// </summary>
  2907. /// <param name="dto"></param>
  2908. /// <returns></returns>
  2909. [HttpPost]
  2910. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2911. public async Task<IActionResult> DelFile(DelFileDto dto)
  2912. {
  2913. try
  2914. {
  2915. var TypeName = Request.Headers["TypeName"].ToString();
  2916. string filePath = "";
  2917. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2918. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2919. int id = 0;
  2920. if (TypeName == "A")
  2921. {
  2922. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2923. // 删除该文件
  2924. System.IO.File.Delete(filePath);
  2925. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2926. }
  2927. else if (TypeName == "B")
  2928. {
  2929. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2930. // 删除该文件
  2931. System.IO.File.Delete(filePath);
  2932. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2933. }
  2934. if (id != 0)
  2935. {
  2936. return Ok(JsonView(true, "成功!"));
  2937. }
  2938. else
  2939. {
  2940. return Ok(JsonView(false, "失败!"));
  2941. }
  2942. }
  2943. catch (Exception ex)
  2944. {
  2945. return Ok(JsonView(false, "程序错误!"));
  2946. throw;
  2947. }
  2948. }
  2949. #endregion
  2950. #region 商邀费用录入
  2951. /// <summary>
  2952. /// 根据团组Id查询商邀费用列表
  2953. /// </summary>
  2954. /// <param name="dto"></param>
  2955. /// <returns></returns>
  2956. [HttpPost]
  2957. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2958. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2959. {
  2960. try
  2961. {
  2962. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  2963. if (groupData.Code != 0)
  2964. {
  2965. return Ok(JsonView(false, groupData.Msg));
  2966. }
  2967. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2968. }
  2969. catch (Exception ex)
  2970. {
  2971. return Ok(JsonView(false, "程序错误!"));
  2972. throw;
  2973. }
  2974. }
  2975. //
  2976. /// <summary>
  2977. /// 商邀费用 Info Page 基础数据源
  2978. /// </summary>
  2979. /// <param name="dto"></param>
  2980. /// <returns></returns>
  2981. [HttpPost]
  2982. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2983. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  2984. {
  2985. try
  2986. {
  2987. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  2988. if (groupData.Code != 0)
  2989. {
  2990. return Ok(JsonView(false, groupData.Msg));
  2991. }
  2992. return Ok(JsonView(true, "操作成功", groupData.Data));
  2993. }
  2994. catch (Exception ex)
  2995. {
  2996. return Ok(JsonView(false, ex.Message));
  2997. throw;
  2998. }
  2999. }
  3000. /// <summary>
  3001. /// 根据商邀费用ID查询C表和商邀费用数据
  3002. /// </summary>
  3003. /// <param name="dto"></param>
  3004. /// <returns></returns>
  3005. [HttpPost]
  3006. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3007. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3008. {
  3009. try
  3010. {
  3011. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3012. if (groupData.Code != 0)
  3013. {
  3014. return Ok(JsonView(false, groupData.Msg));
  3015. }
  3016. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3017. }
  3018. catch (Exception ex)
  3019. {
  3020. return Ok(JsonView(false, ex.Message));
  3021. throw;
  3022. }
  3023. }
  3024. /// <summary>
  3025. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3026. /// </summary>
  3027. /// <param name="dto"></param>
  3028. /// <returns></returns>
  3029. [HttpPost]
  3030. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3031. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3032. {
  3033. try
  3034. {
  3035. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3036. if (groupData.Code != 0)
  3037. {
  3038. return Ok(JsonView(false, groupData.Msg));
  3039. }
  3040. #region 应用推送
  3041. try
  3042. {
  3043. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3044. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3045. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3046. }
  3047. catch (Exception ex)
  3048. {
  3049. }
  3050. #endregion
  3051. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3052. }
  3053. catch (Exception ex)
  3054. {
  3055. return Ok(JsonView(false, "程序错误!"));
  3056. throw;
  3057. }
  3058. }
  3059. /// <summary>
  3060. /// 商邀删除
  3061. /// </summary>
  3062. /// <param name="dto"></param>
  3063. /// <returns></returns>
  3064. [HttpPost]
  3065. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3066. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3067. {
  3068. try
  3069. {
  3070. _sqlSugar.BeginTran();
  3071. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3072. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3073. {
  3074. IsDel = 1,
  3075. DeleteUserId = dto.DeleteUserId,
  3076. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3077. })
  3078. .Where(it => it.Id == dto.Id)
  3079. .ExecuteCommand();
  3080. if (res1 > 0)
  3081. {
  3082. int _diId = 0;
  3083. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3084. if (_ioaInfo != null)
  3085. {
  3086. _diId = _ioaInfo.DiId;
  3087. }
  3088. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3089. .SetColumns(a => new Grp_CreditCardPayment()
  3090. {
  3091. IsDel = 1,
  3092. DeleteUserId = dto.DeleteUserId,
  3093. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3094. })
  3095. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3096. .ExecuteCommand();
  3097. if (res2 > 0)
  3098. {
  3099. _sqlSugar.CommitTran();
  3100. return Ok(JsonView(true, "删除成功!"));
  3101. }
  3102. }
  3103. _sqlSugar.RollbackTran();
  3104. return Ok(JsonView(false, "删除失败"));
  3105. }
  3106. catch (Exception ex)
  3107. {
  3108. _sqlSugar.RollbackTran();
  3109. return Ok(JsonView(false, ex.Message));
  3110. }
  3111. }
  3112. /// <summary>
  3113. /// 团组模块文件上传
  3114. /// </summary>
  3115. /// <param name="dto"></param>
  3116. /// <returns></returns>
  3117. [HttpPost]
  3118. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3119. {
  3120. var jw = JsonView(false);
  3121. long M = 1024 * 1024;
  3122. if (dto.Files == null || dto.Files.Count == 0)
  3123. {
  3124. jw.Msg = "无文件信息!";
  3125. return Ok(jw);
  3126. }
  3127. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3128. {
  3129. jw.Msg = "文件大小超过20M!";
  3130. return Ok(jw);
  3131. }
  3132. //var nameSp = dto.File.FileName.Split(".");
  3133. //if (nameSp.Length < 2)
  3134. //{
  3135. // jw.Msg = "拓展名称有误!";
  3136. // return Ok(jw);
  3137. //}
  3138. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3139. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3140. //{
  3141. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3142. // return Ok(jw);
  3143. //}
  3144. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3145. if (Ctable == null)
  3146. {
  3147. jw.Msg = "Ctable指向有误!";
  3148. return Ok(jw);
  3149. }
  3150. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3151. if (groupInfo == null)
  3152. {
  3153. jw.Msg = "团组信息不存在!";
  3154. return Ok(jw);
  3155. }
  3156. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3157. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3158. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3159. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3160. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3161. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3162. try
  3163. {
  3164. if (!Directory.Exists(fileBase))
  3165. {
  3166. Directory.CreateDirectory(fileBase);
  3167. }
  3168. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3169. foreach (var fileStream in dto.Files)
  3170. {
  3171. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3172. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3173. {
  3174. Cid = dto.Cid,
  3175. CreateTime = DateTime.Now,
  3176. CreateUserId = dto.Userid,
  3177. Ctable = dto.Ctable,
  3178. Diid = dto.Diid,
  3179. IsDel = 0,
  3180. FilePath = saveFilePath,
  3181. FileName = fileStream.FileName
  3182. };
  3183. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3184. {
  3185. fileStream.CopyTo(fs);
  3186. fs.Flush();
  3187. }
  3188. saveArr.Add(file);
  3189. }
  3190. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3191. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3192. jw = JsonView(true, "保存成功!", new
  3193. {
  3194. count = addResult,
  3195. filesName = saveArr.Select(x => x.FileName)
  3196. }) ;
  3197. }
  3198. catch (Exception ex)
  3199. {
  3200. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3201. {
  3202. count = 0,
  3203. filesName = new string[0],
  3204. }) ;
  3205. }
  3206. return Ok(jw);
  3207. }
  3208. /// <summary>
  3209. /// 查询各模块已保存文件
  3210. /// </summary>
  3211. /// <param name="dto"></param>
  3212. /// <returns></returns>
  3213. [HttpPost]
  3214. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3215. {
  3216. var expression = Expressionable.Create<Grp_GroupModelFile>()
  3217. .AndIF(dto.UserId != -1 , x => x.CreateUserId == dto.UserId);
  3218. var visaIds = _sqlSugar.Queryable<Sys_Users>().Where(x => x.JobPostId == 26).Select(x=>x.Id).ToList();
  3219. if (visaIds.Contains(dto.UserId) && dto.Ctable == 80)
  3220. {
  3221. expression = Expressionable.Create<Grp_GroupModelFile>()
  3222. .And(x=>visaIds.Contains(x.CreateUserId));
  3223. }
  3224. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3225. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3226. .Where(expression.ToExpression())
  3227. .ToList();
  3228. //.ToPageList(pagenumber, pageSize, ref totalCount, ref totalPage)
  3229. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3230. {
  3231. x.FileName,
  3232. x.Id,
  3233. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"), AppSettingsHelper.Get("GrpFileFtpPath")),
  3234. CreateTime = x.CreateTime.ToString("yyyy-MM-dd HH-mm"),
  3235. })));
  3236. }
  3237. /// <summary>
  3238. /// 下载该团组下的所有文件
  3239. /// </summary>
  3240. /// <param name="dto"></param>
  3241. /// <returns></returns>
  3242. [HttpPost]
  3243. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3244. {
  3245. var jw = JsonView(false);
  3246. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3247. if (groupInfo == null)
  3248. {
  3249. jw.Msg = "团组信息不存在!";
  3250. return Ok(jw);
  3251. }
  3252. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3253. var isModule = Convert.ToBoolean(dto.isModule);
  3254. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3255. IOOperatorHelper io = new IOOperatorHelper();
  3256. if (isModule)
  3257. {
  3258. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3259. foreach (var moduleArr in moduleGroup)
  3260. {
  3261. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3262. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3263. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3264. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3265. foreach (var item in moduleArr)
  3266. {
  3267. if (System.IO.File.Exists(item.FilePath))
  3268. {
  3269. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3270. {
  3271. byte[] bytes = new byte[fileStream.Length];
  3272. fileStream.Read(bytes, 0, bytes.Length);
  3273. fileStream.Close();
  3274. Stream stream = new MemoryStream(bytes);
  3275. chiZips.Add(item.FileName, stream);
  3276. }
  3277. }
  3278. }
  3279. if (chiZips.Count > 0)
  3280. {
  3281. var byts = io.ConvertZipStream(chiZips);
  3282. Stream stream = new MemoryStream(byts);
  3283. Zips.Add(key.Name+"_.zip", stream);
  3284. }
  3285. }
  3286. }
  3287. else
  3288. {
  3289. foreach (var item in dbQuery)
  3290. {
  3291. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3292. {
  3293. byte[] bytes = new byte[fileStream.Length];
  3294. fileStream.Read(bytes, 0, bytes.Length);
  3295. fileStream.Close();
  3296. Stream stream = new MemoryStream(bytes);
  3297. while (Zips.Keys.Contains(item.FileName))
  3298. {
  3299. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3300. }
  3301. Zips.Add(item.FileName, stream);
  3302. }
  3303. }
  3304. }
  3305. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3306. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3307. if (Zips.Count > 0)
  3308. {
  3309. var byts = io.ConvertZipStream(Zips);
  3310. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3311. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3312. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3313. }
  3314. else
  3315. {
  3316. jw.Msg = "暂无生成文件!";
  3317. }
  3318. return Ok(jw);
  3319. }
  3320. /// <summary>
  3321. /// 下载该团组下此模块的所有文件
  3322. /// </summary>
  3323. /// <param name="dto"></param>
  3324. /// <returns></returns>
  3325. [HttpPost]
  3326. public IActionResult ExportGroupByModule(ExportGroupByModuleDto dto)
  3327. {
  3328. var jw = JsonView(false);
  3329. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3330. if (groupInfo == null)
  3331. {
  3332. jw.Msg = "团组信息不存在!";
  3333. return Ok(jw);
  3334. }
  3335. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid && x.Ctable == dto.Ctable).ToList();
  3336. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == dto.Ctable
  3337. && x.IsDel == 0);
  3338. if (key == null)
  3339. {
  3340. jw.Msg = "Ctable指向错误!";
  3341. return Ok(jw);
  3342. }
  3343. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3344. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3345. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3346. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3347. IOOperatorHelper io = new IOOperatorHelper();
  3348. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3349. foreach (var item in dbQuery)
  3350. {
  3351. if (System.IO.File.Exists(item.FilePath))
  3352. {
  3353. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3354. {
  3355. byte[] bytes = new byte[fileStream.Length];
  3356. fileStream.Read(bytes, 0, bytes.Length);
  3357. fileStream.Close();
  3358. Stream stream = new MemoryStream(bytes);
  3359. while (Zips.Keys.Contains(item.FileName))
  3360. {
  3361. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3362. }
  3363. Zips.Add(item.FileName, stream);
  3364. }
  3365. }
  3366. }
  3367. if (Zips.Count > 0)
  3368. {
  3369. var byts = io.ConvertZipStream(Zips);
  3370. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3371. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_{key.Name}_.Zip");
  3372. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_{key.Name}_.Zip" });
  3373. }
  3374. else
  3375. {
  3376. jw.Msg = "暂无生成文件!";
  3377. }
  3378. return Ok(jw);
  3379. }
  3380. /// <summary>
  3381. /// 删除该团组下的指定文件
  3382. /// </summary>
  3383. /// <param name="dto"></param>
  3384. /// <returns></returns>
  3385. [HttpPost]
  3386. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3387. {
  3388. var jw = JsonView(false);
  3389. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3390. if (sing == null)
  3391. {
  3392. jw.Msg = "暂无";
  3393. return Ok(jw);
  3394. }
  3395. if (System.IO.File.Exists(sing.FilePath))
  3396. {
  3397. try
  3398. {
  3399. System.IO.File.Delete(sing.FilePath);
  3400. }
  3401. catch (Exception ex)
  3402. {
  3403. jw.Msg = "删除失败!" + ex.Message;
  3404. return Ok(jw);
  3405. }
  3406. }
  3407. sing.IsDel = 1;
  3408. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3409. sing.DeleteUserId = dto.UserId;
  3410. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3411. jw = JsonView(true, "删除成功!");
  3412. return Ok(jw);
  3413. }
  3414. #endregion
  3415. #region 团组英文资料
  3416. /// <summary>
  3417. /// 查询团组英文所有资料
  3418. /// </summary>
  3419. /// <param name="dto"></param>
  3420. /// <returns></returns>
  3421. [HttpPost]
  3422. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3423. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3424. {
  3425. try
  3426. {
  3427. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3428. if (groupData.Code != 0)
  3429. {
  3430. return Ok(JsonView(false, groupData.Msg));
  3431. }
  3432. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3433. }
  3434. catch (Exception ex)
  3435. {
  3436. return Ok(JsonView(false, "程序错误!"));
  3437. throw;
  3438. }
  3439. }
  3440. /// <summary>
  3441. /// 团组英文资料操作(Status:1.新增,2.修改)
  3442. /// </summary>
  3443. /// <param name="dto"></param>
  3444. /// <returns></returns>
  3445. [HttpPost]
  3446. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3447. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3448. {
  3449. try
  3450. {
  3451. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3452. if (groupData.Code != 0)
  3453. {
  3454. return Ok(JsonView(false, groupData.Msg));
  3455. }
  3456. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3457. }
  3458. catch (Exception ex)
  3459. {
  3460. return Ok(JsonView(false, "程序错误!"));
  3461. throw;
  3462. }
  3463. }
  3464. /// <summary>
  3465. /// 团组英文资料Id查询数据
  3466. /// </summary>
  3467. /// <param name="dto"></param>
  3468. /// <returns></returns>
  3469. [HttpPost]
  3470. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3471. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3472. {
  3473. try
  3474. {
  3475. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3476. if (_DelegationEnData != null)
  3477. {
  3478. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3479. }
  3480. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3481. }
  3482. catch (Exception ex)
  3483. {
  3484. return Ok(JsonView(false, "程序错误!"));
  3485. throw;
  3486. }
  3487. }
  3488. /// <summary>
  3489. /// 团组英文资料删除
  3490. /// </summary>
  3491. /// <param name="dto"></param>
  3492. /// <returns></returns>
  3493. [HttpPost]
  3494. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3495. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3496. {
  3497. try
  3498. {
  3499. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3500. if (!res)
  3501. {
  3502. return Ok(JsonView(false, "删除失败"));
  3503. }
  3504. return Ok(JsonView(true, "删除成功!"));
  3505. }
  3506. catch (Exception ex)
  3507. {
  3508. return Ok(JsonView(false, "程序错误!"));
  3509. throw;
  3510. }
  3511. }
  3512. #endregion
  3513. #region 导出邀请函
  3514. /// <summary>
  3515. /// 导出邀请函页面初始化
  3516. /// </summary>
  3517. /// <param name="dto"></param>
  3518. /// <returns></returns>
  3519. [HttpPost]
  3520. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3521. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3522. {
  3523. try
  3524. {
  3525. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3526. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3527. if (dto.DiId == 0)
  3528. {
  3529. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3530. }
  3531. else
  3532. {
  3533. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3534. }
  3535. return Ok(JsonView(true, "查询成功!", new
  3536. {
  3537. deleClient = crm_Deles,
  3538. delegations = grp_Delegations
  3539. }));
  3540. }
  3541. catch (Exception ex)
  3542. {
  3543. return Ok(JsonView(false, "程序错误!"));
  3544. throw;
  3545. }
  3546. }
  3547. /// <summary>
  3548. /// 导出邀请函
  3549. /// </summary>
  3550. /// <param name="dto"></param>
  3551. /// <returns></returns>
  3552. [HttpPost]
  3553. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3554. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3555. {
  3556. #region 参数验证
  3557. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3558. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3559. #endregion
  3560. try
  3561. {
  3562. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3563. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3564. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3565. From Grp_TourClientList tcl
  3566. Left Join
  3567. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3568. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3569. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3570. From Crm_DeleClient dc
  3571. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3572. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3573. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3574. Where dc.IsDel = 0) temp
  3575. On temp.DcId =tcl.ClientId
  3576. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3577. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3578. List<string> texts = new List<string>();
  3579. if (datas.Count != 0)
  3580. {
  3581. foreach (TourClientListDetailsView item in datas)
  3582. {
  3583. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3584. {
  3585. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3586. }
  3587. else
  3588. {
  3589. string name = item.LastName + item.FirstName;
  3590. texts.Add(name);
  3591. }
  3592. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3593. {
  3594. if (!transDic.ContainsKey(item.Job))
  3595. {
  3596. texts.Add(item.Job);
  3597. }
  3598. }
  3599. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3600. {
  3601. texts.Add(item.CompanyFullName);
  3602. }
  3603. }
  3604. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3605. if (transData.Count > 0)
  3606. {
  3607. foreach (TranslateResult item in transData)
  3608. {
  3609. if (!transDic.ContainsKey(item.Query))
  3610. {
  3611. transDic.Add(item.Query, item.Translation);
  3612. }
  3613. }
  3614. }
  3615. List<GuestList> list = new List<GuestList>();
  3616. foreach (TourClientListDetailsView dele in datas)
  3617. {
  3618. GuestList guestList = new GuestList();
  3619. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3620. {
  3621. guestList.Name = dele.Pinyin;
  3622. }
  3623. else
  3624. {
  3625. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3626. guestList.Name = Name;
  3627. }
  3628. if (dele.Sex == 0)
  3629. {
  3630. guestList.Sex = "Male";
  3631. }
  3632. else if (dele.Sex == 1)
  3633. {
  3634. guestList.Sex = "Female";
  3635. }
  3636. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3637. if (!string.IsNullOrEmpty(dele.Job))
  3638. {
  3639. guestList.Job = dele.Job;
  3640. }
  3641. list.Add(guestList);
  3642. }
  3643. //载入模板
  3644. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3645. DocumentBuilder builder = new DocumentBuilder(doc);
  3646. //获取word里所有表格
  3647. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3648. //获取所填表格的序数
  3649. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3650. var rowStart = tableOne.Rows[0]; //获取第1行
  3651. //循环赋值
  3652. for (int i = 0; i < list.Count; i++)
  3653. {
  3654. builder.MoveToCell(0, i + 1, 0, 0);
  3655. builder.Write(list[i].Name.ToString());
  3656. builder.MoveToCell(0, i + 1, 1, 0);
  3657. builder.Write(list[i].Sex.ToString());
  3658. builder.MoveToCell(0, i + 1, 2, 0);
  3659. builder.Write(list[i].DOB.ToString());
  3660. builder.MoveToCell(0, i + 1, 3, 0);
  3661. builder.Write(list[i].Job.ToString());
  3662. }
  3663. //删除多余行
  3664. while (tableOne.Rows.Count > list.Count + 1)
  3665. {
  3666. tableOne.Rows.RemoveAt(list.Count + 1);
  3667. }
  3668. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3669. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3670. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3671. doc.Save(filePath);
  3672. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3673. return Ok(JsonView(true, "操作成功!", Url));
  3674. }
  3675. else
  3676. {
  3677. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3678. }
  3679. }
  3680. catch (Exception ex)
  3681. {
  3682. return Ok(JsonView(false, ex.Message));
  3683. throw;
  3684. }
  3685. }
  3686. #endregion
  3687. #region 团组经理模块 出入境费用
  3688. ///// <summary>
  3689. ///// 团组模块 - 出入境费用
  3690. ///// </summary>
  3691. ///// <returns></returns>
  3692. //[HttpPost]
  3693. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3694. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3695. //{
  3696. // try
  3697. // {
  3698. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3699. // if (data.Code != 0)
  3700. // {
  3701. // return Ok(JsonView(false, data.Msg));
  3702. // }
  3703. // return Ok(JsonView(true, "查询成功!"));
  3704. // }
  3705. // catch (Exception ex)
  3706. // {
  3707. // return Ok(JsonView(false, ex.Message));
  3708. // throw;
  3709. // }
  3710. //}
  3711. /// <summary>
  3712. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3713. /// </summary>
  3714. /// <returns></returns>
  3715. [HttpPost]
  3716. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3717. public async Task<IActionResult> SetDayAndCostAreaChange()
  3718. {
  3719. try
  3720. {
  3721. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3722. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3723. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3724. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3725. foreach (var item in unite) //处理交集数据
  3726. {
  3727. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3728. }
  3729. foreach (var item in merge) //处理差集数据
  3730. {
  3731. int nationalTravelFeeId = 0;
  3732. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3733. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3734. else
  3735. {
  3736. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3737. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3738. }
  3739. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3740. }
  3741. //只更新dayAndCost 的 nationalTravelFeeId;
  3742. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3743. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3744. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3745. }
  3746. catch (Exception ex)
  3747. {
  3748. return Ok(JsonView(false, ex.Message));
  3749. throw;
  3750. }
  3751. }
  3752. /// <summary>
  3753. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3754. /// </summary>
  3755. /// <returns></returns>
  3756. [HttpPost]
  3757. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3758. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3759. {
  3760. try
  3761. {
  3762. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3763. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3764. //SetDataInfoView
  3765. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3766. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3767. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3768. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3769. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3770. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3771. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3772. //默认币种显示
  3773. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3774. {
  3775. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3776. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3777. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3778. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3779. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3780. };
  3781. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3782. if (_currencyRate.Count > 0)
  3783. {
  3784. foreach (var item in _currencyInfos)
  3785. {
  3786. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3787. if (rateInfo != null)
  3788. {
  3789. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3790. rate1 *= 1.035M;
  3791. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3792. }
  3793. }
  3794. }
  3795. return Ok(JsonView(true, "查询成功!", new
  3796. {
  3797. GroupNameData = groupNameData.Data,
  3798. CurrencyData = _CurrencyData,
  3799. WordTypeData = _WordTypeData,
  3800. ExcelTypeData = _ExcelTypeData,
  3801. CurrencyInit = _currencyInfos
  3802. }));
  3803. }
  3804. catch (Exception ex)
  3805. {
  3806. return Ok(JsonView(false, ex.Message));
  3807. throw;
  3808. }
  3809. }
  3810. /// <summary>
  3811. /// 团组模块 - 出入境费用
  3812. /// 实时汇率 tips
  3813. /// 签证费用 tips
  3814. /// </summary>
  3815. /// <returns></returns>
  3816. [HttpPost]
  3817. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3818. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3819. {
  3820. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3821. //默认币种显示
  3822. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3823. {
  3824. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3825. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3826. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3827. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3828. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3829. };
  3830. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3831. List<dynamic> reteInfos = new List<dynamic>();
  3832. if (_currencyRate.Count > 0)
  3833. {
  3834. foreach (var item in _currencyInfos)
  3835. {
  3836. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3837. if (rateInfo != null)
  3838. {
  3839. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3840. decimal rate1 = item.Rate;
  3841. rate1 *= 1.03M;
  3842. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3843. reteInfos.Add(new
  3844. {
  3845. currCode = item.CurrencyCode,
  3846. currName = item.CurrencyName,
  3847. rate = rate2,
  3848. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3849. });
  3850. }
  3851. }
  3852. }
  3853. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3854. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3855. return Ok(JsonView(true, "查询成功!", new
  3856. {
  3857. //GroupNameData = groupNameData.Data,
  3858. visaData = visaData.Data,
  3859. airData = airData.Data,
  3860. reteInfos = reteInfos
  3861. }));
  3862. }
  3863. /// <summary>
  3864. /// 团组模块 - 出入境费用 - Info
  3865. /// </summary>
  3866. /// <returns></returns>
  3867. [HttpPost]
  3868. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3869. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3870. {
  3871. try
  3872. {
  3873. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3874. if (data.Code != 0)
  3875. {
  3876. return Ok(JsonView(false, data.Msg));
  3877. }
  3878. return Ok(JsonView(true, "查询成功!", data.Data));
  3879. }
  3880. catch (Exception ex)
  3881. {
  3882. return Ok(JsonView(false, ex.Message));
  3883. }
  3884. }
  3885. /// <summary>
  3886. /// 团组模块 - 出入境费用 - Add And Update
  3887. /// </summary>
  3888. /// <returns></returns>
  3889. [HttpPost]
  3890. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3891. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3892. {
  3893. try
  3894. {
  3895. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3896. if (data.Code != 0)
  3897. {
  3898. return Ok(JsonView(false, data.Msg));
  3899. }
  3900. //生成默认文件pdf并且通知人员
  3901. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3902. {
  3903. DiId = dto.DiId,
  3904. ExportType = 1,
  3905. SubTypeId = 1005
  3906. }, "pdf");
  3907. //发送通知
  3908. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3909. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3910. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3911. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3912. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3913. return Ok(JsonView(true, data.Msg, data.Data));
  3914. }
  3915. catch (Exception ex)
  3916. {
  3917. return Ok(JsonView(false, ex.Message));
  3918. }
  3919. }
  3920. /// <summary>
  3921. /// 团组模块 - 出入境费用 - Confirm 费用
  3922. /// </summary>
  3923. /// <returns></returns>
  3924. [HttpPost]
  3925. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3926. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3927. {
  3928. //TODO:测试完毕需把对应的用户ID更改
  3929. //1、数据表添加字段
  3930. //2、更改字段接口()
  3931. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3932. //3、确认成功 给财务发送消息
  3933. if (_view.Code == 200)
  3934. {
  3935. if (dto.Type == 1)
  3936. {
  3937. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  3938. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  3939. }
  3940. }
  3941. return Ok(_view);
  3942. }
  3943. /// <summary>
  3944. /// 团组模块 - 出入境费用 - File downlaod
  3945. /// </summary>
  3946. /// <param name="dto"></param>
  3947. /// <returns></returns>
  3948. [HttpPost]
  3949. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3950. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3951. {
  3952. try
  3953. {
  3954. if (dto.DiId < 1)
  3955. {
  3956. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3957. }
  3958. if (dto.ExportType < 1)
  3959. {
  3960. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3961. }
  3962. if (dto.SubTypeId < 1)
  3963. {
  3964. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3965. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3966. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3967. 3 团组成员名单 1 团组成员名单"));
  3968. }
  3969. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3970. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3971. if (_EnterExitCosts == null)
  3972. {
  3973. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3974. }
  3975. //数据源
  3976. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3977. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3978. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3979. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3980. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3981. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3982. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3983. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3984. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3985. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3986. .Select((tcl, dc, cc) => new
  3987. {
  3988. Name = dc.LastName + dc.FirstName,
  3989. Sex = dc.Sex,
  3990. Birthday = dc.BirthDay,
  3991. Company = cc.CompanyFullName,
  3992. Job = dc.Job
  3993. })
  3994. .ToList();
  3995. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3996. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3997. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3998. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3999. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  4000. if (dto.ExportType == 1) //明细表
  4001. {
  4002. if (dto.SubTypeId == 1005) //1005(默认明细表)
  4003. {
  4004. //获取模板
  4005. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  4006. //载入模板
  4007. Document doc = new Document(tempPath);
  4008. DocumentBuilder builder = new DocumentBuilder(doc);
  4009. //利用键值对存放数据
  4010. Dictionary<string, string> dic = new Dictionary<string, string>();
  4011. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  4012. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  4013. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  4014. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  4015. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  4016. //境内费用(其他费用)
  4017. if (_EnterExitCosts.ChoiceOne == 1)
  4018. {
  4019. string row1_1 = "";
  4020. if (_EnterExitCosts.Visa > 0)
  4021. {
  4022. //insidePayTotal += _EnterExitCosts.Visa;
  4023. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  4024. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  4025. {
  4026. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  4027. }
  4028. }
  4029. string row1_2 = "";
  4030. if (_EnterExitCosts.YiMiao > 0)
  4031. {
  4032. //insidePayTotal += _EnterExitCosts.YiMiao;
  4033. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  4034. }
  4035. if (_EnterExitCosts.HeSuan > 0)
  4036. {
  4037. //insidePayTotal += _EnterExitCosts.HeSuan;
  4038. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4039. }
  4040. if (_EnterExitCosts.Service > 0)
  4041. {
  4042. //insidePayTotal += _EnterExitCosts.Service;
  4043. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4044. }
  4045. string row1_3 = "";
  4046. if (_EnterExitCosts.Safe > 0)
  4047. {
  4048. //insidePayTotal += _EnterExitCosts.Safe;
  4049. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4050. }
  4051. if (_EnterExitCosts.Ticket > 0)
  4052. {
  4053. //insidePayTotal += _EnterExitCosts.Ticket;
  4054. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4055. }
  4056. string row1 = "";
  4057. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4058. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4059. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4060. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4061. dic.Add("Row1Str", row1);
  4062. }
  4063. string airTotalStr = string.Empty,
  4064. airPriceStr = string.Empty;
  4065. //经济舱
  4066. if (_EnterExitCosts.SumJJC == 1)
  4067. {
  4068. airTotalStr += $"{_EnterExitCosts.OutsideJJPay.ToString("#0.00")}元/人(经济舱)";
  4069. airPriceStr += $"{_EnterExitCosts.AirJJ.ToString("#0.00")}元/人(经济舱)";
  4070. }
  4071. //公务舱
  4072. if (_EnterExitCosts.SumGWC == 1)
  4073. {
  4074. airTotalStr += $" {_EnterExitCosts.OutsaideGWPay.ToString("#0.00")} 元/人(公务舱)";
  4075. airPriceStr += $" {_EnterExitCosts.AirGW.ToString("#0.00")} 元/人(公务舱)";
  4076. }
  4077. //头等舱
  4078. if (_EnterExitCosts.SumTD == 1)
  4079. {
  4080. airTotalStr += $" {_EnterExitCosts.OutsideTDPay.ToString("#0.00")} 元/人(头等舱)";
  4081. airPriceStr += $" {_EnterExitCosts.AirTD.ToString("#0.00")} 元/人(头等舱)";
  4082. }
  4083. dic.Add("AirTotalStr", airTotalStr);
  4084. dic.Add("AirPriceStr", airPriceStr);
  4085. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4086. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4087. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4088. int table1Row = 0,
  4089. table2Row = 0,
  4090. table3Row = 0,
  4091. table4Row = 0;
  4092. //住宿费
  4093. if (_EnterExitCosts.ChoiceThree == 1)
  4094. {
  4095. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4096. table1Row = dac1.Count;
  4097. #region 填充word表格内容
  4098. for (int i = 0; i < dac1.Count; i++)
  4099. {
  4100. Grp_DayAndCost dac = dac1[i];
  4101. if (dac == null) continue;
  4102. builder.MoveToCell(0, i, 0, 0);
  4103. builder.Write("第" + dac.Days.ToString() + "晚:");
  4104. builder.MoveToCell(0, i, 1, 0);
  4105. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4106. //builder.Write(dac.Place == null ? "" : dac.Place);
  4107. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4108. builder.MoveToCell(0, i, 2, 0);
  4109. builder.Write("费用标准:");
  4110. string curr = "";
  4111. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4112. if (currData != null)
  4113. {
  4114. curr = currData.Name;
  4115. }
  4116. builder.MoveToCell(0, i, 3, 0);
  4117. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4118. builder.MoveToCell(0, i, 4, 0);
  4119. builder.Write("费用小计:");
  4120. builder.MoveToCell(0, i, 5, 0);
  4121. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4122. }
  4123. #endregion
  4124. }else dic.Add("SubZS","0.00");
  4125. //删除多余行
  4126. while (table1.Rows.Count > table1Row)
  4127. {
  4128. table1.Rows.RemoveAt(table1Row);
  4129. }
  4130. //伙食费
  4131. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4132. if (_EnterExitCosts.ChoiceFour == 1)
  4133. {
  4134. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4135. table2Row = dac2.Count;
  4136. #region 填充word表格内容
  4137. for (int i = 0; i < dac2.Count; i++)
  4138. {
  4139. Grp_DayAndCost dac = dac2[i];
  4140. if (dac == null) continue;
  4141. builder.MoveToCell(1, i, 0, 0);
  4142. builder.Write("第" + dac.Days.ToString() + "天:");
  4143. builder.MoveToCell(1, i, 1, 0);
  4144. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4145. builder.MoveToCell(1, i, 2, 0);
  4146. builder.Write("费用标准:");
  4147. string curr = "";
  4148. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4149. if (currData != null)
  4150. {
  4151. curr = currData.Name;
  4152. }
  4153. builder.MoveToCell(1, i, 3, 0);
  4154. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4155. builder.MoveToCell(1, i, 4, 0);
  4156. builder.Write("费用小计:");
  4157. builder.MoveToCell(1, i, 5, 0);
  4158. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4159. }
  4160. #endregion
  4161. }else dic.Add("SubHS","0.00");
  4162. //删除多余行
  4163. while (table2.Rows.Count > table2Row)
  4164. {
  4165. table2.Rows.RemoveAt(table2Row);
  4166. }
  4167. //公杂费
  4168. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4169. if (_EnterExitCosts.ChoiceFive == 1)
  4170. {
  4171. dic.Add("SubGZF", miscellaneousFeeTotal.ToString("#0.00"));
  4172. table3Row = dac3.Count;
  4173. #region 填充word表格内容
  4174. for (int i = 0; i < dac3.Count; i++)
  4175. {
  4176. Grp_DayAndCost dac = dac3[i];
  4177. if (dac == null) continue;
  4178. builder.MoveToCell(2, i, 0, 0);
  4179. builder.Write("第" + dac.Days.ToString() + "天:");
  4180. builder.MoveToCell(2, i, 1, 0);
  4181. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4182. builder.MoveToCell(2, i, 2, 0);
  4183. builder.Write("费用标准:");
  4184. string curr = "";
  4185. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4186. if (currData != null)
  4187. {
  4188. curr = currData.Name;
  4189. }
  4190. builder.MoveToCell(2, i, 3, 0);
  4191. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4192. builder.MoveToCell(2, i, 4, 0);
  4193. builder.Write("费用小计:");
  4194. builder.MoveToCell(2, i, 5, 0);
  4195. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4196. }
  4197. //删除多余行
  4198. while (table3.Rows.Count > table3Row)
  4199. {
  4200. table3.Rows.RemoveAt(table3Row);
  4201. }
  4202. #endregion
  4203. }else dic.Add("SubGZF", "0.00");
  4204. //删除多余行
  4205. while (table3.Rows.Count > table3Row)
  4206. {
  4207. table3.Rows.RemoveAt(table3Row);
  4208. }
  4209. //培训费
  4210. Aspose.Words.Tables.Table table4 = allTables[3] as Aspose.Words.Tables.Table;
  4211. if (_EnterExitCosts.ChoiceSix == 1)
  4212. {
  4213. string pxStr = $"六、培训费合计: {tainFeeTotal.ToString("#0.00")} 元/人";
  4214. dic.Add("SubPX", pxStr);
  4215. table4Row = dac4.Count;
  4216. #region 填充word表格内容
  4217. for (int i = 0; i < dac4.Count; i++)
  4218. {
  4219. Grp_DayAndCost dac = dac4[i];
  4220. if (dac == null) continue;
  4221. builder.MoveToCell(3, i, 0, 0);
  4222. builder.Write("第" + dac.Days.ToString() + "天:");
  4223. builder.MoveToCell(3, i, 1, 0);
  4224. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4225. builder.MoveToCell(3, i, 2, 0);
  4226. builder.Write("费用标准:");
  4227. string curr = "";
  4228. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4229. if (currData != null)
  4230. {
  4231. curr = currData.Name;
  4232. }
  4233. builder.MoveToCell(3, i, 3, 0);
  4234. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4235. builder.MoveToCell(3, i, 4, 0);
  4236. builder.Write("费用小计:");
  4237. builder.MoveToCell(3, i, 5, 0);
  4238. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4239. }
  4240. #endregion
  4241. }
  4242. //else dic.Add("SubPX","0.00");
  4243. //删除多余行
  4244. while (table4.Rows.Count > table4Row)
  4245. {
  4246. table4.Rows.RemoveAt(table4Row);
  4247. }
  4248. decimal otherFeeTotal = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal;
  4249. decimal subJJC = 0.00M,
  4250. subGWC = 0.00M,
  4251. subTDC = 0.00M;
  4252. //经济舱
  4253. if (_EnterExitCosts.SumJJC == 1) subJJC = otherFeeTotal + _EnterExitCosts.OutsideJJPay;
  4254. //公务舱
  4255. if (_EnterExitCosts.SumGWC == 1) subGWC = otherFeeTotal + _EnterExitCosts.OutsaideGWPay;
  4256. //头等舱
  4257. if (_EnterExitCosts.SumTD == 1) subTDC = otherFeeTotal + _EnterExitCosts.OutsideTDPay;
  4258. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4259. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4260. dic.Add("SubTDC", subTDC.ToString("#0.00"));
  4261. #region 填充word模板书签内容
  4262. foreach (var key in dic.Keys)
  4263. {
  4264. builder.MoveToBookmark(key);
  4265. builder.Write(dic[key]);
  4266. }
  4267. #endregion
  4268. //文件名
  4269. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4270. AsposeHelper.removewatermark_v2180();
  4271. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4272. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4273. return Ok(JsonView(true, "成功", new { Url = url }));
  4274. }
  4275. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4276. {
  4277. //获取模板
  4278. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4279. //载入模板
  4280. Document doc = new Document(tempPath);
  4281. DocumentBuilder builder = new DocumentBuilder(doc);
  4282. Dictionary<string, string> dic = new Dictionary<string, string>();
  4283. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4284. {
  4285. List<string> list = new List<string>();
  4286. try
  4287. {
  4288. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4289. foreach (var item in spilitArr)
  4290. {
  4291. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4292. var depCode = spDotandEmpty[2].Substring(0, 3);
  4293. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4294. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4295. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4296. list.Add(depName);
  4297. list.Add(arrName);
  4298. }
  4299. list = list.Distinct().ToList();
  4300. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4301. }
  4302. catch (Exception)
  4303. {
  4304. dic.Add("ReturnCode", "行程录入不正确!");
  4305. }
  4306. }
  4307. else
  4308. {
  4309. dic.Add("ReturnCode", "未录入行程!");
  4310. }
  4311. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4312. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4313. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4314. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4315. {
  4316. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4317. dic.Add("Day", sp.Days.ToString());
  4318. }
  4319. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4320. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4321. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4322. //dic.Add("Names", Names);
  4323. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4324. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4325. decimal dac1totalPrice = 0.00M;
  4326. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4327. foreach (var dac in dac1)
  4328. {
  4329. if (dac.SubTotal == 0.00M)
  4330. {
  4331. continue;
  4332. }
  4333. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4334. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4335. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4336. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4337. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4338. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4339. builder.Write(currency);//币种
  4340. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4341. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4342. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4343. builder.Write("");//人数
  4344. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4345. builder.Write("");//天数
  4346. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4347. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4348. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4349. decimal rate = 0.00M;
  4350. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4351. builder.Write(rate.ToString("#0.0000"));//汇率
  4352. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4353. decimal rbmPrice = dac.SubTotal;
  4354. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4355. accommodationStartIndex++;
  4356. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4357. }
  4358. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4359. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4360. {
  4361. table1.Rows.RemoveAt(i - 1);
  4362. foodandotherStartIndex--;
  4363. }
  4364. if (dac2.Count == dac3.Count)//国家 币种 金额
  4365. {
  4366. for (int i = 0; i < dac2.Count; i++)
  4367. {
  4368. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4369. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4370. }
  4371. }
  4372. decimal dac2totalPrice = 0.00M;
  4373. foreach (var dac in dac2)
  4374. {
  4375. if (dac.SubTotal == 0)
  4376. {
  4377. continue;
  4378. }
  4379. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4380. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4381. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4382. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4383. builder.Write(currency);//币种
  4384. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4385. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4386. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4387. builder.Write("");//人数
  4388. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4389. builder.Write("");//天数
  4390. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4391. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4392. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4393. decimal rate = 0.00M;
  4394. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4395. builder.Write(rate.ToString("#0.0000"));//汇率
  4396. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4397. decimal rbmPrice = dac.SubTotal;
  4398. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4399. foodandotherStartIndex++;
  4400. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4401. }
  4402. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4403. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4404. {
  4405. table1.Rows.RemoveAt(i - 1);
  4406. }
  4407. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4408. string otherFeeStr = "";
  4409. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4410. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4411. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4412. if (otherFeeStr.Length > 0)
  4413. {
  4414. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4415. otherFeeStr = $"({otherFeeStr})";
  4416. dic.Add("OtherFeeStr", otherFeeStr);
  4417. }
  4418. //总计
  4419. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4420. //国际旅费
  4421. string outsideJJ = "";
  4422. string allPriceJJ = "";
  4423. if (_EnterExitCosts.SumJJC == 1)
  4424. {
  4425. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4426. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4427. }
  4428. string outsideGW = "";
  4429. string allPriceGW = "";
  4430. if (_EnterExitCosts.SumGWC == 1)
  4431. {
  4432. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4433. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4434. }
  4435. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4436. {
  4437. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4438. dic.Add("InTravelPrice", InTravelPriceStr);
  4439. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4440. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4441. }
  4442. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4443. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4444. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4445. foreach (var key in dic.Keys)
  4446. {
  4447. builder.MoveToBookmark(key);
  4448. builder.Write(dic[key]);
  4449. }
  4450. //模板文件名
  4451. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4452. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4453. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4454. return Ok(JsonView(true, "成功", new { Url = url }));
  4455. }
  4456. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4457. {
  4458. //获取模板
  4459. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4460. //载入模板
  4461. WorkbookDesigner designer = new WorkbookDesigner();
  4462. designer.Workbook = new Workbook(tempPath);
  4463. Dictionary<string, string> dic = new Dictionary<string, string>();
  4464. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4465. {
  4466. List<string> list = new List<string>();
  4467. try
  4468. {
  4469. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4470. foreach (var item in spilitArr)
  4471. {
  4472. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4473. var depCode = spDotandEmpty[2].Substring(0, 3);
  4474. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4475. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4476. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4477. list.Add(depName);
  4478. list.Add(arrName);
  4479. }
  4480. list = list.Distinct().ToList();
  4481. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4482. }
  4483. catch (Exception)
  4484. {
  4485. dic.Add("ReturnCode", "行程录入不正确!");
  4486. }
  4487. }
  4488. else
  4489. {
  4490. dic.Add("ReturnCode", "未录入行程!");
  4491. }
  4492. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4493. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4494. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4495. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4496. {
  4497. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4498. dic.Add("Day", sp.Days.ToString());
  4499. }
  4500. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4501. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4502. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4503. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4504. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4505. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4506. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4507. designer.SetDataSource("Name", Names);
  4508. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4509. designer.SetDataSource("Day", dic["Day"] + "天");
  4510. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4511. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4512. int startIndex = 10;
  4513. const int startIndexcopy = 10;
  4514. if (dac2.Count == dac3.Count)//国家 币种 金额
  4515. {
  4516. for (int i = 0; i < dac2.Count; i++)
  4517. {
  4518. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4519. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4520. }
  4521. }
  4522. DataTable dtdac1 = new DataTable();
  4523. List<string> place = new List<string>();
  4524. dtdac1.Columns.AddRange(new DataColumn[] {
  4525. new DataColumn(){ ColumnName = "city"},
  4526. new DataColumn(){ ColumnName = "curr"},
  4527. new DataColumn(){ ColumnName = "criterion"},
  4528. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4529. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4530. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4531. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4532. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4533. });
  4534. DataTable dtdac2 = new DataTable();
  4535. dtdac2.Columns.AddRange(new DataColumn[] {
  4536. new DataColumn(){ ColumnName = "city"},
  4537. new DataColumn(){ ColumnName = "curr"},
  4538. new DataColumn(){ ColumnName = "criterion"},
  4539. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4540. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4541. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4542. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4543. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4544. });
  4545. dtdac1.TableName = "tb1";
  4546. dtdac2.TableName = "tb2";
  4547. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4548. foreach (var item in dac1)
  4549. {
  4550. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4551. if (place.Contains(item.Place))
  4552. {
  4553. continue;
  4554. }
  4555. DataRow row = dtdac1.NewRow();
  4556. row["city"] = item.Place;
  4557. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4558. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4559. row["curr"] = currency;
  4560. row["rate"] = rate.ToString("#0.0000");
  4561. row["criterion"] = item.Cost.ToString("#0.00");
  4562. row["number"] = 1;
  4563. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4564. //row["costRMB"] = rbmPrice;
  4565. dtdac1.Rows.Add(row);
  4566. place.Add(item.Place);
  4567. }
  4568. place = new List<string>();
  4569. foreach (var item in dac2)
  4570. {
  4571. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4572. if (place.Contains(item.Place))
  4573. {
  4574. continue;
  4575. }
  4576. DataRow row = dtdac2.NewRow();
  4577. row["city"] = item.Place;
  4578. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4579. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4580. row["curr"] = currency;
  4581. row["rate"] = rate.ToString("#0.0000");
  4582. row["criterion"] = item.Cost.ToString("#0.00");
  4583. row["number"] = 1;
  4584. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4585. //row["cost"] = item.SubTotal;
  4586. //row["costRMB"] = rbmPrice;
  4587. dtdac2.Rows.Add(row);
  4588. place.Add(item.Place);
  4589. //dac2totalPrice += rbmPrice;
  4590. }
  4591. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4592. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4593. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4594. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4595. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4596. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4597. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4598. string cellStr = $" 5.其他费用(";
  4599. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4600. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4601. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4602. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4603. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4604. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4605. if (cellStr.Length > 8)
  4606. {
  4607. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4608. }
  4609. cellStr += ")";
  4610. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4611. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4612. decimal pxFee = dac4.Sum(it => it.Cost);
  4613. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4614. string celllastStr1 = "";
  4615. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4616. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4617. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4618. celllastStr1 += $",国际旅费 元";
  4619. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4620. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4621. designer.SetDataSource("cell4Str", cell4Str);
  4622. designer.SetDataSource("cellStr", cellStr);
  4623. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4624. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4625. designer.SetDataSource("celllastStr", celllastStr);
  4626. Workbook wb = designer.Workbook;
  4627. var sheet = wb.Worksheets[0];
  4628. //绑定datatable数据集
  4629. designer.SetDataSource(dtdac1);
  4630. designer.SetDataSource(dtdac2);
  4631. designer.Process();
  4632. var rowStart = dtdac1.Rows.Count;
  4633. while (rowStart > 0)
  4634. {
  4635. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4636. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4637. startIndex++;
  4638. rowStart--;
  4639. }
  4640. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4641. startIndex += 1; //总计行
  4642. rowStart = dtdac2.Rows.Count;
  4643. while (rowStart > 0)
  4644. {
  4645. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4646. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4647. startIndex++;
  4648. rowStart--;
  4649. }
  4650. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4651. wb.CalculateFormula(true);
  4652. //模板文件名
  4653. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4654. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4655. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4656. return Ok(JsonView(true, "成功", new { Url = url }));
  4657. }
  4658. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4659. {
  4660. //获取模板
  4661. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4662. //载入模板
  4663. Document doc = new Document(tempPath);
  4664. DocumentBuilder builder = new DocumentBuilder(doc);
  4665. Dictionary<string, string> dic = new Dictionary<string, string>();
  4666. dic.Add("GroupName", _DelegationInfo.TeamName);
  4667. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4668. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4669. string missionLeaderJob = "";//负责人job
  4670. int groupNumber = 0; //团人数
  4671. if (DeleClientList.Count > 0)
  4672. {
  4673. missionLeader = DeleClientList[0]?.Name ?? "";
  4674. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4675. }
  4676. dic.Add("MissionLeader", missionLeader); //团负责人
  4677. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4678. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4679. #region MyRegion
  4680. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4681. //{
  4682. // List<string> list = new List<string>();
  4683. // try
  4684. // {
  4685. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4686. // foreach (var item in spilitArr)
  4687. // {
  4688. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4689. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4690. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4691. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4692. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4693. // list.Add(depName);
  4694. // list.Add(arrName);
  4695. // }
  4696. // list = list.Distinct().ToList();
  4697. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4698. // }
  4699. // catch (Exception)
  4700. // {
  4701. // dic.Add("ReturnCode", "行程录入不正确!");
  4702. // }
  4703. //}
  4704. //else
  4705. //{
  4706. // dic.Add("ReturnCode", "未录入行程!");
  4707. //}
  4708. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4709. dic.Add("ReturnCode", string.Join("、", countrys));
  4710. #endregion
  4711. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4712. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4713. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4714. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4715. //{
  4716. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4717. // dic.Add("Day", sp.Days.ToString());
  4718. //}
  4719. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4720. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4721. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4722. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4723. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4724. //培训人员名单
  4725. int cultivateRowIndex = 7;
  4726. foreach (var item in DeleClientList)
  4727. {
  4728. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4729. builder.Write(item.Name);
  4730. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4731. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4732. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4733. string birthDay = "";
  4734. if (item.Birthday != null)
  4735. {
  4736. DateTime dt = Convert.ToDateTime(item.Birthday);
  4737. birthDay = $"{dt.Year}.{dt.Month}";
  4738. }
  4739. builder.Write(birthDay);
  4740. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4741. builder.Write(item.Company);
  4742. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4743. builder.Write(item.Job);
  4744. cultivateRowIndex++;
  4745. }
  4746. //删除多余行
  4747. //cultivateRowIndex -= 2;
  4748. int delRows = 10 + 7 - cultivateRowIndex;
  4749. if (delRows > 0)
  4750. {
  4751. for (int i = 0; i < delRows; i++)
  4752. {
  4753. table1.Rows.RemoveAt(cultivateRowIndex);
  4754. //cultivateRowIndex++;
  4755. }
  4756. }
  4757. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4758. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4759. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4760. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4761. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4762. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4763. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4764. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4765. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4766. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4767. //其他费用
  4768. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4769. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4770. //其他费用合计
  4771. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4772. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4773. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4774. //公务舱合计
  4775. //国际旅费
  4776. string outsideJJ = "";
  4777. string allPriceJJ = "";
  4778. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4779. {
  4780. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4781. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4782. }
  4783. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4784. {
  4785. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4786. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4787. }
  4788. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4789. {
  4790. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4791. dic.Add("AirFeeTotal", airFeeTotalStr);
  4792. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4793. dic.Add("FeeTotal", feeTotalStr);
  4794. }
  4795. foreach (var key in dic.Keys)
  4796. {
  4797. builder.MoveToBookmark(key);
  4798. builder.Write(dic[key]);
  4799. }
  4800. //模板文件名
  4801. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4802. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4803. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4804. return Ok(JsonView(true, "成功", new { Url = url }));
  4805. }
  4806. }
  4807. else if (dto.ExportType == 2) //表格
  4808. {
  4809. //利用键值对存放数据
  4810. Dictionary<string, string> dic = new Dictionary<string, string>();
  4811. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4812. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4813. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4814. dic.Add("Day", sp.Days.ToString());
  4815. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4816. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4817. {
  4818. //获取模板
  4819. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4820. //载入模板
  4821. Document doc = new Document(tempPath);
  4822. DocumentBuilder builder = new DocumentBuilder(doc);
  4823. dic.Add("TeamName", _DelegationInfo.TeamName);
  4824. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4825. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4826. string missionLeaderName = "",
  4827. missionLeaderJob = "";
  4828. if (DeleClientList.Count > 0)
  4829. {
  4830. missionLeaderName = DeleClientList[0].Name;
  4831. missionLeaderJob = DeleClientList[0].Job;
  4832. }
  4833. dic.Add("MissionLeaderName", missionLeaderName);
  4834. dic.Add("MissionLeaderJob", missionLeaderJob);
  4835. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4836. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4837. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4838. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4839. int rowCount = 10;//总人数行
  4840. int startRowIndex = 7; //起始行
  4841. for (int i = 0; i < DeleClientList.Count; i++)
  4842. {
  4843. builder.MoveToCell(0, startRowIndex, 0, 0);
  4844. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4845. builder.MoveToCell(0, startRowIndex, 1, 0);
  4846. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4847. builder.Write(sex);//性别
  4848. builder.MoveToCell(0, startRowIndex, 2, 0);
  4849. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4850. builder.MoveToCell(0, startRowIndex, 3, 0);
  4851. builder.Write(DeleClientList[i].Company);//工作单位
  4852. builder.MoveToCell(0, startRowIndex, 4, 0);
  4853. builder.Write(DeleClientList[i].Job);//职务及级别
  4854. builder.MoveToCell(0, startRowIndex, 5, 0);
  4855. builder.Write("");//人员属性
  4856. builder.MoveToCell(0, startRowIndex, 6, 0);
  4857. builder.Write("");//上次出国时间
  4858. startRowIndex++;
  4859. }
  4860. int nullRow = rowCount - DeleClientList.Count;//空行
  4861. for (int i = 0; i < nullRow; i++)
  4862. {
  4863. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4864. }
  4865. foreach (var key in dic.Keys)
  4866. {
  4867. builder.MoveToBookmark(key);
  4868. builder.Write(dic[key]);
  4869. }
  4870. //模板文件名
  4871. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4872. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4873. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4874. return Ok(JsonView(true, "成功", new { Url = url }));
  4875. }
  4876. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4877. {
  4878. //获取模板
  4879. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4880. //载入模板
  4881. Document doc = new Document(tempPath);
  4882. DocumentBuilder builder = new DocumentBuilder(doc);
  4883. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4884. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4885. dic.Add("Names", Names);
  4886. int accommodationRows = 12, foodandotherRows = 12;
  4887. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4888. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4889. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4890. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4891. int accommodationStartIndex = 6;
  4892. decimal dac1totalPrice = 0.00M;
  4893. foreach (var dac in dac1)
  4894. {
  4895. if (dac.SubTotal == 0)
  4896. {
  4897. continue;
  4898. }
  4899. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4900. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4901. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4902. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4903. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4904. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4905. builder.Write(currency);//币种
  4906. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4907. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4908. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4909. builder.Write("");//人数
  4910. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4911. builder.Write("");//天数
  4912. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4913. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4914. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4915. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4916. builder.Write(rate.ToString("#0.0000"));//汇率
  4917. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4918. decimal rbmPrice = rate * dac.SubTotal;
  4919. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4920. accommodationStartIndex++;
  4921. dac1totalPrice += rbmPrice;
  4922. }
  4923. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4924. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4925. builder.Write("小计");
  4926. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4927. builder.Write(dac1totalPrice.ToString("#0.00"));
  4928. accommodationStartIndex++;
  4929. int nullRow = accommodationRows - dac1.Count;
  4930. //删除空行
  4931. //if (nullRow > 0)
  4932. //{
  4933. // int rowIndex = accommodationStartIndex;
  4934. // for (int i = 0; i < nullRow; i++)
  4935. // {
  4936. // Row row = table1.Rows[rowIndex];
  4937. // row.Remove();
  4938. // rowIndex++;
  4939. // }
  4940. //}
  4941. if (dac2.Count == dac3.Count)//国家 币种 金额
  4942. {
  4943. for (int i = 0; i < dac2.Count; i++)
  4944. {
  4945. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4946. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4947. }
  4948. }
  4949. int foodandotherStartIndex = 19;//
  4950. decimal dac2totalPrice = 0.00M;
  4951. foreach (var dac in dac2)
  4952. {
  4953. if (dac.SubTotal == 0)
  4954. {
  4955. continue;
  4956. }
  4957. //foodandotherStartIndex = 12;
  4958. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4959. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4960. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4961. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4962. builder.Write(currency);//币种
  4963. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4964. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4965. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4966. builder.Write("");//人数
  4967. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4968. builder.Write("");//天数
  4969. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4970. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4971. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4972. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4973. builder.Write(rate.ToString("#0.0000"));//汇率
  4974. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4975. decimal rbmPrice = rate * dac.SubTotal;
  4976. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4977. foodandotherStartIndex++;
  4978. dac2totalPrice += rbmPrice;
  4979. }
  4980. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4981. //删除空行
  4982. if (dac2.Count < foodandotherRows)
  4983. {
  4984. //int nullRow = accommodationRows - dac2.Count;
  4985. //while (table2.Rows.Count > dac2.Count)
  4986. //{
  4987. // table2.Rows.RemoveAt(dac2.Count);
  4988. //}
  4989. }
  4990. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4991. string otherFeeStr = "";
  4992. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4993. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4994. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4995. if (otherFeeStr.Length > 0)
  4996. {
  4997. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4998. otherFeeStr = $"({otherFeeStr})";
  4999. dic.Add("OtherFeeStr", otherFeeStr);
  5000. }
  5001. foreach (var key in dic.Keys)
  5002. {
  5003. builder.MoveToBookmark(key);
  5004. builder.Write(dic[key]);
  5005. }
  5006. //模板文件名
  5007. string strFileName = $"省级单位出(境)经费报销单.docx";
  5008. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5009. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5010. return Ok(JsonView(true, "成功", new { Url = url }));
  5011. }
  5012. }
  5013. else if (dto.ExportType == 3)
  5014. {
  5015. if (dto.SubTypeId == 1) //团组成员名单
  5016. {
  5017. if (DeleClientList.Count < 1)
  5018. {
  5019. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  5020. }
  5021. //获取模板
  5022. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  5023. //载入模板
  5024. Document doc = new Document(tempPath);
  5025. DocumentBuilder builder = new DocumentBuilder(doc);
  5026. //获取word里所有表格
  5027. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5028. //获取所填表格的序数
  5029. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5030. var rowStart = tableOne.Rows[0]; //获取第1行
  5031. //循环赋值
  5032. for (int i = 0; i < DeleClientList.Count; i++)
  5033. {
  5034. builder.MoveToCell(0, i + 1, 0, 0);
  5035. builder.Write(DeleClientList[i].Name);
  5036. builder.MoveToCell(0, i + 1, 1, 0);
  5037. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  5038. builder.Write(sex);
  5039. builder.MoveToCell(0, i + 1, 2, 0);
  5040. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  5041. builder.MoveToCell(0, i + 1, 3, 0);
  5042. builder.Write(DeleClientList[i].Company);
  5043. builder.MoveToCell(0, i + 1, 4, 0);
  5044. builder.Write(DeleClientList[i].Job);
  5045. }
  5046. //删除多余行
  5047. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  5048. {
  5049. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  5050. }
  5051. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  5052. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  5053. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  5054. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5055. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5056. return Ok(JsonView(true, "成功", new { Url = url }));
  5057. }
  5058. }
  5059. return Ok(JsonView(false, "操作失败!"));
  5060. }
  5061. catch (Exception ex)
  5062. {
  5063. return Ok(JsonView(false, ex.Message));
  5064. }
  5065. }
  5066. /// <summary>
  5067. /// 获取三公费用标准city
  5068. /// </summary>
  5069. /// <param name="placeData"></param>
  5070. /// <param name="nationalTravelFeeId"></param>
  5071. /// <returns></returns>
  5072. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  5073. {
  5074. string _city = string.Empty;
  5075. if (placeData.Count < 1) return _city;
  5076. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  5077. if (data == null) return _city;
  5078. string country = data.Country;
  5079. string city = data.City;
  5080. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  5081. else _city = city;
  5082. return _city;
  5083. }
  5084. /// <summary>
  5085. /// 团组模块 - 出入境费用 - 明细表导出
  5086. /// </summary>
  5087. /// <returns></returns>
  5088. [HttpPost]
  5089. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5090. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  5091. {
  5092. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  5093. if (data.Code != 0)
  5094. {
  5095. return Ok(JsonView(false, data.Msg));
  5096. }
  5097. return Ok(JsonView(true, data.Msg, data.Data));
  5098. }
  5099. /// <summary>
  5100. /// 团组模块 - 出入境费用 - 一键清空
  5101. /// </summary>
  5102. /// <returns></returns>
  5103. [HttpPost]
  5104. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5105. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  5106. {
  5107. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  5108. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  5109. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  5110. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  5111. if (_view.Code == 0)
  5112. {
  5113. return Ok(JsonView(true, "操作成功"));
  5114. }
  5115. return Ok(JsonView(false, "操作失败"));
  5116. }
  5117. /// <summary>
  5118. /// 团组模块 - 出入境费用 - 子项删除
  5119. /// </summary>
  5120. /// <returns></returns>
  5121. [HttpPost]
  5122. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5123. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  5124. {
  5125. try
  5126. {
  5127. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  5128. if (data.Code != 0)
  5129. {
  5130. return Ok(JsonView(false, data.Msg));
  5131. }
  5132. return Ok(JsonView(true, "操作成功!", data.Data));
  5133. }
  5134. catch (Exception ex)
  5135. {
  5136. return Ok(JsonView(false, ex.Message));
  5137. }
  5138. }
  5139. /// <summary>
  5140. /// 团组模块 - 出入境国家费用标准 List
  5141. /// </summary>
  5142. /// <returns></returns>
  5143. [HttpPost]
  5144. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5145. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5146. {
  5147. try
  5148. {
  5149. Stopwatch sw = new Stopwatch();
  5150. sw.Start();
  5151. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5152. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5153. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5154. Where gntf.Isdel = 0");
  5155. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5156. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5157. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5158. //foreach (var item in nationalTravel)
  5159. //{
  5160. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5161. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5162. // if (otherData != null)
  5163. // {
  5164. // cityData.Remove(otherData);
  5165. // cityData.Add(otherData);
  5166. // }
  5167. // nationalTravelFeeData1.Add(new
  5168. // {
  5169. // Country = item.Country,
  5170. // CityData = cityData
  5171. // });
  5172. //}
  5173. sw.Stop();
  5174. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5175. }
  5176. catch (Exception ex)
  5177. {
  5178. return Ok(JsonView(false, ex.Message));
  5179. throw;
  5180. }
  5181. }
  5182. /// <summary>
  5183. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5184. /// </summary>
  5185. /// <returns></returns>
  5186. [HttpPost]
  5187. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5188. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5189. {
  5190. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5191. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5192. List<string> countryData = new List<string>();
  5193. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5194. countryData = countryData.Distinct().ToList();
  5195. List<dynamic> dataSource = new List<dynamic>();
  5196. foreach (var item in countryData)
  5197. {
  5198. List<string> cityData1 = new List<string>();
  5199. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5200. var countryData2 = new
  5201. {
  5202. CountryName = item,
  5203. CityData = cityData1
  5204. };
  5205. dataSource.Add(countryData2);
  5206. }
  5207. return Ok(JsonView(true, "查询成功!", dataSource));
  5208. }
  5209. /// <summary>
  5210. /// 团组模块 - 出入境国家费用标准 Page List
  5211. /// </summary>
  5212. /// <returns></returns>
  5213. [HttpPost]
  5214. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5215. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5216. {
  5217. int portId = dto.PortType;
  5218. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5219. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5220. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5221. string whereSql = string.Empty;
  5222. if (!string.IsNullOrEmpty(dto.Country))
  5223. {
  5224. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5225. }
  5226. if (!string.IsNullOrEmpty(dto.City))
  5227. {
  5228. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5229. }
  5230. string pageSql = string.Format(@"Select * From (
  5231. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5232. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5233. From Grp_NationalTravelFee gntf
  5234. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5235. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5236. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5237. RefAsync<int> total = 0;
  5238. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5239. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5240. }
  5241. /// <summary>
  5242. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5243. /// </summary>
  5244. /// <returns></returns>
  5245. [HttpPost]
  5246. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5247. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5248. {
  5249. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5250. int portId = dto.PortType;
  5251. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5252. string whereSql = string.Empty;
  5253. if (!string.IsNullOrEmpty(dto.Country))
  5254. {
  5255. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5256. }
  5257. if (!string.IsNullOrEmpty(dto.City))
  5258. {
  5259. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5260. }
  5261. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5262. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5263. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5264. From Grp_NationalTravelFee gntf
  5265. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5266. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5267. Where gntf.Isdel = 0 {0} ", whereSql);
  5268. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5269. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5270. }
  5271. /// <summary>
  5272. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5273. /// </summary>
  5274. /// <returns></returns>
  5275. [HttpPost]
  5276. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5277. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5278. {
  5279. try
  5280. {
  5281. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5282. if (data.Code != 0)
  5283. {
  5284. return Ok(JsonView(false, data.Msg));
  5285. }
  5286. return Ok(JsonView(true, "操作成功!", data.Data));
  5287. }
  5288. catch (Exception ex)
  5289. {
  5290. return Ok(JsonView(false, ex.Message));
  5291. }
  5292. }
  5293. /// <summary>
  5294. /// 团组模块 - 出入境国家费用标准 - Del
  5295. /// </summary>
  5296. /// <returns></returns>
  5297. [HttpPost]
  5298. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5299. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5300. {
  5301. try
  5302. {
  5303. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5304. {
  5305. Id = dto.Id,
  5306. DeleteUserId = dto.DeleteUserId,
  5307. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5308. IsDel = 1
  5309. };
  5310. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5311. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5312. .WhereColumns(it => new { it.Id })
  5313. .ExecuteCommandAsync();
  5314. if (delStatus <= 0)
  5315. {
  5316. return Ok(JsonView(false, "删除失败!"));
  5317. }
  5318. return Ok(JsonView(true, "操作成功!"));
  5319. }
  5320. catch (Exception ex)
  5321. {
  5322. return Ok(JsonView(false, ex.Message));
  5323. }
  5324. }
  5325. #endregion
  5326. #region 签证费用录入
  5327. /// <summary>
  5328. /// 根据diid查询签证费用列表
  5329. /// </summary>
  5330. /// <param name="dto"></param>
  5331. /// <returns></returns>
  5332. [HttpPost]
  5333. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5334. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5335. {
  5336. try
  5337. {
  5338. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5339. if (groupData.Code != 0)
  5340. {
  5341. return Ok(JsonView(false, groupData.Msg));
  5342. }
  5343. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5344. }
  5345. catch (Exception ex)
  5346. {
  5347. return Ok(JsonView(false, ex.Message));
  5348. }
  5349. }
  5350. /// <summary>
  5351. /// 根据签证费用Id查询单条数据及c表数据
  5352. /// </summary>
  5353. /// <param name="dto"></param>
  5354. /// <returns></returns>
  5355. [HttpPost]
  5356. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5357. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5358. {
  5359. try
  5360. {
  5361. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5362. if (groupData.Code != 0)
  5363. {
  5364. return Ok(JsonView(false, groupData.Msg));
  5365. }
  5366. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5367. }
  5368. catch (Exception ex)
  5369. {
  5370. return Ok(JsonView(false, ex.Message));
  5371. }
  5372. }
  5373. /// <summary>
  5374. /// 签证费用删除
  5375. /// </summary>
  5376. /// <param name="dto"></param>
  5377. /// <returns></returns>
  5378. [HttpPost]
  5379. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5380. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5381. {
  5382. _sqlSugar.BeginTran();
  5383. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5384. if (!res)
  5385. {
  5386. _sqlSugar.RollbackTran();
  5387. return Ok(JsonView(false, "删除失败"));
  5388. }
  5389. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5390. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5391. .SetColumns(a => new Grp_CreditCardPayment()
  5392. {
  5393. IsDel = 1,
  5394. DeleteUserId = dto.DeleteUserId,
  5395. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5396. }).ExecuteCommand();
  5397. if (resSub < 1)
  5398. {
  5399. _sqlSugar.RollbackTran();
  5400. return Ok(JsonView(false, "删除失败"));
  5401. }
  5402. _sqlSugar.CommitTran();
  5403. return Ok(JsonView(true, "删除成功!"));
  5404. }
  5405. /// <summary>
  5406. /// 签证费用录入下拉框初始化
  5407. /// </summary>
  5408. /// <returns></returns>
  5409. [HttpPost]
  5410. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5411. public async Task<IActionResult> VisaPriceAddSelect()
  5412. {
  5413. try
  5414. {
  5415. //支付方式
  5416. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5417. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5418. //币种
  5419. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5420. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5421. //乘客类型
  5422. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5423. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5424. //卡类型
  5425. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5426. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5427. var data = new
  5428. {
  5429. Payment = _Payment,
  5430. CurrencyList = _CurrencyList,
  5431. PassengerType = _PassengerType,
  5432. BankCard = _BankCard
  5433. };
  5434. return Ok(JsonView(true, "查询成功!", data));
  5435. }
  5436. catch (Exception ex)
  5437. {
  5438. return Ok(JsonView(false, "程序错误!"));
  5439. throw;
  5440. }
  5441. }
  5442. /// <summary>
  5443. /// 签证费用录入操作(Status:1.新增,2.修改)
  5444. /// </summary>
  5445. /// <param name="dto"></param>
  5446. /// <returns></returns>
  5447. [HttpPost]
  5448. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5449. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5450. {
  5451. try
  5452. {
  5453. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5454. if (groupData.Code != 0)
  5455. {
  5456. return Ok(JsonView(false, groupData.Msg));
  5457. }
  5458. #region 应用推送
  5459. try
  5460. {
  5461. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5462. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5463. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5464. }
  5465. catch (Exception ex)
  5466. {
  5467. }
  5468. #endregion
  5469. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5470. }
  5471. catch (Exception ex)
  5472. {
  5473. return Ok(JsonView(false, ex.Message));
  5474. }
  5475. }
  5476. #endregion
  5477. #region op费用录入
  5478. /// <summary>
  5479. /// 根据diid查询op费用列表
  5480. /// </summary>
  5481. /// <param name="dto"></param>
  5482. /// <returns></returns>
  5483. [HttpPost]
  5484. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5485. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5486. {
  5487. try
  5488. {
  5489. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5490. if (groupData.Code != 0)
  5491. {
  5492. return Ok(JsonView(false, groupData.Msg));
  5493. }
  5494. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5495. }
  5496. catch (Exception ex)
  5497. {
  5498. return Ok(JsonView(false, ex.Message));
  5499. }
  5500. }
  5501. /// <summary>
  5502. /// 根据op费用Id查询单条数据及c表数据
  5503. /// </summary>
  5504. /// <param name="dto"></param>
  5505. /// <returns></returns>
  5506. [HttpPost]
  5507. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5508. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5509. {
  5510. try
  5511. {
  5512. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5513. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5514. var data = new
  5515. {
  5516. CarTouristGuideGround = _groupData,
  5517. CreditCardPayment = _creditCardPayment
  5518. };
  5519. return Ok(JsonView(true, "查询成功!", data));
  5520. }
  5521. catch (Exception ex)
  5522. {
  5523. return Ok(JsonView(false, "程序错误!"));
  5524. }
  5525. }
  5526. /// <summary>
  5527. /// op费用删除
  5528. /// </summary>
  5529. /// <param name="dto"></param>
  5530. /// <returns></returns>
  5531. [HttpPost]
  5532. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5533. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5534. {
  5535. try
  5536. {
  5537. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5538. if (!res)
  5539. {
  5540. return Ok(JsonView(false, "删除失败"));
  5541. }
  5542. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5543. {
  5544. IsDel = 1,
  5545. DeleteUserId = dto.DeleteUserId,
  5546. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5547. }).ExecuteCommandAsync();
  5548. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5549. {
  5550. IsDel = 1,
  5551. DeleteUserId = dto.DeleteUserId,
  5552. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5553. }).ExecuteCommandAsync();
  5554. return Ok(JsonView(true, "删除成功!"));
  5555. }
  5556. catch (Exception ex)
  5557. {
  5558. return Ok(JsonView(false, "程序错误!"));
  5559. throw;
  5560. }
  5561. }
  5562. /// <summary>
  5563. /// op费用录入操作(Status:1.新增,2.修改)
  5564. /// </summary>
  5565. /// <param name="dto"></param>
  5566. /// <returns></returns>
  5567. [HttpPost]
  5568. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5569. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5570. {
  5571. try
  5572. {
  5573. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5574. if (groupData.Code != 0)
  5575. {
  5576. return Ok(JsonView(false, groupData.Msg));
  5577. }
  5578. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5579. }
  5580. catch (Exception ex)
  5581. {
  5582. return Ok(JsonView(false, ex.Message));
  5583. }
  5584. }
  5585. /// <summary>
  5586. /// 填写费用详细页面初始化绑定
  5587. /// </summary>
  5588. /// <param name="dto"></param>
  5589. /// <returns></returns>
  5590. [HttpPost]
  5591. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5592. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5593. {
  5594. try
  5595. {
  5596. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5597. if (groupData.Code != 0)
  5598. {
  5599. return Ok(JsonView(false, groupData.Msg));
  5600. }
  5601. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5602. }
  5603. catch (Exception ex)
  5604. {
  5605. return Ok(JsonView(false, ex.Message));
  5606. }
  5607. }
  5608. /// <summary>
  5609. /// 根据op费用Id查询详细数据
  5610. /// </summary>
  5611. /// <param name="dto"></param>
  5612. /// <returns></returns>
  5613. [HttpPost]
  5614. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5615. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5616. {
  5617. try
  5618. {
  5619. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5620. if (groupData.Code != 0)
  5621. {
  5622. return Ok(JsonView(false, groupData.Msg));
  5623. }
  5624. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5625. }
  5626. catch (Exception ex)
  5627. {
  5628. return Ok(JsonView(false, ex.Message));
  5629. }
  5630. }
  5631. /// <summary>
  5632. /// OP费用录入填写详情
  5633. /// </summary>
  5634. /// <param name="dto"></param>
  5635. /// <returns></returns>
  5636. [HttpPost]
  5637. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5638. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5639. {
  5640. try
  5641. {
  5642. #region 参数校验
  5643. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5644. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5645. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5646. #endregion
  5647. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5648. if (groupData.Code != 0)
  5649. {
  5650. return Ok(JsonView(false, groupData.Msg));
  5651. }
  5652. //自动审核
  5653. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5654. #region 应用推送
  5655. try
  5656. {
  5657. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5658. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5659. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5660. }
  5661. catch (Exception ex)
  5662. {
  5663. }
  5664. #endregion
  5665. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5666. }
  5667. catch (Exception ex)
  5668. {
  5669. return Ok(JsonView(false, ex.Message));
  5670. }
  5671. }
  5672. /// <summary>
  5673. /// 获取三公详细所有城市
  5674. /// </summary>
  5675. /// <returns></returns>
  5676. [HttpGet]
  5677. public IActionResult OpCarCityResult()
  5678. {
  5679. var jw = JsonView(false);
  5680. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5681. {
  5682. x.Id,
  5683. x.Country,
  5684. x.City,
  5685. }).ToList();
  5686. if (data.Count > 0)
  5687. {
  5688. jw = JsonView(true, "获取成功!", data);
  5689. }
  5690. else
  5691. {
  5692. jw.Msg = "城市数据为空!";
  5693. jw.Data = new string[0];
  5694. }
  5695. return Ok(jw);
  5696. }
  5697. /// <summary>
  5698. /// 导出地接费用明细
  5699. /// </summary>
  5700. /// <param name="dto"></param>
  5701. /// <returns></returns>
  5702. [HttpPost]
  5703. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5704. {
  5705. var jw = JsonView(false);
  5706. if (dto.Diid < 1)
  5707. {
  5708. jw.Msg = "请输入正确的diid!";
  5709. return Ok(jw);
  5710. }
  5711. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5712. if (group == null)
  5713. {
  5714. jw.Msg = "未找到团组信息!";
  5715. return Ok(jw);
  5716. }
  5717. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5718. if (localGuideArr.Count == 0)
  5719. {
  5720. jw.Msg = "该团组暂无地接信息!";
  5721. return Ok(jw);
  5722. }
  5723. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5724. var overspendSoure = new Dictionary<int, int>
  5725. {
  5726. { 91, 982 }, //车
  5727. { 92 , 1059} ,//导游
  5728. { 994 , 1073}, //翻译
  5729. { 988 , 1074 }, //早餐
  5730. { 93 , 1075 }, //午餐
  5731. { 989 , 1076 }, //晚餐
  5732. };
  5733. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5734. foreach (var groupArr in localGroup)
  5735. {
  5736. var keyValue = groupArr.Key;
  5737. if (int.TryParse(keyValue, out int cityid))
  5738. {
  5739. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5740. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5741. }
  5742. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5743. foreach (var item in groupArr)
  5744. {
  5745. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5746. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5747. new Grp_CarTouristGuideGroundReservationsContentExtend
  5748. {
  5749. Count = a.Count,
  5750. CreateTime = a.CreateTime,
  5751. CreateUserId = a.CreateUserId,
  5752. CTGGRId = a.CTGGRId,
  5753. Currency = a.Currency,
  5754. DatePrice = a.DatePrice,
  5755. DeleteTime = a.DeleteTime,
  5756. DeleteUserId = a.DeleteUserId,
  5757. DiId = a.DiId,
  5758. Id = a.Id,
  5759. IsDel = a.IsDel,
  5760. Price = a.Price,
  5761. PriceContent = a.PriceContent,
  5762. Remark = a.Remark,
  5763. SId = a.SId,
  5764. SidName = b.Name,
  5765. Units = a.Units,
  5766. }
  5767. ).ToList();
  5768. if (content.Count > 0)
  5769. {
  5770. contentArr.Add(content);
  5771. }
  5772. }
  5773. //open excel
  5774. //set excel
  5775. //save excel
  5776. try
  5777. {
  5778. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5779. IWorkbook workbook;
  5780. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5781. {
  5782. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5783. }
  5784. else
  5785. {
  5786. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5787. }
  5788. ISheet sheet = workbook.GetSheetAt(0);
  5789. var rowStartIndex = 2;
  5790. var clounmCount = 10;
  5791. var initStyleRow = sheet.GetRow(2);
  5792. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5793. //var overspendArrDetail =
  5794. var existsId = new List<CarCompare>();
  5795. var lastElem = arr.Last();
  5796. var thisSid = -1;
  5797. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5798. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5799. {
  5800. Name = "未知币种!",
  5801. Remark = "未知币种!",
  5802. };
  5803. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5804. Action cloneRowFn = () =>
  5805. {
  5806. rowStartIndex++;
  5807. var cloneRow = sheet.CreateRow(rowStartIndex);
  5808. // 复制样式
  5809. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5810. {
  5811. ICell sourceCell = initStyleRow.GetCell(i);
  5812. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5813. // 确保单元格存在样式
  5814. if (sourceCell.CellStyle != null)
  5815. {
  5816. targetCell.CellStyle = sourceCell.CellStyle;
  5817. }
  5818. }
  5819. };
  5820. var mergeRow = () =>
  5821. {
  5822. for (int i = 2; i < sheet.LastRowNum; i++)
  5823. {
  5824. var row = sheet.GetRow(i);
  5825. var cellFirst = row.GetCell(0);
  5826. var thisIndex = i + 1;
  5827. while (thisIndex < sheet.LastRowNum)
  5828. {
  5829. var nextRow = sheet.GetRow(thisIndex);
  5830. var nextCellFirst = nextRow.GetCell(0);
  5831. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5832. {
  5833. thisIndex++;
  5834. }
  5835. else
  5836. {
  5837. break;
  5838. }
  5839. }
  5840. thisIndex--;
  5841. if (thisIndex != i)
  5842. {
  5843. //合并row
  5844. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5845. i, // 起始行索引(0-based)
  5846. thisIndex, // 结束行索引(0-based)
  5847. 0, // 起始列索引(0-based)
  5848. 0 // 结束列索引(0-based)
  5849. );
  5850. sheet.AddMergedRegion(cellRangeAddress);
  5851. i = thisIndex;
  5852. }
  5853. }
  5854. };
  5855. var chaoshiNumber = 0;
  5856. var totalNumber = 0.00M;
  5857. string lastStr = "";
  5858. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5859. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5860. {
  5861. b.IsAuditGM,
  5862. x.Id,
  5863. x.Area,
  5864. b.PayPercentage,
  5865. b.PayMoney,
  5866. }).ToList();
  5867. string yesPayment = "", noPayment = "";
  5868. foreach (var item in queryCarArrByCityAndDiid)
  5869. {
  5870. if (item.IsAuditGM == 1)
  5871. {
  5872. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5873. }
  5874. else
  5875. {
  5876. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5877. }
  5878. }
  5879. lastStr = yesPayment + noPayment;
  5880. foreach (var item in arr)
  5881. {
  5882. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5883. {
  5884. if (thisSid != item.SId)
  5885. {
  5886. if (thisSid == -1)
  5887. {
  5888. thisSid = item.SId;
  5889. }
  5890. else
  5891. {
  5892. //合并小计行
  5893. //创建合并区域的实例
  5894. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5895. rowStartIndex, // 起始行索引(0-based)
  5896. rowStartIndex, // 结束行索引(0-based)
  5897. 0, // 起始列索引(0-based)
  5898. 3 // 结束列索引(0-based)
  5899. );
  5900. sheet.AddMergedRegion(cellRangeAddress);
  5901. var CellStyle = workbook.CreateCellStyle();
  5902. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5903. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5904. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5905. for (int i = 0; i <= clounmCount; i++)
  5906. {
  5907. if (i > 6)
  5908. {
  5909. var CellStyle1 = workbook.CreateCellStyle();
  5910. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5911. IFont Font = workbook.CreateFont(); // 创建字体
  5912. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5913. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5914. CellStyle1.SetFont(Font);
  5915. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5916. }
  5917. else
  5918. {
  5919. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5920. }
  5921. }
  5922. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5923. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5924. //超时合计
  5925. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5926. //超时数
  5927. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5928. //超时合计费用
  5929. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5930. thisSid = item.SId;
  5931. cloneRowFn();
  5932. chaoshiNumber = 0;
  5933. totalNumber = 0;
  5934. }
  5935. }
  5936. IRow row = sheet.GetRow(rowStartIndex);
  5937. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5938. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5939. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5940. if (isOpenOverspendSoure)
  5941. {
  5942. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5943. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5944. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5945. }
  5946. for (int i = 0; i <= clounmCount; i++)
  5947. {
  5948. var cell = row.GetCell(i);
  5949. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5950. if (cell == null)
  5951. {
  5952. cell = row.CreateCell(i);
  5953. }
  5954. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5955. fontRed.CloneStyleFrom(cell.CellStyle);
  5956. IFont Font = workbook.CreateFont(); // 创建字体
  5957. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5958. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5959. fontRed.SetFont(Font);
  5960. byte[] rgb = new byte[3] { 255, 242, 204 };
  5961. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5962. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5963. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5964. if (workbook is XSSFWorkbook)
  5965. {
  5966. BackgroundColor255_242_204.FillForegroundColor = 0;
  5967. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5968. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5969. }
  5970. else
  5971. {
  5972. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5973. }
  5974. if (i == 1 || i > 6)
  5975. {
  5976. if (i > 6)
  5977. {
  5978. fontRed.FillForegroundColor = 0;
  5979. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5980. fontRed.FillPattern = FillPattern.SolidForeground;
  5981. }
  5982. cell.CellStyle = fontRed;
  5983. }
  5984. if (i > 2 && i < 7)
  5985. {
  5986. cell.CellStyle = BackgroundColor255_242_204;
  5987. }
  5988. cell.SetCellValue(setCellValue); //写入单元格
  5989. }
  5990. if (overspendSoure.ContainsKey(thisSid))
  5991. {
  5992. var overspendId = overspendSoure[thisSid];
  5993. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5994. }
  5995. cloneRowFn();
  5996. existsId.Add(new CarCompare
  5997. {
  5998. DataPrice = item.DatePrice.ObjToDate(),
  5999. Sid = item.SId
  6000. });
  6001. }
  6002. if (item.Equals(lastElem))
  6003. {
  6004. //合并小计行
  6005. //创建合并区域的实例
  6006. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6007. rowStartIndex, // 起始行索引(0-based)
  6008. rowStartIndex, // 结束行索引(0-based)
  6009. 0, // 起始列索引(0-based)
  6010. 3 // 结束列索引(0-based)
  6011. );
  6012. sheet.AddMergedRegion(cellRangeAddress);
  6013. var CellStyle = workbook.CreateCellStyle();
  6014. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6015. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  6016. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  6017. for (int i = 0; i <= clounmCount; i++)
  6018. {
  6019. if (i > 6)
  6020. {
  6021. var CellStyle1 = workbook.CreateCellStyle();
  6022. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6023. IFont Font = workbook.CreateFont(); // 创建字体
  6024. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  6025. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6026. CellStyle1.SetFont(Font);
  6027. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  6028. }
  6029. else
  6030. {
  6031. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6032. }
  6033. }
  6034. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6035. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6036. //超时合计
  6037. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6038. //超时数
  6039. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6040. //超时合计费用
  6041. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6042. cloneRowFn();
  6043. // 创建合并区域的实例
  6044. cellRangeAddress = new CellRangeAddress(
  6045. rowStartIndex, // 起始行索引(0-based)
  6046. rowStartIndex, // 结束行索引(0-based)
  6047. 0, // 起始列索引(0-based)
  6048. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  6049. );
  6050. // 添加合并区域
  6051. sheet.AddMergedRegion(cellRangeAddress);
  6052. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  6053. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  6054. }
  6055. }
  6056. mergeRow();
  6057. // 保存修改后的Excel文件到新文件
  6058. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  6059. // new FileStream(newFilePath, FileMode.CreateNew)
  6060. using (var stream = new MemoryStream())
  6061. {
  6062. workbook.Write(stream, true);
  6063. stream.Flush();
  6064. stream.Seek(0, SeekOrigin.Begin);
  6065. MemoryStream memoryStream = new MemoryStream();
  6066. stream.CopyTo(memoryStream);
  6067. memoryStream.Seek(0, SeekOrigin.Begin);
  6068. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  6069. }
  6070. workbook.Close();
  6071. workbook.Dispose();
  6072. }
  6073. catch (Exception ex)
  6074. {
  6075. jw.Msg = "出现异常!" + ex.Message;
  6076. return Ok(jw);
  6077. }
  6078. }
  6079. if (Zips.Count > 0)
  6080. {
  6081. IOOperatorHelper io = new IOOperatorHelper();
  6082. var byts = io.ConvertZipStream(Zips);
  6083. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  6084. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  6085. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  6086. }
  6087. else
  6088. {
  6089. jw.Msg = "暂无生成文件!";
  6090. }
  6091. return Ok(jw);
  6092. }
  6093. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  6094. {
  6095. string outStr = string.Empty;
  6096. switch (i)
  6097. {
  6098. case 0:
  6099. outStr = arr[0].SidName;
  6100. break;
  6101. case 1:
  6102. outStr = arr[0].DataPriceStr;
  6103. break;
  6104. case 2:
  6105. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  6106. break;
  6107. case 4:
  6108. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  6109. break;
  6110. case 7:
  6111. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6112. {
  6113. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  6114. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  6115. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  6116. }
  6117. break;
  6118. case 8:
  6119. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6120. {
  6121. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  6122. }
  6123. break;
  6124. case 9:
  6125. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6126. {
  6127. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  6128. }
  6129. break;
  6130. case 10:
  6131. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6132. {
  6133. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6134. }
  6135. break;
  6136. }
  6137. return outStr;
  6138. }
  6139. #region OP行程单
  6140. /// <summary>
  6141. /// OP行程单初始化
  6142. /// </summary>
  6143. /// <param name="dto"></param>
  6144. /// <returns></returns>
  6145. [HttpPost]
  6146. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6147. {
  6148. var jw = JsonView(false);
  6149. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6150. var group = groupList.First();
  6151. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6152. if (group == null)
  6153. {
  6154. jw.Msg = "暂无团组!";
  6155. return Ok(jw);
  6156. }
  6157. group = groupList.Find(x => x.Id == diid);
  6158. if (group == null)
  6159. {
  6160. jw.Msg = "请输入正确的团组ID!";
  6161. return Ok(jw);
  6162. }
  6163. string city = string.Empty;
  6164. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6165. if (blackCode.Count > 0)
  6166. {
  6167. var black = blackCode.First();
  6168. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6169. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6170. if (blackSp.Length > 0)
  6171. {
  6172. try
  6173. {
  6174. var cityArrCode = new List<string>(20);
  6175. foreach (var item in blackSp)
  6176. {
  6177. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6178. var IndexSelect = itemSp[2];
  6179. var cityArrCodeLength = cityArrCode.Count - 1;
  6180. var startCity = IndexSelect.Substring(0, 3);
  6181. if (cityArrCodeLength > 0)
  6182. {
  6183. var arrEndCity = cityArrCode[cityArrCodeLength];
  6184. if (arrEndCity != startCity)
  6185. {
  6186. cityArrCode.Add(startCity.ToUpper());
  6187. }
  6188. }
  6189. else
  6190. {
  6191. cityArrCode.Add(startCity.ToUpper());
  6192. }
  6193. var endCity = IndexSelect.Substring(3, 3);
  6194. cityArrCode.Add(endCity.ToUpper());
  6195. }
  6196. var cityThree = string.Empty;
  6197. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6198. cityThree = cityThree.TrimEnd(',');
  6199. if (string.IsNullOrWhiteSpace(cityThree))
  6200. {
  6201. throw new
  6202. Exception("error");
  6203. }
  6204. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6205. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6206. foreach (var item in cityArrCode)
  6207. {
  6208. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6209. if (find != null)
  6210. {
  6211. city += find.City + "/";
  6212. }
  6213. else
  6214. {
  6215. city += item + "三字码未收入/";
  6216. }
  6217. }
  6218. city = city.TrimEnd('/');
  6219. }
  6220. catch (Exception e)
  6221. {
  6222. city = "黑屏代码格式不正确!";
  6223. }
  6224. }
  6225. }
  6226. else
  6227. {
  6228. city = "未录入黑屏代码";
  6229. }
  6230. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6231. {
  6232. Date = x.Date,
  6233. Days = x.Days,
  6234. Diffgroup = x.Diffgroup,
  6235. Diid = x.Diid,
  6236. Traffic_First = x.Traffic_First,
  6237. Traffic_Second = x.Traffic_Second,
  6238. Trip = x.Trip,
  6239. WeekDay = x.WeekDay,
  6240. Id = x.Id
  6241. }).ToList();
  6242. jw.Data = new
  6243. {
  6244. groupList = groupList.Select(x => new
  6245. {
  6246. x.Id,
  6247. x.TeamName,
  6248. x.TourCode
  6249. }).ToList(),
  6250. groupInfo = new
  6251. {
  6252. group.VisitDays,
  6253. group.TourCode,
  6254. group.VisitPNumber,
  6255. group.TeamName,
  6256. city
  6257. },
  6258. OpTravelList
  6259. };
  6260. jw.Code = 200;
  6261. jw.Msg = "操作成功!";
  6262. return Ok(jw);
  6263. }
  6264. /// <summary>
  6265. /// 删除团组行程单
  6266. /// </summary>
  6267. /// <returns></returns>
  6268. [HttpPost]
  6269. public IActionResult DelTravel(DelOpTravelDto dto)
  6270. {
  6271. var jw = JsonView(false);
  6272. if (dto.UserId <= 0 || dto.Diid <= 0)
  6273. {
  6274. jw.Msg = "请输入正确的参数!";
  6275. return Ok(jw);
  6276. }
  6277. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6278. .SetColumns(x => new Grp_TravelList
  6279. {
  6280. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6281. DeleteUserId = dto.UserId,
  6282. IsDel = 1,
  6283. }).ExecuteCommand();
  6284. jw = JsonView(true);
  6285. return Ok(jw);
  6286. }
  6287. /// <summary>
  6288. /// 行程单保存
  6289. /// </summary>
  6290. /// <returns></returns>
  6291. [HttpPost]
  6292. public IActionResult TravelSave(TravelSaveDto dto)
  6293. {
  6294. var jw = JsonView(false);
  6295. if (dto.Arr.Count > 0)
  6296. {
  6297. try
  6298. {
  6299. _sqlSugar.BeginTran();
  6300. foreach (var item in dto.Arr)
  6301. {
  6302. if (item.Id == 0)
  6303. {
  6304. throw new Exception("请传入正确的Id");
  6305. }
  6306. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6307. .SetColumns(x => new Grp_TravelList
  6308. {
  6309. Trip = item.Trip
  6310. }).ExecuteCommand();
  6311. }
  6312. _sqlSugar.CommitTran();
  6313. jw = JsonView(true);
  6314. }
  6315. catch (Exception ex)
  6316. {
  6317. _sqlSugar.RollbackTran();
  6318. jw.Msg = "程序异常!" + ex.Message;
  6319. }
  6320. }
  6321. else
  6322. {
  6323. jw.Msg = "请传入正确的参数!";
  6324. }
  6325. return Ok(jw);
  6326. }
  6327. /// <summary>
  6328. /// 导出行程单
  6329. /// </summary>
  6330. /// <param name="dto"></param>
  6331. /// <returns></returns>
  6332. [HttpPost]
  6333. public IActionResult ExportTravel(ExportTravelDto dto)
  6334. {
  6335. var jw = JsonView(false);
  6336. jw.Data = "";
  6337. int diid = 0;
  6338. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6339. if (Find == null)
  6340. {
  6341. jw.Msg = "请选择正确的团组!";
  6342. return Ok(jw);
  6343. }
  6344. else
  6345. {
  6346. diid = Find.Id;
  6347. }
  6348. //数据源
  6349. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6350. DataTable dtBlack = null;
  6351. try
  6352. {
  6353. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6354. }
  6355. catch (Exception)
  6356. {
  6357. jw.Msg = "机票黑屏代码有误!";
  6358. return Ok(jw);
  6359. }
  6360. string CityStr = string.Empty;
  6361. if (dtBlack.Rows.Count == 0)
  6362. {
  6363. jw.Msg = "机票黑屏代码有误!";
  6364. return Ok(jw);
  6365. }
  6366. else
  6367. {
  6368. foreach (DataRow row in dtBlack.Rows)
  6369. {
  6370. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6371. {
  6372. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6373. return Ok(jw);
  6374. }
  6375. }
  6376. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6377. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6378. }
  6379. //创建数据源Table
  6380. DataTable dtSource = new DataTable();
  6381. dtSource.Columns.Add("Days", typeof(string));
  6382. dtSource.Columns.Add("Date", typeof(string));
  6383. dtSource.Columns.Add("Week", typeof(string));
  6384. dtSource.Columns.Add("Traffic", typeof(string));
  6385. dtSource.Columns.Add("Trip", typeof(string));
  6386. //获取数据,放到datatable
  6387. foreach (var item in _travelList)
  6388. {
  6389. DataRow dr = dtSource.NewRow();
  6390. dr["Days"] = item.Days;
  6391. dr["Date"] = item.Date;
  6392. dr["Week"] = item.WeekDay;
  6393. dr["Traffic"] = item.Traffic_First
  6394. + "\r\n"
  6395. + item.Traffic_Second;
  6396. dr["Trip"] = item.Trip;
  6397. dtSource.Rows.Add(dr);
  6398. }
  6399. Dictionary<string, string> dic = new Dictionary<string, string>();
  6400. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6401. dic.Add("City", CityStr);
  6402. dic.Add("Days", Find.VisitDays.ToString());
  6403. dic.Add("DeleCode", Find.TourCode);
  6404. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6405. //模板路径
  6406. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6407. //载入模板
  6408. Document doc = null;
  6409. DocumentBuilder builder = null;
  6410. try
  6411. {
  6412. //载入模板
  6413. doc = new Document(tempPath);
  6414. builder = new DocumentBuilder(doc);
  6415. }
  6416. catch (Exception)
  6417. {
  6418. jw.Msg = "模板位置不存在!";
  6419. return Ok(jw);
  6420. }
  6421. foreach (var key in dic.Keys)
  6422. {
  6423. Bookmark bookmark = doc.Range.Bookmarks[key];
  6424. if (bookmark != null)
  6425. {
  6426. builder.MoveToBookmark(key);
  6427. builder.Write(dic[key]);
  6428. }
  6429. }
  6430. //获取word里所有表格
  6431. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6432. //获取所填表格的序数
  6433. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6434. try
  6435. {
  6436. //循环赋值
  6437. for (int i = 0; i < dtSource.Rows.Count; i++)
  6438. {
  6439. builder.MoveToCell(0, i + 1, 0, 0);
  6440. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6441. builder.MoveToCell(0, i + 1, 1, 0);
  6442. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6443. builder.MoveToCell(0, i + 1, 2, 0);
  6444. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6445. var trip = dtSource.Rows[i]["Trip"].ToString();
  6446. builder.MoveToCell(0, i + 1, 3, 0);
  6447. builder.Write(trip);
  6448. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6449. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6450. // 获取特定索引的段落
  6451. Paragraph paragraph = (Paragraph)paragraphs[0];
  6452. Run run = paragraph.Runs[0];
  6453. Aspose.Words.Font font = run.Font;
  6454. font.Name = "黑体";
  6455. //设置双休红色
  6456. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6457. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6458. paragraph = (Paragraph)paragraphs[1];
  6459. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6460. {
  6461. run = paragraph.Runs[0];
  6462. font = run.Font;
  6463. font.Color = Color.Red;
  6464. }
  6465. }
  6466. }
  6467. catch (Exception ex)
  6468. {
  6469. }
  6470. //删除多余行
  6471. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6472. {
  6473. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6474. }
  6475. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6476. if (!Directory.Exists(savePath))
  6477. {
  6478. try
  6479. {
  6480. Directory.CreateDirectory(savePath);
  6481. }
  6482. catch
  6483. {
  6484. }
  6485. }
  6486. string path = savePath + Find.TeamName + "出访日程";
  6487. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6488. try
  6489. {
  6490. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6491. string postfix = ".docx";
  6492. if (dto.IsPDF == 1)
  6493. {
  6494. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6495. postfix = ".pdf";
  6496. }
  6497. doc.Save(path + postfix, saveFormat);
  6498. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6499. }
  6500. catch (Exception)
  6501. {
  6502. jw = JsonView(false);
  6503. }
  6504. return Ok(jw);
  6505. }
  6506. /// <summary>
  6507. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6508. /// </summary>
  6509. /// <param name="num"></param>
  6510. /// <returns></returns>
  6511. string GetNum(string num)
  6512. {
  6513. string str = "";
  6514. switch (num)
  6515. {
  6516. case "1":
  6517. str = "一";
  6518. break;
  6519. case "2":
  6520. str = "二";
  6521. break;
  6522. case "3":
  6523. str = "三";
  6524. break;
  6525. case "4":
  6526. str = "四";
  6527. break;
  6528. case "5":
  6529. str = "五";
  6530. break;
  6531. case "6":
  6532. str = "六";
  6533. break;
  6534. case "7":
  6535. str = "七";
  6536. break;
  6537. case "8":
  6538. str = "八";
  6539. break;
  6540. case "9":
  6541. str = "九";
  6542. break;
  6543. case "10":
  6544. str = "十";
  6545. break;
  6546. case "11":
  6547. str = "十一";
  6548. break;
  6549. case "12":
  6550. str = "十二";
  6551. break;
  6552. case "一":
  6553. str = "1";
  6554. break;
  6555. case "二":
  6556. str = "2";
  6557. break;
  6558. case "三":
  6559. str = "3";
  6560. break;
  6561. case "四":
  6562. str = "4";
  6563. break;
  6564. case "五":
  6565. str = "5";
  6566. break;
  6567. case "六":
  6568. str = "6";
  6569. break;
  6570. case "七":
  6571. str = "7";
  6572. break;
  6573. case "八":
  6574. str = "8";
  6575. break;
  6576. case "九":
  6577. str = "9";
  6578. break;
  6579. case "十":
  6580. str = "10";
  6581. break;
  6582. case "十一":
  6583. str = "11";
  6584. break;
  6585. case "十二":
  6586. str = "12";
  6587. break;
  6588. }
  6589. return str;
  6590. }
  6591. #endregion
  6592. #endregion
  6593. #region 团组成本
  6594. /// <summary>
  6595. /// 团组成本数据初始化
  6596. /// </summary>
  6597. /// <param name="dto"></param>
  6598. /// <returns></returns>
  6599. [HttpPost]
  6600. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6601. {
  6602. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6603. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6604. WHEN COUNT(*) >= 0 THEN 'True'
  6605. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6606. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6607. ").ToList(); //团组列表
  6608. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6609. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6610. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6611. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6612. if (groupinfoValue != null)
  6613. {
  6614. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6615. var spArr = new string[1] { countryArr };
  6616. if (countryArr.Contains("|"))
  6617. {
  6618. spArr = countryArr.Split("|");
  6619. }
  6620. else if (countryArr.Contains("、"))
  6621. {
  6622. spArr = countryArr.Split("、");
  6623. }
  6624. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6625. {
  6626. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6627. if (dbQueryCountry != null)
  6628. {
  6629. visaCountryInfoArr.Add(dbQueryCountry);
  6630. }
  6631. }
  6632. }
  6633. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6634. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6635. var create = _GroupCostRepository.
  6636. CreateGroupCostByBlackCode(dto.Diid);
  6637. if (groupCost.Count == 0 && create.Code == 0)
  6638. {
  6639. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6640. }
  6641. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6642. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6643. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6644. groupCostMap = groupCostMap.Select(x =>
  6645. {
  6646. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6647. {
  6648. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6649. }
  6650. return x;
  6651. }).ToList();
  6652. //GroupCostParameter.Add(new
  6653. // Grp_GroupCostParameter());
  6654. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6655. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6656. return Ok(JsonView(new
  6657. {
  6658. groupList,
  6659. groupInfo,
  6660. groupChecks,
  6661. groupCost = groupCostMap,
  6662. hotelNumber,
  6663. GroupCostParameter = GroupCostParameterMap,
  6664. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6665. {
  6666. x.VisaCountry,
  6667. x.VisaPrice,
  6668. x.Id,
  6669. }).ToList(),
  6670. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6671. blackCodeIsTrue = create.Code == 0 ? true : false,
  6672. hotelIsTrue = hotelIsTrue,
  6673. }));
  6674. }
  6675. /// <summary>
  6676. /// 团组成本信息保存
  6677. /// </summary>
  6678. /// <param name="dto"></param>
  6679. /// <returns></returns>
  6680. [HttpPost]
  6681. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6682. {
  6683. if (dto.Diid <= 0 || dto.Userid <= 0)
  6684. {
  6685. return Ok(JsonView(false));
  6686. }
  6687. JsonView jw = null;
  6688. bool isTrue = false;
  6689. #region 复制团组成本
  6690. //if (dto.Diid == 2581)
  6691. //{
  6692. // dto.Diid = 2599;
  6693. // dto.CheckBoxs.ForEach(x =>
  6694. // {
  6695. // x.Diid = 2599;
  6696. // });
  6697. // dto.GroupCosts.ForEach(x =>
  6698. // {
  6699. // x.Diid = 2599;
  6700. // });
  6701. // dto.CostTypeHotelNumbers.ForEach(x =>
  6702. // {
  6703. // x.Diid = 2599;
  6704. // });
  6705. // dto.GroupCostParameters.ForEach(x =>
  6706. // {
  6707. // x.DiId = 2599;
  6708. // });
  6709. //}
  6710. #endregion
  6711. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6712. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6713. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6714. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6715. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6716. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6717. try
  6718. {
  6719. _sqlSugar.BeginTran();
  6720. isTrue = await _GroupCostRepository.
  6721. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6722. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6723. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6724. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6725. _sqlSugar.CommitTran();
  6726. jw = JsonView(true, "保存成功!", isTrue);
  6727. }
  6728. catch (Exception)
  6729. {
  6730. _sqlSugar.RollbackTran();
  6731. jw = JsonView(false);
  6732. }
  6733. return Ok(jw);
  6734. }
  6735. /// <summary>
  6736. /// 司兼导数据
  6737. /// </summary>
  6738. /// <param name="dto"></param>
  6739. /// <returns></returns>
  6740. [HttpPost]
  6741. public IActionResult GetCarGuides(CarGuidesDto dto)
  6742. {
  6743. JsonView jw = null;
  6744. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6745. jw = JsonView(true, "获取成功!", Data);
  6746. return Ok(jw);
  6747. }
  6748. /// <summary>
  6749. /// 导游数据
  6750. /// </summary>
  6751. /// <param name="dto"></param>
  6752. /// <returns></returns>
  6753. [HttpPost]
  6754. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6755. {
  6756. JsonView jw = null;
  6757. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6758. // 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
  6759. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6760. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6761. jw = JsonView(true, "获取成功!", Data);
  6762. return Ok(jw);
  6763. }
  6764. /// <summary>
  6765. /// 成本车数据
  6766. /// </summary>
  6767. /// <param name="dto"></param>
  6768. /// <returns></returns>
  6769. [HttpPost]
  6770. public IActionResult GetCarInfo(CarGuidesDto dto)
  6771. {
  6772. JsonView jw = null;
  6773. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6774. jw = JsonView(true, "获取成功!", Data);
  6775. return Ok(jw);
  6776. }
  6777. /// <summary>
  6778. /// 景点数据
  6779. /// </summary>
  6780. /// <param name="dto"></param>
  6781. /// <returns></returns>
  6782. [HttpPost]
  6783. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6784. {
  6785. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6786. return Ok(JsonView(true, "获取成功!", Data));
  6787. }
  6788. /// <summary>
  6789. /// 成本通知
  6790. /// </summary>
  6791. /// <param name="dto"></param>
  6792. /// <returns></returns>
  6793. [HttpPost]
  6794. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6795. {
  6796. if (dto.Diid < 0)
  6797. {
  6798. return Ok(JsonView(false));
  6799. }
  6800. JsonView jw = null;
  6801. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6802. if (GroupCostParameter != null)
  6803. {
  6804. int IsShare = 0;
  6805. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6806. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6807. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6808. string msg = string.Empty;
  6809. if (isTrue)
  6810. {
  6811. if (IsShare == 0)
  6812. {
  6813. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6814. }
  6815. else
  6816. {
  6817. #region 企微通知对应岗位用户
  6818. try
  6819. {
  6820. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6821. }
  6822. catch (Exception ex)
  6823. {
  6824. }
  6825. #endregion
  6826. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6827. }
  6828. jw = JsonView(isTrue, msg, new { IsShare });
  6829. }
  6830. else
  6831. {
  6832. msg = "修改失败!";
  6833. jw = JsonView(isTrue, msg);
  6834. }
  6835. }
  6836. else
  6837. {
  6838. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6839. }
  6840. return Ok(jw);
  6841. }
  6842. /// <summary>
  6843. /// 导出报价单
  6844. /// </summary>
  6845. /// <param name="dto"></param>
  6846. /// <returns></returns>
  6847. [HttpPost]
  6848. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6849. {
  6850. if (dto.Diid == 0)
  6851. {
  6852. return Ok(JsonView(false, "请传递团组id"));
  6853. }
  6854. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6855. if (deleInfo.Code != 0)
  6856. {
  6857. return Ok(JsonView(false, "团组信息查询失败!"));
  6858. }
  6859. var di = deleInfo.Data as DelegationInfoWebView;
  6860. if (di != null)
  6861. {
  6862. di.TeamName = di.TeamName.Replace("|","、");
  6863. di.VisitCountry = di.VisitCountry.Replace("|", "、");
  6864. //文件名
  6865. string strFileName = di.TeamName + "-收款账单.doc";
  6866. //获取模板
  6867. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6868. //载入模板
  6869. Document doc = new Document(tmppath);
  6870. decimal TotalPrice = 0.00M;
  6871. string itemStr = string.Empty;
  6872. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6873. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6874. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6875. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6876. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6877. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6878. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6879. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6880. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6881. foreach (var cost in groupCostType)
  6882. {
  6883. var List = cost.ToList();
  6884. if (cost.Key == "A")
  6885. {
  6886. foreach (var ListItem in List)
  6887. {
  6888. if (ListItem.number > 0)
  6889. {
  6890. if (ListItem.code.Contains("TBR"))
  6891. {
  6892. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6893. }
  6894. else
  6895. {
  6896. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6897. }
  6898. TotalPrice += (ListItem.number * ListItem.price);
  6899. }
  6900. }
  6901. }
  6902. else
  6903. {
  6904. itemStr = itemStr.Insert(0, "A段\r\n");
  6905. itemStr += "B段\r\n";
  6906. foreach (var ListItem in List)
  6907. {
  6908. if (ListItem.number > 0)
  6909. {
  6910. if (ListItem.code.Contains("TBR"))
  6911. {
  6912. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6913. }
  6914. else
  6915. {
  6916. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6917. }
  6918. TotalPrice += (ListItem.number * ListItem.price);
  6919. }
  6920. }
  6921. }
  6922. }
  6923. #region 替换Word模板书签内容
  6924. Dictionary<string, string> marks = new Dictionary<string, string>();
  6925. marks.Add("To", di.ClientUnit);//付款方
  6926. marks.Add("ToTel", di.TellPhone);//付款方电话
  6927. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6928. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6929. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6930. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6931. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6932. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6933. marks.Add("PayItemContent", itemStr);//详细信息
  6934. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6935. #endregion
  6936. ////注
  6937. //if (doc.Range.Bookmarks["Attention"] != null)
  6938. //{
  6939. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6940. // mark.Text = frList[0].Attention;
  6941. //}
  6942. foreach (var item in marks.Keys)
  6943. {
  6944. if (doc.Range.Bookmarks[item] != null)
  6945. {
  6946. Bookmark mark = doc.Range.Bookmarks[item];
  6947. mark.Text = marks[item];
  6948. }
  6949. }
  6950. byte[] bytes = null;
  6951. using (MemoryStream stream = new MemoryStream())
  6952. {
  6953. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6954. bytes = stream.ToArray();
  6955. }
  6956. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6957. return Ok(JsonView(true, "", new
  6958. {
  6959. Data = bytes,
  6960. strFileName,
  6961. }));
  6962. }
  6963. else
  6964. {
  6965. return Ok(JsonView(false, "团组信息不存在!"));
  6966. }
  6967. }
  6968. /// <summary>
  6969. /// 导出团组成本
  6970. /// </summary>
  6971. /// <param name="dto"></param>
  6972. /// <returns></returns>
  6973. [HttpPost]
  6974. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6975. {
  6976. var jw = JsonView(false);
  6977. if (dto.Diid == 0)
  6978. {
  6979. return Ok(JsonView(false, "请传递团组id"));
  6980. }
  6981. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6982. if (deleInfo.Code != 0)
  6983. {
  6984. return Ok(JsonView(false, "团组信息查询失败!"));
  6985. }
  6986. var di = deleInfo.Data as DelegationInfoWebView;
  6987. if (di == null)
  6988. {
  6989. return Ok(JsonView(false, "团组信息查询失败!"));
  6990. }
  6991. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6992. WorkbookDesigner designer = new WorkbookDesigner();
  6993. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6994. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6995. for (int i = 0; i < List_GC.Count; i++)
  6996. {
  6997. GroupCost_Excel gc = new GroupCost_Excel();
  6998. gc.Id = List_GC[i].Id;
  6999. gc.Diid = List_GC[i].Diid.ToString();
  7000. gc.DAY = List_GC[i].DAY;
  7001. string week = "";
  7002. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  7003. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  7004. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  7005. gc.ITIN = List_GC[i].ITIN;
  7006. gc.CarType = List_GC[i].CarType;
  7007. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  7008. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  7009. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  7010. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  7011. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  7012. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  7013. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  7014. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  7015. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  7016. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  7017. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  7018. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  7019. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7020. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7021. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  7022. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  7023. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  7024. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  7025. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  7026. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  7027. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  7028. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  7029. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  7030. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  7031. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  7032. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  7033. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  7034. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  7035. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  7036. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  7037. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  7038. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  7039. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  7040. List_GC1.Add(gc);
  7041. }
  7042. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  7043. dt.TableName = "TB";
  7044. //报表标题等不用dt的值
  7045. designer.SetDataSource("TeamName", dto.title.TeamName);
  7046. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  7047. designer.SetDataSource("Tax", dto.title.Tax);
  7048. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  7049. designer.SetDataSource("Currency", dto.title.Currency);
  7050. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  7051. designer.SetDataSource("Rate", dto.title.Rate);
  7052. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  7053. var Aparams = hotels.Find(x => x.Type == "Default");
  7054. if (Aparams == null)
  7055. {
  7056. return Ok(jw);
  7057. }
  7058. //酒店数量
  7059. var txtSGRNumber = Aparams.SGR.ToString();
  7060. var txtTBRNumber = Aparams.TBR.ToString();
  7061. var txtJSESNumber = Aparams.JSES.ToString();
  7062. var txtSUITENumbe = Aparams.SUITE.ToString();
  7063. if (dto.costType == "B")
  7064. {
  7065. Aparams = hotels.Find(x => x.Type == "A");
  7066. var Bparams = hotels.Find(x => x.Type == "B");
  7067. if (Aparams == null || Bparams == null)
  7068. {
  7069. return Ok(jw);
  7070. }
  7071. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  7072. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  7073. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  7074. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  7075. }
  7076. designer.SetDataSource("SGRNumber", txtSGRNumber);
  7077. designer.SetDataSource("TBRNumber", txtTBRNumber);
  7078. designer.SetDataSource("JSESNumber", txtJSESNumber);
  7079. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  7080. var ws = designer.Workbook.Worksheets[0];
  7081. int Row = List_GC.Count;
  7082. int startIndex = 11;
  7083. int HideRows = 0;
  7084. List<int> hideRowsList = new List<int>();
  7085. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  7086. #region A段left数据
  7087. var left = dto.leftInfo.Find(x => x.Type == "A");
  7088. if (left == null)
  7089. {
  7090. return Ok(jw);
  7091. }
  7092. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  7093. if (leftBindData != null)
  7094. {
  7095. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  7096. designer.SetDataSource("VisaRS", leftBindData.rs);
  7097. designer.SetDataSource("VisaXS", leftBindData.xs);
  7098. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7099. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7100. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7101. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7102. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7103. }
  7104. else
  7105. {
  7106. hideRowsList.Add(Row + startIndex + HideRows);
  7107. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7108. }
  7109. HideRows += 2;
  7110. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  7111. if (leftBindData != null)
  7112. {
  7113. designer.SetDataSource("BXDRCB", leftBindData.cb);
  7114. designer.SetDataSource("BXRS", leftBindData.rs);
  7115. designer.SetDataSource("BXXS", leftBindData.xs);
  7116. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7117. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7118. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7119. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7120. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7121. }
  7122. else
  7123. {
  7124. hideRowsList.Add(Row + startIndex + HideRows);
  7125. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7126. }
  7127. HideRows += 2;
  7128. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7129. if (leftBindData != null)
  7130. {
  7131. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7132. designer.SetDataSource("HSRS", leftBindData.rs);
  7133. designer.SetDataSource("HSXS", leftBindData.xs);
  7134. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7135. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7136. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7137. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7138. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7139. }
  7140. else
  7141. {
  7142. hideRowsList.Add(Row + startIndex + HideRows);
  7143. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7144. }
  7145. HideRows += 2;
  7146. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7147. if (leftBindData != null)
  7148. {
  7149. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7150. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7151. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7152. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7153. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7154. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7155. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7156. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7157. }
  7158. else
  7159. {
  7160. hideRowsList.Add(Row + startIndex + HideRows);
  7161. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7162. }
  7163. HideRows += 2;
  7164. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7165. if (leftBindData != null)
  7166. {
  7167. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7168. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7169. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7170. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7171. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7172. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7173. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7174. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7175. }
  7176. else
  7177. {
  7178. hideRowsList.Add(Row + startIndex + HideRows);
  7179. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7180. }
  7181. HideRows += 2;
  7182. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7183. if (leftBindData != null)
  7184. {
  7185. ////TBR
  7186. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7187. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7188. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7189. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7190. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7191. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7192. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7193. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7194. }
  7195. else
  7196. {
  7197. hideRowsList.Add(Row + startIndex + HideRows);
  7198. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7199. }
  7200. HideRows += 2;
  7201. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7202. if (leftBindData != null)
  7203. {
  7204. ////SGR
  7205. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7206. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7207. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7208. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7209. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7210. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7211. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7212. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7213. }
  7214. else
  7215. {
  7216. hideRowsList.Add(Row + startIndex + HideRows);
  7217. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7218. }
  7219. HideRows += 2;
  7220. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7221. if (leftBindData != null)
  7222. {
  7223. ////JS/ES
  7224. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7225. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7226. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7227. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7228. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7229. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7230. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7231. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7232. }
  7233. else
  7234. {
  7235. hideRowsList.Add(Row + startIndex + HideRows);
  7236. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7237. }
  7238. HideRows += 2;
  7239. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7240. if (leftBindData != null)
  7241. {
  7242. ////SUITE
  7243. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7244. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7245. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7246. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7247. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7248. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7249. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7250. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7251. }
  7252. else
  7253. {
  7254. hideRowsList.Add(Row + startIndex + HideRows);
  7255. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7256. }
  7257. HideRows += 2;
  7258. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7259. if (leftBindData != null)
  7260. {
  7261. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7262. designer.SetDataSource("DJRS", leftBindData.rs);
  7263. designer.SetDataSource("DJXS", leftBindData.xs);
  7264. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7265. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7266. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7267. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7268. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7269. }
  7270. else
  7271. {
  7272. hideRowsList.Add(Row + startIndex + HideRows);
  7273. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7274. }
  7275. HideRows += 2;
  7276. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7277. if (leftBindData != null)
  7278. {
  7279. designer.SetDataSource("HCPCB", leftBindData.cb);
  7280. designer.SetDataSource("HCPRS", leftBindData.rs);
  7281. designer.SetDataSource("HCPXS", leftBindData.xs);
  7282. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7283. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7284. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7285. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7286. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7287. }
  7288. else
  7289. {
  7290. hideRowsList.Add(Row + startIndex + HideRows);
  7291. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7292. }
  7293. HideRows += 2;
  7294. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7295. if (leftBindData != null)
  7296. {
  7297. designer.SetDataSource("CPCB", leftBindData.cb);
  7298. designer.SetDataSource("CPRS", leftBindData.rs);
  7299. designer.SetDataSource("CPXS", leftBindData.xs);
  7300. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7301. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7302. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7303. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7304. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7305. }
  7306. else
  7307. {
  7308. hideRowsList.Add(Row + startIndex + HideRows);
  7309. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7310. }
  7311. HideRows += 2;
  7312. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7313. if (leftBindData != null)
  7314. {
  7315. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7316. designer.SetDataSource("GWRS", leftBindData.rs);
  7317. designer.SetDataSource("GWXS", leftBindData.xs);
  7318. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7319. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7320. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7321. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7322. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7323. }
  7324. else
  7325. {
  7326. hideRowsList.Add(Row + startIndex + HideRows);
  7327. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7328. }
  7329. HideRows += 2;
  7330. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7331. if (leftBindData != null)
  7332. {
  7333. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7334. designer.SetDataSource("LYJRS", leftBindData.rs);
  7335. designer.SetDataSource("LYJXS", leftBindData.xs);
  7336. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7337. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7338. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7339. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7340. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7341. }
  7342. else
  7343. {
  7344. hideRowsList.Add(Row + startIndex + HideRows);
  7345. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7346. }
  7347. #endregion
  7348. #region A段Right信息
  7349. var right = dto.rightInfo.Find(x => x.Type == "A");
  7350. if (right == null)
  7351. {
  7352. return Ok(jw);
  7353. }
  7354. HideRows += 4;
  7355. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7356. if (rightBindData != null)
  7357. {
  7358. //经济舱 + 双人间 TBR
  7359. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7360. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7361. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7362. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7363. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7364. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7365. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7366. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7367. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7368. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7369. }
  7370. else
  7371. {
  7372. hideRowsList.Add(Row + startIndex + HideRows);
  7373. }
  7374. HideRows += 2;
  7375. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7376. if (rightBindData != null)
  7377. {
  7378. //经济舱 + 单人间 SGR
  7379. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7380. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7381. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7382. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7383. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7384. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7385. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7386. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7387. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7388. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7389. }
  7390. else
  7391. {
  7392. hideRowsList.Add(Row + startIndex + HideRows);
  7393. }
  7394. HideRows += 2;
  7395. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7396. if (rightBindData != null)
  7397. {
  7398. //公务舱 + 单人间 SGR
  7399. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7400. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7401. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7402. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7403. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7404. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7405. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7406. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7407. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7408. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7409. }
  7410. else
  7411. {
  7412. hideRowsList.Add(Row + startIndex + HideRows);
  7413. }
  7414. HideRows += 2;
  7415. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7416. if (rightBindData != null)
  7417. {
  7418. //公务舱 + 小套房 JSES
  7419. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7420. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7421. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7422. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7423. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7424. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7425. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7426. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7427. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7428. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7429. }
  7430. else
  7431. {
  7432. hideRowsList.Add(Row + startIndex + HideRows);
  7433. }
  7434. HideRows += 2;
  7435. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7436. if (rightBindData != null)
  7437. {
  7438. //公务舱 + 小套房 JSES
  7439. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7440. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7441. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7442. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7443. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7444. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7445. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7446. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7447. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7448. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7449. }
  7450. else
  7451. {
  7452. hideRowsList.Add(Row + startIndex + HideRows);
  7453. }
  7454. HideRows += 2;
  7455. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7456. if (rightBindData != null)
  7457. {
  7458. //经济舱 + 大套房
  7459. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7460. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7461. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7462. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7463. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7464. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7465. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7466. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7467. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7468. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7469. }
  7470. else
  7471. {
  7472. hideRowsList.Add(Row + startIndex + HideRows);
  7473. }
  7474. #endregion
  7475. #region B段标题清空
  7476. designer.SetDataSource("CostBDRCB", "");
  7477. designer.SetDataSource("CostBRS", "");
  7478. designer.SetDataSource("CostBXS", "");
  7479. designer.SetDataSource("CostBZCB", "");
  7480. designer.SetDataSource("CostBDRBJ", "");
  7481. designer.SetDataSource("CostBZBJ", "");
  7482. designer.SetDataSource("CostBDRLR", "");
  7483. designer.SetDataSource("CostBZLR", "");
  7484. designer.SetDataSource("CostBDRCBOM", "");
  7485. designer.SetDataSource("CostBRSOM", "");
  7486. designer.SetDataSource("CostBZCBOM", "");
  7487. designer.SetDataSource("CostBDRBJOM", "");
  7488. designer.SetDataSource("CostBZBJOM", "");
  7489. designer.SetDataSource("CostBDRLROM", "");
  7490. designer.SetDataSource("CostBZLROM", "");
  7491. #endregion
  7492. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7493. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7494. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7495. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7496. designer.SetDataSource("DJName", "地接(CNY)");
  7497. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7498. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7499. designer.SetDataSource("GWName", "公务(CNY)");
  7500. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7501. designer.SetDataSource("LYJName", "零用金(CNY)");
  7502. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7503. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7504. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7505. designer.SetDataSource("BXName", "保险(CNY)");
  7506. designer.SetDataSource("VisaName", "签证(CNY)");
  7507. #region B段基本数据
  7508. if (dto.costType == "B")
  7509. {
  7510. left = dto.leftInfo.Find(x => x.Type == "B");
  7511. if (left == null)
  7512. {
  7513. return Ok(jw);
  7514. }
  7515. #region B段left数据
  7516. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7517. if (leftBindData != null)
  7518. {
  7519. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7520. designer.SetDataSource("BHSRS", leftBindData.rs);
  7521. designer.SetDataSource("BHSXS", leftBindData.xs);
  7522. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7523. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7524. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7525. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7526. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7527. }
  7528. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7529. if (leftBindData != null)
  7530. {
  7531. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7532. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7533. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7534. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7535. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7536. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7537. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7538. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7539. }
  7540. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7541. if (leftBindData != null)
  7542. {
  7543. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7544. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7545. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7546. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7547. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7548. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7549. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7550. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7551. }
  7552. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7553. if (leftBindData != null)
  7554. {
  7555. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7556. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7557. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7558. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7559. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7560. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7561. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7562. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7563. }
  7564. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7565. if (leftBindData != null)
  7566. {
  7567. designer.SetDataSource("BCPCB", leftBindData.cb);
  7568. designer.SetDataSource("BCPRS", leftBindData.rs);
  7569. designer.SetDataSource("BCPXS", leftBindData.xs);
  7570. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7571. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7572. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7573. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7574. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7575. }
  7576. //TBR
  7577. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7578. if (leftBindData != null)
  7579. {
  7580. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7581. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7582. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7583. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7584. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7585. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7586. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7587. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7588. }
  7589. //SGR
  7590. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7591. if (leftBindData != null)
  7592. {
  7593. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7594. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7595. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7596. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7597. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7598. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7599. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7600. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7601. }
  7602. //JS/ES
  7603. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7604. if (leftBindData != null)
  7605. {
  7606. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7607. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7608. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7609. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7610. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7611. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7612. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7613. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7614. }
  7615. //SUITE
  7616. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7617. if (leftBindData != null)
  7618. {
  7619. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7620. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7621. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7622. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7623. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7624. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7625. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7626. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7627. }
  7628. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7629. if (leftBindData != null)
  7630. {
  7631. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7632. designer.SetDataSource("BDJRS", leftBindData.rs);
  7633. designer.SetDataSource("BDJXS", leftBindData.xs);
  7634. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7635. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7636. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7637. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7638. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7639. }
  7640. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7641. if (leftBindData != null)
  7642. {
  7643. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7644. designer.SetDataSource("BGWRS", leftBindData.rs);
  7645. designer.SetDataSource("BGWXS", leftBindData.xs);
  7646. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7647. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7648. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7649. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7650. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7651. }
  7652. #region 优化方案
  7653. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7654. //excelBind.Add("零用金", new {
  7655. //cb="",
  7656. //rs="",
  7657. //xs ="",
  7658. //zcb = "",
  7659. //});
  7660. #endregion
  7661. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7662. if (leftBindData != null)
  7663. {
  7664. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7665. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7666. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7667. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7668. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7669. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7670. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7671. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7672. }
  7673. #endregion
  7674. #region B段Right信息
  7675. right = dto.rightInfo.Find(x => x.Type == "B");
  7676. if (right == null)
  7677. {
  7678. return Ok(jw);
  7679. }
  7680. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7681. if (rightBindData != null)
  7682. {
  7683. //经济舱 + 双人间 TBR
  7684. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7685. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7686. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7687. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7688. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7689. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7690. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7691. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7692. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7693. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7694. }
  7695. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7696. if (rightBindData != null)
  7697. {
  7698. //经济舱 + 单人间 SGR
  7699. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7700. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7701. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7702. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7703. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7704. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7705. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7706. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7707. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7708. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7709. }
  7710. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7711. if (rightBindData != null)
  7712. {
  7713. //公务舱 + 单人间 SGR
  7714. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7715. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7716. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7717. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7718. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7719. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7720. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7721. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7722. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7723. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7724. }
  7725. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7726. if (rightBindData != null)
  7727. {
  7728. //公务舱 + 小套房 JSES
  7729. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7730. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7731. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7732. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7733. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7734. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7735. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7736. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7737. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7738. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7739. }
  7740. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7741. if (rightBindData != null)
  7742. {
  7743. //公务舱 + 小套房 JSES
  7744. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7745. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7746. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7747. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7748. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7749. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7750. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7751. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7752. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7753. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7754. }
  7755. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7756. if (rightBindData != null)
  7757. {
  7758. //经济舱 + 大套房
  7759. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7760. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7761. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7762. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7763. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7764. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7765. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7766. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7767. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7768. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7769. }
  7770. #endregion
  7771. #region 标题
  7772. designer.SetDataSource("CostBDRCB", "单人成本");
  7773. designer.SetDataSource("CostBRS", "人数");
  7774. designer.SetDataSource("CostBXS", "系数");
  7775. designer.SetDataSource("CostBZCB", "总成本");
  7776. designer.SetDataSource("CostBDRBJ", "单人报价");
  7777. designer.SetDataSource("CostBZBJ", "总报价");
  7778. designer.SetDataSource("CostBDRLR", "单人利润");
  7779. designer.SetDataSource("CostBZLR", "总利润");
  7780. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7781. designer.SetDataSource("CostBRSOM", "人数");
  7782. designer.SetDataSource("CostBZCBOM", "总成本");
  7783. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7784. designer.SetDataSource("CostBZBJOM", "总报价");
  7785. designer.SetDataSource("CostBDRLROM", "单人利润");
  7786. designer.SetDataSource("CostBZLROM", "总利润");
  7787. #endregion
  7788. }
  7789. #endregion
  7790. designer.SetDataSource("TzZCB2", TzZCB2);
  7791. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7792. designer.SetDataSource("TzZLR2", TzZLR2);
  7793. string[] dataSourceKeys = new string[]
  7794. {
  7795. "VF",
  7796. "TGS",
  7797. "TGOF",
  7798. "TGM",
  7799. "TGA",
  7800. "TGTF",
  7801. "TGEF",
  7802. "CFM",
  7803. "CFOF",
  7804. "B",
  7805. "L",
  7806. "D",
  7807. "TBR",
  7808. "SGR",
  7809. "JSES",
  7810. "Suite",
  7811. "TV",
  7812. "1L",
  7813. "IF",
  7814. "EF",
  7815. "BRF",
  7816. "TE",
  7817. "TGT",
  7818. "DRVT",
  7819. "PC",
  7820. "TLF",
  7821. "ECT"
  7822. };
  7823. foreach (var item in dataSourceKeys)
  7824. {
  7825. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7826. if (find != null)
  7827. {
  7828. designer.SetDataSource(item, find.text);
  7829. }
  7830. else
  7831. {
  7832. designer.SetDataSource(item, 0);
  7833. }
  7834. }
  7835. designer.SetDataSource(dt);
  7836. //根据数据源处理生成报表内容
  7837. designer.Process();
  7838. designer.Workbook.Worksheets[0].Name = "清单";
  7839. Worksheet sheet = designer.Workbook.Worksheets[0];
  7840. foreach (var Rowindex in hideRowsList)
  7841. {
  7842. ws.Cells.HideRows(Rowindex, 2);
  7843. }
  7844. byte[] bytes = null;
  7845. string strFileName = di.TeamName + "-团组-成本.xls";
  7846. using (MemoryStream stream = new MemoryStream())
  7847. {
  7848. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7849. bytes = stream.ToArray();
  7850. }
  7851. return Ok(JsonView(true, "", new
  7852. {
  7853. Data = bytes,
  7854. strFileName,
  7855. }));
  7856. }
  7857. /// <summary>
  7858. /// 导出客户报表
  7859. /// </summary>
  7860. /// <returns></returns>
  7861. [HttpPost]
  7862. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7863. {
  7864. var jw = JsonView(false);
  7865. if (dto.Diid == 0)
  7866. {
  7867. return Ok(JsonView(false, "请传递团组id"));
  7868. }
  7869. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7870. if (deleInfo.Code != 0)
  7871. {
  7872. return Ok(JsonView(false, "团组信息查询失败!"));
  7873. }
  7874. var di = deleInfo.Data as DelegationInfoWebView;
  7875. if (di == null)
  7876. {
  7877. return Ok(JsonView(false, "团组信息查询失败!"));
  7878. }
  7879. //文件名
  7880. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7881. //获取模板
  7882. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7883. //载入模板
  7884. Document doc = new Document(tmppath);
  7885. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7886. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7887. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7888. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7889. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7890. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7891. if (AParameter == null)
  7892. {
  7893. return Ok(JsonView(false, "系数不存在!"));
  7894. }
  7895. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7896. , TzAirDesc, TzZCost;
  7897. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7898. = TzAirDesc = TzZCost = string.Empty;
  7899. TzNumber = AParameter.CostTypenumber.ToString();
  7900. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7901. CarGuides1 = dto.CarGuides1;
  7902. Meal = dto.Meal;
  7903. SubsidizedMeals = dto.SubsidizedMeals;
  7904. NightRepair = dto.NightRepair;
  7905. AttractionsTickets = dto.AttractionsTickets;
  7906. MiscellaneousFees = dto.MiscellaneousFees;
  7907. ATip = dto.ATip;
  7908. TzHotelDesc = "";
  7909. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7910. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7911. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7912. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7913. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7914. TzAirDesc = "";
  7915. TzZCost = dto.TzZCost;
  7916. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7917. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7918. var index = 1;
  7919. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7920. foreach (var item in TzHotelDescArr)
  7921. {
  7922. if (AinfoArr != null)
  7923. {
  7924. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7925. if (Ainfo != null)
  7926. {
  7927. if (int.Parse(Ainfo.rs) <= 0)
  7928. {
  7929. continue;
  7930. }
  7931. var hotelText = string.Empty;
  7932. switch (item)
  7933. {
  7934. case "SGR":
  7935. hotelText = "单人间";
  7936. break;
  7937. case "JSES":
  7938. hotelText = "小套房";
  7939. break;
  7940. case "SUITE":
  7941. hotelText = "套房";
  7942. break;
  7943. case "TBR":
  7944. hotelText = "双人间";
  7945. break;
  7946. }
  7947. if (item != "TBR")
  7948. {
  7949. 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";
  7950. }
  7951. else
  7952. {
  7953. 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";
  7954. }
  7955. index++;
  7956. }
  7957. }
  7958. }
  7959. index = 1;
  7960. foreach (var item in TzAirDescArr)
  7961. {
  7962. if (AinfoArr != null)
  7963. {
  7964. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7965. if (Ainfo != null)
  7966. {
  7967. if (int.Parse(Ainfo.rs) <= 0)
  7968. {
  7969. continue;
  7970. }
  7971. 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";
  7972. index++;
  7973. }
  7974. }
  7975. }
  7976. if (dto.costType == "B")
  7977. {
  7978. if (BParameter == null)
  7979. {
  7980. return Ok(JsonView(false, "B段系数不存在!"));
  7981. }
  7982. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7983. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7984. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7985. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7986. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7987. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7988. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7989. foreach (var item in TzHotelDescArr)
  7990. {
  7991. if (AinfoArr != null)
  7992. {
  7993. TzHotelDesc += "B段信息 \r\n";
  7994. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7995. if (Ainfo != null)
  7996. {
  7997. if (int.Parse(Ainfo.rs) <= 0)
  7998. {
  7999. continue;
  8000. }
  8001. var hotelText = string.Empty;
  8002. switch (item)
  8003. {
  8004. case "SGR":
  8005. hotelText = "单人间";
  8006. break;
  8007. case "JSES":
  8008. hotelText = "小套房";
  8009. break;
  8010. case "SUITE":
  8011. hotelText = "套房";
  8012. break;
  8013. case "TBR":
  8014. hotelText = "双人间";
  8015. break;
  8016. }
  8017. if (item != "TBR")
  8018. {
  8019. 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";
  8020. }
  8021. else
  8022. {
  8023. 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";
  8024. }
  8025. index++;
  8026. }
  8027. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  8028. }
  8029. }
  8030. index = 1;
  8031. foreach (var item in TzAirDescArr)
  8032. {
  8033. if (AinfoArr != null)
  8034. {
  8035. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8036. if (Ainfo != null)
  8037. {
  8038. if (int.Parse(Ainfo.rs) <= 0)
  8039. {
  8040. continue;
  8041. }
  8042. 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";
  8043. index++;
  8044. }
  8045. }
  8046. }
  8047. }
  8048. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  8049. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  8050. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  8051. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  8052. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  8053. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  8054. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  8055. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  8056. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  8057. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  8058. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  8059. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  8060. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  8061. DickeyValue.Add("Visa", Visa); // 签证单人报价
  8062. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  8063. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  8064. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  8065. DickeyValue.Add("TzZCost", TzZCost);
  8066. foreach (var key in DickeyValue.Keys)
  8067. {
  8068. if (doc.Range.Bookmarks[key] != null)
  8069. {
  8070. Bookmark mark = doc.Range.Bookmarks[key];
  8071. mark.Text = DickeyValue[key];
  8072. }
  8073. }
  8074. byte[] bytes = null;
  8075. string strFileName = di.TeamName + "-客户报价.doc";
  8076. using (MemoryStream stream = new MemoryStream())
  8077. {
  8078. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  8079. bytes = stream.ToArray();
  8080. }
  8081. return Ok(JsonView(true, "", new
  8082. {
  8083. Data = bytes,
  8084. strFileName,
  8085. }));
  8086. }
  8087. /// <summary>
  8088. /// 团组成本 各模块(酒店,地接,机票)成本提示
  8089. /// </summary>
  8090. /// <param name="dto"></param>
  8091. /// <returns></returns>
  8092. [HttpPost]
  8093. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8094. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  8095. {
  8096. try
  8097. {
  8098. #region 参数验证
  8099. if (dto.DiId < 0)
  8100. {
  8101. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  8102. }
  8103. List<int> cTableIds = new List<int>() {
  8104. 76 ,//酒店预订
  8105. 77 ,//行程
  8106. 79 ,//车/导游地接
  8107. 80 ,//签证
  8108. 81 ,//邀请/公务活
  8109. 82 ,//团组客户保险
  8110. 85 ,//机票预订
  8111. 98 ,//其他款项
  8112. 285 ,//收款退还
  8113. 751 ,//酒店早餐
  8114. 1015 // 超支费用
  8115. };
  8116. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  8117. {
  8118. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  8119. }
  8120. #endregion
  8121. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  8122. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  8123. if (_GroupCostParameters.Count <= 0)
  8124. {
  8125. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  8126. }
  8127. if (_GroupCostParameters[0].IsShare == 0)
  8128. {
  8129. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  8130. }
  8131. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8132. //处理date为空问题
  8133. if (_GroupCosts.Count > 0)
  8134. {
  8135. for (int i = 0; i < _GroupCosts.Count; i++)
  8136. {
  8137. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8138. {
  8139. if (i > 0)
  8140. {
  8141. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8142. }
  8143. }
  8144. }
  8145. }
  8146. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8147. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8148. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8149. string currCode = "";
  8150. #region currCode 验证
  8151. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8152. if (isInt)
  8153. {
  8154. var currData = currDatas.Find(it => it.Id == intCurrency);
  8155. if (currData != null)
  8156. {
  8157. currCode = currData.Name;
  8158. }
  8159. }
  8160. else
  8161. {
  8162. currCode = _GroupCostParameters[0].Currency.Trim();
  8163. }
  8164. #endregion
  8165. //op,酒店单段模式存储
  8166. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8167. {
  8168. CurrencyCode = currCode,
  8169. Rate = _GroupCostParameters[0].Rate,
  8170. CostType = _GroupCostParameters[0].CostType,
  8171. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8172. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8173. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8174. };
  8175. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8176. if (_GroupCostParameters.Count == 2)
  8177. {
  8178. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8179. }
  8180. foreach (var item in _GroupCostParameters)
  8181. {
  8182. decimal _rate = 1;
  8183. decimal _rate1 = item.Rate;
  8184. decimal _scale = 1;
  8185. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8186. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8187. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8188. //if (userInfo != null)
  8189. //{
  8190. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8191. // {
  8192. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8193. // {
  8194. // _scale = 1.00M;
  8195. // }
  8196. // }
  8197. //}
  8198. #endregion
  8199. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8200. {
  8201. CurrencyCode = currCode,
  8202. Rate = _rate1,
  8203. CostType = item.CostType,
  8204. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8205. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8206. CostTypeNumber = item.CostTypenumber
  8207. };
  8208. if (_GroupCostParameters.Count > 1)
  8209. {
  8210. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8211. }
  8212. else
  8213. {
  8214. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8215. }
  8216. if (dto.CTable == 79)//
  8217. {
  8218. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8219. modulePromptInfo.TotalCost = item.DJCB;
  8220. }
  8221. List<string> costTypes = new List<string>() { "A", "B" };
  8222. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8223. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8224. if (_GroupCostsDuplicates.Count() == 1)
  8225. {
  8226. _GroupCostsTypeData = _GroupCosts;
  8227. }
  8228. else
  8229. {
  8230. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8231. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8232. }
  8233. /*
  8234. * 76 酒店预订
  8235. * 77 行程
  8236. * 79 车/导游地接
  8237. * 80 签证
  8238. * 81 邀请/公务活动
  8239. * 82 团组客户保险
  8240. * 85 机票预订
  8241. * 98 其他款项
  8242. * 285 收款退还
  8243. * 751 酒店早餐
  8244. * 1015 超支费用
  8245. */
  8246. switch (dto.CTable)
  8247. {
  8248. case 76: // 酒店预订
  8249. _ModuleSubPromptInfo.AddRange(
  8250. _GroupCostsTypeData.Select(it => new
  8251. {
  8252. it.DAY,
  8253. it.Date,
  8254. it.ACCON,
  8255. it.ITIN,
  8256. it.SGR,
  8257. it.TBR,
  8258. it.JS_ES,
  8259. it.Suite
  8260. })
  8261. );
  8262. break;
  8263. case 79: // 车/导游地接
  8264. _ModuleSubPromptInfo.AddRange(
  8265. _GroupCostsTypeData.Select(it => new
  8266. {
  8267. Date = it.Date, //日期
  8268. CarFee = it.CarCost * _rate * _scale, //车费用
  8269. CarType = it.CarType, //车型
  8270. DriverFee = it.CFS * _rate * _scale, //司机工资
  8271. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8272. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8273. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8274. GuideFee = it.TGS * _rate * _scale, //导游费用
  8275. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8276. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8277. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8278. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8279. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8280. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8281. Breakfast = it.B * _rate * _scale, //早餐费
  8282. Lunch = it.L * _rate * _scale, //午餐费
  8283. Dinner = it.D * _rate * _scale, //晚餐费
  8284. OfficialActivitiesFee = it.TV * _rate * _scale,//会务活动费 --新加
  8285. OfficialTransFee = it.IF * _rate * _scale, //公务翻译费 --新加
  8286. InvitationFee = it.iL * _rate * _scale, //邀请函费用 --新加
  8287. TicketFee = it.EF * _rate * _scale, //门票费
  8288. TicketRemark = it.EFR, //门票费描述
  8289. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8290. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8291. SpentCash = it.PC * _rate * _scale, //零用金
  8292. LeadersFee = it.TLF * _rate * _scale, //领队费
  8293. ActivitiesFee = it.ECT * _rate * _scale, //会务费 --新加
  8294. })
  8295. );
  8296. break;
  8297. case 85: // 机票
  8298. List<dynamic> datas = new List<dynamic>();
  8299. datas.Add(
  8300. new
  8301. {
  8302. AirType = "经济舱",
  8303. AirNum = item.JJCRS,
  8304. AirDRCB = item.JJCCB,
  8305. AirZCB = (item.JJCRS * item.JJCCB)
  8306. }
  8307. );
  8308. datas.Add(
  8309. new
  8310. {
  8311. AirType = "公务舱",
  8312. AirNum = item.GWCRS,
  8313. AirDRCB = item.GWCCB,
  8314. AirZCB = (item.GWCRS * item.GWCCB)
  8315. }
  8316. );
  8317. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8318. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8319. modulePromptInfo.Data = new
  8320. {
  8321. airFeeData = datas,
  8322. airInitData = initDatas
  8323. };
  8324. _ModulePromptInfos.Add(modulePromptInfo);
  8325. break;
  8326. default:
  8327. break;
  8328. }
  8329. }
  8330. if (dto.CTable != 85)
  8331. {
  8332. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8333. _ModulePromptInfos.Add(_ModulePromptInfo);
  8334. }
  8335. _view.ModulePromptInfos = _ModulePromptInfos;
  8336. return Ok(JsonView(true, "操作成功!", _view));
  8337. }
  8338. catch (Exception ex)
  8339. {
  8340. return Ok(JsonView(false, ex.Message));
  8341. }
  8342. }
  8343. /// <summary>
  8344. /// 根据黑屏代码重新生成行程
  8345. /// </summary>
  8346. /// <param name="dto"></param>
  8347. /// <returns></returns>
  8348. [HttpPost]
  8349. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8350. {
  8351. var jw = JsonView(false);
  8352. var Create = _GroupCostRepository.
  8353. CreateGroupCostByBlackCode(dto.Diid);
  8354. jw.Msg = Create.Msg;
  8355. if (Create.Code == 0)
  8356. {
  8357. jw.Code = 200;
  8358. jw.Data = new
  8359. {
  8360. groupCost = Create.Data,
  8361. blackCodeIsTrue = true
  8362. };
  8363. }
  8364. else
  8365. {
  8366. jw.Code = 400;
  8367. jw.Data = new
  8368. {
  8369. groupCost = Create.Data,
  8370. blackCodeIsTrue = false,
  8371. };
  8372. }
  8373. return Ok(jw);
  8374. }
  8375. /// <summary>
  8376. /// 成本获取OP历史车费用
  8377. /// </summary>
  8378. /// <param name="dto"></param>
  8379. /// <returns></returns>
  8380. [HttpPost]
  8381. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8382. {
  8383. var jw = JsonView(false);
  8384. try
  8385. {
  8386. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8387. //获取现有所有车的数据
  8388. if (!dto.Param.IsNullOrWhiteSpace())
  8389. {
  8390. string sql = $@"
  8391. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8392. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8393. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8394. 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
  8395. AND gctggr.ServiceEndTime is not NULL
  8396. ORDER by gctggrc.id DESC
  8397. ";
  8398. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8399. var numeberResult = await Task.Run(() =>
  8400. {
  8401. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8402. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8403. return numberArr;
  8404. });
  8405. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8406. foreach (var item in numeberResult)
  8407. {
  8408. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8409. {
  8410. Country = "数据异常!",
  8411. City = string.Empty,
  8412. };
  8413. item.Area = find.Country + " " + find.City;
  8414. }
  8415. dbResult.AddRange(numeberResult);
  8416. if (dto.Param.Contains("、"))
  8417. {
  8418. var sp = dto.Param.Split("、");
  8419. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8420. .Where(x =>
  8421. {
  8422. return System.Array.Exists(sp, e =>
  8423. {
  8424. bool where = false;
  8425. if (x.Area != null)
  8426. {
  8427. where = x.Area.Contains(e);
  8428. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8429. {
  8430. return false;
  8431. }
  8432. }
  8433. if (x.PriceName != null && !where)
  8434. {
  8435. where = x.PriceName.Contains(e);
  8436. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8437. {
  8438. return false;
  8439. }
  8440. }
  8441. return where;
  8442. });
  8443. }).ToList();
  8444. }
  8445. else
  8446. {
  8447. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8448. .Where(x =>
  8449. {
  8450. bool where = false;
  8451. if (x.Area != null)
  8452. {
  8453. where = x.Area.Contains(dto.Param);
  8454. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8455. {
  8456. return false;
  8457. }
  8458. }
  8459. if (x.PriceName != null && !where)
  8460. {
  8461. where = x.PriceName.Contains(dto.Param);
  8462. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8463. {
  8464. return false;
  8465. }
  8466. }
  8467. return where;
  8468. }
  8469. )
  8470. .ToList();
  8471. }
  8472. }
  8473. var view = dbResult.Select(x =>
  8474. {
  8475. decimal dp = 0.00M;
  8476. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8477. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8478. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8479. {
  8480. if (startB && endB)
  8481. {
  8482. var timesp = endD.Subtract(startD);
  8483. if ((timesp.Days + 1) != 0)
  8484. {
  8485. dp = x.Price / (timesp.Days + 1);
  8486. }
  8487. }
  8488. }
  8489. else
  8490. {
  8491. dp = x.Price;
  8492. }
  8493. return new
  8494. {
  8495. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8496. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8497. x.Area,
  8498. x.id,
  8499. price = x.Price.ToString("F2"),
  8500. x.PriceName,
  8501. x.PriceContent,
  8502. x.TeamName,
  8503. x.DatePrice,
  8504. dayPrice = dp.ToString("F2"),
  8505. };
  8506. }).OrderByDescending(x => x.id).ToList();
  8507. jw = JsonView(true, "获取成功!", view);
  8508. }
  8509. catch (Exception e)
  8510. {
  8511. jw = JsonView(false, e.Message);
  8512. }
  8513. return Ok(jw);
  8514. }
  8515. #endregion
  8516. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8517. /// <summary>
  8518. /// 酒店预订
  8519. /// 酒店费用列表 根据团组Id查询
  8520. /// </summary>
  8521. /// <param name="_dto"></param>
  8522. /// <returns></returns>
  8523. [HttpPost]
  8524. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8525. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8526. {
  8527. #region 参数验证
  8528. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8529. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8530. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8531. #region 团组操作权限验证 76 酒店预定模块
  8532. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8533. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8534. #endregion
  8535. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8536. #region 页面操作权限验证
  8537. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8538. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8539. #endregion
  8540. #endregion
  8541. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8542. }
  8543. /// <summary>
  8544. /// 酒店预订
  8545. /// 基础数据
  8546. /// </summary>
  8547. /// <param name="_dto"></param>
  8548. /// <returns></returns>
  8549. [HttpPost]
  8550. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8551. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8552. {
  8553. #region 参数验证
  8554. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8555. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8556. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8557. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8558. #region 页面操作权限验证
  8559. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8560. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8561. #endregion
  8562. #region 团组操作权限验证 76 酒店预定模块
  8563. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8564. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8565. #endregion
  8566. #endregion
  8567. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8568. }
  8569. /// <summary>
  8570. /// 酒店预订
  8571. /// 创建 入住卷号码
  8572. /// </summary>
  8573. /// <param name="_dto"></param>
  8574. /// <returns></returns>
  8575. [HttpPost]
  8576. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8577. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8578. {
  8579. try
  8580. {
  8581. #region 参数验证
  8582. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8583. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8584. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8585. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8586. #region 页面操作权限验证
  8587. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8588. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8589. #endregion
  8590. #region 团组操作权限验证 76 酒店预定模块
  8591. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8592. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8593. #endregion
  8594. #endregion
  8595. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8596. if (data.Code != 0)
  8597. {
  8598. return Ok(JsonView(false, data.Msg));
  8599. }
  8600. return Ok(JsonView(true, data.Msg, data.Data));
  8601. }
  8602. catch (Exception ex)
  8603. {
  8604. return Ok(JsonView(false, ex.Message));
  8605. }
  8606. }
  8607. /// <summary>
  8608. /// 酒店预订
  8609. /// 详情
  8610. /// </summary>
  8611. /// <param name="_dto"></param>
  8612. /// <returns></returns>
  8613. [HttpPost]
  8614. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8615. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8616. {
  8617. #region 参数验证
  8618. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8619. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8620. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8621. #region 团组操作权限验证 76 酒店预定模块
  8622. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8623. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8624. #endregion
  8625. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8626. #region 页面操作权限验证
  8627. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8628. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8629. #endregion
  8630. #endregion
  8631. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8632. }
  8633. /// <summary>
  8634. /// 酒店预订
  8635. /// Add Or Edit
  8636. /// </summary>
  8637. /// <param name="_dto"></param>
  8638. /// <returns></returns>
  8639. [HttpPost]
  8640. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8641. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8642. {
  8643. #region 参数验证
  8644. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8645. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8646. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8647. #region 团组操作权限验证 76 酒店预定模块
  8648. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8649. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8650. #endregion
  8651. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8652. #region 页面操作权限验证
  8653. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8654. if (_dto.Id == 0) // Add
  8655. {
  8656. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8657. }
  8658. else if (_dto.Id > 1) // Edit
  8659. {
  8660. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8661. }
  8662. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8663. #endregion
  8664. #endregion
  8665. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8666. if (_view.Code != 200)
  8667. {
  8668. return Ok(_view);
  8669. }
  8670. #region 应用推送
  8671. try
  8672. {
  8673. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8674. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8675. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8676. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8677. //自动审核
  8678. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8679. }
  8680. catch (Exception ex)
  8681. {
  8682. }
  8683. #endregion
  8684. return Ok(_view);
  8685. }
  8686. /// <summary>
  8687. /// 酒店预订
  8688. /// Del
  8689. /// </summary>
  8690. /// <param name="_dto"></param>
  8691. /// <returns></returns>
  8692. [HttpPost]
  8693. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8694. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8695. {
  8696. #region 参数验证
  8697. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8698. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8699. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8700. #region 团组操作权限验证 76 酒店预定模块
  8701. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8702. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8703. #endregion
  8704. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8705. #region 页面操作权限验证
  8706. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8707. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8708. #endregion
  8709. #endregion
  8710. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8711. }
  8712. /// <summary>
  8713. /// 酒店预订
  8714. /// 生成VOUCHER
  8715. /// 2024.05.06 之前版本
  8716. /// </summary>
  8717. /// <param name="_dto"></param>
  8718. /// <returns></returns>
  8719. [HttpPost]
  8720. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8721. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8722. {
  8723. try
  8724. {
  8725. #region 参数验证
  8726. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8727. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8728. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8729. #region 团组操作权限验证 76 酒店预定模块
  8730. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8731. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8732. #endregion
  8733. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8734. #region 页面操作权限验证
  8735. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8736. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8737. #endregion
  8738. #endregion
  8739. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8740. //判断数据是否完整
  8741. if (hr != null)
  8742. {
  8743. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8744. {
  8745. string strFileName = "HotelStatement/";
  8746. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8747. if (dele != null)
  8748. strFileName += dele.TourCode;
  8749. //载入模板
  8750. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8751. Document doc = new Document(sss);
  8752. DocumentBuilder builder = new DocumentBuilder(doc);
  8753. #region 替换Word模板书签内容
  8754. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8755. //入住卷预定号码
  8756. if (doc.Range.Bookmarks["VNO"] != null)
  8757. {
  8758. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8759. mark.Text = hr.CheckNumber;
  8760. }
  8761. //酒店时间
  8762. if (doc.Range.Bookmarks["Date"] != null)
  8763. {
  8764. Bookmark mark = doc.Range.Bookmarks["Date"];
  8765. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8766. }
  8767. //团号
  8768. if (doc.Range.Bookmarks["TNo"] != null)
  8769. {
  8770. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8771. mark.Text = dele.TourCode;
  8772. }
  8773. //预定号码
  8774. if (doc.Range.Bookmarks["BookingId"] != null)
  8775. {
  8776. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8777. mark.Text = hr.ReservationsNo;
  8778. }
  8779. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8780. {
  8781. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8782. mark.Text = hr.DetermineNo;
  8783. }
  8784. //酒店城市
  8785. if (doc.Range.Bookmarks["City"] != null)
  8786. {
  8787. Bookmark mark = doc.Range.Bookmarks["City"];
  8788. mark.Text = hr.City;
  8789. }
  8790. //酒店名称
  8791. if (doc.Range.Bookmarks["HName"] != null)
  8792. {
  8793. Bookmark mark = doc.Range.Bookmarks["HName"];
  8794. mark.Text = hr.HotelName;
  8795. }
  8796. //酒店地址
  8797. if (doc.Range.Bookmarks["Address"] != null)
  8798. {
  8799. Bookmark mark = doc.Range.Bookmarks["Address"];
  8800. mark.Text = hr.HotelAddress;
  8801. }
  8802. //酒店电话
  8803. if (doc.Range.Bookmarks["Tel"] != null)
  8804. {
  8805. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8806. mark.Text = hr.HotelTel;
  8807. }
  8808. //酒店传真
  8809. if (doc.Range.Bookmarks["Fax"] != null)
  8810. {
  8811. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8812. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8813. {
  8814. mark.Text = hr.HotelFax;
  8815. }
  8816. }
  8817. //入住时间
  8818. if (doc.Range.Bookmarks["CIn"] != null)
  8819. {
  8820. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8821. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8822. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8823. }
  8824. //退房时间
  8825. if (doc.Range.Bookmarks["COut"] != null)
  8826. {
  8827. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8828. Bookmark mark = doc.Range.Bookmarks["COut"];
  8829. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8830. }
  8831. //客户名称
  8832. if (doc.Range.Bookmarks["GName"] != null)
  8833. {
  8834. string guestName = "";
  8835. string[] clients = new string[] { };
  8836. if (hr.GuestName.Contains(","))
  8837. {
  8838. clients = hr.GuestName.Split(",");
  8839. }
  8840. else
  8841. {
  8842. clients = new string[] { hr.GuestName };
  8843. }
  8844. List<int> clientIds_int = new List<int>();
  8845. if (clients.Length > 0)
  8846. {
  8847. foreach (var item in clients)
  8848. {
  8849. if (item.IsNumeric())
  8850. {
  8851. clientIds_int.Add(int.Parse(item));
  8852. }
  8853. }
  8854. }
  8855. if (clientIds_int.Count > 0)
  8856. {
  8857. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8858. foreach (var client in _clientDatas)
  8859. {
  8860. //男
  8861. if (client.Sex == 0) guestName += $"Mr.";
  8862. //女
  8863. else if (client.Sex == 1) guestName += $"Ms.";
  8864. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8865. {
  8866. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8867. }
  8868. //guestName += $"{client.Pinyin},";
  8869. }
  8870. if (guestName.Length > 0)
  8871. {
  8872. guestName = guestName.Substring(0, guestName.Length - 1);
  8873. }
  8874. }
  8875. else
  8876. {
  8877. guestName = hr.GuestName;
  8878. }
  8879. Bookmark mark = doc.Range.Bookmarks["GName"];
  8880. mark.Text = guestName;
  8881. }
  8882. //房间介绍
  8883. if (doc.Range.Bookmarks["ROOM"] != null)
  8884. {
  8885. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8886. mark.Text = hr.RoomExplanation;
  8887. }
  8888. //报价描述
  8889. if (doc.Range.Bookmarks["NOTE"] != null)
  8890. {
  8891. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8892. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8893. if (ss != null)
  8894. mark.Text = ss.Name;
  8895. }
  8896. //入住时间
  8897. if (doc.Range.Bookmarks["CheckIn"] != null)
  8898. {
  8899. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8900. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8901. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8902. }
  8903. //退房时间
  8904. if (doc.Range.Bookmarks["CheckOut"] != null)
  8905. {
  8906. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8907. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8908. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8909. }
  8910. //日期
  8911. if (doc.Range.Bookmarks["DT"] != null)
  8912. {
  8913. Bookmark mark = doc.Range.Bookmarks["DT"];
  8914. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8915. }
  8916. //名称
  8917. if (doc.Range.Bookmarks["VName"] != null)
  8918. {
  8919. Bookmark mark = doc.Range.Bookmarks["VName"];
  8920. mark.Text = hr.HotelName;
  8921. }
  8922. //号码
  8923. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8924. {
  8925. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8926. mark.Text = hr.CheckNumber;
  8927. }
  8928. #endregion
  8929. strFileName += "VOUCHER.doc";
  8930. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8931. doc.Save(fileDir);
  8932. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8933. return Ok(JsonView(true, "操作成功!", Url));
  8934. }
  8935. else
  8936. {
  8937. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8938. }
  8939. }
  8940. else
  8941. {
  8942. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8943. }
  8944. }
  8945. catch (Exception ex)
  8946. {
  8947. return Ok(JsonView(false, ex.Message));
  8948. }
  8949. }
  8950. /// <summary>
  8951. /// 酒店预订
  8952. /// 生成VOUCHER
  8953. /// 2024.05.06 之后版本
  8954. /// </summary>
  8955. /// <param name="_dto"></param>
  8956. /// <returns></returns>
  8957. [HttpPost]
  8958. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8959. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8960. {
  8961. #region 参数验证
  8962. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8963. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8964. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8965. #region 团组操作权限验证 76 酒店预定模块
  8966. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8967. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8968. #endregion
  8969. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8970. #region 页面操作权限验证
  8971. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8972. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8973. #endregion
  8974. #endregion
  8975. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8976. //判断数据是否完整
  8977. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8978. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8979. string strFileName = "HotelStatement/";
  8980. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8981. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8982. #region 数据处理
  8983. List<int> guestIds = new List<int>();
  8984. int index = 0;
  8985. foreach (var item in hrDtas)
  8986. {
  8987. if (item.GuestName.Contains(","))
  8988. {
  8989. string[] guestIdArr = item.GuestName.Split(',');
  8990. foreach (var guestIdStr in guestIdArr)
  8991. {
  8992. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8993. if (guestBool)
  8994. {
  8995. guestIds.Add(guestId);
  8996. }
  8997. }
  8998. }
  8999. else guestNames += item.GuestName;
  9000. var voucherInfo = new HotelVoucherInfoView()
  9001. {
  9002. HotelName = item.HotelName,
  9003. CheckInDate = item.CheckInDate,
  9004. CheckOutDate = item.CheckOutDate,
  9005. ConfirmationNumber = item.DetermineNo.Trim(),
  9006. RoomType = item.RoomExplanation
  9007. };
  9008. vouchers.Add(voucherInfo);
  9009. }
  9010. if (guestIds.Count > 0)
  9011. {
  9012. guestIds = guestIds.Distinct().ToList();
  9013. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  9014. if (guestDatas.Count > 0)
  9015. {
  9016. guestNames = "";
  9017. foreach (var guest in guestDatas)
  9018. {
  9019. string guestName = "";
  9020. if (guest.Sex == 0) guestName += @"MR.";
  9021. else if (guest.Sex == 1) guestName += @"MS.";
  9022. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9023. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9024. guestNames += @$"{guestName.Trim()}、";
  9025. }
  9026. if (guestNames.Length > 0)
  9027. {
  9028. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9029. }
  9030. }
  9031. }
  9032. #endregion
  9033. //载入模板
  9034. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  9035. Document doc = new Document(sss);
  9036. DocumentBuilder builder = new DocumentBuilder(doc);
  9037. if (doc.Range.Bookmarks["GuestName"] != null)
  9038. {
  9039. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9040. mark.Text = guestNames;
  9041. }
  9042. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9043. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9044. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9045. for (int i = 1; i <= vouchers.Count; i++)
  9046. {
  9047. HotelVoucherInfoView hviv = vouchers[i - 1];
  9048. builder.MoveToCell(0, i, 0, 0);
  9049. builder.Write(hviv.HotelName);
  9050. builder.MoveToCell(0, i, 1, 0);
  9051. builder.Write(hviv.CheckInDate);
  9052. builder.MoveToCell(0, i, 2, 0);
  9053. builder.Write(hviv.CheckOutDate);
  9054. builder.MoveToCell(0, i, 3, 0);
  9055. builder.Write(hviv.RoomType);
  9056. builder.MoveToCell(0, i, 4, 0);
  9057. builder.Write(hviv.ConfirmationNumber);
  9058. }
  9059. //删除多余行
  9060. int currRowIndex = vouchers.Count + 1;
  9061. int delRows = 21 - currRowIndex;
  9062. if (delRows > 0)
  9063. {
  9064. for (int i = 0; i < delRows; i++)
  9065. {
  9066. table.Rows.RemoveAt(currRowIndex);
  9067. //cultivateRowIndex++;
  9068. }
  9069. }
  9070. strFileName += "VOUCHER.docx";
  9071. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9072. doc.Save(fileDir);
  9073. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9074. return Ok(JsonView(true, "操作成功!", Url));
  9075. }
  9076. /// <summary>
  9077. /// 酒店预订
  9078. /// 生成 预定成本 Excel
  9079. /// </summary>
  9080. /// <param name="_dto"></param>
  9081. /// <returns></returns>
  9082. [HttpPost]
  9083. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9084. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9085. {
  9086. #region 参数验证
  9087. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9088. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9089. if (!vadalitorRes.IsValid)
  9090. {
  9091. var errors = new StringBuilder();
  9092. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9093. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  9094. }
  9095. #region 团组操作权限验证 76 酒店预定模块
  9096. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9097. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9098. #endregion
  9099. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9100. #region 页面操作权限验证
  9101. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9102. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9103. #endregion
  9104. #endregion
  9105. decimal _rate = 1.00M;
  9106. string _currency = "";
  9107. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9108. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9109. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  9110. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9111. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  9112. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9113. {
  9114. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  9115. }
  9116. _currency = _GroupCostParameter.Currency;
  9117. bool isIntType = int.TryParse(_currency, out int currId);
  9118. if (isIntType)
  9119. {
  9120. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9121. }
  9122. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9123. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9124. if (currInfo == null)
  9125. {
  9126. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  9127. }
  9128. if (!_currency.ToUpper().Equals("CNY"))
  9129. {
  9130. _rate = _GroupCostParameter.Rate;
  9131. }
  9132. _rate = currInfo.Rate;
  9133. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9134. string strFileName = "HotelStatement/";
  9135. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9136. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9137. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  9138. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  9139. #region 数据处理
  9140. foreach (var item in hrDtas)
  9141. {
  9142. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9143. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  9144. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  9145. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  9146. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  9147. string roomCurr = currDatas.Find(it => it.Id == roomInfo?.Currency)?.Name ?? "";
  9148. string singleRoomFeeStr = string.Empty,
  9149. doubleRoomFeeStr = string.Empty,
  9150. suiteRoomFeeStr = string.Empty,
  9151. otherRoomFeeStr = string.Empty,
  9152. payMoneyStr = string.Empty,
  9153. cardPriceStr = string.Empty;
  9154. if (roomCurr.Equals(_currency))
  9155. {
  9156. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9157. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9158. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9159. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9160. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9161. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9162. }
  9163. else
  9164. {
  9165. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9166. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9167. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9168. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9169. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9170. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9171. }
  9172. string breakfastPriceStr = string.Empty,
  9173. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9174. governmentRentStr = string.Empty,
  9175. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9176. cityTaxStrStr = string.Empty,
  9177. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9178. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  9179. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  9180. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  9181. int payDId = roomInfo?.PayDId ?? 0;
  9182. pcfds.Add(new HotelReservations_PCFD_View()
  9183. {
  9184. City = item.City,
  9185. HotelName = item.HotelName,
  9186. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9187. // SingleRoomCount = item.SingleRoomCount,
  9188. SingleRoomPrice = singleRoomFeeStr,
  9189. // DoubleRoomCount = item.DoubleRoomCount,
  9190. DoubleRoomPrice = doubleRoomFeeStr,
  9191. //SuiteRoomCount = item.SuiteRoomCount,
  9192. SuiteRoomPrice = suiteRoomFeeStr,
  9193. OtherRoomPrice = otherRoomFeeStr,
  9194. //OtherRoomCount = item.OtherRoomCount,
  9195. BreakfastPrice = breakfastPriceStr,
  9196. GovernmentRent = governmentRentStr,
  9197. CityTax = cityTaxStrStr,
  9198. RoomExplanation = item.RoomExplanation,
  9199. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == payDId).First()?.Name ?? "",
  9200. PayTime = roomInfo?.ConsumptionDate,
  9201. BankNo = roomInfo?.BankNo,
  9202. PayMoney = payMoneyStr,
  9203. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9204. ConsumptionPatterns = roomInfo?.ConsumptionPatterns,
  9205. CardPrice = cardPriceStr,
  9206. Remark = ccpInfo.Remark
  9207. });
  9208. }
  9209. #endregion
  9210. //载入模板
  9211. WorkbookDesigner designer = new WorkbookDesigner();
  9212. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9213. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9214. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9215. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9216. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9217. designer.SetDataSource("Opertor", userInfo.CnName);
  9218. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9219. dt.TableName = "ViewMyHotelReservations";
  9220. designer.SetDataSource(dt);
  9221. designer.Process();
  9222. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  9223. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9224. designer.Workbook.Save(serverPath);
  9225. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9226. #region 删除指定行
  9227. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  9228. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9229. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9230. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9231. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9232. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9233. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9234. cssIndex = dt.Columns["CityTax"].Ordinal,
  9235. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9236. remarkIndex = dt.Columns["Remark"].Ordinal;
  9237. //删除指定列
  9238. foreach (DataRow item in dt.Rows)
  9239. {
  9240. string singleStr = item["SingleRoomPrice"].ToString();
  9241. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9242. if (containsDigitButNotZero1) singleDel = false;
  9243. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9244. string doubleStr = item["DoubleRoomPrice"].ToString();
  9245. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9246. if (containsDigitButNotZero2) doubleDel = false;
  9247. string suiteStr = item["SuiteRoomPrice"].ToString();
  9248. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9249. if (containsDigitButNotZero3) suiteDel = false;
  9250. string otherStr = item["OtherRoomPrice"].ToString();
  9251. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9252. if (containsDigitButNotZero4) otherDel = false;
  9253. string zcStr = item["BreakfastPrice"].ToString();
  9254. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9255. if (containsDigitButNotZero5) zcDel = false;
  9256. string dsStr = item["GovernmentRent"].ToString();
  9257. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9258. if (containsDigitButNotZero6) dsDel = false;
  9259. string cssStr = item["CityTax"].ToString();
  9260. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9261. if (containsDigitButNotZero7) cssDel = false;
  9262. string cpStr = item["ConsumptionPatterns"].ToString();
  9263. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9264. string remarkStr = item["Remark"].ToString();
  9265. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9266. }
  9267. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9268. DeleteColumn(serverPath, cpIndex, cpDel);
  9269. DeleteColumn(serverPath, dsIndex, dsDel);
  9270. DeleteColumn(serverPath, cssIndex, cssDel);
  9271. DeleteColumn(serverPath, zcIndex, zcDel);
  9272. DeleteColumn(serverPath, otherIndex, otherDel);
  9273. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9274. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9275. DeleteColumn(serverPath, singleIndex, singleDel);
  9276. #endregion
  9277. //只保留第一个表格
  9278. DeleteSheet(serverPath);
  9279. return Ok(JsonView(true, "操作成功", url = rst));
  9280. }
  9281. /// <summary>
  9282. /// 删除指定列
  9283. /// </summary>
  9284. /// <param name="file"></param>
  9285. /// <param name="columnIndex"></param>
  9286. /// <param name="isDel"></param>
  9287. private void DeleteColumn(string file, int columnIndex, bool isDel)
  9288. {
  9289. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9290. //wb.Save(file);
  9291. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9292. if (sheet1 != null)
  9293. {
  9294. if (isDel)
  9295. {
  9296. Cells cells = sheet1.Cells;
  9297. cells.DeleteColumn(columnIndex);
  9298. }
  9299. }
  9300. wb.Save(file);
  9301. }
  9302. /// <summary>
  9303. /// 删除sheet
  9304. /// </summary>
  9305. /// <param name="file"></param>
  9306. /// <param name="sheetName"></param>
  9307. private void DeleteSheet(string file, string sheetName = "")
  9308. {
  9309. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9310. //wb.Save(file);
  9311. List<string> sheets = new List<string>();
  9312. foreach (var item in wb.Worksheets)
  9313. {
  9314. sheets.Add(item.Name);
  9315. }
  9316. if (sheets.Count > 0)
  9317. {
  9318. sheets.RemoveAt(0);//不删除第一个sheet
  9319. foreach (var item in sheets)
  9320. {
  9321. wb.Worksheets.RemoveAt(item);
  9322. }
  9323. }
  9324. wb.Save(file);
  9325. }
  9326. /// <summary>
  9327. /// 酒店预订
  9328. /// 确认单
  9329. /// </summary>
  9330. /// <param name="_dto"></param>
  9331. /// <returns></returns>
  9332. [HttpPost]
  9333. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9334. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9335. {
  9336. try
  9337. {
  9338. #region 参数验证
  9339. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9340. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9341. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9342. #region 团组操作权限验证 76 酒店预定模块
  9343. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9344. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9345. #endregion
  9346. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9347. #region 页面操作权限验证
  9348. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9349. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9350. #endregion
  9351. #endregion
  9352. //团组信息
  9353. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9354. //酒店数据
  9355. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9356. if (listhoteldata.Count < 0)
  9357. {
  9358. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9359. }
  9360. //利datatable存储
  9361. DataTable dt = new DataTable();
  9362. dt.Columns.Add("CheckInDate", typeof(string));
  9363. dt.Columns.Add("City", typeof(string));
  9364. dt.Columns.Add("Hotel", typeof(string));
  9365. dt.Columns.Add("Room", typeof(string));
  9366. for (int i = 0; i < listhoteldata.Count; i++)
  9367. {
  9368. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9369. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9370. while (dayStart < dayEnd)
  9371. {
  9372. string temp = "";
  9373. DataRow row = dt.NewRow();
  9374. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9375. row["City"] = listhoteldata[i].City;
  9376. row["Hotel"] = listhoteldata[i].HotelName;
  9377. if (listhoteldata[i].SingleRoomCount > 0)
  9378. {
  9379. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9380. }
  9381. if (listhoteldata[i].DoubleRoomCount > 0)
  9382. {
  9383. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9384. }
  9385. if (listhoteldata[i].SuiteRoomCount > 0)
  9386. {
  9387. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9388. }
  9389. if (listhoteldata[i].OtherRoomCount > 0)
  9390. {
  9391. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9392. }
  9393. row["Room"] = temp;
  9394. dt.Rows.Add(row);
  9395. dayStart = dayStart.AddDays(1);
  9396. }
  9397. }
  9398. Dictionary<string, string> dic = new Dictionary<string, string>();
  9399. dic.Add("Dele", di.TeamName);
  9400. dic.Add("City", di.VisitCountry);
  9401. //模板路径
  9402. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9403. //载入模板
  9404. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9405. DocumentBuilder builder = new DocumentBuilder(doc);
  9406. foreach (var key in dic.Keys)
  9407. {
  9408. builder.MoveToBookmark(key);
  9409. builder.Write(dic[key]);
  9410. }
  9411. //获取word里所有表格
  9412. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9413. //获取所填表格的序数
  9414. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9415. var rowStart = tableOne.Rows[0]; //获取第1行
  9416. //循环赋值
  9417. for (int i = 0; i < dt.Rows.Count; i++)
  9418. {
  9419. builder.MoveToCell(0, i + 1, 0, 0);
  9420. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9421. builder.MoveToCell(0, i + 1, 1, 0);
  9422. builder.Write(dt.Rows[i]["City"].ToString());
  9423. builder.MoveToCell(0, i + 1, 2, 0);
  9424. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9425. builder.MoveToCell(0, i + 1, 3, 0);
  9426. builder.Write(dt.Rows[i]["Room"].ToString());
  9427. }
  9428. //删除多余行
  9429. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9430. {
  9431. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9432. }
  9433. string strFileName = di.TeamName + "酒店确认单.doc";
  9434. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9435. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9436. return Ok(JsonView(true, "成功", url));
  9437. }
  9438. catch (Exception ex)
  9439. {
  9440. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9441. }
  9442. }
  9443. #endregion
  9444. #region 团组状态
  9445. /// <summary>
  9446. /// 团组状态列表 Page
  9447. /// </summary>
  9448. /// <param name="dto">团组列表请求dto</param>
  9449. /// <returns></returns>
  9450. [HttpPost]
  9451. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9452. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9453. {
  9454. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9455. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9456. {
  9457. string sqlWhere = string.Empty;
  9458. if (dto.IsSure == 0) //未完成
  9459. {
  9460. sqlWhere += string.Format(@" And IsSure = 0");
  9461. }
  9462. else if (dto.IsSure == 1) //已完成
  9463. {
  9464. sqlWhere += string.Format(@" And IsSure = 1");
  9465. }
  9466. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9467. {
  9468. string tj = dto.SearchCriteria;
  9469. 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}%')",
  9470. tj, tj, tj, tj, tj);
  9471. }
  9472. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9473. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9474. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9475. From (
  9476. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9477. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9478. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9479. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9480. From Grp_DelegationInfo gdi
  9481. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9482. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9483. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9484. Where gdi.IsDel = 0 {0}
  9485. ) temp ", sqlWhere);
  9486. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9487. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9488. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9489. }
  9490. else
  9491. {
  9492. return Ok(JsonView(false, "查询失败"));
  9493. }
  9494. }
  9495. /// <summary>
  9496. /// 团组状态
  9497. /// 设置操作完成
  9498. /// </summary>
  9499. /// <param name="dto">团组列表请求dto</param>
  9500. /// <returns></returns>
  9501. [HttpPost]
  9502. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9503. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9504. {
  9505. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9506. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9507. {
  9508. Id = dto.Id,
  9509. IsSure = 1
  9510. };
  9511. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9512. .UpdateColumns(it => new { it.IsSure })
  9513. .WhereColumns(it => new { it.Id })
  9514. .ExecuteCommandAsync();
  9515. if (result > 0)
  9516. {
  9517. return Ok(JsonView(true, "操作完成!"));
  9518. }
  9519. return Ok(JsonView(false, "操作失败!"));
  9520. }
  9521. #endregion
  9522. #region 保险费用录入
  9523. /// <summary>
  9524. /// 根据团组Id查询保险费用列表
  9525. /// </summary>
  9526. /// <param name="dto"></param>
  9527. /// <returns></returns>
  9528. [HttpPost]
  9529. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9530. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9531. {
  9532. try
  9533. {
  9534. Result groupData = await _customersRep.CustomersByDiId(dto);
  9535. if (groupData.Code != 0)
  9536. {
  9537. return Ok(JsonView(false, groupData.Msg));
  9538. }
  9539. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9540. }
  9541. catch (Exception ex)
  9542. {
  9543. return Ok(JsonView(false, ex.Message));
  9544. }
  9545. }
  9546. /// <summary>
  9547. /// 根据保险费用Id查询保险费用详细
  9548. /// </summary>
  9549. /// <param name="dto"></param>
  9550. /// <returns></returns>
  9551. [HttpPost]
  9552. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9553. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9554. {
  9555. try
  9556. {
  9557. Result groupData = await _customersRep.CustomersById(dto);
  9558. if (groupData.Code != 0)
  9559. {
  9560. return Ok(JsonView(false, groupData.Msg));
  9561. }
  9562. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9563. }
  9564. catch (Exception ex)
  9565. {
  9566. return Ok(JsonView(false, ex.Message));
  9567. }
  9568. }
  9569. /// <summary>
  9570. /// 保险费用录入页面初始化绑定
  9571. /// </summary>
  9572. /// <param name="dto"></param>
  9573. /// <returns></returns>
  9574. [HttpPost]
  9575. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9576. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9577. {
  9578. try
  9579. {
  9580. Result groupData = await _customersRep.CustomersInitialize(dto);
  9581. if (groupData.Code != 0)
  9582. {
  9583. return Ok(JsonView(false, groupData.Msg));
  9584. }
  9585. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9586. }
  9587. catch (Exception ex)
  9588. {
  9589. return Ok(JsonView(false, ex.Message));
  9590. }
  9591. }
  9592. /// <summary>
  9593. /// 保险费用操作(Status:1.新增,2.修改)
  9594. /// </summary>
  9595. /// <param name="dto"></param>
  9596. /// <returns></returns>
  9597. [HttpPost]
  9598. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9599. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9600. {
  9601. try
  9602. {
  9603. Result groupData = await _customersRep.OpCustomers(dto);
  9604. if (groupData.Code != 0)
  9605. {
  9606. return Ok(JsonView(false, groupData.Msg));
  9607. }
  9608. #region 应用推送
  9609. try
  9610. {
  9611. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9612. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9613. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9614. }
  9615. catch (Exception ex)
  9616. {
  9617. }
  9618. #endregion
  9619. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9620. }
  9621. catch (Exception ex)
  9622. {
  9623. return Ok(JsonView(false, ex.Message));
  9624. }
  9625. }
  9626. /// <summary>
  9627. /// 保险文件上传
  9628. /// </summary>
  9629. /// <param name="file"></param>
  9630. /// <returns></returns>
  9631. [HttpPost]
  9632. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9633. public async Task<IActionResult> UploadCus(IFormFile file)
  9634. {
  9635. try
  9636. {
  9637. if (file != null)
  9638. {
  9639. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9640. //文件名称
  9641. string projectFileName = file.FileName;
  9642. //上传的文件的路径
  9643. string filePath = "";
  9644. if (!Directory.Exists(fileDir))
  9645. {
  9646. Directory.CreateDirectory(fileDir);
  9647. }
  9648. //上传的文件的路径
  9649. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9650. using (FileStream fs = System.IO.File.Create(filePath))
  9651. {
  9652. file.CopyTo(fs);
  9653. fs.Flush();
  9654. }
  9655. return Ok(JsonView(true, "上传成功!", projectFileName));
  9656. }
  9657. else
  9658. {
  9659. return Ok(JsonView(false, "上传失败!"));
  9660. }
  9661. }
  9662. catch (Exception ex)
  9663. {
  9664. return Ok(JsonView(false, "程序错误!"));
  9665. throw;
  9666. }
  9667. }
  9668. /// <summary>
  9669. /// 保险删除指定文件
  9670. /// </summary>
  9671. /// <param name="dto"></param>
  9672. /// <returns></returns>
  9673. [HttpPost]
  9674. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9675. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9676. {
  9677. try
  9678. {
  9679. string filePath = "";
  9680. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9681. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9682. //int id = 0;
  9683. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9684. // 删除该文件
  9685. try
  9686. {
  9687. System.IO.File.Delete(filePath);
  9688. 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()
  9689. {
  9690. Attachment = "",
  9691. }).ExecuteCommandAsync();
  9692. if (result != 0)
  9693. {
  9694. return Ok(JsonView(true, "成功!"));
  9695. }
  9696. else
  9697. {
  9698. return Ok(JsonView(false, "失败!"));
  9699. }
  9700. }
  9701. catch (Exception)
  9702. {
  9703. 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()
  9704. {
  9705. Attachment = "",
  9706. }).ExecuteCommandAsync();
  9707. if (result != 0)
  9708. {
  9709. return Ok(JsonView(true, "成功!"));
  9710. }
  9711. else
  9712. {
  9713. return Ok(JsonView(false, "失败!"));
  9714. }
  9715. }
  9716. }
  9717. catch (Exception ex)
  9718. {
  9719. return Ok(JsonView(false, "程序错误!"));
  9720. throw;
  9721. }
  9722. }
  9723. /// <summary>
  9724. /// 保险费用操作(删除)
  9725. /// </summary>
  9726. /// <param name="dto"></param>
  9727. /// <returns></returns>
  9728. [HttpPost]
  9729. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9730. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9731. {
  9732. try
  9733. {
  9734. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9735. if (!res)
  9736. {
  9737. return Ok(JsonView(false, "删除失败"));
  9738. }
  9739. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9740. {
  9741. IsDel = 1,
  9742. DeleteUserId = dto.DeleteUserId,
  9743. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9744. }).ExecuteCommandAsync();
  9745. return Ok(JsonView(true, "删除成功!"));
  9746. }
  9747. catch (Exception ex)
  9748. {
  9749. return Ok(JsonView(false, "程序错误!"));
  9750. throw;
  9751. }
  9752. }
  9753. #endregion
  9754. #region 接团客户名单 PageId 104
  9755. /// <summary>
  9756. /// 接团客户名单
  9757. /// 迁移数据(慎用!)
  9758. /// </summary>
  9759. /// <param name="dto"></param>
  9760. /// <returns></returns>
  9761. [HttpPost]
  9762. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9763. public async Task<IActionResult> PostTourClientListChange()
  9764. {
  9765. try
  9766. {
  9767. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9768. //var groupClinetData1
  9769. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9770. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9771. int updateCount = 0;
  9772. if (oldOAClientList.Count > 0)
  9773. {
  9774. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9775. _sqlSugar.BeginTran();
  9776. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9777. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9778. foreach (var item in oldOAClientList)
  9779. {
  9780. int comId = 0;
  9781. string format = "yyyy-MM-dd HH:mm:ss";
  9782. string data11 = "1990-01-01 00:00";
  9783. var data1 = IsValidDate(item.OPdate, format);
  9784. if (data1) data11 = item.OPdate;
  9785. //客户公司验证
  9786. if (!string.IsNullOrEmpty(item.Company))
  9787. {
  9788. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9789. if (clientComInfo == null) // add
  9790. {
  9791. var addInfo = new Crm_CustomerCompany()
  9792. {
  9793. CompanyAbbreviation = "",
  9794. CompanyFullName = item.Company,
  9795. Address = "",
  9796. PostCodes = "",
  9797. LastedOpUserId = item.OPer,
  9798. LastedOpDt = Convert.ToDateTime(data11),
  9799. CreateUserId = item.OPer,
  9800. CreateTime = Convert.ToDateTime(data11),
  9801. IsDel = 0
  9802. };
  9803. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9804. if (comId1 > 0) comId = comId1;
  9805. }
  9806. else comId = clientComInfo.Id;
  9807. }
  9808. //客户人员验证
  9809. int clientId = 0;
  9810. string name = item.LastName + item.Name;
  9811. if (!string.IsNullOrEmpty(name))
  9812. {
  9813. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9814. if (clientInfo == null)
  9815. {
  9816. DateTime? dateTime = null;
  9817. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9818. if (isDt) dateTime = birthDayDt;
  9819. var addInfo1 = new Crm_DeleClient()
  9820. {
  9821. CrmCompanyId = comId,
  9822. DiId = -1,
  9823. LastName = item.LastName,
  9824. FirstName = item.Name,
  9825. OldName = "",
  9826. Pinyin = item.Pinyin,
  9827. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9828. Marriage = 0,
  9829. Phone = item.Phone,
  9830. Job = item.Job,
  9831. BirthDay = dateTime
  9832. };
  9833. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9834. if (clientId1 > 0) clientId = clientId1;
  9835. }
  9836. else clientId = clientInfo.Id;
  9837. }
  9838. if (clientId < 1)
  9839. {
  9840. continue;
  9841. }
  9842. int airType = 0;
  9843. if (item.AirType == "超经舱") airType = 459;
  9844. else if (item.AirType == "公务舱") airType = 458;
  9845. else if (item.AirType == "经济舱") airType = 460;
  9846. else if (item.AirType == "其他") airType = 565;
  9847. else if (item.AirType == "头等舱") airType = 457;
  9848. var _TourClientListEntity = new Grp_TourClientList()
  9849. {
  9850. DiId = item.Diid,
  9851. ClientId = clientId,
  9852. CreateUserId = item.OPer,
  9853. CreateTime = Convert.ToDateTime(data11),
  9854. Remark = item.Remark,
  9855. IsDel = item.Isdel,
  9856. ShippingSpaceTypeId = airType,
  9857. ShippingSpaceSpecialNeeds = item.AirRemark,
  9858. HotelSpecialNeeds = item.RoomType
  9859. };
  9860. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9861. if (_TourClientList > 0)
  9862. {
  9863. updateCount++;
  9864. }
  9865. }
  9866. _sqlSugar.CommitTran();
  9867. }
  9868. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9869. }
  9870. catch (Exception ex)
  9871. {
  9872. _sqlSugar.RollbackTran();
  9873. return Ok(JsonView(false, ex.Message));
  9874. }
  9875. return Ok(JsonView(true));
  9876. }
  9877. private bool IsValidDate(string dateString, string format)
  9878. {
  9879. DateTime dateValue;
  9880. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9881. return valid;
  9882. }
  9883. /// <summary>
  9884. /// 接团客户名单
  9885. /// 根据团组Id查询List
  9886. /// </summary>
  9887. /// <param name="dto"></param>
  9888. /// <returns></returns>
  9889. [HttpPost]
  9890. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9891. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9892. {
  9893. #region 参数验证
  9894. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9895. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9896. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9897. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9898. #region 页面操作权限验证
  9899. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9900. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9901. #endregion
  9902. #endregion
  9903. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9904. if (viewData.Code != 0)
  9905. {
  9906. return Ok(JsonView(false, viewData.Msg));
  9907. }
  9908. return Ok(JsonView(viewData.Data));
  9909. }
  9910. /// <summary>
  9911. /// 接团客户名单
  9912. /// 基础数据 Init
  9913. /// </summary>
  9914. /// <param name="_dto"></param>
  9915. /// <returns></returns>
  9916. [HttpPost]
  9917. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9918. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9919. {
  9920. #region 参数验证
  9921. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9922. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9923. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9924. #region 页面操作权限验证
  9925. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9926. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9927. #endregion
  9928. #endregion
  9929. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9930. if (viewData.Code != 0)
  9931. {
  9932. return Ok(JsonView(false, viewData.Msg));
  9933. }
  9934. return Ok(JsonView(viewData.Data));
  9935. }
  9936. /// <summary>
  9937. /// 接团客户名单
  9938. /// 根据 Id查询 Details
  9939. /// </summary>
  9940. /// <param name="_dto"></param>
  9941. /// <returns></returns>
  9942. [HttpPost]
  9943. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9944. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9945. {
  9946. #region 参数验证
  9947. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9948. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9949. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9950. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9951. #region 页面操作权限验证
  9952. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9953. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9954. #endregion
  9955. #endregion
  9956. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9957. if (viewData.Code != 0)
  9958. {
  9959. return Ok(JsonView(false, viewData.Msg));
  9960. }
  9961. return Ok(JsonView(viewData.Data));
  9962. }
  9963. /// <summary>
  9964. /// 接团客户名单
  9965. /// Add Or Edit
  9966. /// </summary>
  9967. /// <param name="_dto"></param>
  9968. /// <returns></returns>
  9969. [HttpPost]
  9970. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9971. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9972. {
  9973. #region 参数验证
  9974. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9975. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9976. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9977. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9978. #region 页面操作权限验证
  9979. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9980. if (_dto.Id == 0) //添加
  9981. {
  9982. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9983. }
  9984. else if (_dto.Id >= 0) //修改
  9985. {
  9986. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9987. }
  9988. #endregion
  9989. #endregion
  9990. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9991. if (viewData.Code != 0)
  9992. {
  9993. return Ok(JsonView(false, viewData.Msg));
  9994. }
  9995. return Ok(JsonView(true));
  9996. }
  9997. /// <summary>
  9998. /// 接团客户名单
  9999. /// AddMultiple(添加多个)
  10000. /// </summary>
  10001. /// <param name="_dto"></param>
  10002. /// <returns></returns>
  10003. [HttpPost]
  10004. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10005. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  10006. {
  10007. #region 参数验证
  10008. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10009. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10010. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10011. #region 页面操作权限验证
  10012. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10013. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10014. #endregion
  10015. #endregion
  10016. var viewData = await _tourClientListRep._AddMultiple(_dto);
  10017. if (viewData.Code != 0)
  10018. {
  10019. return Ok(JsonView(false, viewData.Msg));
  10020. }
  10021. return Ok(JsonView(true));
  10022. }
  10023. /// <summary>
  10024. /// 接团客户名单
  10025. /// Del
  10026. /// </summary>
  10027. /// <param name="_dto"></param>
  10028. /// <returns></returns>
  10029. [HttpPost]
  10030. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10031. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  10032. {
  10033. #region 参数验证
  10034. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10035. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10036. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10037. #region 页面操作权限验证
  10038. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10039. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  10040. #endregion
  10041. #endregion
  10042. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  10043. if (viewData.Code != 0)
  10044. {
  10045. return Ok(JsonView(false, viewData.Msg));
  10046. }
  10047. return Ok(JsonView(true));
  10048. }
  10049. /// <summary>
  10050. /// 接团客户名单
  10051. /// 文件下载 客户名单
  10052. /// </summary>
  10053. /// <param name="_dto"></param>
  10054. /// <returns></returns>
  10055. [HttpPost]
  10056. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10057. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  10058. {
  10059. #region 参数验证
  10060. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10061. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10062. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10063. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10064. #region 页面操作权限验证
  10065. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10066. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10067. #endregion
  10068. #endregion
  10069. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10070. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10071. From Grp_TourClientList tcl
  10072. Left Join
  10073. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10074. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10075. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10076. From Crm_DeleClient dc
  10077. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10078. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10079. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10080. Where dc.IsDel = 0) temp
  10081. On temp.DcId =tcl.ClientId
  10082. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10083. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10084. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10085. //载入模板
  10086. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10087. if (_dto.Language == 1)
  10088. {
  10089. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10090. }
  10091. //载入模板
  10092. var doc = new Document(tempPath);
  10093. DocumentBuilder builder = new DocumentBuilder(doc);
  10094. //获取word里所有表格
  10095. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10096. //获取所填表格的序数
  10097. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10098. var rowStart = tableOne.Rows[0]; //获取第1行
  10099. if (_dto.Language == 0)
  10100. {
  10101. //循环赋值
  10102. for (int i = 0; i < DcList.Count; i++)
  10103. {
  10104. builder.MoveToCell(0, i + 1, 0, 0);
  10105. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10106. builder.MoveToCell(0, i + 1, 1, 0);
  10107. int sex = DcList[i].Sex;
  10108. string sexStr = string.Empty;
  10109. if (sex == 0) sexStr = "男";
  10110. else if (sex == 1) sexStr = "女";
  10111. else sexStr = "未设置";
  10112. builder.Write(sexStr);
  10113. builder.MoveToCell(0, i + 1, 2, 0);
  10114. string birthDay = DcList[i].BirthDay;
  10115. string birthDayStr = string.Empty;
  10116. if (!string.IsNullOrEmpty(birthDay))
  10117. {
  10118. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10119. }
  10120. builder.Write(birthDayStr);
  10121. builder.MoveToCell(0, i + 1, 3, 0);
  10122. string company = "";
  10123. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10124. {
  10125. company = DcList[i].CompanyFullName.ToString();
  10126. }
  10127. builder.Write(company);
  10128. builder.MoveToCell(0, i + 1, 4, 0);
  10129. builder.Write(DcList[i].Job);
  10130. }
  10131. }
  10132. else if (_dto.Language == 1)
  10133. {
  10134. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10135. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10136. List<string> transArrayStr = new List<string>();
  10137. string transStrRes1 = "";
  10138. for (int i = 0; i < DcList.Count; i++)
  10139. {
  10140. var dc = DcList[i];
  10141. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  10142. if (dc.Job.Equals("暂无")) dc.Job = "-";
  10143. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  10144. if (DcList.Count - 1 == i) transStrRes1 += str1;
  10145. else transStrRes1 += $"{str1}|";
  10146. }
  10147. //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";
  10148. string transStrRes = "";
  10149. if (transStrRes1.Length > 0 )
  10150. {
  10151. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  10152. }
  10153. //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
  10154. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  10155. //List<string> transArray = new List<string> { };
  10156. List<TranslateInfo> transArray = new List<TranslateInfo>();
  10157. if (transStrRes.Contains("|"))
  10158. {
  10159. string[] transArray1 = transStrRes.Split('|');
  10160. if (transArray1.Length > 0)
  10161. {
  10162. foreach (var item in transArray1)
  10163. {
  10164. if (item.Contains("&"))
  10165. {
  10166. string[] transArray2 = item.Split('&');
  10167. int index = 0;
  10168. string companyName = "", job = "";
  10169. if (transArray2.Length > 0)
  10170. {
  10171. bool success = int.TryParse(transArray2[0].Trim(), out index);
  10172. if (1 < transArray2.Length) companyName = transArray2[1];
  10173. if (2 < transArray2.Length) job = transArray2[2];
  10174. }
  10175. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  10176. }
  10177. }
  10178. }
  10179. }
  10180. //循环赋值
  10181. for (int i = 0; i < DcList.Count; i++)
  10182. {
  10183. string PYName = "";
  10184. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10185. {
  10186. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10187. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10188. PYName = PY_First + " " + PY_Last;
  10189. }
  10190. else
  10191. {
  10192. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10193. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10194. PYName = PY_First + " " + PY_Last;
  10195. }
  10196. builder.MoveToCell(0, i + 1, 0, 0);
  10197. builder.Write(PYName);
  10198. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10199. builder.MoveToCell(0, i + 1, 1, 0);
  10200. builder.Write(sex);
  10201. DateTime birthDt;
  10202. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10203. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  10204. builder.MoveToCell(0, i + 1, 2, 0);
  10205. builder.Write(birthday);
  10206. string company = string.Empty,job = string.Empty;
  10207. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  10208. if (dcTransInfo != null)
  10209. {
  10210. company = dcTransInfo.CompanyName;
  10211. job = dcTransInfo.Job;
  10212. }
  10213. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10214. {
  10215. //查询对照表
  10216. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10217. if (tempCec != null)
  10218. {
  10219. company = tempCec.enName;
  10220. }
  10221. //翻译
  10222. else
  10223. {
  10224. }
  10225. }
  10226. builder.MoveToCell(0, i + 1, 3, 0);
  10227. builder.Write(company);
  10228. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10229. {
  10230. //查询对照表
  10231. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10232. if (tempPec != null)
  10233. {
  10234. job = tempPec.enName;
  10235. }
  10236. //翻译
  10237. else
  10238. {
  10239. }
  10240. }
  10241. builder.MoveToCell(0, i + 1, 4, 0);
  10242. builder.Write(job);
  10243. }
  10244. }
  10245. //删除多余行
  10246. while (tableOne.Rows.Count > DcList.Count + 1)
  10247. {
  10248. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10249. }
  10250. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10251. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10252. doc.Save(fileDir);
  10253. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10254. return Ok(JsonView(true, "操作成功!", Url));
  10255. }
  10256. private class TranslateInfo
  10257. {
  10258. public int Index { get; set; }
  10259. public string CompanyName { get; set; }
  10260. public string Job { get; set; }
  10261. }
  10262. #endregion
  10263. #region 团组倒推表
  10264. /// <summary>
  10265. /// 倒推表基础数据
  10266. /// Init
  10267. /// </summary>
  10268. /// <param name="dto"></param>
  10269. /// <returns></returns>
  10270. [HttpPost]
  10271. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10272. public async Task<IActionResult> PostInvertedListInit()
  10273. {
  10274. var viewData = await _invertedListRep._Init();
  10275. if (viewData.Code != 0)
  10276. {
  10277. return Ok(JsonView(false, viewData.Msg));
  10278. }
  10279. return Ok(JsonView(viewData.Data));
  10280. }
  10281. /// <summary>
  10282. /// 倒推表
  10283. /// Info
  10284. /// </summary>
  10285. /// <param name="dto"></param>
  10286. /// <returns></returns>
  10287. [HttpPost]
  10288. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10289. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10290. {
  10291. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10292. if (viewData.Code != 0)
  10293. {
  10294. return Ok(JsonView(false, viewData.Msg));
  10295. }
  10296. return Ok(JsonView(viewData.Data));
  10297. }
  10298. /// <summary>
  10299. /// 倒推表
  10300. /// Create
  10301. /// </summary>
  10302. /// <param name="dto"></param>
  10303. /// <returns></returns>
  10304. [HttpPost]
  10305. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10306. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10307. {
  10308. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10309. if (viewData.Code != 0)
  10310. {
  10311. return Ok(JsonView(false, viewData.Msg));
  10312. }
  10313. return Ok(JsonView(viewData.Data));
  10314. }
  10315. /// <summary>
  10316. /// 倒推表
  10317. /// Update
  10318. /// </summary>
  10319. /// <param name="dto"></param>
  10320. /// <returns></returns>
  10321. [HttpPost]
  10322. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10323. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10324. {
  10325. var viewData = await _invertedListRep._Update(dto);
  10326. if (viewData.Code != 0)
  10327. {
  10328. return Ok(JsonView(false, viewData.Msg));
  10329. }
  10330. return Ok(JsonView(viewData.Data));
  10331. }
  10332. /// <summary>
  10333. /// 倒推表
  10334. /// File Download
  10335. /// </summary>
  10336. /// <param name="dto"></param>
  10337. /// <returns></returns>
  10338. [HttpPost]
  10339. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10340. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10341. {
  10342. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10343. if (info2.Code != 0)
  10344. {
  10345. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10346. }
  10347. var info1 = info2.Data as InvertedListInfoView;
  10348. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10349. string teamName = "";
  10350. if (info != null) teamName = info.TeamName;
  10351. //载入模板
  10352. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10353. DocumentBuilder builder = new DocumentBuilder(doc);
  10354. //利用键值对存放数据
  10355. Dictionary<string, string> dic = new Dictionary<string, string>();
  10356. dic.Add("TeamName", teamName);
  10357. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10358. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10359. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10360. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10361. dic.Add("SQRemark", info1.ApprovalRemark);
  10362. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10363. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10364. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10365. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10366. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10367. dic.Add("QZRemark", info1.VisaInformationRemark);
  10368. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10369. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10370. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10371. dic.Add("CQRemark", info1.IssueVisaRemark);
  10372. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10373. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10374. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10375. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10376. #region 填充word模板书签内容
  10377. foreach (var key in dic.Keys)
  10378. {
  10379. builder.MoveToBookmark(key);
  10380. builder.Write(dic[key]);
  10381. }
  10382. #endregion
  10383. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10384. string fileName = $"{teamName}团出行准备流程表.doc";
  10385. string filePath = fileDir + $@"InvertedList/{fileName}";
  10386. doc.Save(filePath);
  10387. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10388. return Ok(JsonView(true, "操作成功!", Url));
  10389. }
  10390. #endregion
  10391. #region 三公签证费用(签证费、代办费)
  10392. /// <summary>
  10393. /// 三公签证费用(签证费、代办费)
  10394. /// List
  10395. /// </summary>
  10396. /// <returns></returns>
  10397. [HttpPost]
  10398. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10399. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10400. {
  10401. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10402. if (_view.Code != 0)
  10403. {
  10404. return Ok(JsonView(false, _view.Msg));
  10405. }
  10406. return Ok(JsonView(true, "操作成功!", _view.Data));
  10407. }
  10408. /// <summary>
  10409. /// 三公签证费用(签证费、代办费)
  10410. /// Add Or Update
  10411. /// </summary>
  10412. /// <returns></returns>
  10413. [HttpPost]
  10414. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10415. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10416. {
  10417. var _view = await _visaFeeInfoRep._Update(_dto);
  10418. if (_view.Code != 0)
  10419. {
  10420. return Ok(JsonView(false, _view.Msg));
  10421. }
  10422. return Ok(JsonView(true, _view.Msg));
  10423. }
  10424. #endregion
  10425. #region 酒店询价
  10426. /// <summary>
  10427. /// 酒店询价
  10428. /// Init
  10429. /// </summary>
  10430. /// <param name="dto"></param>
  10431. /// <returns></returns>
  10432. [HttpPost]
  10433. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10434. public async Task<IActionResult> PostHotelInquiryInit()
  10435. {
  10436. var res = await _hotelInquiryRep._Init();
  10437. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10438. return Ok(JsonView(true, res.Msg, res.Data));
  10439. }
  10440. /// <summary>
  10441. /// 酒店询价
  10442. /// page Item
  10443. /// </summary>
  10444. /// <param name="_dto"></param>
  10445. /// <returns></returns>
  10446. [HttpPost]
  10447. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10448. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10449. {
  10450. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10451. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10452. var view = res.Data as PageDataViewBase;
  10453. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10454. }
  10455. /// <summary>
  10456. /// 酒店询价
  10457. /// info
  10458. /// </summary>
  10459. /// <param name="_dto"></param>
  10460. /// <returns></returns>
  10461. [HttpPost]
  10462. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10463. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10464. {
  10465. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10466. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10467. return Ok(JsonView(true, res.Msg, res.Data));
  10468. }
  10469. /// <summary>
  10470. /// 酒店询价
  10471. /// Add Or Edit
  10472. /// </summary>
  10473. /// <param name="_dto"></param>
  10474. /// <returns></returns>
  10475. [HttpPost]
  10476. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10477. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10478. {
  10479. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10480. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10481. return Ok(JsonView(true, res.Msg, res.Data));
  10482. }
  10483. /// <summary>
  10484. /// 酒店询价
  10485. /// Del
  10486. /// </summary>
  10487. /// <param name="_dto"></param>
  10488. /// <returns></returns>
  10489. [HttpPost]
  10490. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10491. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10492. {
  10493. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10494. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10495. return Ok(JsonView(true, res.Msg, res.Data));
  10496. }
  10497. #endregion
  10498. #region 下载匹配op行程单
  10499. /// <summary>
  10500. /// 匹配op行程单
  10501. /// Init
  10502. /// </summary>
  10503. /// <param name="dto">团组列表请求dto</param>
  10504. /// <returns></returns>
  10505. [HttpPost]
  10506. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10507. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10508. {
  10509. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10510. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10511. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10512. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10513. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10514. .Where(it => it.IsDel == 0)
  10515. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10516. .OrderByDescending(it => it.CreateUserId)
  10517. .ToList();
  10518. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10519. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10520. var diids = groupInfos.Select(it => it.Id).ToList();
  10521. List<string> countrys = new List<string>();
  10522. foreach (var item in country)
  10523. {
  10524. var data = _groupRepository.FormartTeamName(item);
  10525. var dataArray = _groupRepository.GroupSplitCountry(data);
  10526. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10527. }
  10528. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10529. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10530. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10531. foreach (var item in areaItem)
  10532. {
  10533. string areaStr = item.Value;
  10534. if (!string.IsNullOrEmpty(areaStr))
  10535. {
  10536. string[] str1 = areaStr.Split("-");
  10537. if (str1.Length > 0)
  10538. {
  10539. areaArray.AddRange(str1);
  10540. }
  10541. }
  10542. }
  10543. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10544. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10545. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10546. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10547. .ToList();
  10548. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10549. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10550. .Where(it => countriesIds.Contains(it.Id))
  10551. .Select(it => new { it.Id, Name = it.Name_CN })
  10552. .ToList();
  10553. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10554. .Select(it => it.TeamName).ToList();
  10555. stopwatch.Stop();
  10556. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10557. }
  10558. ///// <summary>
  10559. ///// 匹配op行程单
  10560. ///// Init 查询区域数据
  10561. ///// </summary>
  10562. ///// <param name="dto">团组列表请求dto</param>
  10563. ///// <returns></returns>
  10564. //[HttpPost]
  10565. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10566. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10567. //{
  10568. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10569. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10570. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10571. // if (string.IsNullOrEmpty(countriesDataStr))
  10572. // {
  10573. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10574. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10575. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10576. // }
  10577. // else
  10578. // {
  10579. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10580. // }
  10581. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10582. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10583. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10584. // List<dynamic> childList = new List<dynamic>();
  10585. // int parentId = dto.CountriesId;
  10586. // if (provinceData.Count > 1)
  10587. // {
  10588. // foreach (var item1 in provinceData)
  10589. // {
  10590. // List<dynamic> childList1 = new List<dynamic>();
  10591. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10592. // foreach (var item2 in citiesData1)
  10593. // {
  10594. // List<dynamic> childList2 = new List<dynamic>();
  10595. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10596. // foreach (var item3 in countiesData1)
  10597. // {
  10598. // childList2.Add(new
  10599. // {
  10600. // id = item3.Id,
  10601. // parentId = item2.Id,
  10602. // level = "district",
  10603. // name = item3.Name_CN,
  10604. // });
  10605. // }
  10606. // childList1.Add(new
  10607. // {
  10608. // id = item2.Id,
  10609. // parentId = item1.Id,
  10610. // level = "city",
  10611. // name = item2.Name_CN,
  10612. // childList = childList2
  10613. // });
  10614. // }
  10615. // childList.Add(new
  10616. // {
  10617. // id = item1.Id,
  10618. // parentId = parentId,
  10619. // level = "province",
  10620. // name = item1.Name_CN,
  10621. // childList = childList1
  10622. // });
  10623. // }
  10624. // //城市
  10625. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10626. // foreach (var item2 in citiesData2)
  10627. // {
  10628. // List<dynamic> childList22 = new List<dynamic>();
  10629. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10630. // foreach (var item3 in countiesData1)
  10631. // {
  10632. // childList22.Add(new
  10633. // {
  10634. // id = item3.Id,
  10635. // parentId = item2.Id,
  10636. // level = "district",
  10637. // name = item3.Name_CN,
  10638. // });
  10639. // }
  10640. // childList.Add(new
  10641. // {
  10642. // id = item2.Id,
  10643. // parentId = parentId,
  10644. // level = "city",
  10645. // name = item2.Name_CN,
  10646. // childList = childList22
  10647. // });
  10648. // }
  10649. // }
  10650. // else
  10651. // {
  10652. // foreach (var item2 in citiesData)
  10653. // {
  10654. // string cname = item2.Name_CN;
  10655. // List<dynamic> childList1 = new List<dynamic>();
  10656. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10657. // foreach (var item3 in countiesData1)
  10658. // {
  10659. // childList1.Add(new
  10660. // {
  10661. // Id = item3.Id,
  10662. // parentId = item2.Id,
  10663. // level = "district",
  10664. // name = item3.Name_CN
  10665. // });
  10666. // }
  10667. // childList.Add(new
  10668. // {
  10669. // id = item2.Id,
  10670. // parentId = parentId,
  10671. // level = "city",
  10672. // name = item2.Name_CN,
  10673. // childList = childList1
  10674. // });
  10675. // }
  10676. // }
  10677. // stopwatch.Stop();
  10678. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10679. //}
  10680. /// <summary>
  10681. /// 匹配op行程单
  10682. /// 接团信息列表 Page
  10683. /// </summary>
  10684. /// <param name="dto">团组列表请求dto</param>
  10685. /// <returns></returns>
  10686. [HttpPost]
  10687. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10688. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10689. {
  10690. var swatch = new Stopwatch();
  10691. swatch.Start();
  10692. #region 参数验证
  10693. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10694. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10695. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10696. #region 页面操作权限验证
  10697. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10698. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10699. #endregion
  10700. #endregion
  10701. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10702. {
  10703. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10704. string sqlWhere = "";
  10705. if (!string.IsNullOrEmpty(dto.Country))
  10706. {
  10707. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10708. }
  10709. if (!string.IsNullOrEmpty(dto.Area))
  10710. {
  10711. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10712. }
  10713. if (!string.IsNullOrEmpty(dto.TeamName))
  10714. {
  10715. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10716. }
  10717. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10718. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10719. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10720. swatch.Stop();
  10721. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10722. }
  10723. else
  10724. {
  10725. return Ok(JsonView(false, "查询失败"));
  10726. }
  10727. }
  10728. /// <summary>
  10729. /// 匹配op行程单
  10730. /// 行程单下载
  10731. /// </summary>
  10732. /// <param name="dto">团组列表请求dto</param>
  10733. /// <returns></returns>
  10734. [HttpPost]
  10735. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10736. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10737. {
  10738. #region 参数验证
  10739. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10740. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10741. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10742. #region 页面操作权限验证
  10743. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10744. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10745. #endregion
  10746. #endregion
  10747. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10748. {
  10749. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10750. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10751. }
  10752. else
  10753. {
  10754. return Ok(JsonView(false, "下载失败!"));
  10755. }
  10756. }
  10757. #endregion
  10758. #region 国家信息 数据 注释
  10759. //[HttpPost]
  10760. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10761. //{
  10762. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10763. // foreach (var item in dto)
  10764. // {
  10765. // infos.Add(new Grp_GroupsTaskAssignment()
  10766. // {
  10767. // DIId = item,
  10768. // CTId = 82,
  10769. // UId = 248,
  10770. // IsEnable = 1,
  10771. // CreateUserId = 233,
  10772. // CreateTime = DateTime.Now,
  10773. // IsDel = 0
  10774. // });
  10775. // infos.Add(new Grp_GroupsTaskAssignment()
  10776. // {
  10777. // DIId = item,
  10778. // CTId = 82,
  10779. // UId = 286,
  10780. // IsEnable = 1,
  10781. // CreateUserId = 233,
  10782. // CreateTime = DateTime.Now,
  10783. // IsDel = 0
  10784. // });
  10785. // }
  10786. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10787. // return Ok("操作成功");
  10788. //}
  10789. //public class paramJsonDto
  10790. //{
  10791. // public List<CountriesInfo> str { get; set; }
  10792. //}
  10793. //[HttpPost]
  10794. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10795. //{
  10796. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10797. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10798. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10799. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10800. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10801. // _sqlSugar.BeginTran();
  10802. // int countitiesIndex = 0;
  10803. // foreach (var item in dto.str)
  10804. // {
  10805. // dynamic data = item.c;
  10806. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10807. // if (data != null)
  10808. // {
  10809. // countitiesIndex++;
  10810. // foreach (var item1 in data)
  10811. // {
  10812. // string cnname = item1.cn;
  10813. // string enname = item1.en;
  10814. // Sys_Cities provinceInfo = new Sys_Cities()
  10815. // {
  10816. // CountriesId = countriesId,
  10817. // Name_CN = cnname,
  10818. // Name_EN = enname,
  10819. // ParentId = 0,
  10820. // IsCapital = 1,
  10821. // CreateUserId = 208,
  10822. // CreateTime = DateTime.Now,
  10823. // IsDel = 0
  10824. // };
  10825. // if (item1.lv == "province") //省份
  10826. // {
  10827. // provinceInfo.Level = 1;
  10828. // int provinceId = 0;
  10829. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10830. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10831. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10832. // var data1 = item1.c;
  10833. // foreach (var item2 in data1)
  10834. // {
  10835. // if (item2.lv == "city")
  10836. // {
  10837. // string citycnname = item2.cn;
  10838. // string cityenname = item2.en;
  10839. // Sys_Cities cityInfo = new Sys_Cities()
  10840. // {
  10841. // CountriesId = countriesId,
  10842. // ParentId = provinceId,
  10843. // Level = 2,
  10844. // Name_CN = citycnname,
  10845. // Name_EN = cityenname,
  10846. // IsCapital = 1,
  10847. // CreateUserId = 208,
  10848. // CreateTime = DateTime.Now,
  10849. // IsDel = 0
  10850. // };
  10851. // if (item2.c != null)
  10852. // {
  10853. // int cityId = 0;
  10854. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10855. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10856. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10857. // foreach (var item3 in item2.c)
  10858. // {
  10859. // if (item3.lv == "district")
  10860. // {
  10861. // var districtInfo = new Sys_Cities()
  10862. // {
  10863. // CountriesId = countriesId,
  10864. // Name_CN = item3.cn,
  10865. // Name_EN = item3.en,
  10866. // Level = 3,
  10867. // ParentId = cityId,
  10868. // IsCapital = 1,
  10869. // CreateUserId = 208,
  10870. // CreateTime = DateTime.Now,
  10871. // IsDel = 0
  10872. // };
  10873. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10874. // //{
  10875. // districts.Add(districtInfo);
  10876. // //}
  10877. // }
  10878. // }
  10879. // }
  10880. // else
  10881. // {
  10882. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10883. // //{
  10884. // cities.Add(cityInfo);
  10885. // //}
  10886. // }
  10887. // }
  10888. // }
  10889. // }
  10890. // else if (item1.lv == "city")//城市
  10891. // {
  10892. // provinceInfo.Level = 2;
  10893. // if (item1.c != null)
  10894. // {
  10895. // int cityId = 0;
  10896. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10897. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10898. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10899. // foreach (var item3 in item1.c)
  10900. // {
  10901. // if (item3.lv == "district")
  10902. // {
  10903. // var districtInfo = new Sys_Cities()
  10904. // {
  10905. // CountriesId = countriesId,
  10906. // Name_CN = item3.cn,
  10907. // Name_EN = item3.en,
  10908. // Level = 3,
  10909. // ParentId = cityId,
  10910. // IsCapital = 1,
  10911. // CreateUserId = 208,
  10912. // CreateTime = DateTime.Now,
  10913. // IsDel = 0
  10914. // };
  10915. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10916. // //{
  10917. // districts.Add(districtInfo);
  10918. // //}
  10919. // }
  10920. // }
  10921. // }
  10922. // else
  10923. // {
  10924. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10925. // //{
  10926. // cities.Add(provinceInfo);
  10927. // //}
  10928. // }
  10929. // }
  10930. // }
  10931. // }
  10932. // }
  10933. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10934. // cities = cities.Distinct().ToList();
  10935. // districts = districts.Distinct().ToList();
  10936. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10937. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10938. // cities.AddRange(districts);
  10939. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10940. // //_sqlSugar.RollbackTran();
  10941. // _sqlSugar.CommitTran();
  10942. // return Ok(JsonView(false, "操作成功!"));
  10943. //}
  10944. //[HttpPost]
  10945. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10946. //{
  10947. // List<CountitiesInfo> infos = dto.MyProperty;
  10948. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10949. // _sqlSugar.BeginTran();
  10950. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10951. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10952. // foreach (var item in infos)
  10953. // {
  10954. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10955. // if (countryInfo != null)
  10956. // {
  10957. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10958. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10959. // if (cityInfo1 != null)
  10960. // {
  10961. // cityInfo1.IsCapital = 0;
  10962. // cityInfos.Add(cityInfo1);
  10963. // }
  10964. // }
  10965. // }
  10966. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10967. // .UpdateColumns(it => it.IsCapital)
  10968. // .WhereColumns(it => it.Id)
  10969. // .ExecuteCommand();
  10970. // //_sqlSugar.RollbackTran();
  10971. // _sqlSugar.CommitTran();
  10972. // return Ok(JsonView(false, "操作成功!"));
  10973. //}
  10974. //public class CounrtiesDto
  10975. //{
  10976. // public List<CountitiesInfo> MyProperty { get; set; }
  10977. //}
  10978. //public class CountitiesInfo
  10979. //{
  10980. // /// <summary>
  10981. // /// 圣约翰
  10982. // /// </summary>
  10983. // public string capital_name_chinese { get; set; }
  10984. // /// <summary>
  10985. // ///
  10986. // /// </summary>
  10987. // public string capital_name { get; set; }
  10988. // /// <summary>
  10989. // ///
  10990. // /// </summary>
  10991. // public string country_type { get; set; }
  10992. // /// <summary>
  10993. // /// 安提瓜和巴布达
  10994. // /// </summary>
  10995. // public string country_name_chinese { get; set; }
  10996. // /// <summary>
  10997. // /// 安提瓜和巴布达
  10998. // /// </summary>
  10999. // public string country_name_chinese_short { get; set; }
  11000. // /// <summary>
  11001. // /// 安提瓜和巴布达
  11002. // /// </summary>
  11003. // public string country_name_chinese_UN { get; set; }
  11004. // /// <summary>
  11005. // ///
  11006. // /// </summary>
  11007. // public string country_name_english_abbreviation { get; set; }
  11008. // /// <summary>
  11009. // ///
  11010. // /// </summary>
  11011. // public string country_name_english_formal { get; set; }
  11012. // /// <summary>
  11013. // ///
  11014. // /// </summary>
  11015. // public string country_name_english_UN { get; set; }
  11016. // /// <summary>
  11017. // ///
  11018. // /// </summary>
  11019. // public string continent_name { get; set; }
  11020. // /// <summary>
  11021. // ///
  11022. // /// </summary>
  11023. // public string subregion_name { get; set; }
  11024. // /// <summary>
  11025. // ///
  11026. // /// </summary>
  11027. // public string country_code2 { get; set; }
  11028. // /// <summary>
  11029. // ///
  11030. // /// </summary>
  11031. // public string country_code3 { get; set; }
  11032. // /// <summary>
  11033. // ///
  11034. // /// </summary>
  11035. // public string phone_code { get; set; }
  11036. //}
  11037. //public class CountriesInfo : BasicInfo
  11038. //{
  11039. // public List<CitiesInfo> c { get; set; }
  11040. //}
  11041. //public class CitiesInfo : BasicInfo
  11042. //{
  11043. // public List<AreaInfo> c { get; set; }
  11044. //}
  11045. //public class AreaInfo : BasicInfo
  11046. //{
  11047. // public List<AreaInfo> c { get; set; }
  11048. //}
  11049. //public class BasicInfo
  11050. //{
  11051. // public string code { get; set; }
  11052. // public string cn { get; set; }
  11053. // public string lv { get; set; }
  11054. // public string en { get; set; }
  11055. //}
  11056. #endregion
  11057. #region 查看邀请方
  11058. /// <summary>
  11059. /// 查看邀请方
  11060. /// 邀请方信息 Init
  11061. /// </summary>
  11062. /// <param name="dto"></param>
  11063. /// <returns></returns>
  11064. [HttpPost]
  11065. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11066. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  11067. {
  11068. string sqlWhere = string.Empty;
  11069. if (!string.IsNullOrEmpty(dto.Search))
  11070. {
  11071. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  11072. }
  11073. string sql = string.Format($@"Select
  11074. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  11075. Id,
  11076. UnitName
  11077. From Res_InvitationOfficialActivityData
  11078. Where IsDel = 0
  11079. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  11080. RefAsync<int> total = 0;
  11081. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11082. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  11083. }
  11084. /// <summary>
  11085. /// 查看邀请方
  11086. /// 国家信息 Init
  11087. /// </summary>
  11088. /// <param name="dto"></param>
  11089. /// <returns></returns>
  11090. [HttpPost]
  11091. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11092. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  11093. {
  11094. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  11095. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11096. var diids = groupInfos.Select(it => it.Id).ToList();
  11097. List<string> countrys = new List<string>();
  11098. foreach (var item in country)
  11099. {
  11100. var data = _groupRepository.FormartTeamName(item);
  11101. var dataArray = _groupRepository.GroupSplitCountry(data);
  11102. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11103. }
  11104. countrys = countrys.Distinct().ToList();
  11105. for (int i = 0; i < countrys.Count; i++)
  11106. {
  11107. string item = countrys[i];
  11108. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  11109. {
  11110. countrys.Remove(item);
  11111. i--;
  11112. }
  11113. }
  11114. RefAsync<int> total = 0;
  11115. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  11116. .Where(it => countrys.Contains(it.Name_CN))
  11117. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11118. .Select(it => new { id = it.Id, name = it.Name_CN })
  11119. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11120. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11121. }
  11122. /// <summary>
  11123. /// 查看邀请方
  11124. /// 城市信息 Init
  11125. /// </summary>
  11126. /// <param name="dto"></param>
  11127. /// <returns></returns>
  11128. [HttpPost]
  11129. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11130. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  11131. {
  11132. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  11133. RefAsync<int> total = 0;
  11134. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  11135. .Where(it => it.CountriesId == dto.CountiesId)
  11136. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11137. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  11138. .Select(it => new { id = it.Id, name = it.Name_CN })
  11139. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11140. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11141. }
  11142. /// <summary>
  11143. /// 查看邀请方
  11144. /// 团组名称 Init
  11145. /// </summary>
  11146. /// <param name="dto"></param>
  11147. /// <returns></returns>
  11148. [HttpPost]
  11149. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11150. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  11151. {
  11152. var watch = new Stopwatch();
  11153. watch.Start();
  11154. RefAsync<int> total = 0;
  11155. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  11156. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  11157. .Where((oa, di) => oa.IsDel == 0)
  11158. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  11159. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  11160. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  11161. .Distinct()
  11162. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11163. watch.Stop();
  11164. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  11165. }
  11166. /// <summary>
  11167. /// 查看邀请方
  11168. /// 团组 & 邀请方信息
  11169. /// </summary>
  11170. /// <param name="dto"></param>
  11171. /// <returns></returns>
  11172. [HttpPost]
  11173. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11174. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  11175. {
  11176. var watch = new Stopwatch();
  11177. watch.Start();
  11178. RefAsync<int> total = 0;
  11179. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  11180. .AS("Grp_DelegationInfo")
  11181. .Includes(x => x.InvitingInfos)
  11182. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  11183. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  11184. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  11185. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  11186. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  11187. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  11188. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11189. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  11190. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  11191. infos.ForEach(x =>
  11192. {
  11193. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  11194. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  11195. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  11196. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  11197. });
  11198. watch.Stop();
  11199. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  11200. }
  11201. #endregion
  11202. #region 报批行程
  11203. /// <summary>
  11204. /// 报批行程初始化
  11205. /// </summary>
  11206. /// <param name="dto"></param>
  11207. /// <returns></returns>
  11208. [HttpPost]
  11209. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  11210. {
  11211. const int chiNumber = 5;
  11212. var jw = JsonView(false);
  11213. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  11214. var group = groupList.First();
  11215. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  11216. group = groupList.First(x => x.Id == diid);
  11217. if (group == null)
  11218. {
  11219. jw.Msg = "暂无团组!";
  11220. return Ok(jw);
  11221. }
  11222. var data = new
  11223. {
  11224. groupList = groupList.Select(x => new
  11225. {
  11226. x.TeamName,
  11227. x.Id
  11228. }),
  11229. content = new ArrayList(),
  11230. groupInfo = new
  11231. {
  11232. group.VisitDays,
  11233. group.TourCode,
  11234. group.VisitPNumber,
  11235. group.TeamName,
  11236. group.Id,
  11237. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  11238. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  11239. },
  11240. };
  11241. var resultArr = new ArrayList();
  11242. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  11243. if (content.Count == 0)
  11244. {
  11245. var stay = "-";
  11246. var cityPath = "-";
  11247. //添加城市路径以及住宿地
  11248. //黑屏代码数据
  11249. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11250. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11251. {
  11252. jw = JsonView(true, "黑屏代码有误!", data);
  11253. return Ok(jw);
  11254. }
  11255. foreach (DataRow row in dtBlack.Rows)
  11256. {
  11257. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11258. {
  11259. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  11260. return Ok(jw);
  11261. }
  11262. }
  11263. //黑屏代码获取时间区间
  11264. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11265. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11266. _sqlSugar.BeginTran();
  11267. for (int i = 0; i < timeArr.Count; i++)
  11268. {
  11269. stay = "-";
  11270. cityPath = "-";
  11271. DateTime NewData = DateTime.Parse(timeArr[i]);
  11272. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11273. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11274. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11275. if (tbSelect.Length > 0)
  11276. {
  11277. List<string> threeCodeStr = new List<string>();
  11278. foreach (var item in tbSelect)
  11279. {
  11280. var threeCode = item["Three"].ToString() ?? "";
  11281. if (threeCode.Length == 6)
  11282. {
  11283. var start = threeCode.Substring(0, 3);
  11284. var end = threeCode.Substring(3, 3);
  11285. if (threeCodeStr.Count == 0)
  11286. {
  11287. threeCodeStr.Add(start);
  11288. threeCodeStr.Add(end);
  11289. }
  11290. else
  11291. {
  11292. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11293. {
  11294. threeCodeStr.Add(end);
  11295. }
  11296. else
  11297. {
  11298. threeCodeStr.Add(start);
  11299. threeCodeStr.Add(end);
  11300. }
  11301. }
  11302. }
  11303. }
  11304. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11305. var last = threeCodeStr.Last();
  11306. foreach (var item in threeCodeStr)
  11307. {
  11308. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11309. if (item.Equals(last))
  11310. {
  11311. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11312. }
  11313. }
  11314. cityPath = cityPath.Trim('-');
  11315. }
  11316. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11317. appro.Diid = diid ?? -1;
  11318. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11319. appro.Id = thisId;
  11320. appro.CreateUserId = dto.UserId;
  11321. appro.CreateTime = DateTime.Now;
  11322. content.Add(appro);
  11323. }
  11324. _sqlSugar.CommitTran();
  11325. }
  11326. foreach (var x in content)
  11327. {
  11328. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  11329. if (chiList.Count < chiNumber)
  11330. {
  11331. for (int i = chiList.Count; i < chiNumber; i++)
  11332. {
  11333. chiList.Add(new Grp_ApprovalTravelDetails());
  11334. }
  11335. }
  11336. resultArr.Add(new
  11337. {
  11338. x.Id,
  11339. x.Date,
  11340. x.Diid,
  11341. chiList = chiList.Select(x1 => new
  11342. {
  11343. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11344. x1.Details,
  11345. x1.ParentId,
  11346. x1.Id
  11347. })
  11348. });
  11349. }
  11350. data = data with
  11351. {
  11352. content = resultArr,
  11353. };
  11354. jw = JsonView(true, "获取成功!", data);
  11355. return Ok(jw);
  11356. }
  11357. /// <summary>
  11358. /// 报批行程删除
  11359. /// </summary>
  11360. /// <param name="dto"></param>
  11361. /// <returns></returns>
  11362. [HttpPost]
  11363. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11364. {
  11365. var jw = JsonView(false);
  11366. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11367. if (group == null)
  11368. {
  11369. jw.Msg = "团组参数有误!";
  11370. return Ok(jw);
  11371. }
  11372. try
  11373. {
  11374. _sqlSugar.BeginTran();
  11375. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11376. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11377. {
  11378. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11379. DeleteUserId = dto.uesrId,
  11380. IsDel = 1
  11381. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11382. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11383. {
  11384. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11385. DeleteUserId = dto.uesrId,
  11386. IsDel = 1
  11387. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11388. _sqlSugar.CommitTran();
  11389. jw = JsonView(true, "删除成功");
  11390. }
  11391. catch (Exception ex)
  11392. {
  11393. jw = JsonView(false, ex.Message);
  11394. }
  11395. return Ok(jw);
  11396. }
  11397. /// <summary>
  11398. /// 报批行程保存
  11399. /// </summary>
  11400. /// <param name="dto"></param>
  11401. /// <returns></returns>
  11402. [HttpPost]
  11403. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11404. {
  11405. var jw = JsonView(false);
  11406. var Find = dto.Arr.Find(x => x.id == 0);
  11407. if (Find != null)
  11408. {
  11409. jw.Msg = "生成的ID为0!";
  11410. return Ok(jw);
  11411. }
  11412. foreach (var item in dto.Arr)
  11413. {
  11414. foreach (var chi in item.chiList)
  11415. {
  11416. if (chi.parentId == 0)
  11417. {
  11418. chi.parentId = item.id;
  11419. }
  11420. }
  11421. }
  11422. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11423. _sqlSugar.BeginTran();
  11424. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11425. {
  11426. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11427. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11428. {
  11429. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11430. DeleteUserId = dto.UserId,
  11431. IsDel = 1
  11432. }).ExecuteCommand();
  11433. }
  11434. try
  11435. {
  11436. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11437. {
  11438. CreateTime = DateTime.Now,
  11439. CreateUserId = dto.UserId,
  11440. Details = x.details,
  11441. ParentId = x.parentId,
  11442. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11443. Remark = "",
  11444. IsDel = 0
  11445. }).ToList()).ExecuteCommand();
  11446. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11447. {
  11448. Id = x.id,
  11449. Details = x.details,
  11450. ParentId = x.parentId,
  11451. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11452. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11453. {
  11454. Details = x.Details,
  11455. ParentId = x.ParentId,
  11456. Time = x.Time
  11457. }).ExecuteCommand();
  11458. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11459. {
  11460. Id = x.id,
  11461. Date = x.date,
  11462. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11463. {
  11464. Date = x.Date
  11465. }).ExecuteCommand();
  11466. _sqlSugar.CommitTran();
  11467. jw = JsonView(true, "保存成功!");
  11468. }
  11469. catch (Exception ex)
  11470. {
  11471. _sqlSugar.RollbackTran();
  11472. jw = JsonView(false, "保存失败!" + ex.Message);
  11473. }
  11474. return Ok(jw);
  11475. }
  11476. /// <summary>
  11477. /// 报批行程生成
  11478. /// </summary>
  11479. /// <param name="dto"></param>
  11480. /// <returns></returns>
  11481. [HttpPost]
  11482. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11483. {
  11484. var jw = JsonView(false);
  11485. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11486. if (group == null)
  11487. {
  11488. jw.Msg = "暂无该团组!";
  11489. return Ok(jw);
  11490. }
  11491. //黑屏代码数据
  11492. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11493. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11494. {
  11495. jw.Msg = "黑屏代码有误!";
  11496. return Ok(jw);
  11497. }
  11498. foreach (DataRow row in dtBlack.Rows)
  11499. {
  11500. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11501. {
  11502. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11503. return Ok(jw);
  11504. }
  11505. }
  11506. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11507. var resultArr = new ArrayList();
  11508. if (officialActivitiesArr.Count == 0)
  11509. {
  11510. jw.Msg = "暂无公务出访信息!";
  11511. return Ok(jw);
  11512. }
  11513. try
  11514. {
  11515. _sqlSugar.BeginTran();
  11516. DeleteApprovalJourney(new
  11517. Domain.Dtos.Groups.DeleteApprovalJourney
  11518. {
  11519. Diid = dto.Diid,
  11520. uesrId = dto.Userid
  11521. });
  11522. var stay = "-";
  11523. var cityPath = "-";
  11524. //添加城市路径以及住宿地
  11525. //黑屏代码获取时间区间
  11526. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11527. var empty = "【未收入该三字码!请机票同事录入】";
  11528. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11529. for (int i = 0; i < timeArr.Count; i++)
  11530. {
  11531. stay = "-";
  11532. cityPath = "-";
  11533. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11534. DateTime NewData = DateTime.Parse(timeArr[i]);
  11535. 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();
  11536. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11537. if (tbSelect.Length > 0)
  11538. {
  11539. List<string> threeCodeStr = new List<string>();
  11540. bool isTrade = false;
  11541. string trip = string.Empty;
  11542. var rowLast = tbSelect.Last();
  11543. var rowFirst = tbSelect.First();
  11544. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11545. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11546. var takeOffTime = DateTime.Parse(timeArr[i]);
  11547. var fallToTime = DateTime.Parse(timeArr[i]);
  11548. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11549. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11550. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11551. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11552. foreach (var item in tbSelect)
  11553. {
  11554. var start = string.Empty;
  11555. var end = string.Empty;
  11556. var threeCode = item["Three"].ToString() ?? "";
  11557. if (threeCode.Length == 6)
  11558. {
  11559. start = threeCode.Substring(0, 3);
  11560. end = threeCode.Substring(3, 3);
  11561. if (threeCodeStr.Count == 0)
  11562. {
  11563. threeCodeStr.Add(start);
  11564. threeCodeStr.Add(end);
  11565. }
  11566. else
  11567. {
  11568. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11569. {
  11570. threeCodeStr.Add(end);
  11571. }
  11572. else
  11573. {
  11574. threeCodeStr.Add(start);
  11575. threeCodeStr.Add(end);
  11576. }
  11577. }
  11578. }
  11579. //处理机票信息
  11580. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11581. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11582. if (start_Object == null)
  11583. {
  11584. start_Object = new Res_ThreeCode()
  11585. {
  11586. AirPort = empty,
  11587. AirPort_En = empty,
  11588. City = empty,
  11589. Country = empty,
  11590. Four = empty,
  11591. Three = empty,
  11592. };
  11593. }
  11594. if (end_Object == null)
  11595. {
  11596. end_Object = new Res_ThreeCode()
  11597. {
  11598. AirPort = empty,
  11599. AirPort_En = empty,
  11600. City = empty,
  11601. Country = empty,
  11602. Four = empty,
  11603. Three = empty,
  11604. };
  11605. }
  11606. //机型判断
  11607. string airModel = item["AirModel"].ToString();
  11608. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11609. string flightTime = item["FlightTime"].ToString();
  11610. if (flightTime!.Contains(":"))
  11611. {
  11612. flightTime = flightTime.Replace(":", "小时");
  11613. flightTime += "分钟";
  11614. }
  11615. if (flightTime.Contains("H"))
  11616. {
  11617. flightTime = flightTime.Replace("H", "小时");
  11618. }
  11619. if (flightTime.Contains("M"))
  11620. {
  11621. flightTime = flightTime.Replace("M", "分钟");
  11622. }
  11623. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11624. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11625. {
  11626. flightTime = flightDataTime.Hour > 0
  11627. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11628. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11629. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11630. }
  11631. //航班号
  11632. string flightcode = item["Fliagtcode"].ToString();
  11633. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11634. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11635. if (aircompany == null)
  11636. {
  11637. aircompany = new Res_AirCompany
  11638. {
  11639. CnName = hsEmpty,
  11640. EnName = hsEmpty,
  11641. ShortCode = hsEmpty,
  11642. };
  11643. }
  11644. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11645. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11646. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11647. if (isTrade)
  11648. {
  11649. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11650. }
  11651. else
  11652. {
  11653. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11654. }
  11655. }
  11656. chiarr.Add(new Grp_ApprovalTravelDetails
  11657. {
  11658. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11659. CreateTime = DateTime.Now,
  11660. CreateUserId = dto.Userid,
  11661. ParentId = 0,
  11662. Details = trip
  11663. });
  11664. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11665. var last = threeCodeStr.Last();
  11666. foreach (var item in threeCodeStr)
  11667. {
  11668. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11669. if (item.Equals(last))
  11670. {
  11671. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11672. }
  11673. }
  11674. cityPath = cityPath.Trim('-');
  11675. }
  11676. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11677. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11678. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11679. appro.Diid = dto.Diid;
  11680. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11681. appro.Id = thisId;
  11682. appro.CreateUserId = dto.Userid;
  11683. appro.CreateTime = DateTime.Now;
  11684. foreach (var item in gwinfo)
  11685. {
  11686. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11687. chi.Details = "拜访" + item.Client;
  11688. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11689. {
  11690. chi.Details += "," + item.ReqSample;
  11691. }
  11692. chi.ParentId = thisId;
  11693. chi.Time = item.Time;
  11694. chiarr.Add(chi);
  11695. }
  11696. if (chiarr.Count < 5)
  11697. {
  11698. for (int j = chiarr.Count; j < 5; j++)
  11699. {
  11700. chiarr.Add(new
  11701. Grp_ApprovalTravelDetails());
  11702. }
  11703. }
  11704. resultArr.Add(new
  11705. {
  11706. appro.Id,
  11707. appro.Date,
  11708. appro.Diid,
  11709. chiList = chiarr.Select(x1 => new
  11710. {
  11711. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11712. x1.Details,
  11713. x1.ParentId,
  11714. x1.Id
  11715. })
  11716. });
  11717. }
  11718. _sqlSugar.CommitTran();
  11719. jw = JsonView(true, "生成成功!", resultArr);
  11720. }
  11721. catch (Exception ex)
  11722. {
  11723. jw.Code = 400;
  11724. jw.Msg = "生成失败!" + ex.Message;
  11725. }
  11726. return Ok(jw);
  11727. }
  11728. /// <summary>
  11729. /// 报批行程word导出
  11730. /// </summary>
  11731. /// <param name="dto"></param>
  11732. /// <returns></returns>
  11733. [HttpPost]
  11734. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11735. {
  11736. var jw = JsonView(false);
  11737. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11738. if (group == null)
  11739. {
  11740. jw.Msg = "暂无该团组!";
  11741. return Ok(jw);
  11742. }
  11743. //模板路径
  11744. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11745. //载入模板
  11746. Document doc = new Document(tempPath);
  11747. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11748. //获取所填表格的序数
  11749. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11750. Aspose.Words.Tables.Row titleRowClone = null;
  11751. Aspose.Words.Tables.Row CenterRowClone = null;
  11752. int index = 0;
  11753. int indexChi = 0;
  11754. int SetIndex = 0;
  11755. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11756. //获取数据,放到datatable
  11757. foreach (var item in ApprovalTravelArr)
  11758. {
  11759. if (index > 0)
  11760. {
  11761. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11762. tableOne.AppendChild(titleRowClone);
  11763. }
  11764. var textTime = item.Date;
  11765. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11766. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11767. SetIndex++;
  11768. if (ChiRep.Count > 0)
  11769. {
  11770. foreach (var itemChi in ChiRep)
  11771. {
  11772. var txtTime = itemChi.Time;
  11773. var txtDetail = itemChi.Details;
  11774. if (indexChi > 0)
  11775. {
  11776. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11777. tableOne.AppendChild(CenterRowClone);
  11778. }
  11779. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11780. {
  11781. SetCells(tableOne, doc, SetIndex, 0, "");
  11782. SetCells(tableOne, doc, SetIndex, 1, "");
  11783. indexChi++;
  11784. SetIndex++;
  11785. break;
  11786. }
  11787. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11788. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11789. indexChi++;
  11790. SetIndex++;
  11791. }
  11792. }
  11793. else
  11794. {
  11795. if (indexChi > 0)
  11796. {
  11797. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11798. tableOne.AppendChild(CenterRowClone);
  11799. }
  11800. SetCells(tableOne, doc, SetIndex, 0, "");
  11801. SetCells(tableOne, doc, SetIndex, 1, "");
  11802. indexChi++;
  11803. SetIndex++;
  11804. }
  11805. index++;
  11806. }
  11807. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11808. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11809. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11810. jw.Code = 200;
  11811. jw.Msg = "";
  11812. return Ok(jw);
  11813. }
  11814. private string intToString(int numberVal)
  11815. {
  11816. string numberval = numberVal.ToString();
  11817. Dictionary<char, string> Number = new Dictionary<char, string>();
  11818. Number.Add('1', "一");
  11819. Number.Add('2', "二");
  11820. Number.Add('3', "三");
  11821. Number.Add('4', "四");
  11822. Number.Add('5', "五");
  11823. Number.Add('6', "六");
  11824. Number.Add('7', "七");
  11825. Number.Add('8', "八");
  11826. Number.Add('9', "九");
  11827. string stringNumberVal = string.Empty;
  11828. for (int i = 0; i < numberval.Length; i++)
  11829. {
  11830. if (i == 0)
  11831. {
  11832. stringNumberVal += Number[numberval[i]];
  11833. }
  11834. else if (i >= 1)
  11835. {
  11836. if (numberval[i] == '0')
  11837. {
  11838. stringNumberVal = "十";
  11839. }
  11840. else
  11841. {
  11842. stringNumberVal += "十" + Number[numberval[i]];
  11843. }
  11844. }
  11845. }
  11846. return stringNumberVal;
  11847. }
  11848. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11849. {
  11850. //获取table中的某个单元格,从0开始
  11851. Cell lshCell = table.Rows[rows].Cells[cells];
  11852. //将单元格中段落移除
  11853. foreach (Node item in lshCell.Paragraphs)
  11854. {
  11855. lshCell.Paragraphs.Remove(item);
  11856. }
  11857. if (val.Contains("\r\n"))
  11858. {
  11859. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11860. foreach (var item in spArr)
  11861. {
  11862. //新建一个段落
  11863. Paragraph p = new Paragraph(doc);
  11864. var r = new Run(doc, item);
  11865. //把设置的值赋给之前新建的段落
  11866. p.AppendChild(r);
  11867. //将此段落加到单元格内
  11868. lshCell.AppendChild(p);
  11869. }
  11870. }
  11871. else
  11872. {
  11873. //新建一个段落
  11874. Paragraph p = new Paragraph(doc);
  11875. var r = new Run(doc, val);
  11876. //把设置的值赋给之前新建的段落
  11877. p.AppendChild(r);
  11878. //将此段落加到单元格内
  11879. lshCell.AppendChild(p);
  11880. }
  11881. }
  11882. [HttpPost]
  11883. public async Task<IActionResult> ServerHttp(string paramStr)
  11884. {
  11885. paramStr = paramStr.TrimEnd('\'');
  11886. paramStr = paramStr.TrimStart('\'');
  11887. JsonView jw = JsonView(false);
  11888. JObject param = JObject.Parse(paramStr);
  11889. if (!param.ContainsKey("url"))
  11890. {
  11891. jw.Msg = "url null";
  11892. return Ok(jw);
  11893. }
  11894. string url = param["url"]!.ToString();
  11895. var methon = "get";
  11896. Dictionary<string, string> bodyValues = null;
  11897. Dictionary<string, string> headValues = null;
  11898. if (param.ContainsKey("methon"))
  11899. {
  11900. methon = param["methon"]!.ToString();
  11901. }
  11902. if (param.ContainsKey("header"))
  11903. {
  11904. var header = param["header"]!.ToString();
  11905. JObject headerJobject = JObject.Parse(header);
  11906. headValues = new Dictionary<string, string>();
  11907. foreach (JProperty item in headerJobject.Properties())
  11908. {
  11909. var value = item.Value.ToString();
  11910. var head = item.Path;
  11911. headValues.Add(head, value);
  11912. }
  11913. }
  11914. if (param.ContainsKey("body"))
  11915. {
  11916. var body = param["body"]!.ToString();
  11917. bodyValues = new Dictionary<string, string>();
  11918. JObject bodyJobject = JObject.Parse(body);
  11919. foreach (JProperty item in bodyJobject.Properties())
  11920. {
  11921. var value = item.Value.ToString();
  11922. var head = item.Path;
  11923. bodyValues.Add(head, value);
  11924. }
  11925. }
  11926. HttpClient client = new HttpClient();
  11927. string responseString = string.Empty;
  11928. if (param.ContainsKey("isJson"))
  11929. {
  11930. }
  11931. if (headValues != null)
  11932. {
  11933. foreach (var item in headValues.Keys)
  11934. {
  11935. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11936. }
  11937. }
  11938. try
  11939. {
  11940. if (methon == "get")
  11941. {
  11942. responseString = await client.GetStringAsync(url);
  11943. }
  11944. else if (methon == "post")
  11945. {
  11946. if (bodyValues == null)
  11947. {
  11948. jw.Msg = "methon post body null";
  11949. return Ok(jw);
  11950. }
  11951. // 数据转化为 key=val 格式
  11952. var content = new FormUrlEncodedContent(bodyValues);
  11953. var response = await client.PostAsync(url, content);
  11954. // 获取数据
  11955. responseString = await response.Content.ReadAsStringAsync();
  11956. }
  11957. else
  11958. {
  11959. jw.Msg = "methon error";
  11960. }
  11961. jw = JsonView(true, "success", responseString);
  11962. }
  11963. catch (Exception ex)
  11964. {
  11965. jw.Msg = "error " + ex.Message;
  11966. jw.Data = ex.StackTrace;
  11967. }
  11968. finally
  11969. {
  11970. client.Dispose();
  11971. }
  11972. return Ok(jw);
  11973. }
  11974. #endregion
  11975. // /// <summary>
  11976. // ///
  11977. // /// </summary>
  11978. // /// <param name="_dto"></param>
  11979. // /// <returns></returns>
  11980. // [HttpPost]
  11981. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11982. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11983. // {
  11984. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11985. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11986. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11987. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11988. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11989. // dic_psg.Add("客人", 974);
  11990. // dic_psg.Add("司机", 975);
  11991. // dic_psg.Add("导游", 976);
  11992. // dic_psg.Add("公司内部人员", 977);
  11993. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11994. // foreach (var item in list_visa)
  11995. // {
  11996. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11997. // temp.Id = item.Id;
  11998. // temp.DIId = item.DIId;
  11999. // temp.VisaClient = item.VisaClient;
  12000. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  12001. // temp.VisaCurrency = item.VisaCurrency;
  12002. // temp.IsThird = item.IsThird;
  12003. // if (dic_psg.ContainsKey(item.PassengerType))
  12004. // {
  12005. // temp.PassengerType = dic_psg[item.PassengerType];
  12006. // }
  12007. // else {
  12008. // temp.PassengerType = -1;
  12009. // }
  12010. // temp.VisaNumber = item.VisaNumber;
  12011. // temp.VisaFreeNumber = item.VisaFreeNumber;
  12012. // temp.CreateUserId = item.Operators;
  12013. // DateTime dt_ct;
  12014. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  12015. // if (b_ct)
  12016. // {
  12017. // temp.CreateTime = dt_ct;
  12018. // }
  12019. // else
  12020. // {
  12021. // temp.CreateTime = DateTime.Now;
  12022. // }
  12023. // temp.DeleteTime = "";
  12024. // temp.DeleteUserId = 0;
  12025. // temp.Remark = item.Remark;
  12026. // if (string.IsNullOrEmpty(temp.Remark)) {
  12027. // temp.Remark = "";
  12028. // }
  12029. // temp.IsDel = item.IsDel;
  12030. // temp.VisaDescription = item.VisaAttachment;
  12031. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  12032. //([Id]
  12033. // ,[DIId]
  12034. // ,[VisaClient]
  12035. // ,[VisaPrice]
  12036. // ,[VisaCurrency]
  12037. // ,[IsThird]
  12038. // ,[PassengerType]
  12039. // ,[VisaNumber]
  12040. // ,[VisaFreeNumber]
  12041. // ,[CreateUserId]
  12042. // ,[CreateTime]
  12043. // ,[DeleteTime]
  12044. // ,[DeleteUserId]
  12045. // ,[Remark]
  12046. // ,[IsDel]
  12047. // ,[visaDescription])
  12048. // VALUES
  12049. // ({0},{1},'{2}',{3},{4}
  12050. //,{5},{6},{7},{8},{9}
  12051. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  12052. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  12053. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  12054. //);
  12055. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  12056. // }
  12057. // return Ok(JsonView(true, "操作成功!"));
  12058. // }
  12059. /// <summary>
  12060. /// 123132123
  12061. /// </summary>
  12062. /// <param name="_dto"></param>
  12063. /// <returns></returns>
  12064. [HttpPost]
  12065. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12066. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12067. {
  12068. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12069. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  12070. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  12071. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12072. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  12073. dicDetail.Add(789, 1034);
  12074. dicDetail.Add(790, 1035);
  12075. dicDetail.Add(791, 1036);
  12076. dicDetail.Add(792, 1037);
  12077. dicDetail.Add(793, 1038);
  12078. dicDetail.Add(794, 1039);
  12079. dicDetail.Add(795, 1040);
  12080. dicDetail.Add(796, 1041);
  12081. dicDetail.Add(797, 1042);
  12082. dicDetail.Add(798, 1043);
  12083. dicDetail.Add(801, 1044);
  12084. dicDetail.Add(802, 1045);
  12085. dicDetail.Add(803, 1046);
  12086. Dictionary<int, int> dic = new Dictionary<int, int>();
  12087. dic.Add(806, 1027);
  12088. dic.Add(807, 1028);
  12089. dic.Add(808, 1029);
  12090. dic.Add(809, 1030);
  12091. dic.Add(810, 1031);
  12092. dic.Add(811, 1032);
  12093. dic.Add(812, 1033);
  12094. foreach (var item in list_visa)
  12095. {
  12096. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  12097. temp.Coefficient = item.coefficient;
  12098. DateTime dtCrt;
  12099. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  12100. if (b1)
  12101. {
  12102. temp.CreateTime = dtCrt;
  12103. }
  12104. else
  12105. {
  12106. temp.CreateTime = DateTime.Now;
  12107. }
  12108. temp.CreateUserId = item.Operators;
  12109. temp.DeleteTime = "";
  12110. temp.DeleteUserId = 0;
  12111. temp.DiId = int.Parse(item.DIID);
  12112. temp.FilePath = item.FilePath;
  12113. temp.IsDel = item.IsDel;
  12114. temp.Price = item.Price;
  12115. temp.PriceCount = 1;
  12116. temp.PriceCurrency = item.Currency;
  12117. int detailId = 0;
  12118. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  12119. {
  12120. detailId = dicDetail[item.PriceTypeDetail];
  12121. }
  12122. temp.PriceDetailType = detailId;
  12123. temp.PriceDt = DateTime.Now;
  12124. temp.PriceName = item.PriceName;
  12125. temp.PriceSum = item.Price;
  12126. int tid = 0;
  12127. if (dic.ContainsKey(item.PriceType))
  12128. {
  12129. tid = dic[item.PriceType];
  12130. }
  12131. temp.PriceType = tid;
  12132. temp.Remark = item.Remark;
  12133. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  12134. }
  12135. return Ok(JsonView(true, "操作成功!"));
  12136. }
  12137. }
  12138. }