GroupsController.cs 608 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. using NPOI.HSSF.Util;
  78. using NPOI.HSSF.UserModel;
  79. using NPOI.SS.UserModel;
  80. using NPOI.XSSF.UserModel;
  81. using MySqlX.XDevAPI.Relational;
  82. using SqlSugar.Extensions;
  83. using Table = Aspose.Words.Tables.Table;
  84. using Aspose.Cells.Tables;
  85. using NPOI.SS.Util;
  86. using RestSharp.Extensions;
  87. using Microsoft.AspNetCore.WebUtilities;
  88. using K4os.Compression.LZ4.Internal;
  89. using static Pipelines.Sockets.Unofficial.SocketConnection;
  90. using System.Diagnostics.PerformanceData;
  91. using System.Drawing.Printing;
  92. namespace OASystem.API.Controllers
  93. {
  94. /// <summary>
  95. /// 团组相关
  96. /// </summary>
  97. //[Authorize]
  98. [Route("api/[controller]/[action]")]
  99. public class GroupsController : ControllerBase
  100. {
  101. private readonly GrpScheduleRepository _grpScheduleRep;
  102. private readonly IMapper _mapper;
  103. private readonly DelegationInfoRepository _groupRepository;
  104. private readonly TaskAssignmentRepository _taskAssignmentRep;
  105. private readonly AirTicketResRepository _airTicketResRep;
  106. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  107. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  108. private readonly DelegationEnDataRepository _delegationEnDataRep;
  109. private readonly DelegationVisaRepository _delegationVisaRep;
  110. private readonly VisaPriceRepository _visaPriceRep;
  111. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  112. private readonly HotelPriceRepository _hotelPriceRep;
  113. private readonly CustomersRepository _customersRep;
  114. private readonly MessageRepository _message;
  115. private readonly SqlSugarClient _sqlSugar;
  116. private readonly TourClientListRepository _tourClientListRep;
  117. private readonly TeamRateRepository _teamRateRep;
  118. #region 成本相关
  119. private readonly CheckBoxsRepository _checkBoxs;
  120. private readonly GroupCostRepository _GroupCostRepository;
  121. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  122. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  123. #endregion
  124. private readonly SetDataRepository _setDataRep;
  125. private string url;
  126. private string path;
  127. private readonly EnterExitCostRepository _enterExitCostRep;
  128. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  129. private readonly UsersRepository _usersRep;
  130. private readonly IJuHeApiService _juHeApi;
  131. private readonly InvertedListRepository _invertedListRep;
  132. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  133. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  134. private readonly ThreeCodeRepository _threeCodeRepository;
  135. private readonly HotelInquiryRepository _hotelInquiryRep;
  136. private readonly FeeAuditRepository _feeAuditRep;
  137. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  138. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  139. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  140. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  141. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  142. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  143. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  144. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  145. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  146. {
  147. _mapper = mapper;
  148. _grpScheduleRep = grpScheduleRep;
  149. _groupRepository = groupRepository;
  150. _taskAssignmentRep = taskAssignmentRep;
  151. _airTicketResRep = airTicketResRep;
  152. _sqlSugar = sqlSugar;
  153. url = AppSettingsHelper.Get("ExcelBaseUrl");
  154. path = AppSettingsHelper.Get("ExcelBasePath");
  155. if (!System.IO.Directory.Exists(path))
  156. {
  157. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  158. }
  159. _decreasePaymentsRep = decreasePaymentsRep;
  160. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  161. _delegationEnDataRep = delegationEnDataRep;
  162. _enterExitCostRep = enterExitCostRep;
  163. _delegationVisaRep = delegationVisaRep;
  164. _message = message;
  165. _visaPriceRep = visaPriceRep;
  166. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  167. _checkBoxs = checkBoxs;
  168. _GroupCostRepository = GroupCostRepository;
  169. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  170. _GroupCostParameterRepository = GroupCostParameterRepository;
  171. _hotelPriceRep = hotelPriceRep;
  172. _customersRep = customersRep;
  173. _setDataRep = setDataRep;
  174. _tourClientListRep = tourClientListRep;
  175. _teamRateRep = teamRateRep;
  176. _hubContext = hubContext;
  177. _usersRep = usersRep;
  178. _juHeApi = juHeApi;
  179. _invertedListRep = invertedListRep;
  180. _visaFeeInfoRep = visaFeeInfoRep;
  181. _ticketBlackCodeRep = ticketBlackCodeRep;
  182. _hotelInquiryRep = hotelInquiryRep;
  183. _threeCodeRepository = threeCodeRepository;
  184. _feeAuditRep = feeAuditRep;
  185. }
  186. #region 流程管控
  187. /// <summary>
  188. /// 获取团组流程管控信息
  189. /// </summary>
  190. /// <param name="paras">参数Json字符串</param>
  191. /// <returns></returns>
  192. [HttpPost]
  193. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  194. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  195. {
  196. if (string.IsNullOrEmpty(_jsonDto.Paras))
  197. {
  198. return Ok(JsonView(false, "参数为空"));
  199. }
  200. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  201. if (_ScheduleDto != null)
  202. {
  203. if (_ScheduleDto.SearchType == 2)//获取列表
  204. {
  205. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  206. return Ok(JsonView(_grpScheduleViewList));
  207. }
  208. else//获取对象
  209. {
  210. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  211. if (_grpScheduleView != null)
  212. {
  213. return Ok(JsonView(_grpScheduleView));
  214. }
  215. }
  216. }
  217. else
  218. {
  219. return Ok(JsonView(false, "参数反序列化失败"));
  220. }
  221. return Ok(JsonView(false, "暂无数据!"));
  222. }
  223. /// <summary>
  224. /// 修改团组流程管控详细表数据
  225. /// </summary>
  226. /// <param name="paras"></param>
  227. /// <returns></returns>
  228. [HttpPost]
  229. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  230. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  231. {
  232. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  233. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  234. .SetColumns(it => it.Duty == _detail.Duty)
  235. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  236. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  237. .SetColumns(it => it.JobContent == _detail.JobContent)
  238. .SetColumns(it => it.Remark == _detail.Remark)
  239. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  240. .Where(s => s.Id == dto.Id)
  241. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  242. .ExecuteCommandAsync();
  243. if (result > 0)
  244. {
  245. return Ok(JsonView(true, "保存成功!"));
  246. }
  247. return Ok(JsonView(false, "保存失败!"));
  248. }
  249. /// <summary>
  250. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  251. /// </summary>
  252. /// <param name="dto"></param>
  253. /// <returns></returns>
  254. [HttpPost]
  255. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  256. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  257. {
  258. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  259. _detail.IsDel = 1;
  260. _detail.DeleteUserId = dto.Duty;
  261. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  262. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  263. .SetColumns(it => it.IsDel == _detail.IsDel)
  264. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  265. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  266. .Where(it => it.Id == dto.Id)
  267. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  268. //.WhereColumns(s => s.Id == dto.Id)
  269. .ExecuteCommandAsync();
  270. if (result > 0)
  271. {
  272. return Ok(JsonView(true, "删除成功!"));
  273. }
  274. return Ok(JsonView(false, "删除失败!"));
  275. }
  276. /// <summary>
  277. /// 增加团组流程管控详细表数据
  278. /// </summary>
  279. /// <param name="dto"></param>
  280. /// <returns></returns>
  281. [HttpPost]
  282. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  283. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  284. {
  285. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  286. if (DateTime.Now < _detail.ExpectBeginDt)
  287. {
  288. _detail.StepStatus = 0;
  289. }
  290. else
  291. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  292. _detail.StepStatus = 1;
  293. }
  294. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  295. if (result > 0)
  296. {
  297. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  298. return Ok(JsonView(true, "添加成功!", _result));
  299. }
  300. return Ok(JsonView(false, "添加失败!"));
  301. }
  302. #endregion
  303. #region 团组基本信息
  304. /// <summary>
  305. /// 接团信息列表
  306. /// </summary>
  307. /// <param name="dto">团组列表请求dto</param>
  308. /// <returns></returns>
  309. [HttpPost]
  310. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  311. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  312. {
  313. var groupData = await _groupRepository.GetGroupList(dto);
  314. if (groupData.Code != 0)
  315. {
  316. return Ok(JsonView(false, groupData.Msg));
  317. }
  318. return Ok(JsonView(groupData.Data));
  319. }
  320. /// <summary>
  321. /// 接团信息列表 Page
  322. /// </summary>
  323. /// <param name="dto">团组列表请求dto</param>
  324. /// <returns></returns>
  325. [HttpPost]
  326. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  327. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  328. {
  329. #region 参数验证
  330. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  331. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  332. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  333. #region 页面操作权限验证
  334. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  335. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  336. #endregion
  337. #endregion
  338. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  339. {
  340. string sqlWhere = string.Empty;
  341. if (dto.IsSure == 0) //未完成
  342. {
  343. sqlWhere += string.Format(@" And IsSure = 0");
  344. }
  345. else if (dto.IsSure == 1) //已完成
  346. {
  347. sqlWhere += string.Format(@" And IsSure = 1");
  348. }
  349. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  350. {
  351. string tj = dto.SearchCriteria;
  352. 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}%')",
  353. tj, tj, tj, tj, tj);
  354. }
  355. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  356. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  357. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  358. JietuanOperator,IsSure,CreateTime
  359. From (
  360. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  361. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  362. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  363. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  364. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  365. From Grp_DelegationInfo gdi
  366. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  367. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  368. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  369. Where gdi.IsDel = 0 {0}
  370. ) temp", sqlWhere);
  371. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  372. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  373. #region 处理所属部门
  374. /*
  375. * 1.sq 和 gyy 等显示 市场部
  376. * 2.王鸽和主管及张总还有管理员号统一国交部
  377. * 2-1. 4 管理员 ,21 张海麟
  378. */
  379. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  380. List<int> userIds1 = new List<int>() { 4, 21 };
  381. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  382. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  383. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  384. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  385. .ToList();
  386. foreach (var item in _DelegationList)
  387. {
  388. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  389. }
  390. #endregion
  391. var _view = new
  392. {
  393. PageFuncAuth = pageFunAuthView,
  394. Data = _DelegationList
  395. };
  396. return Ok(JsonView(true, "查询成功!", _view, total));
  397. }
  398. else
  399. {
  400. return Ok(JsonView(false, "查询失败"));
  401. }
  402. }
  403. /// <summary>
  404. /// 团组列表
  405. /// </summary>
  406. /// <returns></returns>
  407. [HttpPost]
  408. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  409. {
  410. #region 参数验证
  411. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  412. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  413. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  414. #region 页面操作权限验证
  415. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  416. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  417. #endregion
  418. #endregion
  419. if (dto.PortType != 1 && dto.PortType != 2)
  420. {
  421. return Ok(JsonView(false, "查询失败!"));
  422. }
  423. string orderbyStr = "order by gdi.CreateTime Desc";
  424. string sqlWhere = string.Empty;
  425. if (dto.IsSure == 0) //未完成
  426. {
  427. sqlWhere += string.Format(@" And IsSure = 0");
  428. }
  429. else if (dto.IsSure == 1) //已完成
  430. {
  431. sqlWhere += string.Format(@" And IsSure = 1");
  432. }
  433. //团组类型
  434. if (dto.TeamDid > 0)
  435. {
  436. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  437. }
  438. //团组名称
  439. if (!string.IsNullOrEmpty(dto.TeamName))
  440. {
  441. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  442. }
  443. //客户名称
  444. if (!string.IsNullOrEmpty(dto.ClientName))
  445. {
  446. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  447. }
  448. //客户单位
  449. if (!string.IsNullOrEmpty(dto.ClientUnit))
  450. {
  451. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  452. }
  453. //出访时间
  454. if (!string.IsNullOrEmpty(dto.visitDataTime))
  455. {
  456. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  457. orderbyStr = "order by gdi.VisitDate";
  458. }
  459. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  460. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  461. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  462. JietuanOperator,IsSure,CreateTime
  463. From (
  464. Select row_number() over({0}) as Row_Number,
  465. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  466. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  467. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  468. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  469. From Grp_DelegationInfo gdi
  470. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  471. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  472. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  473. Where gdi.IsDel = 0 {1}
  474. ) temp ", orderbyStr, sqlWhere);
  475. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  476. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  477. #region 处理所属部门
  478. /*
  479. * 1.sq 和 gyy 等显示 市场部
  480. * 2.王鸽和主管及张总还有管理员号统一国交部
  481. * 2-1. 4 管理员 ,21 张海麟
  482. */
  483. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  484. List<int> userIds1 = new List<int>() { 4, 21 };
  485. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  486. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  487. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  488. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  489. .ToList();
  490. foreach (var item in _DelegationList)
  491. {
  492. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  493. }
  494. #endregion
  495. var _view = new
  496. {
  497. PageFuncAuth = pageFunAuthView,
  498. Data = _DelegationList
  499. };
  500. return Ok(JsonView(true, "查询成功!", _view, total));
  501. }
  502. /// <summary>
  503. /// 接团信息详情
  504. /// </summary>
  505. /// <param name="dto">团组info请求dto</param>
  506. /// <returns></returns>
  507. [HttpPost]
  508. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  509. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  510. {
  511. var groupData = await _groupRepository.GetGroupInfo(dto);
  512. if (groupData.Code != 0)
  513. {
  514. return Ok(JsonView(false, groupData.Msg));
  515. }
  516. return Ok(JsonView(groupData.Data));
  517. }
  518. /// <summary>
  519. /// 接团信息 编辑添加
  520. /// 基础信息数据源
  521. /// </summary>
  522. /// <param name="dto"></param>
  523. /// <returns></returns>
  524. [HttpPost]
  525. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  526. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  527. {
  528. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  529. if (groupData.Code != 0)
  530. {
  531. return Ok(JsonView(false, groupData.Msg));
  532. }
  533. return Ok(JsonView(groupData.Data));
  534. }
  535. /// <summary>
  536. /// 接团信息 操作(增改)
  537. /// </summary>
  538. /// <param name="dto"></param>
  539. /// <returns></returns>
  540. [HttpPost]
  541. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  542. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  543. {
  544. try
  545. {
  546. var groupData = await _groupRepository.GroupOperation(dto);
  547. if (groupData.Code != 0)
  548. {
  549. return Ok(JsonView(false, groupData.Msg));
  550. }
  551. int diId = 0;
  552. //添加时 默认加入团组汇率
  553. if (dto.Status == 1) //添加
  554. {
  555. diId = groupData.Data;
  556. //添加默认币种
  557. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  558. //默认分配权限
  559. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  560. //消息提示 王鸽 主管号
  561. List<int> _managerIds = new List<int>() { 22, 32 };
  562. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  563. if (userIds.Count > 0)
  564. {
  565. userIds.Add(208);
  566. //创建团组管控
  567. GroupStepForDelegation.CreateWorkStep(diId);
  568. //发送消息
  569. string groupName = dto.TeamName;
  570. string createGroupUser = string.Empty;
  571. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  572. if (userInfo != null) createGroupUser = userInfo.CnName;
  573. string title = $"系统通知";
  574. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  575. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  576. }
  577. //默认创建倒推表
  578. await _invertedListRep._Create(dto.UserId, diId);
  579. }
  580. else if (dto.Status == 2)
  581. {
  582. diId = dto.Id;
  583. }
  584. return Ok(JsonView(true, "操作成功!", diId));
  585. }
  586. catch (Exception ex)
  587. {
  588. Logs("[response]" + JsonConvert.SerializeObject(dto));
  589. Logs(ex.Message);
  590. return Ok(JsonView(false, ex.Message));
  591. }
  592. }
  593. /// <summary>
  594. /// 接团流程操作(增改)
  595. /// 安卓端使用 建团时添加客户名单
  596. /// </summary>
  597. /// <param name="dto"></param>
  598. /// <returns></returns>
  599. [HttpPost]
  600. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  601. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  602. {
  603. try
  604. {
  605. #region 参数验证
  606. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  607. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  608. #region 页面操作权限验证
  609. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  610. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  611. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  612. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  613. #endregion
  614. #endregion
  615. _sqlSugar.BeginTran();
  616. var _dto = new GroupOperationDto();
  617. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  618. var groupData = await _groupRepository.GroupOperation(_dto);
  619. if (groupData.Code != 0)
  620. {
  621. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  622. }
  623. int diId = 0;
  624. //添加时 默认加入团组汇率
  625. if (dto.Status == 1) //添加
  626. {
  627. diId = groupData.Data;
  628. //添加默认币种
  629. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  630. //默认分配权限
  631. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  632. //消息提示 王鸽 主管号
  633. List<int> _managerIds = new List<int>() { 22, 32 };
  634. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  635. if (userIds.Count > 0)
  636. {
  637. userIds.Add(208);
  638. //创建团组管控
  639. GroupStepForDelegation.CreateWorkStep(diId);
  640. //发送消息
  641. string groupName = dto.TeamName;
  642. string createGroupUser = string.Empty;
  643. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  644. if (userInfo != null) createGroupUser = userInfo.CnName;
  645. string title = $"系统通知";
  646. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  647. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  648. }
  649. }
  650. if (dto.Status == 2)
  651. {
  652. diId = dto.Id;
  653. if (diId == 0)
  654. {
  655. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  656. }
  657. }
  658. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  659. if (viewData.Code != 0)
  660. {
  661. _sqlSugar.RollbackTran();
  662. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  663. }
  664. _sqlSugar.CommitTran();
  665. return Ok(JsonView(true, "添加成功"));
  666. }
  667. catch (Exception ex)
  668. {
  669. _sqlSugar.RollbackTran();
  670. return Ok(JsonView(false, ex.Message));
  671. }
  672. }
  673. /// <summary>
  674. /// 接团信息 操作(删除)
  675. /// </summary>
  676. /// <param name="dto"></param>
  677. /// <returns></returns>
  678. [HttpPost]
  679. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  680. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  681. {
  682. try
  683. {
  684. var groupData = await _groupRepository.GroupDel(dto);
  685. if (groupData.Code != 0)
  686. {
  687. return Ok(JsonView(false, groupData.Msg));
  688. }
  689. return Ok(JsonView(true));
  690. }
  691. catch (Exception ex)
  692. {
  693. Logs("[response]" + JsonConvert.SerializeObject(dto));
  694. Logs(ex.Message);
  695. return Ok(JsonView(false, ex.Message));
  696. }
  697. }
  698. /// <summary>
  699. /// 获取团组销售报价号
  700. /// 团组添加时 使用
  701. /// </summary>
  702. /// <returns></returns>
  703. [HttpPost]
  704. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  705. public async Task<IActionResult> GetGroupSalesQuoteNo()
  706. {
  707. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  708. if (groupData.Code != 0)
  709. {
  710. return Ok(JsonView(false, groupData.Msg));
  711. }
  712. object salesQuoteNo = new
  713. {
  714. SalesQuoteNo = groupData.Data
  715. };
  716. return Ok(JsonView(salesQuoteNo));
  717. }
  718. /// <summary>
  719. /// 设置确认出团
  720. /// </summary>
  721. /// <param name="dto"></param>
  722. /// <returns></returns>
  723. [HttpPost]
  724. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  725. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  726. {
  727. var groupData = await _groupRepository.ConfirmationGroup(dto);
  728. if (groupData.Code != 0)
  729. {
  730. return Ok(JsonView(false, groupData.Msg));
  731. }
  732. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  733. #region OA消息推送
  734. try
  735. {
  736. string groupName = groupInfo.TeamName;
  737. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  738. List<int> userIds = new List<int>();
  739. listUser.ForEach(s => userIds.Add(s.Id));
  740. string title = $"系统通知";
  741. string content = $"团组[{groupName}]已确认出团!";
  742. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  743. }
  744. catch (Exception ex)
  745. {
  746. }
  747. #endregion
  748. #region 应用推送
  749. try
  750. {
  751. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  752. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  753. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  754. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  755. {
  756. List<string> userList = new List<string>() { users.QiyeChatUserId };
  757. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  758. }
  759. }
  760. catch (Exception ex)
  761. {
  762. }
  763. #endregion
  764. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  765. return Ok(JsonView(true, "操作成功!", groupData.Data));
  766. }
  767. /// <summary>
  768. /// 获取团组名称data And 签证国别Data
  769. /// </summary>
  770. /// <param name="dto"></param>
  771. /// <returns></returns>
  772. [HttpPost]
  773. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  774. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  775. {
  776. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  777. if (groupData.Code != 0)
  778. {
  779. return Ok(JsonView(false, groupData.Msg));
  780. }
  781. return Ok(JsonView(groupData.Data));
  782. }
  783. /// <summary>
  784. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  785. /// </summary>
  786. /// <returns></returns>
  787. [HttpPost]
  788. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  789. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  790. {
  791. try
  792. {
  793. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  794. if (groupData.Code != 0)
  795. {
  796. return Ok(JsonView(false, groupData.Msg));
  797. }
  798. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  799. }
  800. catch (Exception ex)
  801. {
  802. return Ok(JsonView(false, "程序错误!"));
  803. throw;
  804. }
  805. }
  806. #endregion
  807. #region 团组&签证
  808. /// <summary>
  809. /// 根据团组Id获取签证客户信息List
  810. /// </summary>
  811. /// <param name="dto">请求dto</param>
  812. /// <returns></returns>
  813. [HttpPost]
  814. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  815. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  816. {
  817. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  818. if (groupData.Code != 0)
  819. {
  820. return Ok(JsonView(false, groupData.Msg));
  821. }
  822. return Ok(JsonView(groupData.Data));
  823. }
  824. /// <summary>
  825. /// IOS获取团组签证拍照上传进度01(团组列表)
  826. /// </summary>
  827. /// <param name="dto">请求dto</param>
  828. /// <returns></returns>
  829. [HttpPost]
  830. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  831. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  832. {
  833. if (dto == null)
  834. {
  835. return Ok(JsonView(false, "参数为空"));
  836. }
  837. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  838. return Ok(JsonView(visaList));
  839. }
  840. /// <summary>
  841. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  842. /// </summary>
  843. /// <returns></returns>
  844. [HttpPost]
  845. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  846. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  847. {
  848. if (dto == null)
  849. {
  850. return Ok(JsonView(false, "请求错误:"));
  851. }
  852. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  853. return Ok(JsonView(list));
  854. }
  855. /// <summary>
  856. /// IOS获取团组签证拍照上传进度03(相册)
  857. /// </summary>
  858. /// <returns></returns>
  859. [HttpPost]
  860. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  861. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  862. {
  863. if (dto == null)
  864. {
  865. return Ok(JsonView(false, "请求错误:"));
  866. }
  867. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  868. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  869. list.ForEach(s => s.url = url);
  870. return Ok(JsonView(list));
  871. }
  872. /// <summary>
  873. /// IOS获取团组签证拍照上传进度04(图片上传)
  874. /// </summary>
  875. /// <param name="dto"></param>
  876. /// <returns></returns>
  877. [HttpPost]
  878. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  879. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  880. {
  881. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  882. //if (!string.IsNullOrEmpty(result))
  883. //{
  884. //}
  885. //else {
  886. // return Ok(JsonView(false, "上传失败"));
  887. //}
  888. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  889. int sucNum = 0;
  890. try
  891. {
  892. foreach (var item in dto.base64DataList)
  893. {
  894. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  895. string result = decodeBase64ToImage(item, imageName);
  896. if (!string.IsNullOrEmpty(result))
  897. {
  898. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  899. pic.CreateUserId = dto.CreateUserId;
  900. pic.PicName = imageName;
  901. pic.PicPath = result;
  902. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  903. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  904. if (insertResult > 0)
  905. {
  906. sucNum++;
  907. }
  908. }
  909. }
  910. }
  911. catch (Exception ex)
  912. {
  913. return Ok(JsonView(false, ex.Message));
  914. }
  915. string msg = string.Format(@"成功上传{0}张", sucNum);
  916. return Ok(JsonView(true, msg));
  917. }
  918. private string decodeBase64ToImage(string base64DataURL, string imgName)
  919. {
  920. string filename = "";//声明一个string类型的相对路径
  921. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  922. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  923. try//会有异常抛出,try,catch一下
  924. {
  925. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  926. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  927. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  928. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  929. //文件名称
  930. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  931. //上传的文件的路径
  932. string filePath = "";
  933. if (!Directory.Exists(fileDir))
  934. {
  935. Directory.CreateDirectory(fileDir);
  936. }
  937. //上传的文件的路径
  938. filePath = fileDir + filename;
  939. //string url = HttpRuntime.AppDomainAppPath.ToString();
  940. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  941. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  942. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  943. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  944. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  945. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  946. ms.Close();//关闭当前流,并释放所有与之关联的资源
  947. bitmap.Dispose();
  948. }
  949. catch (Exception e)
  950. {
  951. string massage = e.Message;
  952. Logs("IOS图片上传Error:" + massage);
  953. //filename = e.Message;
  954. }
  955. return filename;//返回相对路径
  956. }
  957. /// <summary>
  958. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  959. /// </summary>
  960. /// <param name="dto"></param>
  961. /// <returns></returns>
  962. [HttpPost]
  963. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  964. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  965. {
  966. if (dto == null)
  967. {
  968. return Ok(JsonView(false, "请求错误:"));
  969. }
  970. string msg = "参数错误";
  971. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  972. {
  973. try
  974. {
  975. //_delegationVisaRep.BeginTran();
  976. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  977. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  978. .Where(s => s.Id == dto.visaProgressCustomerId)
  979. .ExecuteCommandAsync();
  980. if (updCount > 0 && dto.publishCode == 1)
  981. {
  982. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  983. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  984. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  985. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  986. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  987. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  988. if (groupData == null)
  989. {
  990. _delegationVisaRep.RollbackTran();
  991. }
  992. string title = string.Format(@"[签证进度更新]");
  993. string content = string.Format(@"测试文本");
  994. bool rst = await _message.AddMsg(new MessageDto()
  995. {
  996. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  997. IssuerId = dto.publisher,
  998. Title = title,
  999. Content = content,
  1000. ReleaseTime = DateTime.Now,
  1001. UIdList = new List<int> {
  1002. 234
  1003. }
  1004. });
  1005. if (rst)
  1006. {
  1007. return Ok(JsonView(true, "发送通知成功"));
  1008. }
  1009. }
  1010. //_delegationVisaRep.CommitTran();
  1011. }
  1012. catch (Exception)
  1013. {
  1014. //_delegationVisaRep.RollbackTran();
  1015. }
  1016. }
  1017. return Ok(JsonView(true, msg));
  1018. }
  1019. #endregion
  1020. #region 团组任务分配
  1021. /// <summary>
  1022. /// 团组任务分配初始化
  1023. /// </summary>
  1024. /// <param name="dto"></param>
  1025. /// <returns></returns>
  1026. [HttpPost]
  1027. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1028. public async Task<IActionResult> GetTaskAssignmen()
  1029. {
  1030. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1031. if (groupData.Code != 0)
  1032. {
  1033. return Ok(JsonView(false, groupData.Msg));
  1034. }
  1035. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1036. }
  1037. /// <summary>
  1038. /// 团组任务分配查询
  1039. /// </summary>
  1040. /// <param name="dto"></param>
  1041. /// <returns></returns>
  1042. [HttpPost]
  1043. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1044. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1045. {
  1046. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1047. if (groupData.Code != 0)
  1048. {
  1049. return Ok(JsonView(false, groupData.Msg));
  1050. }
  1051. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1052. }
  1053. /// <summary>
  1054. /// 团组任务分配操作
  1055. /// </summary>
  1056. /// <param name="dto"></param>
  1057. /// <returns></returns>
  1058. [HttpPost]
  1059. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1060. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1061. {
  1062. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1063. if (groupData.Code != 0)
  1064. {
  1065. return Ok(JsonView(false, groupData.Msg));
  1066. }
  1067. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1068. }
  1069. #endregion
  1070. #region 团组费用审核
  1071. /// <summary>
  1072. /// 费用审核
  1073. /// 团组列表 Page
  1074. /// </summary>
  1075. /// <param name="_dto">团组列表请求dto</param>
  1076. /// <returns></returns>
  1077. [HttpPost]
  1078. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1079. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1080. {
  1081. #region 参数验证
  1082. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1083. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1084. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1085. #region 页面操作权限验证
  1086. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1087. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1088. #endregion
  1089. #endregion
  1090. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1091. {
  1092. string sqlWhere = string.Empty;
  1093. if (_dto.IsSure == 0) //未完成
  1094. {
  1095. sqlWhere += string.Format(@" And IsSure = 0");
  1096. }
  1097. else if (_dto.IsSure == 1) //已完成
  1098. {
  1099. sqlWhere += string.Format(@" And IsSure = 1");
  1100. }
  1101. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1102. {
  1103. string tj = _dto.SearchCriteria;
  1104. 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}%')",
  1105. tj, tj, tj, tj, tj);
  1106. }
  1107. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1108. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1109. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1110. From (
  1111. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1112. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1113. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1114. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1115. From Grp_DelegationInfo gdi
  1116. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1117. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1118. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1119. Where gdi.IsDel = 0 {0}
  1120. ) temp ", sqlWhere);
  1121. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1122. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1123. var _view = new
  1124. {
  1125. PageFuncAuth = pageFunAuthView,
  1126. Data = _DelegationList
  1127. };
  1128. return Ok(JsonView(true, "查询成功!", _view, total));
  1129. }
  1130. else
  1131. {
  1132. return Ok(JsonView(false, "查询失败"));
  1133. }
  1134. }
  1135. /// <summary>
  1136. /// 获取团组费用审核
  1137. /// </summary>
  1138. /// <param name="paras">参数Json字符串</param>
  1139. /// <returns></returns>
  1140. [HttpPost]
  1141. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1142. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1143. {
  1144. try
  1145. {
  1146. #region 参数验证
  1147. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1148. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1149. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1150. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1151. #region 页面操作权限验证
  1152. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1153. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1154. #endregion
  1155. #endregion
  1156. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1157. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1158. #region 费用清单
  1159. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1160. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1161. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1162. List<Grp_CreditCardPayment> entityList = _groupRepository
  1163. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1164. .Where(exp.ToExpression())
  1165. .ToList();
  1166. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1167. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1168. /*
  1169. * 76://酒店预订
  1170. */
  1171. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1172. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1173. .ToListAsync();
  1174. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1175. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1176. .ToListAsync();
  1177. /*
  1178. * 79://车/导游地接
  1179. */
  1180. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1181. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1182. .ToListAsync();
  1183. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1184. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1185. .ToListAsync();
  1186. /*
  1187. * 80: //签证
  1188. */
  1189. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1190. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1191. .ToListAsync();
  1192. /*
  1193. *81: //邀请/公务活动
  1194. */
  1195. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1196. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1197. .ToListAsync();
  1198. /*
  1199. * 82: //团组客户保险
  1200. */
  1201. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1202. /*
  1203. * Lable = 85 机票预订
  1204. */
  1205. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1206. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1207. .ToListAsync();
  1208. /*
  1209. * 85 机票预定
  1210. */
  1211. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1212. /*
  1213. * 98 其他款项
  1214. */
  1215. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1216. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1217. .ToListAsync();
  1218. /*
  1219. * 285:收款退还
  1220. */
  1221. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1222. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1223. .ToListAsync();
  1224. /*
  1225. * 1015: //超支费用
  1226. */
  1227. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1228. /*
  1229. * 币种信息
  1230. */
  1231. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1232. /*
  1233. * 车/导游地接 费用类型
  1234. */
  1235. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1236. /*
  1237. * 车/导游地接 费用类型
  1238. */
  1239. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1240. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1241. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1242. /*
  1243. * 用户信息
  1244. */
  1245. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1246. /*
  1247. * 费用模块
  1248. */
  1249. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1250. string priceModule = string.Empty;
  1251. if (sdPriceName != null)
  1252. {
  1253. priceModule = sdPriceName.Name;
  1254. }
  1255. /*
  1256. * 成本信息
  1257. */
  1258. var groupCost = _groupRepository.Query<Grp_GroupCostParameter >(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1259. decimal _groupRate = 0.0000M;
  1260. string _groupCurrencyCode = "-";
  1261. if (groupCost != null)
  1262. {
  1263. _groupRate = groupCost.Rate;
  1264. if (int.TryParse(groupCost.Currency, out int _currency))
  1265. {
  1266. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1267. }
  1268. }
  1269. string costContentSql = $"Select * From Grp_GroupCost";
  1270. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1271. //处理日期为空的天数
  1272. for (int i = 0; i < groupCostDetails.Count; i++)
  1273. if (i != 0)
  1274. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1275. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1276. /*
  1277. * 处理详情数据
  1278. */
  1279. foreach (var entity in entityList)
  1280. {
  1281. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1282. _detail.Id = entity.Id;
  1283. _detail.PriceName = priceModule;
  1284. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1285. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1286. /*
  1287. * 应付款金额
  1288. */
  1289. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1290. string PaymentCurrency_WaitPay = "Unknown";
  1291. string hotelCurrncyCode = "Unknown";
  1292. string hotelCurrncyName = "Unknown";
  1293. if (sdPaymentCurrency_WaitPay != null)
  1294. {
  1295. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1296. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1297. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1298. if (hotelCurrncyCode.Equals("CNY"))
  1299. {
  1300. entity.DayRate = 1.0000M;
  1301. }
  1302. }
  1303. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1304. /*
  1305. * 此次付款金额
  1306. */
  1307. decimal CurrPayStr = 0;
  1308. if (entity.PayPercentage == 0)
  1309. {
  1310. if (entity.PayThenMoney != 0)
  1311. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1312. }
  1313. else
  1314. {
  1315. if (entity.PayMoney != 0)
  1316. {
  1317. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1318. }
  1319. }
  1320. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1321. /*
  1322. * 剩余尾款
  1323. */
  1324. decimal BalanceStr = 0;
  1325. if (CurrPayStr != 0)
  1326. {
  1327. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1328. BalanceStr = 0;
  1329. else
  1330. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1331. }
  1332. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1333. /*
  1334. * Bus名称
  1335. */
  1336. _detail.BusName = "待增加";
  1337. /*
  1338. *费用所属
  1339. */
  1340. switch (entity.CTable)
  1341. {
  1342. case 76://酒店预订
  1343. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1344. if (hotelReservations != null)
  1345. {
  1346. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1347. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1348. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1349. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1350. /*
  1351. * 费用类型
  1352. * 1:房费
  1353. * 2:早餐
  1354. * 3:地税
  1355. * 4:城市税
  1356. * </summary>
  1357. */
  1358. //地税
  1359. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1360. if (governmentRentData != null)
  1361. {
  1362. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1363. governmentRentFee = governmentRentData.Price;
  1364. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1365. if (governmentRentCurrData != null)
  1366. {
  1367. governmentRentCode = governmentRentCurrData.Name;
  1368. governmentRentName = $"({governmentRentCurrData.Remark})";
  1369. }
  1370. }
  1371. //城市税
  1372. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1373. if (cityTaxData != null)
  1374. {
  1375. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1376. cityTaxFee = cityTaxData.Price;
  1377. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1378. if (cityTaxCurrData != null)
  1379. {
  1380. cityTaxCode = cityTaxCurrData.Name;
  1381. cityTaxName = $"({cityTaxCurrData.Remark})";
  1382. }
  1383. }
  1384. //酒店早餐
  1385. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1386. if (breakfastData != null)
  1387. {
  1388. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1389. breakfastFee = breakfastData.Price;
  1390. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1391. if (breakfastCurrData != null)
  1392. {
  1393. breakfastCode = breakfastCurrData.Name;
  1394. breakfastName = $"({breakfastCurrData.Remark})";
  1395. }
  1396. }
  1397. //房间费用
  1398. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1399. if (roomData != null)
  1400. {
  1401. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1402. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1403. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1404. roomFee = roomData.Price;
  1405. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1406. if (roomCurrData != null)
  1407. {
  1408. roomCode = roomCurrData.Name;
  1409. roomName = $"({roomCurrData.Remark})";
  1410. }
  1411. }
  1412. string hotelCostStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1413. if (groupCost != null)
  1414. {
  1415. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1416. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})</br>";
  1417. }
  1418. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= Convert.ToDateTime(hotelReservations.CheckInDate) &&
  1419. Convert.ToDateTime(x.Date) <= Convert.ToDateTime(hotelReservations.CheckOutDate)).ToList();
  1420. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1421. foreach (var item in hotelCostDetails1)
  1422. {
  1423. hotelCostStr += @$"{item.First()?.Date ?? "-"}";
  1424. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCostStr += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1425. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCostStr += @$" 1/2 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1426. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCostStr += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1427. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCostStr += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1428. hotelCostStr += @$"</br>";
  1429. }
  1430. _detail.PriceMsgContent = $"{hotelCostStr}<br/>"+
  1431. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1432. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1433. $"房间说明: {hotelReservations.Remark} <br/>" +
  1434. $"房间费用: {roomFee.ToString("#0.00")} {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{roomBool}<br/>" +
  1435. $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/>" +
  1436. $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/>" +
  1437. $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1438. _detail.PriceNameContent = hotelReservations.HotelName;
  1439. }
  1440. break;
  1441. case 79://车/导游地接
  1442. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1443. if (touristGuideGroundReservations != null)
  1444. {
  1445. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1446. {
  1447. _detail.BusName = touristGuideGroundReservations.BusName;
  1448. }
  1449. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1450. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1451. //if (isInt)
  1452. //{
  1453. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1454. // if (cityInfo != null)
  1455. // {
  1456. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1457. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1458. // if (carFeeItem != null)
  1459. // {
  1460. // nameContent += $@"({carFeeItem.Name})";
  1461. // }
  1462. // _detail.PriceNameContent = nameContent;
  1463. // }
  1464. //}
  1465. //else
  1466. //{
  1467. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1468. //}
  1469. var touristGuideGroundReservationsContents =
  1470. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1471. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1472. foreach (var item in touristGuideGroundReservationsContents)
  1473. {
  1474. string typeName = "Unknown";
  1475. string carCurrencyCode = "Unknown";
  1476. string carCurrencyName = "Unknown";
  1477. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1478. if (carTypeData != null) typeName = carTypeData.Name;
  1479. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1480. if (currencyData != null)
  1481. {
  1482. carCurrencyCode = currencyData.Name;
  1483. carCurrencyName = currencyData.Remark;
  1484. }
  1485. string opCostStr =string.Empty;
  1486. decimal opCostTypePrice = 0.00M;
  1487. #region 处理成本各项费用
  1488. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1489. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1490. if (opCost.Count > 0)
  1491. {
  1492. switch (item.SId)
  1493. {
  1494. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1495. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1496. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1497. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1498. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1499. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1500. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1501. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1502. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1503. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1504. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1505. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1506. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1507. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1508. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1509. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1510. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1511. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1512. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1513. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1514. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1515. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1516. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1517. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1518. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1519. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1520. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1521. }
  1522. opCostStr = $"&nbsp;&nbsp;/成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1523. }
  1524. #endregion
  1525. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1526. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1527. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1528. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1529. }
  1530. _detail.PriceMsgContent = priceMsg;
  1531. }
  1532. break;
  1533. case 80: //签证
  1534. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1535. if (visaInfo != null)
  1536. {
  1537. _detail.PriceNameContent = getClientNameStr(clientNameList, visaInfo.VisaClient);
  1538. _detail.PriceMsgContent = $"签证描述:{visaInfo.VisaDescription}<br/> 备注:{visaInfo.Remark}";
  1539. }
  1540. break;
  1541. case 81: //邀请/公务活动
  1542. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1543. if (_ioa != null)
  1544. {
  1545. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1546. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1547. sendCurrName = "Unknown", //快递费用币种 Name
  1548. sendCurrCode = "Unknown", //快递费用币种 Code
  1549. eventsCurrName = "Unknown", //公务活动费币种 Name
  1550. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1551. translateCurrName = "Unknown", //公务翻译费 Name
  1552. translateCurrCode = "Unknown"; //公务翻译费 Code
  1553. #region 处理费用币种
  1554. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1555. if (inviteCurrData != null)
  1556. {
  1557. inviteCurrName = inviteCurrData.Remark;
  1558. inviteCurrCode = inviteCurrData.Name;
  1559. }
  1560. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1561. if (sendCurrData != null)
  1562. {
  1563. sendCurrName = sendCurrData.Remark;
  1564. sendCurrCode = sendCurrData.Name;
  1565. }
  1566. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1567. if (eventsCurrData != null)
  1568. {
  1569. eventsCurrName = eventsCurrData.Remark;
  1570. eventsCurrCode = eventsCurrData.Name;
  1571. }
  1572. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1573. if (translateCurrData != null)
  1574. {
  1575. translateCurrName = translateCurrData.Remark;
  1576. translateCurrCode = translateCurrData.Name;
  1577. }
  1578. #endregion
  1579. _detail.PriceNameContent = _ioa.InviterArea;
  1580. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1581. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1582. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1583. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1584. $@"备注:" + _ioa.Remark + "<br/>";
  1585. }
  1586. break;
  1587. case 82: //团组客户保险
  1588. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1589. if (customers != null)
  1590. {
  1591. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1592. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1593. }
  1594. break;
  1595. case 85: //机票预订
  1596. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1597. if (jpRes != null)
  1598. {
  1599. string FlightsDescription = jpRes.FlightsDescription;
  1600. string PriceDescription = jpRes.PriceDescription;
  1601. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1602. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1603. }
  1604. break;
  1605. case 98://其他款项
  1606. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1607. if (gdpRes != null)
  1608. {
  1609. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1610. _detail.PriceNameContent = gdpRes.PriceName;
  1611. }
  1612. break;
  1613. case 285://收款退还
  1614. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1615. if (refundAndOtherMoney != null)
  1616. {
  1617. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1618. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1619. }
  1620. break;
  1621. case 751://酒店早餐
  1622. break;
  1623. case 1015://超支费用
  1624. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1625. if (groupExtraCost != null)
  1626. {
  1627. _detail.PriceNameContent = groupExtraCost.PriceName;
  1628. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1629. }
  1630. break;
  1631. default:
  1632. break;
  1633. }
  1634. /*
  1635. * 申请人
  1636. */
  1637. string operatorName = " - ";
  1638. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1639. if (_opUser != null)
  1640. {
  1641. operatorName = _opUser.CnName;
  1642. }
  1643. _detail.OperatorName = operatorName;
  1644. /*
  1645. * 审核人
  1646. */
  1647. string auditOperatorName = "Unknown";
  1648. if (entity.AuditGMOperate == 0)
  1649. auditOperatorName = " - ";
  1650. else if (entity.AuditGMOperate == 4)
  1651. auditOperatorName = "自动审核";
  1652. else
  1653. {
  1654. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1655. if (_adUser != null)
  1656. {
  1657. auditOperatorName = _adUser.CnName;
  1658. }
  1659. }
  1660. _detail.AuditOperatorName = auditOperatorName;
  1661. /*
  1662. * 超预算比例
  1663. */
  1664. string overBudgetStr = "";
  1665. if (entity.ExceedBudget == -1)
  1666. overBudgetStr = sdPriceName.Name + "尚无预算";
  1667. else if (entity.ExceedBudget == 0)
  1668. {
  1669. if (entity.CTable == 76 || entity.CTable == 79)
  1670. {
  1671. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1672. else overBudgetStr = "超预算";
  1673. }
  1674. else
  1675. {
  1676. overBudgetStr = "未超预算";
  1677. }
  1678. }
  1679. else
  1680. overBudgetStr = entity.ExceedBudget.ToString("P");
  1681. _detail.OverBudget = overBudgetStr;
  1682. /*
  1683. * 费用总计
  1684. */
  1685. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1686. {
  1687. CurrencyId = entity.PaymentCurrency,
  1688. CurrencyName = PaymentCurrency_WaitPay,
  1689. AmountPayable = entity.PayMoney,
  1690. ThisPayment = CurrPayStr,
  1691. BalancePayment = BalanceStr,
  1692. AuditedFunds = CurrPayStr
  1693. });
  1694. _detail.IsAuditGM = entity.IsAuditGM;
  1695. detailList.Add(_detail);
  1696. }
  1697. #endregion
  1698. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1699. /*
  1700. * 下方描述处理
  1701. */
  1702. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1703. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1704. if (ccpCurrencyPrice != null)
  1705. {
  1706. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1707. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1708. }
  1709. else
  1710. {
  1711. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1712. }
  1713. string amountPayableStr = string.Format(@"应付款总金额: ");
  1714. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1715. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1716. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1717. foreach (var item in nonDuplicat)
  1718. {
  1719. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1720. if (strs.Count > 0)
  1721. {
  1722. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1723. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1724. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1725. //单独处理此次付款金额
  1726. if (item.CurrencyId == 836) //人民币
  1727. {
  1728. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1729. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1730. }
  1731. else
  1732. {
  1733. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1734. }
  1735. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1736. //单独处理已审核费用
  1737. if (item.CurrencyId == 836) //人民币
  1738. {
  1739. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1740. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1741. }
  1742. else
  1743. {
  1744. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1745. }
  1746. }
  1747. }
  1748. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1749. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1750. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1751. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1752. var _view1 = new
  1753. {
  1754. PageFuncAuth = pageFunAuthView,
  1755. Data = _view
  1756. };
  1757. return Ok(JsonView(_view1));
  1758. }
  1759. catch (Exception ex)
  1760. {
  1761. return Ok(JsonView(false, ex.Message));
  1762. }
  1763. }
  1764. /// <summary>
  1765. /// 费用审核
  1766. /// 修改团组费用审核状态
  1767. /// </summary>
  1768. /// <param name="_dto">参数Json字符串</param>
  1769. /// <returns></returns>
  1770. [HttpPost]
  1771. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1772. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1773. {
  1774. #region 参数验证
  1775. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1776. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1777. #endregion
  1778. #region 页面操作权限验证
  1779. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1780. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1781. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1782. #endregion
  1783. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1784. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1785. DateTime dtNow = DateTime.Now;
  1786. _groupRepository.BeginTran();
  1787. int rst = 0;
  1788. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1789. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1790. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1791. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1792. List<dynamic> msgDatas = new List<dynamic>();
  1793. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1794. foreach (var item in idList)
  1795. {
  1796. int CreditId = int.Parse(item);
  1797. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1798. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1799. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1800. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1801. .Where(s => s.Id == CreditId)
  1802. .ExecuteCommandAsync();
  1803. if (result < 1)
  1804. {
  1805. rst = -1;
  1806. _groupRepository.RollbackTran();
  1807. return Ok(JsonView(false, "操作失败并回滚!"));
  1808. }
  1809. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1810. if (creditData != null)
  1811. {
  1812. #region 应用通知配置
  1813. try
  1814. {
  1815. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1816. }
  1817. catch (Exception ex)
  1818. {
  1819. }
  1820. #endregion
  1821. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1822. string groupNameStr = string.Empty;
  1823. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1824. if (groupData != null) groupNameStr = groupData.TeamName;
  1825. string creditTypeStr = string.Empty;
  1826. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1827. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1828. string creditCurrency = string.Empty;
  1829. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1830. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1831. if (creditCurrency.Equals("CNY"))
  1832. {
  1833. creditData.DayRate = 1.0000M;
  1834. }
  1835. if (creditData.PayPercentage == 0.00M)
  1836. {
  1837. creditData.PayPercentage = 100M;
  1838. }
  1839. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1840. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1841. string msgContent = "";
  1842. if (creditCurrency.Equals("CNY"))
  1843. {
  1844. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1845. }
  1846. else
  1847. {
  1848. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1849. }
  1850. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1851. }
  1852. }
  1853. if (rst == 0)
  1854. {
  1855. _groupRepository.CommitTran();
  1856. foreach (var item in msgDatas)
  1857. {
  1858. //发送消息
  1859. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1860. }
  1861. #region 应用推送
  1862. try
  1863. {
  1864. foreach (var ccpId in dic_ccp_user.Keys)
  1865. {
  1866. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1867. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1868. }
  1869. }
  1870. catch (Exception)
  1871. {
  1872. }
  1873. #endregion
  1874. return Ok(JsonView(true, "操作成功!"));
  1875. }
  1876. return Ok(JsonView(false, "操作失败!"));
  1877. }
  1878. #endregion
  1879. #region 机票费用录入
  1880. /// <summary>
  1881. /// 机票录入当前登录人可操作团组
  1882. /// </summary>
  1883. /// <param name="dto"></param>
  1884. /// <returns></returns>
  1885. [HttpPost]
  1886. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1887. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1888. {
  1889. try
  1890. {
  1891. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1892. if (groupData.Code != 0)
  1893. {
  1894. return Ok(JsonView(false, groupData.Msg));
  1895. }
  1896. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1897. }
  1898. catch (Exception ex)
  1899. {
  1900. return Ok(JsonView(false, "程序错误!"));
  1901. throw;
  1902. }
  1903. }
  1904. /// <summary>
  1905. /// 机票费用录入列表
  1906. /// </summary>
  1907. /// <param name="dto"></param>
  1908. /// <returns></returns>
  1909. [HttpPost]
  1910. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1911. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1912. {
  1913. try
  1914. {
  1915. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1916. if (groupData.Code != 0)
  1917. {
  1918. return Ok(JsonView(false, groupData.Msg));
  1919. }
  1920. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1921. }
  1922. catch (Exception ex)
  1923. {
  1924. return Ok(JsonView(false, ex.Message));
  1925. throw;
  1926. }
  1927. }
  1928. /// <summary>
  1929. /// 根据id查询费用录入信息
  1930. /// </summary>
  1931. /// <param name="dto"></param>
  1932. /// <returns></returns>
  1933. [HttpPost]
  1934. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1935. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1936. {
  1937. try
  1938. {
  1939. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1940. if (groupData.Code != 0)
  1941. {
  1942. return Ok(JsonView(false, groupData.Msg));
  1943. }
  1944. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1945. }
  1946. catch (Exception ex)
  1947. {
  1948. return Ok(JsonView(false, "程序错误!"));
  1949. throw;
  1950. }
  1951. }
  1952. /// <summary>
  1953. /// 机票费用录入操作(Status:1.新增,2.修改)
  1954. /// </summary>
  1955. /// <param name="dto"></param>
  1956. /// <returns></returns>
  1957. [HttpPost]
  1958. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1959. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1960. {
  1961. try
  1962. {
  1963. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1964. if (groupData.Code != 0)
  1965. {
  1966. return Ok(JsonView(false, groupData.Msg));
  1967. }
  1968. #region 应用推送
  1969. try
  1970. {
  1971. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  1972. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  1973. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  1974. }
  1975. catch (Exception ex)
  1976. {
  1977. }
  1978. #endregion
  1979. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1980. }
  1981. catch (Exception ex)
  1982. {
  1983. return Ok(JsonView(false, "程序错误!"));
  1984. throw;
  1985. }
  1986. }
  1987. /// <summary>
  1988. /// 根据舱位类型查询接团客户名单信息
  1989. /// </summary>
  1990. /// <param name="dto"></param>
  1991. /// <returns></returns>
  1992. [HttpPost]
  1993. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1994. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  1995. {
  1996. try
  1997. {
  1998. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  1999. if (crm_Groups.Count != 0)
  2000. {
  2001. List<dynamic> Customer = new List<dynamic>();
  2002. foreach (var item in crm_Groups)
  2003. {
  2004. var data = new
  2005. {
  2006. Id = item.Id,
  2007. Pinyin = item.Pinyin,
  2008. Name = item.LastName + item.FirstName
  2009. };
  2010. Customer.Add(data);
  2011. }
  2012. return Ok(JsonView(true, "查询成功!", Customer));
  2013. }
  2014. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2015. }
  2016. catch (Exception ex)
  2017. {
  2018. return Ok(JsonView(false, "程序错误!"));
  2019. throw;
  2020. }
  2021. }
  2022. /// <summary>
  2023. /// 根据团号获取客户信息
  2024. /// </summary>
  2025. /// <param name="dto"></param>
  2026. /// <returns></returns>
  2027. [HttpPost]
  2028. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2029. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2030. {
  2031. var jw = JsonView(false);
  2032. if (dto.DIID < 1)
  2033. {
  2034. jw.Msg += "请输入正确的diid";
  2035. return Ok(jw);
  2036. }
  2037. var arr = getSimplClientList(dto.DIID);
  2038. jw = JsonView(true, "获取成功!", arr);
  2039. return Ok(jw);
  2040. }
  2041. private List<SimplClientInfo> getSimplClientList(int diId)
  2042. {
  2043. 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);
  2044. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2045. return arr;
  2046. }
  2047. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2048. {
  2049. string result = origin;
  2050. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2051. {
  2052. string[] temparr = origin.Split(',');
  2053. string fistrStr = temparr[0];
  2054. int count = temparr.Count();
  2055. int tempId;
  2056. bool success = int.TryParse(fistrStr, out tempId);
  2057. if (success)
  2058. {
  2059. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2060. if (tempInfo != null)
  2061. {
  2062. if (count > 1)
  2063. {
  2064. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2065. }
  2066. else
  2067. {
  2068. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2069. }
  2070. }
  2071. }
  2072. }
  2073. return result;
  2074. }
  2075. /// <summary>
  2076. /// 机票费用录入,删除
  2077. /// </summary>
  2078. /// <param name="dto"></param>
  2079. /// <returns></returns>
  2080. [HttpPost]
  2081. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2082. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2083. {
  2084. try
  2085. {
  2086. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2087. if (res)
  2088. {
  2089. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2090. {
  2091. IsDel = 1,
  2092. DeleteUserId = dto.DeleteUserId,
  2093. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2094. }).ExecuteCommandAsync();
  2095. return Ok(JsonView(true, "删除成功!"));
  2096. }
  2097. return Ok(JsonView(false, "删除失败!"));
  2098. }
  2099. catch (Exception ex)
  2100. {
  2101. return Ok(JsonView(false, "程序错误!"));
  2102. throw;
  2103. }
  2104. }
  2105. /// <summary>
  2106. /// 导出机票录入报表
  2107. /// </summary>
  2108. /// <param name="dto"></param>
  2109. /// <returns></returns>
  2110. [HttpPost]
  2111. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2112. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2113. {
  2114. try
  2115. {
  2116. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2117. if (groupData.Code != 0)
  2118. {
  2119. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2120. }
  2121. else
  2122. {
  2123. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2124. if (AirTicketReservations.Count != 0)
  2125. {
  2126. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2127. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2128. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2129. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2130. WorkbookDesigner designer = new WorkbookDesigner();
  2131. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2132. decimal countCost = 0;
  2133. foreach (var item in AirTicketReservations)
  2134. {
  2135. #region 处理客人姓名
  2136. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2137. item.ClientName = clientNames;
  2138. #endregion
  2139. if (item.BankType == "其他")
  2140. {
  2141. item.BankNo = "--";
  2142. }
  2143. else
  2144. {
  2145. if (!string.IsNullOrEmpty(item.BankType))
  2146. {
  2147. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2148. }
  2149. }
  2150. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2151. item.Price = System.Decimal.Round(item.Price, 2);
  2152. countCost += Convert.ToDecimal(item.Price);
  2153. }
  2154. designer.SetDataSource("Export", AirTicketReservations);
  2155. designer.SetDataSource("ExportDiCode", diCode);
  2156. designer.SetDataSource("ExportDiName", diName);
  2157. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2158. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2159. designer.Process();
  2160. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2161. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2162. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2163. return Ok(JsonView(true, "成功", url = rst));
  2164. }
  2165. else
  2166. {
  2167. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2168. }
  2169. }
  2170. }
  2171. catch (Exception ex)
  2172. {
  2173. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2174. throw;
  2175. }
  2176. }
  2177. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2178. /// <summary>
  2179. /// 行程单导出
  2180. /// </summary>
  2181. /// <param name="dto"></param>
  2182. /// <returns></returns>
  2183. [HttpPost]
  2184. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2185. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2186. {
  2187. try
  2188. {
  2189. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2190. if (groupData.Code != 0)
  2191. {
  2192. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2193. }
  2194. else
  2195. {
  2196. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2197. if (dto.Language == "CN")
  2198. {
  2199. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2200. DocumentBuilder builder = new DocumentBuilder(doc);
  2201. int tableIndex = 0;//表格索引
  2202. //得到文档中的第一个表格
  2203. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2204. foreach (var item in _AirTicketReservations)
  2205. {
  2206. #region 处理固定数据
  2207. string[] FlightsCode = item.FlightsCode.Split('/');
  2208. if (FlightsCode.Length != 0)
  2209. {
  2210. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2211. if (_AirCompany != null)
  2212. {
  2213. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2214. }
  2215. else
  2216. {
  2217. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2218. }
  2219. }
  2220. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2221. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2222. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2223. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2224. string name = "";
  2225. foreach (string clientName in nameArray)
  2226. {
  2227. if (!name.Contains(clientName))
  2228. {
  2229. name += clientName + ",";
  2230. }
  2231. }
  2232. if (!string.IsNullOrWhiteSpace(name))
  2233. {
  2234. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2235. }
  2236. else
  2237. {
  2238. table.Range.Bookmarks["ClientName"].Text = "--";
  2239. }
  2240. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2241. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2242. table.Range.Bookmarks["JointTicket"].Text = "--";
  2243. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2244. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2245. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2246. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2247. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2248. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2249. #endregion
  2250. #region 循环数据处理
  2251. List<AirInfo> airs = new List<AirInfo>();
  2252. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2253. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2254. for (int i = 0; i < FlightsCode.Length; i++)
  2255. {
  2256. AirInfo air = new AirInfo();
  2257. string[] tempstr = DayArray[i]
  2258. .Replace("\r\n", string.Empty)
  2259. .Replace("\\r\\n", string.Empty)
  2260. .TrimStart().TrimEnd()
  2261. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2262. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2263. string starCity = "";
  2264. if (star_Three != null)
  2265. {
  2266. starCity = star_Three.AirPort;
  2267. }
  2268. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2269. string EndCity = "";
  2270. if (End_Three != null)
  2271. {
  2272. EndCity = End_Three.AirPort;
  2273. }
  2274. air.Destination = starCity + "/" + EndCity;
  2275. air.Flight = FlightsCode[i];
  2276. air.SeatingClass = item.CTypeName;
  2277. string dateTime = tempstr[2];
  2278. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2279. air.FlightDate = DateTemp;
  2280. air.DepartureTime = tempstr[5];
  2281. air.LandingTime = tempstr[6];
  2282. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2283. air.TicketStatus = "--";
  2284. air.Luggage = "--";
  2285. air.DepartureTerminal = "--";
  2286. air.LandingTerminal = "--";
  2287. airs.Add(air);
  2288. }
  2289. int row = 13;
  2290. for (int i = 0; i < airs.Count; i++)
  2291. {
  2292. if (airs.Count > 2)
  2293. {
  2294. for (int j = 0; j < airs.Count - 2; j++)
  2295. {
  2296. var CopyRow = table.Rows[12].Clone(true);
  2297. table.Rows.Add(CopyRow);
  2298. }
  2299. }
  2300. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2301. int index = 0;
  2302. foreach (PropertyInfo property in properties)
  2303. {
  2304. string value = property.GetValue(airs[i]).ToString();
  2305. Cell ishcel0 = table.Rows[row].Cells[index];
  2306. Paragraph p = new Paragraph(doc);
  2307. string s = value;
  2308. p.AppendChild(new Run(doc, s));
  2309. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2310. ishcel0.AppendChild(p);
  2311. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2312. index++;
  2313. }
  2314. row++;
  2315. }
  2316. #endregion
  2317. Paragraph lastParagraph = new Paragraph(doc);
  2318. //第一个表格末尾加段落
  2319. table.ParentNode.InsertAfter(lastParagraph, table);
  2320. //复制第一个表格
  2321. Table cloneTable = (Table)table.Clone(true);
  2322. //在文档末尾段落后面加入复制的表格
  2323. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2324. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2325. {
  2326. int rownewsIndex = 13;
  2327. for (int i = 0; i < 2; i++)
  2328. {
  2329. var CopyRow = table.Rows[12].Clone(true);
  2330. table.Rows.RemoveAt(13);
  2331. table.Rows.Add(CopyRow);
  2332. rownewsIndex++;
  2333. }
  2334. }
  2335. else
  2336. {
  2337. table.Rows.RemoveAt(12);
  2338. }
  2339. cloneTable.Rows.RemoveAt(12);
  2340. }
  2341. if (_AirTicketReservations.Count != 0)
  2342. {
  2343. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2344. if (FlightsCode.Length != 0)
  2345. {
  2346. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2347. if (_AirCompany != null)
  2348. {
  2349. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2350. }
  2351. else
  2352. {
  2353. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2354. }
  2355. }
  2356. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2357. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2358. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2359. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2360. string name = "";
  2361. foreach (string clientName in nameArray)
  2362. {
  2363. if (!name.Contains(clientName))
  2364. {
  2365. name += clientName + ",";
  2366. }
  2367. }
  2368. if (!string.IsNullOrWhiteSpace(name))
  2369. {
  2370. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2371. }
  2372. else
  2373. {
  2374. table.Range.Bookmarks["ClientName"].Text = "--";
  2375. }
  2376. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2377. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2378. table.Range.Bookmarks["JointTicket"].Text = "--";
  2379. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2380. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2381. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2382. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2383. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2384. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2385. }
  2386. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2387. //保存合并后的文档
  2388. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2389. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2390. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2391. return Ok(JsonView(true, "成功!", rst));
  2392. }
  2393. else
  2394. {
  2395. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2396. DocumentBuilder builder = new DocumentBuilder(doc);
  2397. int tableIndex = 0;//表格索引
  2398. //得到文档中的第一个表格
  2399. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2400. List<string> texts = new List<string>();
  2401. foreach (var item in _AirTicketReservations)
  2402. {
  2403. string[] FlightsCode = item.FlightsCode.Split('/');
  2404. if (FlightsCode.Length != 0)
  2405. {
  2406. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2407. if (_AirCompany != null)
  2408. {
  2409. if (!transDic.ContainsKey(_AirCompany.CnName))
  2410. {
  2411. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2412. }
  2413. }
  2414. else
  2415. {
  2416. if (!transDic.ContainsKey("--"))
  2417. {
  2418. transDic.Add("--", "--");
  2419. }
  2420. }
  2421. }
  2422. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2423. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2424. string name = "";
  2425. foreach (string clientName in nameArray)
  2426. {
  2427. name += clientName + ",";
  2428. }
  2429. if (!texts.Contains(name))
  2430. {
  2431. texts.Add(name);
  2432. }
  2433. List<AirInfo> airs = new List<AirInfo>();
  2434. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2435. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2436. for (int i = 0; i < FlightsCode.Length; i++)
  2437. {
  2438. AirInfo air = new AirInfo();
  2439. string[] tempstr = DayArray[i]
  2440. .Replace("\r\n", string.Empty)
  2441. .Replace("\\r\\n", string.Empty)
  2442. .TrimStart().TrimEnd()
  2443. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2444. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2445. if (star_Three != null)
  2446. {
  2447. if (!transDic.ContainsKey(star_Three.AirPort))
  2448. {
  2449. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2450. }
  2451. }
  2452. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2453. if (End_Three != null)
  2454. {
  2455. if (!transDic.ContainsKey(End_Three.AirPort))
  2456. {
  2457. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2458. }
  2459. }
  2460. if (!texts.Contains(item.CTypeName))
  2461. {
  2462. texts.Add(item.CTypeName);
  2463. }
  2464. }
  2465. }
  2466. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2467. if (transData.Count > 0)
  2468. {
  2469. foreach (TranslateResult item in transData)
  2470. {
  2471. if (!transDic.ContainsKey(item.Query))
  2472. {
  2473. transDic.Add(item.Query, item.Translation);
  2474. }
  2475. }
  2476. }
  2477. foreach (var item in _AirTicketReservations)
  2478. {
  2479. #region 处理固定数据
  2480. string[] FlightsCode = item.FlightsCode.Split('/');
  2481. if (FlightsCode.Length != 0)
  2482. {
  2483. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2484. if (_AirCompany != null)
  2485. {
  2486. string str = "--";
  2487. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2488. if (!string.IsNullOrEmpty(translateResult))
  2489. {
  2490. str = translateResult;
  2491. str = _airTicketResRep.Processing(str);
  2492. }
  2493. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2494. }
  2495. else
  2496. {
  2497. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2498. }
  2499. }
  2500. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2501. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2502. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2503. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2504. string names = "";
  2505. foreach (string clientName in nameArray)
  2506. {
  2507. names += clientName + ",";
  2508. }
  2509. if (!string.IsNullOrWhiteSpace(names))
  2510. {
  2511. string str = "--";
  2512. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2513. if (!string.IsNullOrEmpty(translateResult))
  2514. {
  2515. str = translateResult;
  2516. str = _airTicketResRep.Processing(str);
  2517. }
  2518. table.Range.Bookmarks["ClientName"].Text = str;
  2519. }
  2520. else
  2521. {
  2522. table.Range.Bookmarks["ClientName"].Text = "--";
  2523. }
  2524. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2525. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2526. table.Range.Bookmarks["JointTicket"].Text = "--";
  2527. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2528. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2529. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2530. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2531. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2532. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2533. #endregion
  2534. #region 循环数据处理
  2535. List<AirInfo> airs = new List<AirInfo>();
  2536. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2537. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2538. for (int i = 0; i < FlightsCode.Length; i++)
  2539. {
  2540. AirInfo air = new AirInfo();
  2541. string[] tempstr = DayArray[i]
  2542. .Replace("\r\n", string.Empty)
  2543. .Replace("\\r\\n", string.Empty)
  2544. .TrimStart().TrimEnd()
  2545. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2546. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2547. string starCity = "";
  2548. if (star_Three != null)
  2549. {
  2550. string str2 = "--";
  2551. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2552. if (!string.IsNullOrEmpty(translateResult2))
  2553. {
  2554. str2 = translateResult2;
  2555. str2 = _airTicketResRep.Processing(str2);
  2556. }
  2557. starCity = str2;
  2558. }
  2559. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2560. string EndCity = "";
  2561. if (End_Three != null)
  2562. {
  2563. string str1 = "--";
  2564. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2565. if (!string.IsNullOrEmpty(translateResult1))
  2566. {
  2567. str1 = translateResult1;
  2568. str1 = _airTicketResRep.Processing(str1);
  2569. }
  2570. EndCity = str1;
  2571. }
  2572. air.Destination = starCity + "/" + EndCity;
  2573. air.Flight = FlightsCode[i];
  2574. string str = "--";
  2575. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2576. if (!string.IsNullOrEmpty(translateResult))
  2577. {
  2578. str = translateResult;
  2579. str = _airTicketResRep.Processing(str);
  2580. }
  2581. air.SeatingClass = str;
  2582. string dateTime = tempstr[2];
  2583. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2584. air.FlightDate = DateTemp;
  2585. air.DepartureTime = tempstr[5];
  2586. air.LandingTime = tempstr[6];
  2587. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2588. air.TicketStatus = "--";
  2589. air.Luggage = "--";
  2590. air.DepartureTerminal = "--";
  2591. air.LandingTerminal = "--";
  2592. airs.Add(air);
  2593. }
  2594. int row = 13;
  2595. for (int i = 0; i < airs.Count; i++)
  2596. {
  2597. if (airs.Count > 2)
  2598. {
  2599. for (int j = 0; j < airs.Count - 2; j++)
  2600. {
  2601. var CopyRow = table.Rows[12].Clone(true);
  2602. table.Rows.Add(CopyRow);
  2603. }
  2604. }
  2605. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2606. int index = 0;
  2607. foreach (PropertyInfo property in properties)
  2608. {
  2609. string value = property.GetValue(airs[i]).ToString();
  2610. Cell ishcel0 = table.Rows[row].Cells[index];
  2611. Paragraph p = new Paragraph(doc);
  2612. string s = value;
  2613. p.AppendChild(new Run(doc, s));
  2614. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2615. ishcel0.AppendChild(p);
  2616. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2617. //ishcel0.CellFormat.VerticalAlignment=
  2618. index++;
  2619. }
  2620. row++;
  2621. }
  2622. #endregion
  2623. Paragraph lastParagraph = new Paragraph(doc);
  2624. //第一个表格末尾加段落
  2625. table.ParentNode.InsertAfter(lastParagraph, table);
  2626. //复制第一个表格
  2627. Table cloneTable = (Table)table.Clone(true);
  2628. //在文档末尾段落后面加入复制的表格
  2629. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2630. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2631. {
  2632. int rownewsIndex = 13;
  2633. for (int i = 0; i < 2; i++)
  2634. {
  2635. var CopyRow = table.Rows[12].Clone(true);
  2636. table.Rows.RemoveAt(13);
  2637. table.Rows.Add(CopyRow);
  2638. rownewsIndex++;
  2639. }
  2640. }
  2641. else
  2642. {
  2643. table.Rows.RemoveAt(12);
  2644. }
  2645. cloneTable.Rows.RemoveAt(12);
  2646. }
  2647. if (_AirTicketReservations.Count != 0)
  2648. {
  2649. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2650. if (FlightsCode.Length != 0)
  2651. {
  2652. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2653. if (_AirCompany != null)
  2654. {
  2655. string str = "--";
  2656. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2657. if (!string.IsNullOrEmpty(translateResult))
  2658. {
  2659. str = translateResult;
  2660. str = _airTicketResRep.Processing(str);
  2661. }
  2662. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2663. }
  2664. else
  2665. {
  2666. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2667. }
  2668. }
  2669. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2670. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2671. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2672. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2673. string names = "";
  2674. foreach (string clientName in nameArray)
  2675. {
  2676. names += clientName + ",";
  2677. }
  2678. if (!string.IsNullOrWhiteSpace(names))
  2679. {
  2680. string str = "--";
  2681. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2682. if (!string.IsNullOrEmpty(translateResult))
  2683. {
  2684. str = translateResult;
  2685. str = _airTicketResRep.Processing(str);
  2686. }
  2687. table.Range.Bookmarks["ClientName"].Text = str;
  2688. }
  2689. else
  2690. {
  2691. table.Range.Bookmarks["ClientName"].Text = "--";
  2692. }
  2693. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2694. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2695. table.Range.Bookmarks["JointTicket"].Text = "--";
  2696. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2697. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2698. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2699. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2700. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2701. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2702. }
  2703. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2704. //保存合并后的文档
  2705. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2706. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2707. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2708. return Ok(JsonView(true, "成功!", rst));
  2709. }
  2710. }
  2711. }
  2712. catch (Exception ex)
  2713. {
  2714. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2715. throw;
  2716. }
  2717. }
  2718. #endregion
  2719. #region 团组增减款项 --> 其他款项
  2720. /// <summary>
  2721. /// 团组增减款项下拉框绑定
  2722. /// </summary>
  2723. /// <param name="dto"></param>
  2724. /// <returns></returns>
  2725. [HttpPost]
  2726. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2727. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2728. {
  2729. #region 参数验证
  2730. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2731. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2732. #endregion
  2733. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2734. }
  2735. /// <summary>
  2736. /// 根据团组Id查询团组增减款项
  2737. /// </summary>
  2738. /// <param name="dto"></param>
  2739. /// <returns></returns>
  2740. [HttpPost]
  2741. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2742. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2743. {
  2744. #region 参数验证
  2745. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2746. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2747. #endregion
  2748. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2749. }
  2750. /// <summary>
  2751. /// 团组增减款项操作(Status:1.新增,2.修改)
  2752. /// </summary>
  2753. /// <param name="dto"></param>
  2754. /// <returns></returns>
  2755. [HttpPost]
  2756. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2757. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2758. {
  2759. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2760. if (groupData.Code != 200)
  2761. {
  2762. return Ok(JsonView(false, groupData.Msg));
  2763. }
  2764. #region 应用推送
  2765. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2766. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2767. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2768. #endregion
  2769. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2770. }
  2771. /// <summary>
  2772. /// 团组增减款项操作 删除
  2773. /// </summary>
  2774. /// <param name="dto"></param>
  2775. /// <returns></returns>
  2776. [HttpPost]
  2777. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2778. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2779. {
  2780. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2781. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2782. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2783. if (res.Code == 0)
  2784. {
  2785. return Ok(JsonView(true, "删除成功!"));
  2786. }
  2787. return Ok(JsonView(false, "删除失败!"));
  2788. }
  2789. /// <summary>
  2790. /// 根据团组增减款项Id查询
  2791. /// </summary>
  2792. /// <param name="dto"></param>
  2793. /// <returns></returns>
  2794. [HttpPost]
  2795. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2796. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2797. {
  2798. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2799. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2800. }
  2801. /// <summary>
  2802. /// 查询供应商名称
  2803. /// </summary>
  2804. /// <param name="dto"></param>
  2805. /// <returns></returns>
  2806. [HttpPost]
  2807. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2808. {
  2809. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2810. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2811. ?? new List<Grp_DecreasePayments>();
  2812. dbResult = dbResult.Distinct(new
  2813. ProductComparer()).ToList();
  2814. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2815. {
  2816. x.Id,
  2817. x.SupplierAddress,
  2818. x.SupplierArea,
  2819. x.SupplierContact,
  2820. x.SupplierContactNumber,
  2821. x.SupplierEmail,
  2822. x.SupplierName,
  2823. x.SupplierSocialAccount,
  2824. x.SupplierTypeId,
  2825. }).ToList());
  2826. return Ok(jw);
  2827. }
  2828. #endregion
  2829. #region 文件上传、删除
  2830. /// <summary>
  2831. /// region 文件上传 可以带参数
  2832. /// </summary>
  2833. /// <param name="file"></param>
  2834. /// <returns></returns>
  2835. [HttpPost]
  2836. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2837. public async Task<IActionResult> UploadProject(IFormFile file)
  2838. {
  2839. try
  2840. {
  2841. var TypeName = Request.Headers["TypeName"].ToString();
  2842. if (file != null)
  2843. {
  2844. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2845. //文件名称
  2846. string projectFileName = file.FileName;
  2847. //上传的文件的路径
  2848. string filePath = "";
  2849. if (TypeName == "A")//A代表团组增减款项
  2850. {
  2851. if (!Directory.Exists(fileDir))
  2852. {
  2853. Directory.CreateDirectory(fileDir);
  2854. }
  2855. //上传的文件的路径
  2856. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2857. }
  2858. else if (TypeName == "B")//B代表商邀相关文件
  2859. {
  2860. if (!Directory.Exists(fileDir))
  2861. {
  2862. Directory.CreateDirectory(fileDir);
  2863. }
  2864. //上传的文件的路径
  2865. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2866. }
  2867. using (FileStream fs = System.IO.File.Create(filePath))
  2868. {
  2869. file.CopyTo(fs);
  2870. fs.Flush();
  2871. }
  2872. return Ok(JsonView(true, "上传成功!", projectFileName));
  2873. }
  2874. else
  2875. {
  2876. return Ok(JsonView(false, "上传失败!"));
  2877. }
  2878. }
  2879. catch (Exception ex)
  2880. {
  2881. return Ok(JsonView(false, "程序错误!"));
  2882. throw;
  2883. }
  2884. }
  2885. /// <summary>
  2886. /// 删除指定文件
  2887. /// </summary>
  2888. /// <param name="dto"></param>
  2889. /// <returns></returns>
  2890. [HttpPost]
  2891. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2892. public async Task<IActionResult> DelFile(DelFileDto dto)
  2893. {
  2894. try
  2895. {
  2896. var TypeName = Request.Headers["TypeName"].ToString();
  2897. string filePath = "";
  2898. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2899. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2900. int id = 0;
  2901. if (TypeName == "A")
  2902. {
  2903. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2904. // 删除该文件
  2905. System.IO.File.Delete(filePath);
  2906. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2907. }
  2908. else if (TypeName == "B")
  2909. {
  2910. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2911. // 删除该文件
  2912. System.IO.File.Delete(filePath);
  2913. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2914. }
  2915. if (id != 0)
  2916. {
  2917. return Ok(JsonView(true, "成功!"));
  2918. }
  2919. else
  2920. {
  2921. return Ok(JsonView(false, "失败!"));
  2922. }
  2923. }
  2924. catch (Exception ex)
  2925. {
  2926. return Ok(JsonView(false, "程序错误!"));
  2927. throw;
  2928. }
  2929. }
  2930. #endregion
  2931. #region 商邀费用录入
  2932. /// <summary>
  2933. /// 根据团组Id查询商邀费用列表
  2934. /// </summary>
  2935. /// <param name="dto"></param>
  2936. /// <returns></returns>
  2937. [HttpPost]
  2938. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2939. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2940. {
  2941. try
  2942. {
  2943. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  2944. if (groupData.Code != 0)
  2945. {
  2946. return Ok(JsonView(false, groupData.Msg));
  2947. }
  2948. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2949. }
  2950. catch (Exception ex)
  2951. {
  2952. return Ok(JsonView(false, "程序错误!"));
  2953. throw;
  2954. }
  2955. }
  2956. //
  2957. /// <summary>
  2958. /// 商邀费用 Info Page 基础数据源
  2959. /// </summary>
  2960. /// <param name="dto"></param>
  2961. /// <returns></returns>
  2962. [HttpPost]
  2963. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2964. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  2965. {
  2966. try
  2967. {
  2968. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  2969. if (groupData.Code != 0)
  2970. {
  2971. return Ok(JsonView(false, groupData.Msg));
  2972. }
  2973. return Ok(JsonView(true, "操作成功", groupData.Data));
  2974. }
  2975. catch (Exception ex)
  2976. {
  2977. return Ok(JsonView(false, ex.Message));
  2978. throw;
  2979. }
  2980. }
  2981. /// <summary>
  2982. /// 根据商邀费用ID查询C表和商邀费用数据
  2983. /// </summary>
  2984. /// <param name="dto"></param>
  2985. /// <returns></returns>
  2986. [HttpPost]
  2987. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2988. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  2989. {
  2990. try
  2991. {
  2992. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  2993. if (groupData.Code != 0)
  2994. {
  2995. return Ok(JsonView(false, groupData.Msg));
  2996. }
  2997. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2998. }
  2999. catch (Exception ex)
  3000. {
  3001. return Ok(JsonView(false, ex.Message));
  3002. throw;
  3003. }
  3004. }
  3005. /// <summary>
  3006. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3007. /// </summary>
  3008. /// <param name="dto"></param>
  3009. /// <returns></returns>
  3010. [HttpPost]
  3011. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3012. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3013. {
  3014. try
  3015. {
  3016. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3017. if (groupData.Code != 0)
  3018. {
  3019. return Ok(JsonView(false, groupData.Msg));
  3020. }
  3021. #region 应用推送
  3022. try
  3023. {
  3024. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3025. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3026. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3027. }
  3028. catch (Exception ex)
  3029. {
  3030. }
  3031. #endregion
  3032. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3033. }
  3034. catch (Exception ex)
  3035. {
  3036. return Ok(JsonView(false, "程序错误!"));
  3037. throw;
  3038. }
  3039. }
  3040. /// <summary>
  3041. /// 商邀删除
  3042. /// </summary>
  3043. /// <param name="dto"></param>
  3044. /// <returns></returns>
  3045. [HttpPost]
  3046. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3047. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3048. {
  3049. try
  3050. {
  3051. _sqlSugar.BeginTran();
  3052. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3053. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3054. {
  3055. IsDel = 1,
  3056. DeleteUserId = dto.DeleteUserId,
  3057. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3058. })
  3059. .Where(it => it.Id == dto.Id)
  3060. .ExecuteCommand();
  3061. if (res1 > 0)
  3062. {
  3063. int _diId = 0;
  3064. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3065. if (_ioaInfo != null)
  3066. {
  3067. _diId = _ioaInfo.DiId;
  3068. }
  3069. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3070. .SetColumns(a => new Grp_CreditCardPayment()
  3071. {
  3072. IsDel = 1,
  3073. DeleteUserId = dto.DeleteUserId,
  3074. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3075. })
  3076. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3077. .ExecuteCommand();
  3078. if (res2 > 0)
  3079. {
  3080. _sqlSugar.CommitTran();
  3081. return Ok(JsonView(true, "删除成功!"));
  3082. }
  3083. }
  3084. _sqlSugar.RollbackTran();
  3085. return Ok(JsonView(false, "删除失败"));
  3086. }
  3087. catch (Exception ex)
  3088. {
  3089. _sqlSugar.RollbackTran();
  3090. return Ok(JsonView(false, ex.Message));
  3091. }
  3092. }
  3093. #endregion
  3094. #region 团组英文资料
  3095. /// <summary>
  3096. /// 查询团组英文所有资料
  3097. /// </summary>
  3098. /// <param name="dto"></param>
  3099. /// <returns></returns>
  3100. [HttpPost]
  3101. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3102. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3103. {
  3104. try
  3105. {
  3106. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3107. if (groupData.Code != 0)
  3108. {
  3109. return Ok(JsonView(false, groupData.Msg));
  3110. }
  3111. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3112. }
  3113. catch (Exception ex)
  3114. {
  3115. return Ok(JsonView(false, "程序错误!"));
  3116. throw;
  3117. }
  3118. }
  3119. /// <summary>
  3120. /// 团组英文资料操作(Status:1.新增,2.修改)
  3121. /// </summary>
  3122. /// <param name="dto"></param>
  3123. /// <returns></returns>
  3124. [HttpPost]
  3125. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3126. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3127. {
  3128. try
  3129. {
  3130. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3131. if (groupData.Code != 0)
  3132. {
  3133. return Ok(JsonView(false, groupData.Msg));
  3134. }
  3135. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3136. }
  3137. catch (Exception ex)
  3138. {
  3139. return Ok(JsonView(false, "程序错误!"));
  3140. throw;
  3141. }
  3142. }
  3143. /// <summary>
  3144. /// 团组英文资料Id查询数据
  3145. /// </summary>
  3146. /// <param name="dto"></param>
  3147. /// <returns></returns>
  3148. [HttpPost]
  3149. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3150. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3151. {
  3152. try
  3153. {
  3154. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3155. if (_DelegationEnData != null)
  3156. {
  3157. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3158. }
  3159. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3160. }
  3161. catch (Exception ex)
  3162. {
  3163. return Ok(JsonView(false, "程序错误!"));
  3164. throw;
  3165. }
  3166. }
  3167. /// <summary>
  3168. /// 团组英文资料删除
  3169. /// </summary>
  3170. /// <param name="dto"></param>
  3171. /// <returns></returns>
  3172. [HttpPost]
  3173. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3174. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3175. {
  3176. try
  3177. {
  3178. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3179. if (!res)
  3180. {
  3181. return Ok(JsonView(false, "删除失败"));
  3182. }
  3183. return Ok(JsonView(true, "删除成功!"));
  3184. }
  3185. catch (Exception ex)
  3186. {
  3187. return Ok(JsonView(false, "程序错误!"));
  3188. throw;
  3189. }
  3190. }
  3191. #endregion
  3192. #region 导出邀请函
  3193. /// <summary>
  3194. /// 导出邀请函页面初始化
  3195. /// </summary>
  3196. /// <param name="dto"></param>
  3197. /// <returns></returns>
  3198. [HttpPost]
  3199. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3200. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3201. {
  3202. try
  3203. {
  3204. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3205. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3206. if (dto.DiId == 0)
  3207. {
  3208. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3209. }
  3210. else
  3211. {
  3212. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3213. }
  3214. return Ok(JsonView(true, "查询成功!", new
  3215. {
  3216. deleClient = crm_Deles,
  3217. delegations = grp_Delegations
  3218. }));
  3219. }
  3220. catch (Exception ex)
  3221. {
  3222. return Ok(JsonView(false, "程序错误!"));
  3223. throw;
  3224. }
  3225. }
  3226. /// <summary>
  3227. /// 导出邀请函
  3228. /// </summary>
  3229. /// <param name="dto"></param>
  3230. /// <returns></returns>
  3231. [HttpPost]
  3232. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3233. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3234. {
  3235. #region 参数验证
  3236. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3237. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3238. #endregion
  3239. try
  3240. {
  3241. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3242. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3243. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3244. From Grp_TourClientList tcl
  3245. Left Join
  3246. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3247. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3248. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3249. From Crm_DeleClient dc
  3250. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3251. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3252. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3253. Where dc.IsDel = 0) temp
  3254. On temp.DcId =tcl.ClientId
  3255. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3256. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3257. List<string> texts = new List<string>();
  3258. if (datas.Count != 0)
  3259. {
  3260. foreach (TourClientListDetailsView item in datas)
  3261. {
  3262. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3263. {
  3264. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3265. }
  3266. else
  3267. {
  3268. string name = item.LastName + item.FirstName;
  3269. texts.Add(name);
  3270. }
  3271. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3272. {
  3273. if (!transDic.ContainsKey(item.Job))
  3274. {
  3275. texts.Add(item.Job);
  3276. }
  3277. }
  3278. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3279. {
  3280. texts.Add(item.CompanyFullName);
  3281. }
  3282. }
  3283. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3284. if (transData.Count > 0)
  3285. {
  3286. foreach (TranslateResult item in transData)
  3287. {
  3288. if (!transDic.ContainsKey(item.Query))
  3289. {
  3290. transDic.Add(item.Query, item.Translation);
  3291. }
  3292. }
  3293. }
  3294. List<GuestList> list = new List<GuestList>();
  3295. foreach (TourClientListDetailsView dele in datas)
  3296. {
  3297. GuestList guestList = new GuestList();
  3298. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3299. {
  3300. guestList.Name = dele.Pinyin;
  3301. }
  3302. else
  3303. {
  3304. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3305. guestList.Name = Name;
  3306. }
  3307. if (dele.Sex == 0)
  3308. {
  3309. guestList.Sex = "Male";
  3310. }
  3311. else if (dele.Sex == 1)
  3312. {
  3313. guestList.Sex = "Female";
  3314. }
  3315. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3316. if (!string.IsNullOrEmpty(dele.Job))
  3317. {
  3318. guestList.Job = dele.Job;
  3319. }
  3320. list.Add(guestList);
  3321. }
  3322. //载入模板
  3323. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3324. DocumentBuilder builder = new DocumentBuilder(doc);
  3325. //获取word里所有表格
  3326. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3327. //获取所填表格的序数
  3328. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3329. var rowStart = tableOne.Rows[0]; //获取第1行
  3330. //循环赋值
  3331. for (int i = 0; i < list.Count; i++)
  3332. {
  3333. builder.MoveToCell(0, i + 1, 0, 0);
  3334. builder.Write(list[i].Name.ToString());
  3335. builder.MoveToCell(0, i + 1, 1, 0);
  3336. builder.Write(list[i].Sex.ToString());
  3337. builder.MoveToCell(0, i + 1, 2, 0);
  3338. builder.Write(list[i].DOB.ToString());
  3339. builder.MoveToCell(0, i + 1, 3, 0);
  3340. builder.Write(list[i].Job.ToString());
  3341. }
  3342. //删除多余行
  3343. while (tableOne.Rows.Count > list.Count + 1)
  3344. {
  3345. tableOne.Rows.RemoveAt(list.Count + 1);
  3346. }
  3347. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3348. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3349. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3350. doc.Save(filePath);
  3351. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3352. return Ok(JsonView(true, "操作成功!", Url));
  3353. }
  3354. else
  3355. {
  3356. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3357. }
  3358. }
  3359. catch (Exception ex)
  3360. {
  3361. return Ok(JsonView(false, ex.Message));
  3362. throw;
  3363. }
  3364. }
  3365. #endregion
  3366. #region 团组经理模块 出入境费用
  3367. ///// <summary>
  3368. ///// 团组模块 - 出入境费用
  3369. ///// </summary>
  3370. ///// <returns></returns>
  3371. //[HttpPost]
  3372. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3373. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3374. //{
  3375. // try
  3376. // {
  3377. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3378. // if (data.Code != 0)
  3379. // {
  3380. // return Ok(JsonView(false, data.Msg));
  3381. // }
  3382. // return Ok(JsonView(true, "查询成功!"));
  3383. // }
  3384. // catch (Exception ex)
  3385. // {
  3386. // return Ok(JsonView(false, ex.Message));
  3387. // throw;
  3388. // }
  3389. //}
  3390. /// <summary>
  3391. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3392. /// </summary>
  3393. /// <returns></returns>
  3394. [HttpPost]
  3395. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3396. public async Task<IActionResult> SetDayAndCostAreaChange()
  3397. {
  3398. try
  3399. {
  3400. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3401. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3402. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3403. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3404. foreach (var item in unite) //处理交集数据
  3405. {
  3406. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3407. }
  3408. foreach (var item in merge) //处理差集数据
  3409. {
  3410. int nationalTravelFeeId = 0;
  3411. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3412. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3413. else
  3414. {
  3415. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3416. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3417. }
  3418. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3419. }
  3420. //只更新dayAndCost 的 nationalTravelFeeId;
  3421. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3422. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3423. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3424. }
  3425. catch (Exception ex)
  3426. {
  3427. return Ok(JsonView(false, ex.Message));
  3428. throw;
  3429. }
  3430. }
  3431. /// <summary>
  3432. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3433. /// </summary>
  3434. /// <returns></returns>
  3435. [HttpPost]
  3436. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3437. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3438. {
  3439. try
  3440. {
  3441. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3442. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3443. //SetDataInfoView
  3444. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3445. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3446. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3447. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3448. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3449. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3450. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3451. //默认币种显示
  3452. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3453. {
  3454. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3455. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3456. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3457. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3458. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3459. };
  3460. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3461. if (_currencyRate.Count > 0)
  3462. {
  3463. foreach (var item in _currencyInfos)
  3464. {
  3465. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3466. if (rateInfo != null)
  3467. {
  3468. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3469. rate1 *= 1.035M;
  3470. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3471. }
  3472. }
  3473. }
  3474. return Ok(JsonView(true, "查询成功!", new
  3475. {
  3476. GroupNameData = groupNameData.Data,
  3477. CurrencyData = _CurrencyData,
  3478. WordTypeData = _WordTypeData,
  3479. ExcelTypeData = _ExcelTypeData,
  3480. CurrencyInit = _currencyInfos
  3481. }));
  3482. }
  3483. catch (Exception ex)
  3484. {
  3485. return Ok(JsonView(false, ex.Message));
  3486. throw;
  3487. }
  3488. }
  3489. /// <summary>
  3490. /// 团组模块 - 出入境费用
  3491. /// 实时汇率 tips
  3492. /// 签证费用 tips
  3493. /// </summary>
  3494. /// <returns></returns>
  3495. [HttpPost]
  3496. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3497. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3498. {
  3499. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3500. //默认币种显示
  3501. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3502. {
  3503. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3504. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3505. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3506. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3507. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3508. };
  3509. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3510. List<dynamic> reteInfos = new List<dynamic>();
  3511. if (_currencyRate.Count > 0)
  3512. {
  3513. foreach (var item in _currencyInfos)
  3514. {
  3515. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3516. if (rateInfo != null)
  3517. {
  3518. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3519. decimal rate1 = item.Rate;
  3520. rate1 *= 1.03M;
  3521. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3522. reteInfos.Add(new
  3523. {
  3524. currCode = item.CurrencyCode,
  3525. currName = item.CurrencyName,
  3526. rate = rate2,
  3527. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3528. });
  3529. }
  3530. }
  3531. }
  3532. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3533. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3534. return Ok(JsonView(true, "查询成功!", new
  3535. {
  3536. //GroupNameData = groupNameData.Data,
  3537. visaData = visaData.Data,
  3538. airData = airData.Data,
  3539. reteInfos = reteInfos
  3540. }));
  3541. }
  3542. /// <summary>
  3543. /// 团组模块 - 出入境费用 - Info
  3544. /// </summary>
  3545. /// <returns></returns>
  3546. [HttpPost]
  3547. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3548. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3549. {
  3550. try
  3551. {
  3552. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3553. if (data.Code != 0)
  3554. {
  3555. return Ok(JsonView(false, data.Msg));
  3556. }
  3557. return Ok(JsonView(true, "查询成功!", data.Data));
  3558. }
  3559. catch (Exception ex)
  3560. {
  3561. return Ok(JsonView(false, ex.Message));
  3562. }
  3563. }
  3564. /// <summary>
  3565. /// 团组模块 - 出入境费用 - Add And Update
  3566. /// </summary>
  3567. /// <returns></returns>
  3568. [HttpPost]
  3569. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3570. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3571. {
  3572. try
  3573. {
  3574. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3575. if (data.Code != 0)
  3576. {
  3577. return Ok(JsonView(false, data.Msg));
  3578. }
  3579. return Ok(JsonView(true, data.Msg, data.Data));
  3580. }
  3581. catch (Exception ex)
  3582. {
  3583. return Ok(JsonView(false, ex.Message));
  3584. }
  3585. }
  3586. /// <summary>
  3587. /// 团组模块 - 出入境费用 - File downlaod
  3588. /// </summary>
  3589. /// <param name="dto"></param>
  3590. /// <returns></returns>
  3591. [HttpPost]
  3592. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3593. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3594. {
  3595. try
  3596. {
  3597. if (dto.DiId < 1)
  3598. {
  3599. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3600. }
  3601. if (dto.ExportType < 1)
  3602. {
  3603. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3604. }
  3605. if (dto.SubTypeId < 1)
  3606. {
  3607. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3608. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3609. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3610. 3 团组成员名单 1 团组成员名单"));
  3611. }
  3612. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3613. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3614. if (_EnterExitCosts == null)
  3615. {
  3616. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3617. }
  3618. //数据源
  3619. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3620. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3621. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3622. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3623. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3624. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3625. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3626. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3627. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3628. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3629. .Select((tcl, dc, cc) => new
  3630. {
  3631. Name = dc.LastName + dc.FirstName,
  3632. Sex = dc.Sex,
  3633. Birthday = dc.BirthDay,
  3634. Company = cc.CompanyFullName,
  3635. Job = dc.Job
  3636. })
  3637. .ToList();
  3638. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3639. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3640. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3641. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3642. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3643. if (dto.ExportType == 1) //明细表
  3644. {
  3645. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3646. {
  3647. //获取模板
  3648. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3649. //载入模板
  3650. Document doc = new Document(tempPath);
  3651. DocumentBuilder builder = new DocumentBuilder(doc);
  3652. //利用键值对存放数据
  3653. Dictionary<string, string> dic = new Dictionary<string, string>();
  3654. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3655. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3656. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3657. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3658. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3659. string row1_1 = "";
  3660. if (_EnterExitCosts.Visa > 0)
  3661. {
  3662. //insidePayTotal += _EnterExitCosts.Visa;
  3663. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3664. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3665. {
  3666. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3667. }
  3668. }
  3669. string row1_2 = "";
  3670. if (_EnterExitCosts.YiMiao > 0)
  3671. {
  3672. //insidePayTotal += _EnterExitCosts.YiMiao;
  3673. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3674. }
  3675. if (_EnterExitCosts.HeSuan > 0)
  3676. {
  3677. //insidePayTotal += _EnterExitCosts.HeSuan;
  3678. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  3679. }
  3680. if (_EnterExitCosts.Service > 0)
  3681. {
  3682. //insidePayTotal += _EnterExitCosts.Service;
  3683. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  3684. }
  3685. string row1_3 = "";
  3686. if (_EnterExitCosts.Safe > 0)
  3687. {
  3688. //insidePayTotal += _EnterExitCosts.Safe;
  3689. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  3690. }
  3691. if (_EnterExitCosts.Ticket > 0)
  3692. {
  3693. //insidePayTotal += _EnterExitCosts.Ticket;
  3694. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  3695. }
  3696. string row1 = "";
  3697. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  3698. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  3699. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  3700. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  3701. dic.Add("Row1Str", row1);
  3702. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  3703. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  3704. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3705. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  3706. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3707. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  3708. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  3709. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  3710. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  3711. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  3712. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  3713. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  3714. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  3715. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  3716. #region 填充word模板书签内容
  3717. foreach (var key in dic.Keys)
  3718. {
  3719. builder.MoveToBookmark(key);
  3720. builder.Write(dic[key]);
  3721. }
  3722. #endregion
  3723. #region 填充word表格内容
  3724. ////获读取指定表格方法二
  3725. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3726. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3727. for (int i = 0; i < dac1.Count; i++)
  3728. {
  3729. Grp_DayAndCost dac = dac1[i];
  3730. if (dac == null) continue;
  3731. builder.MoveToCell(0, i, 0, 0);
  3732. builder.Write("第" + dac.Days.ToString() + "晚:");
  3733. builder.MoveToCell(0, i, 1, 0);
  3734. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  3735. //builder.Write(dac.Place == null ? "" : dac.Place);
  3736. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3737. builder.MoveToCell(0, i, 2, 0);
  3738. builder.Write("费用标准:");
  3739. string curr = "";
  3740. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3741. if (currData != null)
  3742. {
  3743. curr = currData.Name;
  3744. }
  3745. builder.MoveToCell(0, i, 3, 0);
  3746. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3747. builder.MoveToCell(0, i, 4, 0);
  3748. builder.Write("费用小计:");
  3749. builder.MoveToCell(0, i, 5, 0);
  3750. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3751. }
  3752. //删除多余行
  3753. while (table1.Rows.Count > dac1.Count)
  3754. {
  3755. table1.Rows.RemoveAt(dac1.Count);
  3756. }
  3757. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  3758. for (int i = 0; i < dac2.Count; i++)
  3759. {
  3760. Grp_DayAndCost dac = dac2[i];
  3761. if (dac == null) continue;
  3762. builder.MoveToCell(1, i, 0, 0);
  3763. builder.Write("第" + dac.Days.ToString() + "天:");
  3764. builder.MoveToCell(1, i, 1, 0);
  3765. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3766. builder.MoveToCell(1, i, 2, 0);
  3767. builder.Write("费用标准:");
  3768. string curr = "";
  3769. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3770. if (currData != null)
  3771. {
  3772. curr = currData.Name;
  3773. }
  3774. builder.MoveToCell(1, i, 3, 0);
  3775. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3776. builder.MoveToCell(1, i, 4, 0);
  3777. builder.Write("费用小计:");
  3778. builder.MoveToCell(1, i, 5, 0);
  3779. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3780. }
  3781. //删除多余行
  3782. while (table2.Rows.Count > dac2.Count)
  3783. {
  3784. table2.Rows.RemoveAt(dac2.Count);
  3785. }
  3786. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  3787. for (int i = 0; i < dac3.Count; i++)
  3788. {
  3789. Grp_DayAndCost dac = dac3[i];
  3790. if (dac == null) continue;
  3791. builder.MoveToCell(2, i, 0, 0);
  3792. builder.Write("第" + dac.Days.ToString() + "天:");
  3793. builder.MoveToCell(2, i, 1, 0);
  3794. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3795. builder.MoveToCell(2, i, 2, 0);
  3796. builder.Write("费用标准:");
  3797. string curr = "";
  3798. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3799. if (currData != null)
  3800. {
  3801. curr = currData.Name;
  3802. }
  3803. builder.MoveToCell(2, i, 3, 0);
  3804. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3805. builder.MoveToCell(2, i, 4, 0);
  3806. builder.Write("费用小计:");
  3807. builder.MoveToCell(2, i, 5, 0);
  3808. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3809. }
  3810. //删除多余行
  3811. while (table3.Rows.Count > dac3.Count)
  3812. {
  3813. table3.Rows.RemoveAt(dac3.Count);
  3814. }
  3815. #endregion
  3816. //文件名
  3817. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  3818. AsposeHelper.removewatermark_v2180();
  3819. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3820. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3821. return Ok(JsonView(true, "成功", new { Url = url }));
  3822. }
  3823. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  3824. {
  3825. //获取模板
  3826. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  3827. //载入模板
  3828. Document doc = new Document(tempPath);
  3829. DocumentBuilder builder = new DocumentBuilder(doc);
  3830. Dictionary<string, string> dic = new Dictionary<string, string>();
  3831. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3832. {
  3833. List<string> list = new List<string>();
  3834. try
  3835. {
  3836. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3837. foreach (var item in spilitArr)
  3838. {
  3839. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3840. var depCode = spDotandEmpty[2].Substring(0, 3);
  3841. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3842. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  3843. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  3844. list.Add(depName);
  3845. list.Add(arrName);
  3846. }
  3847. list = list.Distinct().ToList();
  3848. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3849. }
  3850. catch (Exception)
  3851. {
  3852. dic.Add("ReturnCode", "行程录入不正确!");
  3853. }
  3854. }
  3855. else
  3856. {
  3857. dic.Add("ReturnCode", "未录入行程!");
  3858. }
  3859. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3860. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3861. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3862. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3863. {
  3864. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3865. dic.Add("Day", sp.Days.ToString());
  3866. }
  3867. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3868. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3869. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3870. //dic.Add("Names", Names);
  3871. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3872. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3873. decimal dac1totalPrice = 0.00M;
  3874. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  3875. foreach (var dac in dac1)
  3876. {
  3877. if (dac.SubTotal == 0.00M)
  3878. {
  3879. continue;
  3880. }
  3881. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  3882. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  3883. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  3884. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3885. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  3886. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3887. builder.Write(currency);//币种
  3888. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  3889. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3890. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  3891. builder.Write("");//人数
  3892. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  3893. builder.Write("");//天数
  3894. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  3895. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3896. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  3897. decimal rate = 0.00M;
  3898. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3899. builder.Write(rate.ToString("#0.0000"));//汇率
  3900. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  3901. decimal rbmPrice = dac.SubTotal;
  3902. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3903. accommodationStartIndex++;
  3904. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3905. }
  3906. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  3907. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  3908. {
  3909. table1.Rows.RemoveAt(i - 1);
  3910. foodandotherStartIndex--;
  3911. }
  3912. if (dac2.Count == dac3.Count)//国家 币种 金额
  3913. {
  3914. for (int i = 0; i < dac2.Count; i++)
  3915. {
  3916. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  3917. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  3918. }
  3919. }
  3920. decimal dac2totalPrice = 0.00M;
  3921. foreach (var dac in dac2)
  3922. {
  3923. if (dac.SubTotal == 0)
  3924. {
  3925. continue;
  3926. }
  3927. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  3928. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3929. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  3930. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3931. builder.Write(currency);//币种
  3932. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  3933. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3934. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  3935. builder.Write("");//人数
  3936. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  3937. builder.Write("");//天数
  3938. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  3939. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3940. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  3941. decimal rate = 0.00M;
  3942. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3943. builder.Write(rate.ToString("#0.0000"));//汇率
  3944. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  3945. decimal rbmPrice = dac.SubTotal;
  3946. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3947. foodandotherStartIndex++;
  3948. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3949. }
  3950. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  3951. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  3952. {
  3953. table1.Rows.RemoveAt(i - 1);
  3954. }
  3955. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3956. string otherFeeStr = "";
  3957. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  3958. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  3959. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  3960. if (otherFeeStr.Length > 0)
  3961. {
  3962. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  3963. otherFeeStr = $"({otherFeeStr})";
  3964. dic.Add("OtherFeeStr", otherFeeStr);
  3965. }
  3966. //总计
  3967. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  3968. //国际旅费
  3969. string outsideJJ = "";
  3970. string allPriceJJ = "";
  3971. if (_EnterExitCosts.SumJJC == 1)
  3972. {
  3973. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3974. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  3975. }
  3976. string outsideGW = "";
  3977. string allPriceGW = "";
  3978. if (_EnterExitCosts.SumGWC == 1)
  3979. {
  3980. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  3981. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  3982. }
  3983. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  3984. {
  3985. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  3986. dic.Add("InTravelPrice", InTravelPriceStr);
  3987. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  3988. dic.Add("FinalSumPrice", FinalSumPriceStr);
  3989. }
  3990. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  3991. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  3992. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  3993. foreach (var key in dic.Keys)
  3994. {
  3995. builder.MoveToBookmark(key);
  3996. builder.Write(dic[key]);
  3997. }
  3998. //模板文件名
  3999. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4000. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4001. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4002. return Ok(JsonView(true, "成功", new { Url = url }));
  4003. }
  4004. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4005. {
  4006. //获取模板
  4007. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4008. //载入模板
  4009. WorkbookDesigner designer = new WorkbookDesigner();
  4010. designer.Workbook = new Workbook(tempPath);
  4011. Dictionary<string, string> dic = new Dictionary<string, string>();
  4012. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4013. {
  4014. List<string> list = new List<string>();
  4015. try
  4016. {
  4017. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4018. foreach (var item in spilitArr)
  4019. {
  4020. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4021. var depCode = spDotandEmpty[2].Substring(0, 3);
  4022. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4023. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4024. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4025. list.Add(depName);
  4026. list.Add(arrName);
  4027. }
  4028. list = list.Distinct().ToList();
  4029. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4030. }
  4031. catch (Exception)
  4032. {
  4033. dic.Add("ReturnCode", "行程录入不正确!");
  4034. }
  4035. }
  4036. else
  4037. {
  4038. dic.Add("ReturnCode", "未录入行程!");
  4039. }
  4040. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4041. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4042. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4043. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4044. {
  4045. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4046. dic.Add("Day", sp.Days.ToString());
  4047. }
  4048. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4049. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4050. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4051. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4052. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4053. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4054. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4055. designer.SetDataSource("Name", Names);
  4056. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4057. designer.SetDataSource("Day", dic["Day"] + "天");
  4058. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4059. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4060. int startIndex = 10;
  4061. const int startIndexcopy = 10;
  4062. if (dac2.Count == dac3.Count)//国家 币种 金额
  4063. {
  4064. for (int i = 0; i < dac2.Count; i++)
  4065. {
  4066. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4067. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4068. }
  4069. }
  4070. DataTable dtdac1 = new DataTable();
  4071. List<string> place = new List<string>();
  4072. dtdac1.Columns.AddRange(new DataColumn[] {
  4073. new DataColumn(){ ColumnName = "city"},
  4074. new DataColumn(){ ColumnName = "curr"},
  4075. new DataColumn(){ ColumnName = "criterion"},
  4076. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4077. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4078. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4079. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4080. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4081. });
  4082. DataTable dtdac2 = new DataTable();
  4083. dtdac2.Columns.AddRange(new DataColumn[] {
  4084. new DataColumn(){ ColumnName = "city"},
  4085. new DataColumn(){ ColumnName = "curr"},
  4086. new DataColumn(){ ColumnName = "criterion"},
  4087. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4088. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4089. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4090. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4091. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4092. });
  4093. dtdac1.TableName = "tb1";
  4094. dtdac2.TableName = "tb2";
  4095. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4096. foreach (var item in dac1)
  4097. {
  4098. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4099. if (place.Contains(item.Place))
  4100. {
  4101. continue;
  4102. }
  4103. DataRow row = dtdac1.NewRow();
  4104. row["city"] = item.Place;
  4105. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4106. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4107. row["curr"] = currency;
  4108. row["rate"] = rate.ToString("#0.0000");
  4109. row["criterion"] = item.Cost.ToString("#0.00");
  4110. row["number"] = 1;
  4111. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4112. //row["costRMB"] = rbmPrice;
  4113. dtdac1.Rows.Add(row);
  4114. place.Add(item.Place);
  4115. }
  4116. place = new List<string>();
  4117. foreach (var item in dac2)
  4118. {
  4119. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4120. if (place.Contains(item.Place))
  4121. {
  4122. continue;
  4123. }
  4124. DataRow row = dtdac2.NewRow();
  4125. row["city"] = item.Place;
  4126. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4127. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4128. row["curr"] = currency;
  4129. row["rate"] = rate.ToString("#0.0000");
  4130. row["criterion"] = item.Cost.ToString("#0.00");
  4131. row["number"] = 1;
  4132. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4133. //row["cost"] = item.SubTotal;
  4134. //row["costRMB"] = rbmPrice;
  4135. dtdac2.Rows.Add(row);
  4136. place.Add(item.Place);
  4137. //dac2totalPrice += rbmPrice;
  4138. }
  4139. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4140. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4141. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4142. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4143. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4144. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4145. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4146. string cellStr = $" 5.其他费用(";
  4147. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4148. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4149. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4150. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4151. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4152. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4153. if (cellStr.Length > 8)
  4154. {
  4155. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4156. }
  4157. cellStr += ")";
  4158. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4159. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4160. decimal pxFee = dac4.Sum(it => it.Cost);
  4161. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4162. string celllastStr1 = "";
  4163. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4164. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4165. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4166. celllastStr1 += $",国际旅费 元";
  4167. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4168. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4169. designer.SetDataSource("cell4Str", cell4Str);
  4170. designer.SetDataSource("cellStr", cellStr);
  4171. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4172. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4173. designer.SetDataSource("celllastStr", celllastStr);
  4174. Workbook wb = designer.Workbook;
  4175. var sheet = wb.Worksheets[0];
  4176. //绑定datatable数据集
  4177. designer.SetDataSource(dtdac1);
  4178. designer.SetDataSource(dtdac2);
  4179. designer.Process();
  4180. var rowStart = dtdac1.Rows.Count;
  4181. while (rowStart > 0)
  4182. {
  4183. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4184. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4185. startIndex++;
  4186. rowStart--;
  4187. }
  4188. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4189. startIndex += 1; //总计行
  4190. rowStart = dtdac2.Rows.Count;
  4191. while (rowStart > 0)
  4192. {
  4193. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4194. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4195. startIndex++;
  4196. rowStart--;
  4197. }
  4198. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4199. wb.CalculateFormula(true);
  4200. //模板文件名
  4201. string strFileName = $"四川省商务厅出国经费财政先行审核表.xls";
  4202. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4203. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4204. return Ok(JsonView(true, "成功", new { Url = url }));
  4205. }
  4206. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4207. {
  4208. //获取模板
  4209. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4210. //载入模板
  4211. Document doc = new Document(tempPath);
  4212. DocumentBuilder builder = new DocumentBuilder(doc);
  4213. Dictionary<string, string> dic = new Dictionary<string, string>();
  4214. dic.Add("GroupName", _DelegationInfo.TeamName);
  4215. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4216. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4217. string missionLeaderJob = "";//负责人job
  4218. int groupNumber = 0; //团人数
  4219. if (DeleClientList.Count > 0)
  4220. {
  4221. missionLeader = DeleClientList[0]?.Name ?? "";
  4222. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4223. }
  4224. dic.Add("MissionLeader", missionLeader); //团负责人
  4225. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4226. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4227. #region MyRegion
  4228. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4229. //{
  4230. // List<string> list = new List<string>();
  4231. // try
  4232. // {
  4233. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4234. // foreach (var item in spilitArr)
  4235. // {
  4236. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4237. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4238. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4239. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4240. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4241. // list.Add(depName);
  4242. // list.Add(arrName);
  4243. // }
  4244. // list = list.Distinct().ToList();
  4245. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4246. // }
  4247. // catch (Exception)
  4248. // {
  4249. // dic.Add("ReturnCode", "行程录入不正确!");
  4250. // }
  4251. //}
  4252. //else
  4253. //{
  4254. // dic.Add("ReturnCode", "未录入行程!");
  4255. //}
  4256. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4257. dic.Add("ReturnCode", string.Join("、", countrys));
  4258. #endregion
  4259. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4260. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4261. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4262. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4263. //{
  4264. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4265. // dic.Add("Day", sp.Days.ToString());
  4266. //}
  4267. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4268. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4269. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4270. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4271. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4272. //培训人员名单
  4273. int cultivateRowIndex = 7;
  4274. foreach (var item in DeleClientList)
  4275. {
  4276. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4277. builder.Write(item.Name);
  4278. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4279. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4280. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4281. string birthDay = "";
  4282. if (item.Birthday != null)
  4283. {
  4284. DateTime dt = Convert.ToDateTime(item.Birthday);
  4285. birthDay = $"{dt.Year}.{dt.Month}";
  4286. }
  4287. builder.Write(birthDay);
  4288. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4289. builder.Write(item.Company);
  4290. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4291. builder.Write(item.Job);
  4292. cultivateRowIndex++;
  4293. }
  4294. //删除多余行
  4295. //cultivateRowIndex -= 2;
  4296. int delRows = 10 + 7 - cultivateRowIndex;
  4297. if (delRows > 0)
  4298. {
  4299. for (int i = 0; i < delRows; i++)
  4300. {
  4301. table1.Rows.RemoveAt(cultivateRowIndex);
  4302. //cultivateRowIndex++;
  4303. }
  4304. }
  4305. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4306. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4307. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4308. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4309. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4310. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4311. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4312. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4313. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4314. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4315. //其他费用
  4316. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4317. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4318. //其他费用合计
  4319. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4320. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4321. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4322. //公务舱合计
  4323. //国际旅费
  4324. string outsideJJ = "";
  4325. string allPriceJJ = "";
  4326. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4327. {
  4328. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4329. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4330. }
  4331. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4332. {
  4333. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4334. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4335. }
  4336. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4337. {
  4338. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4339. dic.Add("AirFeeTotal", airFeeTotalStr);
  4340. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4341. dic.Add("FeeTotal", feeTotalStr);
  4342. }
  4343. foreach (var key in dic.Keys)
  4344. {
  4345. builder.MoveToBookmark(key);
  4346. builder.Write(dic[key]);
  4347. }
  4348. //模板文件名
  4349. string strFileName = $"{_DelegationInfo.TeamName}成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4350. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4351. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4352. return Ok(JsonView(true, "成功", new { Url = url }));
  4353. }
  4354. }
  4355. else if (dto.ExportType == 2) //表格
  4356. {
  4357. //利用键值对存放数据
  4358. Dictionary<string, string> dic = new Dictionary<string, string>();
  4359. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4360. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4361. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4362. dic.Add("Day", sp.Days.ToString());
  4363. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4364. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4365. {
  4366. //获取模板
  4367. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4368. //载入模板
  4369. Document doc = new Document(tempPath);
  4370. DocumentBuilder builder = new DocumentBuilder(doc);
  4371. dic.Add("TeamName", _DelegationInfo.TeamName);
  4372. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4373. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4374. string missionLeaderName = "",
  4375. missionLeaderJob = "";
  4376. if (DeleClientList.Count > 0)
  4377. {
  4378. missionLeaderName = DeleClientList[0].Name;
  4379. missionLeaderJob = DeleClientList[0].Job;
  4380. }
  4381. dic.Add("MissionLeaderName", missionLeaderName);
  4382. dic.Add("MissionLeaderJob", missionLeaderJob);
  4383. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4384. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4385. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4386. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4387. int rowCount = 10;//总人数行
  4388. int startRowIndex = 7; //起始行
  4389. for (int i = 0; i < DeleClientList.Count; i++)
  4390. {
  4391. builder.MoveToCell(0, startRowIndex, 0, 0);
  4392. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4393. builder.MoveToCell(0, startRowIndex, 1, 0);
  4394. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4395. builder.Write(sex);//性别
  4396. builder.MoveToCell(0, startRowIndex, 2, 0);
  4397. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4398. builder.MoveToCell(0, startRowIndex, 3, 0);
  4399. builder.Write(DeleClientList[i].Company);//工作单位
  4400. builder.MoveToCell(0, startRowIndex, 4, 0);
  4401. builder.Write(DeleClientList[i].Job);//职务及级别
  4402. builder.MoveToCell(0, startRowIndex, 5, 0);
  4403. builder.Write("");//人员属性
  4404. builder.MoveToCell(0, startRowIndex, 6, 0);
  4405. builder.Write("");//上次出国时间
  4406. startRowIndex++;
  4407. }
  4408. int nullRow = rowCount - DeleClientList.Count;//空行
  4409. for (int i = 0; i < nullRow; i++)
  4410. {
  4411. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4412. }
  4413. foreach (var key in dic.Keys)
  4414. {
  4415. builder.MoveToBookmark(key);
  4416. builder.Write(dic[key]);
  4417. }
  4418. //模板文件名
  4419. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4420. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4421. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4422. return Ok(JsonView(true, "成功", new { Url = url }));
  4423. }
  4424. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4425. {
  4426. //获取模板
  4427. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4428. //载入模板
  4429. Document doc = new Document(tempPath);
  4430. DocumentBuilder builder = new DocumentBuilder(doc);
  4431. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4432. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4433. dic.Add("Names", Names);
  4434. int accommodationRows = 12, foodandotherRows = 12;
  4435. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4436. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4437. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4438. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4439. int accommodationStartIndex = 6;
  4440. decimal dac1totalPrice = 0.00M;
  4441. foreach (var dac in dac1)
  4442. {
  4443. if (dac.SubTotal == 0)
  4444. {
  4445. continue;
  4446. }
  4447. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4448. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4449. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4450. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4451. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4452. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4453. builder.Write(currency);//币种
  4454. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4455. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4456. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4457. builder.Write("");//人数
  4458. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4459. builder.Write("");//天数
  4460. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4461. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4462. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4463. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4464. builder.Write(rate.ToString("#0.0000"));//汇率
  4465. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4466. decimal rbmPrice = rate * dac.SubTotal;
  4467. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4468. accommodationStartIndex++;
  4469. dac1totalPrice += rbmPrice;
  4470. }
  4471. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4472. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4473. builder.Write("小计");
  4474. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4475. builder.Write(dac1totalPrice.ToString("#0.00"));
  4476. accommodationStartIndex++;
  4477. int nullRow = accommodationRows - dac1.Count;
  4478. //删除空行
  4479. //if (nullRow > 0)
  4480. //{
  4481. // int rowIndex = accommodationStartIndex;
  4482. // for (int i = 0; i < nullRow; i++)
  4483. // {
  4484. // Row row = table1.Rows[rowIndex];
  4485. // row.Remove();
  4486. // rowIndex++;
  4487. // }
  4488. //}
  4489. if (dac2.Count == dac3.Count)//国家 币种 金额
  4490. {
  4491. for (int i = 0; i < dac2.Count; i++)
  4492. {
  4493. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4494. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4495. }
  4496. }
  4497. int foodandotherStartIndex = 19;//
  4498. decimal dac2totalPrice = 0.00M;
  4499. foreach (var dac in dac2)
  4500. {
  4501. if (dac.SubTotal == 0)
  4502. {
  4503. continue;
  4504. }
  4505. //foodandotherStartIndex = 12;
  4506. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4507. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4508. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4509. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4510. builder.Write(currency);//币种
  4511. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4512. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4513. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4514. builder.Write("");//人数
  4515. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4516. builder.Write("");//天数
  4517. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4518. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4519. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4520. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4521. builder.Write(rate.ToString("#0.0000"));//汇率
  4522. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4523. decimal rbmPrice = rate * dac.SubTotal;
  4524. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4525. foodandotherStartIndex++;
  4526. dac2totalPrice += rbmPrice;
  4527. }
  4528. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4529. //删除空行
  4530. if (dac2.Count < foodandotherRows)
  4531. {
  4532. //int nullRow = accommodationRows - dac2.Count;
  4533. //while (table2.Rows.Count > dac2.Count)
  4534. //{
  4535. // table2.Rows.RemoveAt(dac2.Count);
  4536. //}
  4537. }
  4538. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4539. string otherFeeStr = "";
  4540. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4541. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4542. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4543. if (otherFeeStr.Length > 0)
  4544. {
  4545. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4546. otherFeeStr = $"({otherFeeStr})";
  4547. dic.Add("OtherFeeStr", otherFeeStr);
  4548. }
  4549. foreach (var key in dic.Keys)
  4550. {
  4551. builder.MoveToBookmark(key);
  4552. builder.Write(dic[key]);
  4553. }
  4554. //模板文件名
  4555. string strFileName = $"省级单位出(境)经费报销单.docx";
  4556. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4557. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4558. return Ok(JsonView(true, "成功", new { Url = url }));
  4559. }
  4560. }
  4561. else if (dto.ExportType == 3)
  4562. {
  4563. if (dto.SubTypeId == 1) //团组成员名单
  4564. {
  4565. if (DeleClientList.Count < 1)
  4566. {
  4567. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4568. }
  4569. //获取模板
  4570. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4571. //载入模板
  4572. Document doc = new Document(tempPath);
  4573. DocumentBuilder builder = new DocumentBuilder(doc);
  4574. //获取word里所有表格
  4575. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4576. //获取所填表格的序数
  4577. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4578. var rowStart = tableOne.Rows[0]; //获取第1行
  4579. //循环赋值
  4580. for (int i = 0; i < DeleClientList.Count; i++)
  4581. {
  4582. builder.MoveToCell(0, i + 1, 0, 0);
  4583. builder.Write(DeleClientList[i].Name);
  4584. builder.MoveToCell(0, i + 1, 1, 0);
  4585. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4586. builder.Write(sex);
  4587. builder.MoveToCell(0, i + 1, 2, 0);
  4588. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4589. builder.MoveToCell(0, i + 1, 3, 0);
  4590. builder.Write(DeleClientList[i].Company);
  4591. builder.MoveToCell(0, i + 1, 4, 0);
  4592. builder.Write(DeleClientList[i].Job);
  4593. }
  4594. //删除多余行
  4595. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4596. {
  4597. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4598. }
  4599. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4600. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4601. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4602. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4603. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4604. return Ok(JsonView(true, "成功", new { Url = url }));
  4605. }
  4606. }
  4607. return Ok(JsonView(false, "操作失败!"));
  4608. }
  4609. catch (Exception ex)
  4610. {
  4611. return Ok(JsonView(false, ex.Message));
  4612. }
  4613. }
  4614. /// <summary>
  4615. /// 获取三公费用标准city
  4616. /// </summary>
  4617. /// <param name="placeData"></param>
  4618. /// <param name="nationalTravelFeeId"></param>
  4619. /// <returns></returns>
  4620. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4621. {
  4622. string _city = string.Empty;
  4623. if (placeData.Count < 1) return _city;
  4624. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4625. if (data == null) return _city;
  4626. string country = data.Country;
  4627. string city = data.City;
  4628. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4629. else _city = city;
  4630. return _city;
  4631. }
  4632. /// <summary>
  4633. /// 团组模块 - 出入境费用 - 明细表导出
  4634. /// </summary>
  4635. /// <returns></returns>
  4636. [HttpPost]
  4637. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4638. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4639. {
  4640. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4641. if (data.Code != 0)
  4642. {
  4643. return Ok(JsonView(false, data.Msg));
  4644. }
  4645. return Ok(JsonView(true, data.Msg, data.Data));
  4646. }
  4647. /// <summary>
  4648. /// 团组模块 - 出入境费用 - 一键清空
  4649. /// </summary>
  4650. /// <returns></returns>
  4651. [HttpPost]
  4652. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4653. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4654. {
  4655. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4656. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4657. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4658. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4659. if (_view.Code == 0)
  4660. {
  4661. return Ok(JsonView(true, "操作成功"));
  4662. }
  4663. return Ok(JsonView(false, "操作失败"));
  4664. }
  4665. /// <summary>
  4666. /// 团组模块 - 出入境费用 - 子项删除
  4667. /// </summary>
  4668. /// <returns></returns>
  4669. [HttpPost]
  4670. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4671. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4672. {
  4673. try
  4674. {
  4675. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4676. if (data.Code != 0)
  4677. {
  4678. return Ok(JsonView(false, data.Msg));
  4679. }
  4680. return Ok(JsonView(true, "操作成功!", data.Data));
  4681. }
  4682. catch (Exception ex)
  4683. {
  4684. return Ok(JsonView(false, ex.Message));
  4685. }
  4686. }
  4687. /// <summary>
  4688. /// 团组模块 - 出入境国家费用标准 List
  4689. /// </summary>
  4690. /// <returns></returns>
  4691. [HttpPost]
  4692. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4693. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  4694. {
  4695. try
  4696. {
  4697. Stopwatch sw = new Stopwatch();
  4698. sw.Start();
  4699. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  4700. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4701. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4702. Where gntf.Isdel = 0");
  4703. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  4704. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  4705. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  4706. //foreach (var item in nationalTravel)
  4707. //{
  4708. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  4709. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  4710. // if (otherData != null)
  4711. // {
  4712. // cityData.Remove(otherData);
  4713. // cityData.Add(otherData);
  4714. // }
  4715. // nationalTravelFeeData1.Add(new
  4716. // {
  4717. // Country = item.Country,
  4718. // CityData = cityData
  4719. // });
  4720. //}
  4721. sw.Stop();
  4722. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  4723. }
  4724. catch (Exception ex)
  4725. {
  4726. return Ok(JsonView(false, ex.Message));
  4727. throw;
  4728. }
  4729. }
  4730. /// <summary>
  4731. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  4732. /// </summary>
  4733. /// <returns></returns>
  4734. [HttpPost]
  4735. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4736. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  4737. {
  4738. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  4739. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  4740. List<string> countryData = new List<string>();
  4741. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  4742. countryData = countryData.Distinct().ToList();
  4743. List<dynamic> dataSource = new List<dynamic>();
  4744. foreach (var item in countryData)
  4745. {
  4746. List<string> cityData1 = new List<string>();
  4747. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  4748. var countryData2 = new
  4749. {
  4750. CountryName = item,
  4751. CityData = cityData1
  4752. };
  4753. dataSource.Add(countryData2);
  4754. }
  4755. return Ok(JsonView(true, "查询成功!", dataSource));
  4756. }
  4757. /// <summary>
  4758. /// 团组模块 - 出入境国家费用标准 Page List
  4759. /// </summary>
  4760. /// <returns></returns>
  4761. [HttpPost]
  4762. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4763. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  4764. {
  4765. int portId = dto.PortType;
  4766. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4767. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  4768. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  4769. string whereSql = string.Empty;
  4770. if (!string.IsNullOrEmpty(dto.Country))
  4771. {
  4772. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  4773. }
  4774. if (!string.IsNullOrEmpty(dto.City))
  4775. {
  4776. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  4777. }
  4778. string pageSql = string.Format(@"Select * From (
  4779. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  4780. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  4781. From Grp_NationalTravelFee gntf
  4782. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4783. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4784. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  4785. RefAsync<int> total = 0;
  4786. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  4787. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  4788. }
  4789. /// <summary>
  4790. /// 团组模块 - 出入境国家费用标准 根据城市查询
  4791. /// </summary>
  4792. /// <returns></returns>
  4793. [HttpPost]
  4794. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4795. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  4796. {
  4797. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  4798. int portId = dto.PortType;
  4799. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4800. string whereSql = string.Empty;
  4801. if (!string.IsNullOrEmpty(dto.Country))
  4802. {
  4803. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  4804. }
  4805. if (!string.IsNullOrEmpty(dto.City))
  4806. {
  4807. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  4808. }
  4809. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  4810. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  4811. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  4812. From Grp_NationalTravelFee gntf
  4813. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4814. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4815. Where gntf.Isdel = 0 {0} ", whereSql);
  4816. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  4817. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  4818. }
  4819. /// <summary>
  4820. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  4821. /// </summary>
  4822. /// <returns></returns>
  4823. [HttpPost]
  4824. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4825. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  4826. {
  4827. try
  4828. {
  4829. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  4830. if (data.Code != 0)
  4831. {
  4832. return Ok(JsonView(false, data.Msg));
  4833. }
  4834. return Ok(JsonView(true, "操作成功!", data.Data));
  4835. }
  4836. catch (Exception ex)
  4837. {
  4838. return Ok(JsonView(false, ex.Message));
  4839. }
  4840. }
  4841. /// <summary>
  4842. /// 团组模块 - 出入境国家费用标准 - Del
  4843. /// </summary>
  4844. /// <returns></returns>
  4845. [HttpPost]
  4846. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4847. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  4848. {
  4849. try
  4850. {
  4851. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  4852. {
  4853. Id = dto.Id,
  4854. DeleteUserId = dto.DeleteUserId,
  4855. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  4856. IsDel = 1
  4857. };
  4858. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  4859. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  4860. .WhereColumns(it => new { it.Id })
  4861. .ExecuteCommandAsync();
  4862. if (delStatus <= 0)
  4863. {
  4864. return Ok(JsonView(false, "删除失败!"));
  4865. }
  4866. return Ok(JsonView(true, "操作成功!"));
  4867. }
  4868. catch (Exception ex)
  4869. {
  4870. return Ok(JsonView(false, ex.Message));
  4871. }
  4872. }
  4873. #endregion
  4874. #region 签证费用录入
  4875. /// <summary>
  4876. /// 根据diid查询签证费用列表
  4877. /// </summary>
  4878. /// <param name="dto"></param>
  4879. /// <returns></returns>
  4880. [HttpPost]
  4881. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4882. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  4883. {
  4884. try
  4885. {
  4886. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  4887. if (groupData.Code != 0)
  4888. {
  4889. return Ok(JsonView(false, groupData.Msg));
  4890. }
  4891. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4892. }
  4893. catch (Exception ex)
  4894. {
  4895. return Ok(JsonView(false, ex.Message));
  4896. }
  4897. }
  4898. /// <summary>
  4899. /// 根据签证费用Id查询单条数据及c表数据
  4900. /// </summary>
  4901. /// <param name="dto"></param>
  4902. /// <returns></returns>
  4903. [HttpPost]
  4904. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4905. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  4906. {
  4907. try
  4908. {
  4909. Result groupData = await _visaPriceRep.PostVisaById(dto);
  4910. if (groupData.Code != 0)
  4911. {
  4912. return Ok(JsonView(false, groupData.Msg));
  4913. }
  4914. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4915. }
  4916. catch (Exception ex)
  4917. {
  4918. return Ok(JsonView(false, ex.Message));
  4919. }
  4920. }
  4921. /// <summary>
  4922. /// 签证费用删除
  4923. /// </summary>
  4924. /// <param name="dto"></param>
  4925. /// <returns></returns>
  4926. [HttpPost]
  4927. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4928. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  4929. {
  4930. _sqlSugar.BeginTran();
  4931. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  4932. if (!res)
  4933. {
  4934. _sqlSugar.RollbackTran();
  4935. return Ok(JsonView(false, "删除失败"));
  4936. }
  4937. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  4938. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  4939. .SetColumns(a => new Grp_CreditCardPayment()
  4940. {
  4941. IsDel = 1,
  4942. DeleteUserId = dto.DeleteUserId,
  4943. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4944. }).ExecuteCommand();
  4945. if (resSub < 1)
  4946. {
  4947. _sqlSugar.RollbackTran();
  4948. return Ok(JsonView(false, "删除失败"));
  4949. }
  4950. _sqlSugar.CommitTran();
  4951. return Ok(JsonView(true, "删除成功!"));
  4952. }
  4953. /// <summary>
  4954. /// 签证费用录入下拉框初始化
  4955. /// </summary>
  4956. /// <returns></returns>
  4957. [HttpPost]
  4958. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4959. public async Task<IActionResult> VisaPriceAddSelect()
  4960. {
  4961. try
  4962. {
  4963. //支付方式
  4964. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  4965. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  4966. //币种
  4967. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  4968. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  4969. //乘客类型
  4970. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  4971. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  4972. //卡类型
  4973. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  4974. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  4975. var data = new
  4976. {
  4977. Payment = _Payment,
  4978. CurrencyList = _CurrencyList,
  4979. PassengerType = _PassengerType,
  4980. BankCard = _BankCard
  4981. };
  4982. return Ok(JsonView(true, "查询成功!", data));
  4983. }
  4984. catch (Exception ex)
  4985. {
  4986. return Ok(JsonView(false, "程序错误!"));
  4987. throw;
  4988. }
  4989. }
  4990. /// <summary>
  4991. /// 签证费用录入操作(Status:1.新增,2.修改)
  4992. /// </summary>
  4993. /// <param name="dto"></param>
  4994. /// <returns></returns>
  4995. [HttpPost]
  4996. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4997. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  4998. {
  4999. try
  5000. {
  5001. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5002. if (groupData.Code != 0)
  5003. {
  5004. return Ok(JsonView(false, groupData.Msg));
  5005. }
  5006. #region 应用推送
  5007. try
  5008. {
  5009. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5010. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5011. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5012. }
  5013. catch (Exception ex)
  5014. {
  5015. }
  5016. #endregion
  5017. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5018. }
  5019. catch (Exception ex)
  5020. {
  5021. return Ok(JsonView(false, ex.Message));
  5022. }
  5023. }
  5024. #endregion
  5025. #region op费用录入
  5026. /// <summary>
  5027. /// 根据diid查询op费用列表
  5028. /// </summary>
  5029. /// <param name="dto"></param>
  5030. /// <returns></returns>
  5031. [HttpPost]
  5032. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5033. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5034. {
  5035. try
  5036. {
  5037. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5038. if (groupData.Code != 0)
  5039. {
  5040. return Ok(JsonView(false, groupData.Msg));
  5041. }
  5042. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5043. }
  5044. catch (Exception ex)
  5045. {
  5046. return Ok(JsonView(false, ex.Message));
  5047. }
  5048. }
  5049. /// <summary>
  5050. /// 根据op费用Id查询单条数据及c表数据
  5051. /// </summary>
  5052. /// <param name="dto"></param>
  5053. /// <returns></returns>
  5054. [HttpPost]
  5055. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5056. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5057. {
  5058. try
  5059. {
  5060. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5061. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5062. var data = new
  5063. {
  5064. CarTouristGuideGround = _groupData,
  5065. CreditCardPayment = _creditCardPayment
  5066. };
  5067. return Ok(JsonView(true, "查询成功!", data));
  5068. }
  5069. catch (Exception ex)
  5070. {
  5071. return Ok(JsonView(false, "程序错误!"));
  5072. }
  5073. }
  5074. /// <summary>
  5075. /// op费用删除
  5076. /// </summary>
  5077. /// <param name="dto"></param>
  5078. /// <returns></returns>
  5079. [HttpPost]
  5080. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5081. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5082. {
  5083. try
  5084. {
  5085. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5086. if (!res)
  5087. {
  5088. return Ok(JsonView(false, "删除失败"));
  5089. }
  5090. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5091. {
  5092. IsDel = 1,
  5093. DeleteUserId = dto.DeleteUserId,
  5094. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5095. }).ExecuteCommandAsync();
  5096. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5097. {
  5098. IsDel = 1,
  5099. DeleteUserId = dto.DeleteUserId,
  5100. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5101. }).ExecuteCommandAsync();
  5102. return Ok(JsonView(true, "删除成功!"));
  5103. }
  5104. catch (Exception ex)
  5105. {
  5106. return Ok(JsonView(false, "程序错误!"));
  5107. throw;
  5108. }
  5109. }
  5110. /// <summary>
  5111. /// op费用录入操作(Status:1.新增,2.修改)
  5112. /// </summary>
  5113. /// <param name="dto"></param>
  5114. /// <returns></returns>
  5115. [HttpPost]
  5116. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5117. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5118. {
  5119. try
  5120. {
  5121. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5122. if (groupData.Code != 0)
  5123. {
  5124. return Ok(JsonView(false, groupData.Msg));
  5125. }
  5126. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5127. }
  5128. catch (Exception ex)
  5129. {
  5130. return Ok(JsonView(false, ex.Message));
  5131. }
  5132. }
  5133. /// <summary>
  5134. /// 填写费用详细页面初始化绑定
  5135. /// </summary>
  5136. /// <param name="dto"></param>
  5137. /// <returns></returns>
  5138. [HttpPost]
  5139. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5140. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5141. {
  5142. try
  5143. {
  5144. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5145. if (groupData.Code != 0)
  5146. {
  5147. return Ok(JsonView(false, groupData.Msg));
  5148. }
  5149. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5150. }
  5151. catch (Exception ex)
  5152. {
  5153. return Ok(JsonView(false, ex.Message));
  5154. }
  5155. }
  5156. /// <summary>
  5157. /// 根据op费用Id查询详细数据
  5158. /// </summary>
  5159. /// <param name="dto"></param>
  5160. /// <returns></returns>
  5161. [HttpPost]
  5162. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5163. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5164. {
  5165. try
  5166. {
  5167. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5168. if (groupData.Code != 0)
  5169. {
  5170. return Ok(JsonView(false, groupData.Msg));
  5171. }
  5172. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5173. }
  5174. catch (Exception ex)
  5175. {
  5176. return Ok(JsonView(false, ex.Message));
  5177. }
  5178. }
  5179. /// <summary>
  5180. /// OP费用录入填写详情
  5181. /// </summary>
  5182. /// <param name="dto"></param>
  5183. /// <returns></returns>
  5184. [HttpPost]
  5185. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5186. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5187. {
  5188. try
  5189. {
  5190. #region 参数校验
  5191. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5192. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5193. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5194. #endregion
  5195. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5196. if (groupData.Code != 0)
  5197. {
  5198. return Ok(JsonView(false, groupData.Msg));
  5199. }
  5200. //自动审核
  5201. await _feeAuditRep.FeeAutomaticAudit(2,dto.DiId,dto.CTGGRId);
  5202. #region 应用推送
  5203. try
  5204. {
  5205. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5206. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5207. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5208. }
  5209. catch (Exception ex)
  5210. {
  5211. }
  5212. #endregion
  5213. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5214. }
  5215. catch (Exception ex)
  5216. {
  5217. return Ok(JsonView(false, ex.Message));
  5218. }
  5219. }
  5220. /// <summary>
  5221. /// 获取三公详细所有城市
  5222. /// </summary>
  5223. /// <returns></returns>
  5224. [HttpGet]
  5225. public IActionResult OpCarCityResult()
  5226. {
  5227. var jw = JsonView(false);
  5228. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5229. {
  5230. x.Id,
  5231. x.Country,
  5232. x.City,
  5233. }).ToList();
  5234. if (data.Count > 0)
  5235. {
  5236. jw = JsonView(true, "获取成功!", data);
  5237. }
  5238. else
  5239. {
  5240. jw.Msg = "城市数据为空!";
  5241. jw.Data = new string[0];
  5242. }
  5243. return Ok(jw);
  5244. }
  5245. /// <summary>
  5246. /// 导出地接费用明细
  5247. /// </summary>
  5248. /// <param name="dto"></param>
  5249. /// <returns></returns>
  5250. [HttpPost]
  5251. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5252. {
  5253. var jw = JsonView(false);
  5254. if (dto.Diid < 1)
  5255. {
  5256. jw.Msg = "请输入正确的diid!";
  5257. return Ok(jw);
  5258. }
  5259. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5260. if (group == null)
  5261. {
  5262. jw.Msg = "未找到团组信息!";
  5263. return Ok(jw);
  5264. }
  5265. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5266. if (localGuideArr.Count == 0)
  5267. {
  5268. jw.Msg = "该团组暂无地接信息!";
  5269. return Ok(jw);
  5270. }
  5271. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5272. var overspendSoure = new Dictionary<int, int>
  5273. {
  5274. { 91, 982 }, //车
  5275. { 92 , 1059} ,//导游
  5276. { 994 , 1073}, //翻译
  5277. { 988 , 1074 }, //早餐
  5278. { 93 , 1075 }, //午餐
  5279. { 989 , 1076 }, //晚餐
  5280. };
  5281. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5282. foreach (var groupArr in localGroup)
  5283. {
  5284. var keyValue = groupArr.Key;
  5285. if (int.TryParse(keyValue, out int cityid))
  5286. {
  5287. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5288. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5289. }
  5290. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5291. foreach (var item in groupArr)
  5292. {
  5293. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5294. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5295. new Grp_CarTouristGuideGroundReservationsContentExtend
  5296. {
  5297. Count = a.Count,
  5298. CreateTime = a.CreateTime,
  5299. CreateUserId = a.CreateUserId,
  5300. CTGGRId = a.CTGGRId,
  5301. Currency = a.Currency,
  5302. DatePrice = a.DatePrice,
  5303. DeleteTime = a.DeleteTime,
  5304. DeleteUserId = a.DeleteUserId,
  5305. DiId = a.DiId,
  5306. Id = a.Id,
  5307. IsDel = a.IsDel,
  5308. Price = a.Price,
  5309. PriceContent = a.PriceContent,
  5310. Remark = a.Remark,
  5311. SId = a.SId,
  5312. SidName = b.Name,
  5313. Units = a.Units,
  5314. }
  5315. ).ToList();
  5316. if (content.Count > 0)
  5317. {
  5318. contentArr.Add(content);
  5319. }
  5320. }
  5321. //open excel
  5322. //set excel
  5323. //save excel
  5324. try
  5325. {
  5326. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5327. IWorkbook workbook;
  5328. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5329. {
  5330. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5331. }
  5332. else
  5333. {
  5334. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5335. }
  5336. ISheet sheet = workbook.GetSheetAt(0);
  5337. var rowStartIndex = 2;
  5338. var clounmCount = 10;
  5339. var initStyleRow = sheet.GetRow(2);
  5340. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5341. //var overspendArrDetail =
  5342. var existsId = new List<CarCompare>();
  5343. var lastElem = arr.Last();
  5344. var thisSid = -1;
  5345. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5346. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5347. {
  5348. Name = "未知币种!",
  5349. Remark = "未知币种!",
  5350. };
  5351. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5352. Action cloneRowFn = () =>
  5353. {
  5354. rowStartIndex++;
  5355. var cloneRow = sheet.CreateRow(rowStartIndex);
  5356. // 复制样式
  5357. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5358. {
  5359. ICell sourceCell = initStyleRow.GetCell(i);
  5360. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5361. // 确保单元格存在样式
  5362. if (sourceCell.CellStyle != null)
  5363. {
  5364. targetCell.CellStyle = sourceCell.CellStyle;
  5365. }
  5366. }
  5367. };
  5368. var mergeRow = () =>
  5369. {
  5370. for (int i = 2; i < sheet.LastRowNum; i++)
  5371. {
  5372. var row = sheet.GetRow(i);
  5373. var cellFirst = row.GetCell(0);
  5374. var thisIndex = i + 1;
  5375. while (thisIndex < sheet.LastRowNum)
  5376. {
  5377. var nextRow = sheet.GetRow(thisIndex);
  5378. var nextCellFirst = nextRow.GetCell(0);
  5379. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5380. {
  5381. thisIndex++;
  5382. }
  5383. else
  5384. {
  5385. break;
  5386. }
  5387. }
  5388. thisIndex--;
  5389. if (thisIndex != i)
  5390. {
  5391. //合并row
  5392. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5393. i, // 起始行索引(0-based)
  5394. thisIndex, // 结束行索引(0-based)
  5395. 0, // 起始列索引(0-based)
  5396. 0 // 结束列索引(0-based)
  5397. );
  5398. sheet.AddMergedRegion(cellRangeAddress);
  5399. i = thisIndex;
  5400. }
  5401. }
  5402. };
  5403. var chaoshiNumber = 0;
  5404. var totalNumber = 0.00M;
  5405. string lastStr = "";
  5406. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5407. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5408. {
  5409. b.IsAuditGM,
  5410. x.Id,
  5411. x.Area,
  5412. b.PayPercentage,
  5413. b.PayMoney,
  5414. }).ToList();
  5415. string yesPayment = "", noPayment = "";
  5416. foreach (var item in queryCarArrByCityAndDiid)
  5417. {
  5418. if (item.IsAuditGM == 1)
  5419. {
  5420. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5421. }
  5422. else
  5423. {
  5424. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5425. }
  5426. }
  5427. lastStr = yesPayment + noPayment;
  5428. foreach (var item in arr)
  5429. {
  5430. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5431. {
  5432. if (thisSid != item.SId)
  5433. {
  5434. if (thisSid == -1)
  5435. {
  5436. thisSid = item.SId;
  5437. }
  5438. else
  5439. {
  5440. //合并小计行
  5441. //创建合并区域的实例
  5442. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5443. rowStartIndex, // 起始行索引(0-based)
  5444. rowStartIndex, // 结束行索引(0-based)
  5445. 0, // 起始列索引(0-based)
  5446. 3 // 结束列索引(0-based)
  5447. );
  5448. sheet.AddMergedRegion(cellRangeAddress);
  5449. var CellStyle = workbook.CreateCellStyle();
  5450. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5451. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5452. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5453. for (int i = 0; i <= clounmCount; i++)
  5454. {
  5455. if (i > 6)
  5456. {
  5457. var CellStyle1 = workbook.CreateCellStyle();
  5458. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5459. IFont Font = workbook.CreateFont(); // 创建字体
  5460. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5461. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5462. CellStyle1.SetFont(Font);
  5463. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5464. }
  5465. else
  5466. {
  5467. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5468. }
  5469. }
  5470. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5471. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5472. //超时合计
  5473. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5474. //超时数
  5475. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5476. //超时合计费用
  5477. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5478. thisSid = item.SId;
  5479. cloneRowFn();
  5480. chaoshiNumber = 0;
  5481. totalNumber = 0;
  5482. }
  5483. }
  5484. IRow row = sheet.GetRow(rowStartIndex);
  5485. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5486. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5487. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5488. if (isOpenOverspendSoure)
  5489. {
  5490. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5491. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5492. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5493. }
  5494. for (int i = 0; i <= clounmCount; i++)
  5495. {
  5496. var cell = row.GetCell(i);
  5497. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5498. if (cell == null)
  5499. {
  5500. cell = row.CreateCell(i);
  5501. }
  5502. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5503. fontRed.CloneStyleFrom(cell.CellStyle);
  5504. IFont Font = workbook.CreateFont(); // 创建字体
  5505. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5506. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5507. fontRed.SetFont(Font);
  5508. byte[] rgb = new byte[3] { 255, 242, 204 };
  5509. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5510. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5511. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5512. if (workbook is XSSFWorkbook)
  5513. {
  5514. BackgroundColor255_242_204.FillForegroundColor = 0;
  5515. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5516. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5517. }
  5518. else
  5519. {
  5520. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5521. }
  5522. if (i == 1 || i > 6)
  5523. {
  5524. if (i > 6)
  5525. {
  5526. fontRed.FillForegroundColor = 0;
  5527. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5528. fontRed.FillPattern = FillPattern.SolidForeground;
  5529. }
  5530. cell.CellStyle = fontRed;
  5531. }
  5532. if (i > 2 && i < 7)
  5533. {
  5534. cell.CellStyle = BackgroundColor255_242_204;
  5535. }
  5536. cell.SetCellValue(setCellValue); //写入单元格
  5537. }
  5538. if (overspendSoure.ContainsKey(thisSid)) {
  5539. var overspendId = overspendSoure[thisSid];
  5540. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5541. }
  5542. cloneRowFn();
  5543. existsId.Add(new CarCompare
  5544. {
  5545. DataPrice = item.DatePrice.ObjToDate(),
  5546. Sid = item.SId
  5547. });
  5548. }
  5549. if (item.Equals(lastElem))
  5550. {
  5551. //合并小计行
  5552. //创建合并区域的实例
  5553. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5554. rowStartIndex, // 起始行索引(0-based)
  5555. rowStartIndex, // 结束行索引(0-based)
  5556. 0, // 起始列索引(0-based)
  5557. 3 // 结束列索引(0-based)
  5558. );
  5559. sheet.AddMergedRegion(cellRangeAddress);
  5560. var CellStyle = workbook.CreateCellStyle();
  5561. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5562. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5563. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5564. for (int i = 0; i <= clounmCount; i++)
  5565. {
  5566. if (i > 6)
  5567. {
  5568. var CellStyle1 = workbook.CreateCellStyle();
  5569. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5570. IFont Font = workbook.CreateFont(); // 创建字体
  5571. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5572. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5573. CellStyle1.SetFont(Font);
  5574. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5575. }
  5576. else
  5577. {
  5578. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5579. }
  5580. }
  5581. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5582. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5583. //超时合计
  5584. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5585. //超时数
  5586. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5587. //超时合计费用
  5588. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5589. cloneRowFn();
  5590. // 创建合并区域的实例
  5591. cellRangeAddress = new CellRangeAddress(
  5592. rowStartIndex, // 起始行索引(0-based)
  5593. rowStartIndex, // 结束行索引(0-based)
  5594. 0, // 起始列索引(0-based)
  5595. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  5596. );
  5597. // 添加合并区域
  5598. sheet.AddMergedRegion(cellRangeAddress);
  5599. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  5600. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  5601. }
  5602. }
  5603. mergeRow();
  5604. // 保存修改后的Excel文件到新文件
  5605. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  5606. // new FileStream(newFilePath, FileMode.CreateNew)
  5607. using (var stream = new MemoryStream())
  5608. {
  5609. workbook.Write(stream, true);
  5610. stream.Flush();
  5611. stream.Seek(0, SeekOrigin.Begin);
  5612. MemoryStream memoryStream = new MemoryStream();
  5613. stream.CopyTo(memoryStream);
  5614. memoryStream.Seek(0, SeekOrigin.Begin);
  5615. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  5616. }
  5617. workbook.Close();
  5618. workbook.Dispose();
  5619. }
  5620. catch (Exception ex)
  5621. {
  5622. jw.Msg = "出现异常!" + ex.Message;
  5623. return Ok(jw);
  5624. }
  5625. }
  5626. if (Zips.Count > 0)
  5627. {
  5628. IOOperatorHelper io = new IOOperatorHelper();
  5629. var byts = io.ConvertZipStream(Zips);
  5630. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  5631. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  5632. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  5633. }
  5634. else
  5635. {
  5636. jw.Msg = "暂无生成文件!";
  5637. }
  5638. return Ok(jw);
  5639. }
  5640. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  5641. {
  5642. string outStr = string.Empty;
  5643. switch (i)
  5644. {
  5645. case 0:
  5646. outStr = arr[0].SidName;
  5647. break;
  5648. case 1:
  5649. outStr = arr[0].DataPriceStr;
  5650. break;
  5651. case 2:
  5652. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  5653. break;
  5654. case 4:
  5655. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  5656. break;
  5657. case 7:
  5658. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5659. {
  5660. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  5661. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  5662. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  5663. }
  5664. break;
  5665. case 8:
  5666. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5667. {
  5668. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  5669. }
  5670. break;
  5671. case 9:
  5672. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5673. {
  5674. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  5675. }
  5676. break;
  5677. case 10:
  5678. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5679. {
  5680. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  5681. }
  5682. break;
  5683. }
  5684. return outStr;
  5685. }
  5686. #region OP行程单
  5687. /// <summary>
  5688. /// OP行程单初始化
  5689. /// </summary>
  5690. /// <param name="dto"></param>
  5691. /// <returns></returns>
  5692. [HttpPost]
  5693. public IActionResult InitOpTravel(InitOpTravelDto dto)
  5694. {
  5695. var jw = JsonView(false);
  5696. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  5697. var group = groupList.First();
  5698. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  5699. if (group == null)
  5700. {
  5701. jw.Msg = "暂无团组!";
  5702. return Ok(jw);
  5703. }
  5704. group = groupList.Find(x => x.Id == diid);
  5705. if (group == null)
  5706. {
  5707. jw.Msg = "请输入正确的团组ID!";
  5708. return Ok(jw);
  5709. }
  5710. string city = string.Empty;
  5711. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  5712. if (blackCode.Count > 0)
  5713. {
  5714. var black = blackCode.First();
  5715. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  5716. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  5717. if (blackSp.Length > 0)
  5718. {
  5719. try
  5720. {
  5721. var cityArrCode = new List<string>(20);
  5722. foreach (var item in blackSp)
  5723. {
  5724. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  5725. var IndexSelect = itemSp[2];
  5726. var cityArrCodeLength = cityArrCode.Count - 1;
  5727. var startCity = IndexSelect.Substring(0, 3);
  5728. if (cityArrCodeLength > 0)
  5729. {
  5730. var arrEndCity = cityArrCode[cityArrCodeLength];
  5731. if (arrEndCity != startCity)
  5732. {
  5733. cityArrCode.Add(startCity.ToUpper());
  5734. }
  5735. }
  5736. else
  5737. {
  5738. cityArrCode.Add(startCity.ToUpper());
  5739. }
  5740. var endCity = IndexSelect.Substring(3, 3);
  5741. cityArrCode.Add(endCity.ToUpper());
  5742. }
  5743. var cityThree = string.Empty;
  5744. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  5745. cityThree = cityThree.TrimEnd(',');
  5746. if (string.IsNullOrWhiteSpace(cityThree))
  5747. {
  5748. throw new
  5749. Exception("error");
  5750. }
  5751. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  5752. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  5753. foreach (var item in cityArrCode)
  5754. {
  5755. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  5756. if (find != null)
  5757. {
  5758. city += find.City + "/";
  5759. }
  5760. else
  5761. {
  5762. city += item + "三字码未收入/";
  5763. }
  5764. }
  5765. city = city.TrimEnd('/');
  5766. }
  5767. catch (Exception e)
  5768. {
  5769. city = "黑屏代码格式不正确!";
  5770. }
  5771. }
  5772. }
  5773. else
  5774. {
  5775. city = "未录入黑屏代码";
  5776. }
  5777. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  5778. {
  5779. Date = x.Date,
  5780. Days = x.Days,
  5781. Diffgroup = x.Diffgroup,
  5782. Diid = x.Diid,
  5783. Traffic_First = x.Traffic_First,
  5784. Traffic_Second = x.Traffic_Second,
  5785. Trip = x.Trip,
  5786. WeekDay = x.WeekDay,
  5787. Id = x.Id
  5788. }).ToList();
  5789. jw.Data = new
  5790. {
  5791. groupList = groupList.Select(x => new
  5792. {
  5793. x.Id,
  5794. x.TeamName,
  5795. x.TourCode
  5796. }).ToList(),
  5797. groupInfo = new
  5798. {
  5799. group.VisitDays,
  5800. group.TourCode,
  5801. group.VisitPNumber,
  5802. group.TeamName,
  5803. city
  5804. },
  5805. OpTravelList
  5806. };
  5807. jw.Code = 200;
  5808. jw.Msg = "操作成功!";
  5809. return Ok(jw);
  5810. }
  5811. /// <summary>
  5812. /// 删除团组行程单
  5813. /// </summary>
  5814. /// <returns></returns>
  5815. [HttpPost]
  5816. public IActionResult DelTravel(DelOpTravelDto dto)
  5817. {
  5818. var jw = JsonView(false);
  5819. if (dto.UserId <= 0 || dto.Diid <= 0)
  5820. {
  5821. jw.Msg = "请输入正确的参数!";
  5822. return Ok(jw);
  5823. }
  5824. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  5825. .SetColumns(x => new Grp_TravelList
  5826. {
  5827. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5828. DeleteUserId = dto.UserId,
  5829. IsDel = 1,
  5830. }).ExecuteCommand();
  5831. jw = JsonView(true);
  5832. return Ok(jw);
  5833. }
  5834. /// <summary>
  5835. /// 行程单保存
  5836. /// </summary>
  5837. /// <returns></returns>
  5838. [HttpPost]
  5839. public IActionResult TravelSave(TravelSaveDto dto)
  5840. {
  5841. var jw = JsonView(false);
  5842. if (dto.Arr.Count > 0)
  5843. {
  5844. try
  5845. {
  5846. _sqlSugar.BeginTran();
  5847. foreach (var item in dto.Arr)
  5848. {
  5849. if (item.Id == 0)
  5850. {
  5851. throw new Exception("请传入正确的Id");
  5852. }
  5853. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  5854. .SetColumns(x => new Grp_TravelList
  5855. {
  5856. Trip = item.Trip
  5857. }).ExecuteCommand();
  5858. }
  5859. _sqlSugar.CommitTran();
  5860. jw = JsonView(true);
  5861. }
  5862. catch (Exception ex)
  5863. {
  5864. _sqlSugar.RollbackTran();
  5865. jw.Msg = "程序异常!" + ex.Message;
  5866. }
  5867. }
  5868. else
  5869. {
  5870. jw.Msg = "请传入正确的参数!";
  5871. }
  5872. return Ok(jw);
  5873. }
  5874. /// <summary>
  5875. /// 导出行程单
  5876. /// </summary>
  5877. /// <param name="dto"></param>
  5878. /// <returns></returns>
  5879. [HttpPost]
  5880. public IActionResult ExportTravel(InitOpTravelDto dto)
  5881. {
  5882. var jw = JsonView(false);
  5883. int diid = 0;
  5884. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  5885. if (Find == null)
  5886. {
  5887. jw.Msg = "请选择正确的团组!";
  5888. return Ok(jw);
  5889. }
  5890. else
  5891. {
  5892. diid = Find.Id;
  5893. }
  5894. //数据源
  5895. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  5896. DataTable dtBlack = null;
  5897. try
  5898. {
  5899. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  5900. }
  5901. catch (Exception)
  5902. {
  5903. jw.Msg = "机票黑屏代码有误!";
  5904. return Ok(jw);
  5905. }
  5906. string CityStr = string.Empty;
  5907. if (dtBlack.Rows.Count == 0)
  5908. {
  5909. jw.Msg = "机票黑屏代码有误!";
  5910. return Ok(jw);
  5911. }
  5912. else
  5913. {
  5914. foreach (DataRow row in dtBlack.Rows)
  5915. {
  5916. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  5917. {
  5918. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  5919. return Ok(jw);
  5920. }
  5921. }
  5922. CityStr = GeneralMethod.GetGroupCityLine(diid,"/");
  5923. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  5924. }
  5925. //创建数据源Table
  5926. DataTable dtSource = new DataTable();
  5927. dtSource.Columns.Add("Days", typeof(string));
  5928. dtSource.Columns.Add("Date", typeof(string));
  5929. dtSource.Columns.Add("Week", typeof(string));
  5930. dtSource.Columns.Add("Traffic", typeof(string));
  5931. dtSource.Columns.Add("Trip", typeof(string));
  5932. //获取数据,放到datatable
  5933. foreach (var item in _travelList)
  5934. {
  5935. DataRow dr = dtSource.NewRow();
  5936. dr["Days"] = item.Days;
  5937. dr["Date"] = item.Date;
  5938. dr["Week"] = item.WeekDay;
  5939. dr["Traffic"] = item.Traffic_First
  5940. + "\r\n"
  5941. + item.Traffic_Second;
  5942. dr["Trip"] = item.Trip;
  5943. dtSource.Rows.Add(dr);
  5944. }
  5945. Dictionary<string, string> dic = new Dictionary<string, string>();
  5946. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  5947. dic.Add("City", CityStr);
  5948. dic.Add("Days", Find.VisitDays.ToString());
  5949. dic.Add("DeleCode", Find.TourCode);
  5950. dic.Add("Pnum", Find.VisitPNumber.ToString());
  5951. //模板路径
  5952. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  5953. //载入模板
  5954. Document doc = null;
  5955. DocumentBuilder builder = null;
  5956. try
  5957. {
  5958. //载入模板
  5959. doc = new Document(tempPath);
  5960. builder = new DocumentBuilder(doc);
  5961. }
  5962. catch (Exception)
  5963. {
  5964. jw.Msg = "模板位置不存在!";
  5965. return Ok(jw);
  5966. }
  5967. foreach (var key in dic.Keys)
  5968. {
  5969. Bookmark bookmark = doc.Range.Bookmarks[key];
  5970. if (bookmark != null)
  5971. {
  5972. builder.MoveToBookmark(key);
  5973. builder.Write(dic[key]);
  5974. }
  5975. }
  5976. //获取word里所有表格
  5977. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5978. //获取所填表格的序数
  5979. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5980. try
  5981. {
  5982. //循环赋值
  5983. for (int i = 0; i < dtSource.Rows.Count; i++)
  5984. {
  5985. builder.MoveToCell(0, i + 1, 0, 0);
  5986. builder.Write(dtSource.Rows[i]["Days"].ToString());
  5987. builder.MoveToCell(0, i + 1, 1, 0);
  5988. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  5989. builder.MoveToCell(0, i + 1, 2, 0);
  5990. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  5991. var trip = dtSource.Rows[i]["Trip"].ToString();
  5992. builder.MoveToCell(0, i + 1, 3, 0);
  5993. builder.Write(trip);
  5994. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  5995. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  5996. // 获取特定索引的段落
  5997. Paragraph paragraph = (Paragraph)paragraphs[0];
  5998. Run run = paragraph.Runs[0];
  5999. Aspose.Words.Font font = run.Font;
  6000. font.Name = "黑体";
  6001. //设置双休红色
  6002. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6003. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6004. paragraph = (Paragraph)paragraphs[1];
  6005. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6006. {
  6007. run = paragraph.Runs[0];
  6008. font = run.Font;
  6009. font.Color = Color.Red;
  6010. }
  6011. }
  6012. }
  6013. catch (Exception ex)
  6014. {
  6015. }
  6016. //删除多余行
  6017. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6018. {
  6019. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6020. }
  6021. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6022. if (!Directory.Exists(savePath))
  6023. {
  6024. try
  6025. {
  6026. Directory.CreateDirectory(savePath);
  6027. }
  6028. catch
  6029. {
  6030. }
  6031. }
  6032. string path = savePath + Find.TeamName + "出访日程.docx";
  6033. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程.docx";
  6034. try
  6035. {
  6036. doc.Save(path, Aspose.Words.SaveFormat.Doc);
  6037. jw = JsonView(true, "导出成功", ftpPath);
  6038. }
  6039. catch (Exception)
  6040. {
  6041. jw = JsonView(false);
  6042. }
  6043. return Ok(jw);
  6044. }
  6045. /// <summary>
  6046. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6047. /// </summary>
  6048. /// <param name="num"></param>
  6049. /// <returns></returns>
  6050. string GetNum(string num)
  6051. {
  6052. string str = "";
  6053. switch (num)
  6054. {
  6055. case "1":
  6056. str = "一";
  6057. break;
  6058. case "2":
  6059. str = "二";
  6060. break;
  6061. case "3":
  6062. str = "三";
  6063. break;
  6064. case "4":
  6065. str = "四";
  6066. break;
  6067. case "5":
  6068. str = "五";
  6069. break;
  6070. case "6":
  6071. str = "六";
  6072. break;
  6073. case "7":
  6074. str = "七";
  6075. break;
  6076. case "8":
  6077. str = "八";
  6078. break;
  6079. case "9":
  6080. str = "九";
  6081. break;
  6082. case "10":
  6083. str = "十";
  6084. break;
  6085. case "11":
  6086. str = "十一";
  6087. break;
  6088. case "12":
  6089. str = "十二";
  6090. break;
  6091. case "一":
  6092. str = "1";
  6093. break;
  6094. case "二":
  6095. str = "2";
  6096. break;
  6097. case "三":
  6098. str = "3";
  6099. break;
  6100. case "四":
  6101. str = "4";
  6102. break;
  6103. case "五":
  6104. str = "5";
  6105. break;
  6106. case "六":
  6107. str = "6";
  6108. break;
  6109. case "七":
  6110. str = "7";
  6111. break;
  6112. case "八":
  6113. str = "8";
  6114. break;
  6115. case "九":
  6116. str = "9";
  6117. break;
  6118. case "十":
  6119. str = "10";
  6120. break;
  6121. case "十一":
  6122. str = "11";
  6123. break;
  6124. case "十二":
  6125. str = "12";
  6126. break;
  6127. }
  6128. return str;
  6129. }
  6130. #endregion
  6131. #endregion
  6132. #region 团组成本
  6133. /// <summary>
  6134. /// 团组成本数据初始化
  6135. /// </summary>
  6136. /// <param name="dto"></param>
  6137. /// <returns></returns>
  6138. [HttpPost]
  6139. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6140. {
  6141. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6142. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6143. WHEN COUNT(*) >= 0 THEN 'True'
  6144. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6145. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6146. ").ToList(); //团组列表
  6147. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6148. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6149. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6150. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6151. if (groupinfoValue != null)
  6152. {
  6153. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6154. var spArr = new string[1] { countryArr };
  6155. if (countryArr.Contains("|"))
  6156. {
  6157. spArr = countryArr.Split("|");
  6158. }
  6159. else if (countryArr.Contains("、"))
  6160. {
  6161. spArr = countryArr.Split("、");
  6162. }
  6163. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6164. {
  6165. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6166. if (dbQueryCountry != null)
  6167. {
  6168. visaCountryInfoArr.Add(dbQueryCountry);
  6169. }
  6170. }
  6171. }
  6172. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6173. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6174. var create = _GroupCostRepository.
  6175. CreateGroupCostByBlackCode(dto.Diid);
  6176. if (groupCost.Count == 0 && create.Code == 0)
  6177. {
  6178. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6179. }
  6180. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6181. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6182. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6183. groupCostMap = groupCostMap.Select(x =>
  6184. {
  6185. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6186. {
  6187. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6188. }
  6189. return x;
  6190. }).ToList();
  6191. //GroupCostParameter.Add(new
  6192. // Grp_GroupCostParameter());
  6193. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6194. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6195. return Ok(JsonView(new
  6196. {
  6197. groupList,
  6198. groupInfo,
  6199. groupChecks,
  6200. groupCost = groupCostMap,
  6201. hotelNumber,
  6202. GroupCostParameter = GroupCostParameterMap,
  6203. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6204. {
  6205. x.VisaCountry,
  6206. x.VisaPrice,
  6207. x.Id,
  6208. }).ToList(),
  6209. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6210. blackCodeIsTrue = create.Code == 0 ? true : false,
  6211. hotelIsTrue = hotelIsTrue,
  6212. }));
  6213. }
  6214. /// <summary>
  6215. /// 团组成本信息保存
  6216. /// </summary>
  6217. /// <param name="dto"></param>
  6218. /// <returns></returns>
  6219. [HttpPost]
  6220. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6221. {
  6222. if (dto.Diid <= 0 || dto.Userid <= 0)
  6223. {
  6224. return Ok(JsonView(false));
  6225. }
  6226. JsonView jw = null;
  6227. bool isTrue = false;
  6228. #region 复制团组成本
  6229. //if (dto.Diid == 2581)
  6230. //{
  6231. // dto.Diid = 2599;
  6232. // dto.CheckBoxs.ForEach(x =>
  6233. // {
  6234. // x.Diid = 2599;
  6235. // });
  6236. // dto.GroupCosts.ForEach(x =>
  6237. // {
  6238. // x.Diid = 2599;
  6239. // });
  6240. // dto.CostTypeHotelNumbers.ForEach(x =>
  6241. // {
  6242. // x.Diid = 2599;
  6243. // });
  6244. // dto.GroupCostParameters.ForEach(x =>
  6245. // {
  6246. // x.DiId = 2599;
  6247. // });
  6248. //}
  6249. #endregion
  6250. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6251. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6252. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6253. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6254. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6255. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6256. try
  6257. {
  6258. _sqlSugar.BeginTran();
  6259. isTrue = await _GroupCostRepository.
  6260. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6261. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6262. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6263. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6264. _sqlSugar.CommitTran();
  6265. jw = JsonView(true, "保存成功!", isTrue);
  6266. }
  6267. catch (Exception)
  6268. {
  6269. _sqlSugar.RollbackTran();
  6270. jw = JsonView(false);
  6271. }
  6272. return Ok(jw);
  6273. }
  6274. /// <summary>
  6275. /// 司兼导数据
  6276. /// </summary>
  6277. /// <param name="dto"></param>
  6278. /// <returns></returns>
  6279. [HttpPost]
  6280. public IActionResult GetCarGuides(CarGuidesDto dto)
  6281. {
  6282. JsonView jw = null;
  6283. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6284. jw = JsonView(true, "获取成功!", Data);
  6285. return Ok(jw);
  6286. }
  6287. /// <summary>
  6288. /// 导游数据
  6289. /// </summary>
  6290. /// <param name="dto"></param>
  6291. /// <returns></returns>
  6292. [HttpPost]
  6293. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6294. {
  6295. JsonView jw = null;
  6296. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6297. // 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
  6298. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6299. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6300. jw = JsonView(true, "获取成功!", Data);
  6301. return Ok(jw);
  6302. }
  6303. /// <summary>
  6304. /// 成本车数据
  6305. /// </summary>
  6306. /// <param name="dto"></param>
  6307. /// <returns></returns>
  6308. [HttpPost]
  6309. public IActionResult GetCarInfo(CarGuidesDto dto)
  6310. {
  6311. JsonView jw = null;
  6312. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6313. jw = JsonView(true, "获取成功!", Data);
  6314. return Ok(jw);
  6315. }
  6316. /// <summary>
  6317. /// 景点数据
  6318. /// </summary>
  6319. /// <param name="dto"></param>
  6320. /// <returns></returns>
  6321. [HttpPost]
  6322. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6323. {
  6324. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6325. return Ok(JsonView(true, "获取成功!", Data));
  6326. }
  6327. /// <summary>
  6328. /// 成本通知
  6329. /// </summary>
  6330. /// <param name="dto"></param>
  6331. /// <returns></returns>
  6332. [HttpPost]
  6333. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6334. {
  6335. if (dto.Diid < 0)
  6336. {
  6337. return Ok(JsonView(false));
  6338. }
  6339. JsonView jw = null;
  6340. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6341. if (GroupCostParameter != null)
  6342. {
  6343. int IsShare = 0;
  6344. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6345. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6346. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6347. string msg = string.Empty;
  6348. if (isTrue)
  6349. {
  6350. if (IsShare == 0)
  6351. {
  6352. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6353. }
  6354. else
  6355. {
  6356. #region 企微通知对应岗位用户
  6357. try
  6358. {
  6359. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6360. }
  6361. catch (Exception ex)
  6362. {
  6363. }
  6364. #endregion
  6365. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6366. }
  6367. jw = JsonView(isTrue, msg, new { IsShare });
  6368. }
  6369. else
  6370. {
  6371. msg = "修改失败!";
  6372. jw = JsonView(isTrue, msg);
  6373. }
  6374. }
  6375. else
  6376. {
  6377. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6378. }
  6379. return Ok(jw);
  6380. }
  6381. /// <summary>
  6382. /// 导出报价单
  6383. /// </summary>
  6384. /// <param name="dto"></param>
  6385. /// <returns></returns>
  6386. [HttpPost]
  6387. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6388. {
  6389. if (dto.Diid == 0)
  6390. {
  6391. return Ok(JsonView(false, "请传递团组id"));
  6392. }
  6393. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6394. if (deleInfo.Code != 0)
  6395. {
  6396. return Ok(JsonView(false, "团组信息查询失败!"));
  6397. }
  6398. var di = deleInfo.Data as DelegationInfoWebView;
  6399. if (di != null)
  6400. {
  6401. //文件名
  6402. string strFileName = di.TeamName + "-收款账单.doc";
  6403. //获取模板
  6404. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6405. //载入模板
  6406. Document doc = new Document(tmppath);
  6407. decimal TotalPrice = 0.00M;
  6408. string itemStr = string.Empty;
  6409. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6410. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6411. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6412. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6413. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6414. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6415. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6416. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6417. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6418. foreach (var cost in groupCostType)
  6419. {
  6420. var List = cost.ToList();
  6421. if (cost.Key == "A")
  6422. {
  6423. foreach (var ListItem in List)
  6424. {
  6425. if (ListItem.number > 0)
  6426. {
  6427. if (ListItem.code.Contains("TBR"))
  6428. {
  6429. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6430. }
  6431. else
  6432. {
  6433. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6434. }
  6435. TotalPrice += (ListItem.number * ListItem.price);
  6436. }
  6437. }
  6438. }
  6439. else
  6440. {
  6441. itemStr = itemStr.Insert(0, "A段\r\n");
  6442. itemStr += "B段\r\n";
  6443. foreach (var ListItem in List)
  6444. {
  6445. if (ListItem.number > 0)
  6446. {
  6447. if (ListItem.code.Contains("TBR"))
  6448. {
  6449. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6450. }
  6451. else
  6452. {
  6453. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6454. }
  6455. TotalPrice += (ListItem.number * ListItem.price);
  6456. }
  6457. }
  6458. }
  6459. }
  6460. #region 替换Word模板书签内容
  6461. Dictionary<string, string> marks = new Dictionary<string, string>();
  6462. marks.Add("To", di.ClientUnit);//付款方
  6463. marks.Add("ToTel", di.TellPhone);//付款方电话
  6464. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6465. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6466. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6467. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6468. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6469. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6470. marks.Add("PayItemContent", itemStr);//详细信息
  6471. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6472. #endregion
  6473. ////注
  6474. //if (doc.Range.Bookmarks["Attention"] != null)
  6475. //{
  6476. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6477. // mark.Text = frList[0].Attention;
  6478. //}
  6479. foreach (var item in marks.Keys)
  6480. {
  6481. if (doc.Range.Bookmarks[item] != null)
  6482. {
  6483. Bookmark mark = doc.Range.Bookmarks[item];
  6484. mark.Text = marks[item];
  6485. }
  6486. }
  6487. byte[] bytes = null;
  6488. using (MemoryStream stream = new MemoryStream())
  6489. {
  6490. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6491. bytes = stream.ToArray();
  6492. }
  6493. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6494. return Ok(JsonView(true, "", new
  6495. {
  6496. Data = bytes,
  6497. strFileName,
  6498. }));
  6499. }
  6500. else
  6501. {
  6502. return Ok(JsonView(false, "团组信息不存在!"));
  6503. }
  6504. }
  6505. /// <summary>
  6506. /// 导出团组成本
  6507. /// </summary>
  6508. /// <param name="dto"></param>
  6509. /// <returns></returns>
  6510. [HttpPost]
  6511. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6512. {
  6513. var jw = JsonView(false);
  6514. if (dto.Diid == 0)
  6515. {
  6516. return Ok(JsonView(false, "请传递团组id"));
  6517. }
  6518. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6519. if (deleInfo.Code != 0)
  6520. {
  6521. return Ok(JsonView(false, "团组信息查询失败!"));
  6522. }
  6523. var di = deleInfo.Data as DelegationInfoWebView;
  6524. if (di == null)
  6525. {
  6526. return Ok(JsonView(false, "团组信息查询失败!"));
  6527. }
  6528. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6529. WorkbookDesigner designer = new WorkbookDesigner();
  6530. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6531. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6532. for (int i = 0; i < List_GC.Count; i++)
  6533. {
  6534. GroupCost_Excel gc = new GroupCost_Excel();
  6535. gc.Id = List_GC[i].Id;
  6536. gc.Diid = List_GC[i].Diid.ToString();
  6537. gc.DAY = List_GC[i].DAY;
  6538. string week = "";
  6539. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6540. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6541. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6542. gc.ITIN = List_GC[i].ITIN;
  6543. gc.CarType = List_GC[i].CarType;
  6544. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6545. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6546. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6547. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6548. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6549. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6550. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6551. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6552. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6553. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6554. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6555. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6556. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6557. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6558. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6559. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6560. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6561. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6562. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6563. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6564. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6565. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6566. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6567. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6568. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6569. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6570. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6571. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6572. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6573. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6574. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6575. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6576. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6577. List_GC1.Add(gc);
  6578. }
  6579. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6580. dt.TableName = "TB";
  6581. //报表标题等不用dt的值
  6582. designer.SetDataSource("TeamName", dto.title.TeamName);
  6583. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6584. designer.SetDataSource("Tax", dto.title.Tax);
  6585. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6586. designer.SetDataSource("Currency", dto.title.Currency);
  6587. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6588. designer.SetDataSource("Rate", dto.title.Rate);
  6589. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6590. var Aparams = hotels.Find(x => x.Type == "Default");
  6591. if (Aparams == null)
  6592. {
  6593. return Ok(jw);
  6594. }
  6595. //酒店数量
  6596. var txtSGRNumber = Aparams.SGR.ToString();
  6597. var txtTBRNumber = Aparams.TBR.ToString();
  6598. var txtJSESNumber = Aparams.JSES.ToString();
  6599. var txtSUITENumbe = Aparams.SUITE.ToString();
  6600. if (dto.costType == "B")
  6601. {
  6602. Aparams = hotels.Find(x => x.Type == "A");
  6603. var Bparams = hotels.Find(x => x.Type == "B");
  6604. if (Aparams == null || Bparams == null)
  6605. {
  6606. return Ok(jw);
  6607. }
  6608. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6609. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6610. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6611. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6612. }
  6613. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6614. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6615. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6616. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6617. var ws = designer.Workbook.Worksheets[0];
  6618. int Row = List_GC.Count;
  6619. int startIndex = 11;
  6620. int HideRows = 0;
  6621. List<int> hideRowsList = new List<int>();
  6622. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6623. #region A段left数据
  6624. var left = dto.leftInfo.Find(x => x.Type == "A");
  6625. if (left == null)
  6626. {
  6627. return Ok(jw);
  6628. }
  6629. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6630. if (leftBindData != null)
  6631. {
  6632. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6633. designer.SetDataSource("VisaRS", leftBindData.rs);
  6634. designer.SetDataSource("VisaXS", leftBindData.xs);
  6635. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6636. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6637. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6638. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6639. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6640. }
  6641. else
  6642. {
  6643. hideRowsList.Add(Row + startIndex + HideRows);
  6644. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6645. }
  6646. HideRows += 2;
  6647. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6648. if (leftBindData != null)
  6649. {
  6650. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6651. designer.SetDataSource("BXRS", leftBindData.rs);
  6652. designer.SetDataSource("BXXS", leftBindData.xs);
  6653. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6654. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6655. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6656. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6657. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6658. }
  6659. else
  6660. {
  6661. hideRowsList.Add(Row + startIndex + HideRows);
  6662. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6663. }
  6664. HideRows += 2;
  6665. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6666. if (leftBindData != null)
  6667. {
  6668. designer.SetDataSource("HSDRCB", leftBindData.cb);
  6669. designer.SetDataSource("HSRS", leftBindData.rs);
  6670. designer.SetDataSource("HSXS", leftBindData.xs);
  6671. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6672. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6673. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6674. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6675. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6676. }
  6677. else
  6678. {
  6679. hideRowsList.Add(Row + startIndex + HideRows);
  6680. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6681. }
  6682. HideRows += 2;
  6683. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  6684. if (leftBindData != null)
  6685. {
  6686. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  6687. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  6688. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  6689. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6690. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6691. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6692. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6693. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6694. }
  6695. else
  6696. {
  6697. hideRowsList.Add(Row + startIndex + HideRows);
  6698. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6699. }
  6700. HideRows += 2;
  6701. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  6702. if (leftBindData != null)
  6703. {
  6704. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  6705. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  6706. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  6707. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6708. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6709. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6710. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6711. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6712. }
  6713. else
  6714. {
  6715. hideRowsList.Add(Row + startIndex + HideRows);
  6716. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6717. }
  6718. HideRows += 2;
  6719. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  6720. if (leftBindData != null)
  6721. {
  6722. ////TBR
  6723. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  6724. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  6725. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  6726. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6727. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6728. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6729. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6730. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6731. }
  6732. else
  6733. {
  6734. hideRowsList.Add(Row + startIndex + HideRows);
  6735. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6736. }
  6737. HideRows += 2;
  6738. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  6739. if (leftBindData != null)
  6740. {
  6741. ////SGR
  6742. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  6743. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  6744. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  6745. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6746. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6747. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6748. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6749. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6750. }
  6751. else
  6752. {
  6753. hideRowsList.Add(Row + startIndex + HideRows);
  6754. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6755. }
  6756. HideRows += 2;
  6757. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  6758. if (leftBindData != null)
  6759. {
  6760. ////JS/ES
  6761. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  6762. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  6763. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  6764. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6765. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6766. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6767. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6768. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6769. }
  6770. else
  6771. {
  6772. hideRowsList.Add(Row + startIndex + HideRows);
  6773. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6774. }
  6775. HideRows += 2;
  6776. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  6777. if (leftBindData != null)
  6778. {
  6779. ////SUITE
  6780. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  6781. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  6782. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  6783. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6784. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6785. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6786. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6787. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6788. }
  6789. else
  6790. {
  6791. hideRowsList.Add(Row + startIndex + HideRows);
  6792. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6793. }
  6794. HideRows += 2;
  6795. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  6796. if (leftBindData != null)
  6797. {
  6798. designer.SetDataSource("DJDRCB", leftBindData.cb);
  6799. designer.SetDataSource("DJRS", leftBindData.rs);
  6800. designer.SetDataSource("DJXS", leftBindData.xs);
  6801. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6802. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6803. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6804. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6805. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6806. }
  6807. else
  6808. {
  6809. hideRowsList.Add(Row + startIndex + HideRows);
  6810. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6811. }
  6812. HideRows += 2;
  6813. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  6814. if (leftBindData != null)
  6815. {
  6816. designer.SetDataSource("HCPCB", leftBindData.cb);
  6817. designer.SetDataSource("HCPRS", leftBindData.rs);
  6818. designer.SetDataSource("HCPXS", leftBindData.xs);
  6819. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6820. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6821. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6822. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6823. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6824. }
  6825. else
  6826. {
  6827. hideRowsList.Add(Row + startIndex + HideRows);
  6828. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6829. }
  6830. HideRows += 2;
  6831. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  6832. if (leftBindData != null)
  6833. {
  6834. designer.SetDataSource("CPCB", leftBindData.cb);
  6835. designer.SetDataSource("CPRS", leftBindData.rs);
  6836. designer.SetDataSource("CPXS", leftBindData.xs);
  6837. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6838. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6839. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6840. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6841. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6842. }
  6843. else
  6844. {
  6845. hideRowsList.Add(Row + startIndex + HideRows);
  6846. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6847. }
  6848. HideRows += 2;
  6849. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  6850. if (leftBindData != null)
  6851. {
  6852. designer.SetDataSource("GWDRCD", leftBindData.cb);
  6853. designer.SetDataSource("GWRS", leftBindData.rs);
  6854. designer.SetDataSource("GWXS", leftBindData.xs);
  6855. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6856. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6857. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6858. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6859. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6860. }
  6861. else
  6862. {
  6863. hideRowsList.Add(Row + startIndex + HideRows);
  6864. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6865. }
  6866. HideRows += 2;
  6867. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  6868. if (leftBindData != null)
  6869. {
  6870. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  6871. designer.SetDataSource("LYJRS", leftBindData.rs);
  6872. designer.SetDataSource("LYJXS", leftBindData.xs);
  6873. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6874. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6875. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6876. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6877. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6878. }
  6879. else
  6880. {
  6881. hideRowsList.Add(Row + startIndex + HideRows);
  6882. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6883. }
  6884. #endregion
  6885. #region A段Right信息
  6886. var right = dto.rightInfo.Find(x => x.Type == "A");
  6887. if (right == null)
  6888. {
  6889. return Ok(jw);
  6890. }
  6891. HideRows += 4;
  6892. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  6893. if (rightBindData != null)
  6894. {
  6895. //经济舱 + 双人间 TBR
  6896. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  6897. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  6898. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6899. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  6900. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6901. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6902. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6903. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6904. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6905. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6906. }
  6907. else
  6908. {
  6909. hideRowsList.Add(Row + startIndex + HideRows);
  6910. }
  6911. HideRows += 2;
  6912. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  6913. if (rightBindData != null)
  6914. {
  6915. //经济舱 + 单人间 SGR
  6916. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  6917. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  6918. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6919. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  6920. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6921. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6922. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6923. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6924. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6925. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6926. }
  6927. else
  6928. {
  6929. hideRowsList.Add(Row + startIndex + HideRows);
  6930. }
  6931. HideRows += 2;
  6932. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  6933. if (rightBindData != null)
  6934. {
  6935. //公务舱 + 单人间 SGR
  6936. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  6937. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  6938. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6939. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  6940. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6941. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6942. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6943. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6944. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6945. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6946. }
  6947. else
  6948. {
  6949. hideRowsList.Add(Row + startIndex + HideRows);
  6950. }
  6951. HideRows += 2;
  6952. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  6953. if (rightBindData != null)
  6954. {
  6955. //公务舱 + 小套房 JSES
  6956. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  6957. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  6958. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6959. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  6960. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6961. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6962. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6963. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6964. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6965. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6966. }
  6967. else
  6968. {
  6969. hideRowsList.Add(Row + startIndex + HideRows);
  6970. }
  6971. HideRows += 2;
  6972. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  6973. if (rightBindData != null)
  6974. {
  6975. //公务舱 + 小套房 JSES
  6976. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  6977. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  6978. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6979. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  6980. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6981. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6982. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6983. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6984. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6985. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6986. }
  6987. else
  6988. {
  6989. hideRowsList.Add(Row + startIndex + HideRows);
  6990. }
  6991. HideRows += 2;
  6992. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  6993. if (rightBindData != null)
  6994. {
  6995. //经济舱 + 大套房
  6996. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  6997. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  6998. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6999. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7000. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7001. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7002. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7003. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7004. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7005. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7006. }
  7007. else
  7008. {
  7009. hideRowsList.Add(Row + startIndex + HideRows);
  7010. }
  7011. #endregion
  7012. #region B段标题清空
  7013. designer.SetDataSource("CostBDRCB", "");
  7014. designer.SetDataSource("CostBRS", "");
  7015. designer.SetDataSource("CostBXS", "");
  7016. designer.SetDataSource("CostBZCB", "");
  7017. designer.SetDataSource("CostBDRBJ", "");
  7018. designer.SetDataSource("CostBZBJ", "");
  7019. designer.SetDataSource("CostBDRLR", "");
  7020. designer.SetDataSource("CostBZLR", "");
  7021. designer.SetDataSource("CostBDRCBOM", "");
  7022. designer.SetDataSource("CostBRSOM", "");
  7023. designer.SetDataSource("CostBZCBOM", "");
  7024. designer.SetDataSource("CostBDRBJOM", "");
  7025. designer.SetDataSource("CostBZBJOM", "");
  7026. designer.SetDataSource("CostBDRLROM", "");
  7027. designer.SetDataSource("CostBZLROM", "");
  7028. #endregion
  7029. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7030. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7031. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7032. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7033. designer.SetDataSource("DJName", "地接(CNY)");
  7034. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7035. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7036. designer.SetDataSource("GWName", "公务(CNY)");
  7037. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7038. designer.SetDataSource("LYJName", "零用金(CNY)");
  7039. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7040. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7041. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7042. designer.SetDataSource("BXName", "保险(CNY)");
  7043. designer.SetDataSource("VisaName", "签证(CNY)");
  7044. #region B段基本数据
  7045. if (dto.costType == "B")
  7046. {
  7047. left = dto.leftInfo.Find(x => x.Type == "B");
  7048. if (left == null)
  7049. {
  7050. return Ok(jw);
  7051. }
  7052. #region B段left数据
  7053. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7054. if (leftBindData != null)
  7055. {
  7056. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7057. designer.SetDataSource("BHSRS", leftBindData.rs);
  7058. designer.SetDataSource("BHSXS", leftBindData.xs);
  7059. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7060. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7061. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7062. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7063. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7064. }
  7065. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7066. if (leftBindData != null)
  7067. {
  7068. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7069. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7070. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7071. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7072. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7073. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7074. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7075. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7076. }
  7077. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7078. if (leftBindData != null)
  7079. {
  7080. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7081. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7082. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7083. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7084. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7085. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7086. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7087. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7088. }
  7089. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7090. if (leftBindData != null)
  7091. {
  7092. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7093. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7094. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7095. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7096. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7097. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7098. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7099. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7100. }
  7101. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7102. if (leftBindData != null)
  7103. {
  7104. designer.SetDataSource("BCPCB", leftBindData.cb);
  7105. designer.SetDataSource("BCPRS", leftBindData.rs);
  7106. designer.SetDataSource("BCPXS", leftBindData.xs);
  7107. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7108. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7109. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7110. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7111. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7112. }
  7113. //TBR
  7114. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7115. if (leftBindData != null)
  7116. {
  7117. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7118. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7119. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7120. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7121. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7122. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7123. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7124. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7125. }
  7126. //SGR
  7127. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7128. if (leftBindData != null)
  7129. {
  7130. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7131. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7132. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7133. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7134. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7135. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7136. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7137. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7138. }
  7139. //JS/ES
  7140. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7141. if (leftBindData != null)
  7142. {
  7143. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7144. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7145. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7146. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7147. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7148. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7149. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7150. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7151. }
  7152. //SUITE
  7153. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7154. if (leftBindData != null)
  7155. {
  7156. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7157. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7158. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7159. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7160. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7161. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7162. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7163. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7164. }
  7165. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7166. if (leftBindData != null)
  7167. {
  7168. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7169. designer.SetDataSource("BDJRS", leftBindData.rs);
  7170. designer.SetDataSource("BDJXS", leftBindData.xs);
  7171. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7172. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7173. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7174. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7175. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7176. }
  7177. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7178. if (leftBindData != null)
  7179. {
  7180. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7181. designer.SetDataSource("BGWRS", leftBindData.rs);
  7182. designer.SetDataSource("BGWXS", leftBindData.xs);
  7183. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7184. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7185. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7186. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7187. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7188. }
  7189. #region 优化方案
  7190. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7191. //excelBind.Add("零用金", new {
  7192. //cb="",
  7193. //rs="",
  7194. //xs ="",
  7195. //zcb = "",
  7196. //});
  7197. #endregion
  7198. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7199. if (leftBindData != null)
  7200. {
  7201. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7202. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7203. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7204. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7205. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7206. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7207. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7208. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7209. }
  7210. #endregion
  7211. #region B段Right信息
  7212. right = dto.rightInfo.Find(x => x.Type == "B");
  7213. if (right == null)
  7214. {
  7215. return Ok(jw);
  7216. }
  7217. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7218. if (rightBindData != null)
  7219. {
  7220. //经济舱 + 双人间 TBR
  7221. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7222. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7223. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7224. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7225. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7226. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7227. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7228. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7229. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7230. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7231. }
  7232. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7233. if (rightBindData != null)
  7234. {
  7235. //经济舱 + 单人间 SGR
  7236. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7237. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7238. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7239. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7240. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7241. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7242. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7243. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7244. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7245. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7246. }
  7247. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7248. if (rightBindData != null)
  7249. {
  7250. //公务舱 + 单人间 SGR
  7251. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7252. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7253. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7254. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7255. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7256. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7257. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7258. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7259. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7260. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7261. }
  7262. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7263. if (rightBindData != null)
  7264. {
  7265. //公务舱 + 小套房 JSES
  7266. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7267. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7268. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7269. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7270. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7271. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7272. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7273. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7274. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7275. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7276. }
  7277. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7278. if (rightBindData != null)
  7279. {
  7280. //公务舱 + 小套房 JSES
  7281. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7282. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7283. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7284. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7285. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7286. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7287. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7288. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7289. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7290. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7291. }
  7292. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7293. if (rightBindData != null)
  7294. {
  7295. //经济舱 + 大套房
  7296. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7297. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7298. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7299. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7300. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7301. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7302. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7303. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7304. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7305. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7306. }
  7307. #endregion
  7308. #region 标题
  7309. designer.SetDataSource("CostBDRCB", "单人成本");
  7310. designer.SetDataSource("CostBRS", "人数");
  7311. designer.SetDataSource("CostBXS", "系数");
  7312. designer.SetDataSource("CostBZCB", "总成本");
  7313. designer.SetDataSource("CostBDRBJ", "单人报价");
  7314. designer.SetDataSource("CostBZBJ", "总报价");
  7315. designer.SetDataSource("CostBDRLR", "单人利润");
  7316. designer.SetDataSource("CostBZLR", "总利润");
  7317. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7318. designer.SetDataSource("CostBRSOM", "人数");
  7319. designer.SetDataSource("CostBZCBOM", "总成本");
  7320. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7321. designer.SetDataSource("CostBZBJOM", "总报价");
  7322. designer.SetDataSource("CostBDRLROM", "单人利润");
  7323. designer.SetDataSource("CostBZLROM", "总利润");
  7324. #endregion
  7325. }
  7326. #endregion
  7327. designer.SetDataSource("TzZCB2", TzZCB2);
  7328. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7329. designer.SetDataSource("TzZLR2", TzZLR2);
  7330. string[] dataSourceKeys = new string[]
  7331. {
  7332. "VF",
  7333. "TGS",
  7334. "TGOF",
  7335. "TGM",
  7336. "TGA",
  7337. "TGTF",
  7338. "TGEF",
  7339. "CFM",
  7340. "CFOF",
  7341. "B",
  7342. "L",
  7343. "D",
  7344. "TBR",
  7345. "SGR",
  7346. "JSES",
  7347. "Suite",
  7348. "TV",
  7349. "1L",
  7350. "IF",
  7351. "EF",
  7352. "BRF",
  7353. "TE",
  7354. "TGT",
  7355. "DRVT",
  7356. "PC",
  7357. "TLF",
  7358. "ECT"
  7359. };
  7360. foreach (var item in dataSourceKeys)
  7361. {
  7362. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7363. if (find != null)
  7364. {
  7365. designer.SetDataSource(item, find.text);
  7366. }
  7367. else
  7368. {
  7369. designer.SetDataSource(item, 0);
  7370. }
  7371. }
  7372. designer.SetDataSource(dt);
  7373. //根据数据源处理生成报表内容
  7374. designer.Process();
  7375. designer.Workbook.Worksheets[0].Name = "清单";
  7376. Worksheet sheet = designer.Workbook.Worksheets[0];
  7377. foreach (var Rowindex in hideRowsList)
  7378. {
  7379. ws.Cells.HideRows(Rowindex, 2);
  7380. }
  7381. byte[] bytes = null;
  7382. string strFileName = di.TeamName + "-团组-成本.xls";
  7383. using (MemoryStream stream = new MemoryStream())
  7384. {
  7385. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7386. bytes = stream.ToArray();
  7387. }
  7388. return Ok(JsonView(true, "", new
  7389. {
  7390. Data = bytes,
  7391. strFileName,
  7392. }));
  7393. }
  7394. /// <summary>
  7395. /// 导出客户报表
  7396. /// </summary>
  7397. /// <returns></returns>
  7398. [HttpPost]
  7399. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7400. {
  7401. var jw = JsonView(false);
  7402. if (dto.Diid == 0)
  7403. {
  7404. return Ok(JsonView(false, "请传递团组id"));
  7405. }
  7406. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7407. if (deleInfo.Code != 0)
  7408. {
  7409. return Ok(JsonView(false, "团组信息查询失败!"));
  7410. }
  7411. var di = deleInfo.Data as DelegationInfoWebView;
  7412. if (di == null)
  7413. {
  7414. return Ok(JsonView(false, "团组信息查询失败!"));
  7415. }
  7416. //文件名
  7417. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7418. //获取模板
  7419. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7420. //载入模板
  7421. Document doc = new Document(tmppath);
  7422. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7423. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7424. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7425. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7426. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7427. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7428. if (AParameter == null)
  7429. {
  7430. return Ok(JsonView(false, "系数不存在!"));
  7431. }
  7432. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7433. , TzAirDesc, TzZCost;
  7434. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7435. = TzAirDesc = TzZCost = string.Empty;
  7436. TzNumber = AParameter.CostTypenumber.ToString();
  7437. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7438. CarGuides1 = dto.CarGuides1;
  7439. Meal = dto.Meal;
  7440. SubsidizedMeals = dto.SubsidizedMeals;
  7441. NightRepair = dto.NightRepair;
  7442. AttractionsTickets = dto.AttractionsTickets;
  7443. MiscellaneousFees = dto.MiscellaneousFees;
  7444. ATip = dto.ATip;
  7445. TzHotelDesc = "";
  7446. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7447. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7448. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7449. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7450. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7451. TzAirDesc = "";
  7452. TzZCost = dto.TzZCost;
  7453. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7454. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7455. var index = 1;
  7456. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7457. foreach (var item in TzHotelDescArr)
  7458. {
  7459. if (AinfoArr != null)
  7460. {
  7461. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7462. if (Ainfo != null)
  7463. {
  7464. if (int.Parse(Ainfo.rs) <= 0)
  7465. {
  7466. continue;
  7467. }
  7468. var hotelText = string.Empty;
  7469. switch (item)
  7470. {
  7471. case "SGR":
  7472. hotelText = "单人间";
  7473. break;
  7474. case "JSES":
  7475. hotelText = "小套房";
  7476. break;
  7477. case "SUITE":
  7478. hotelText = "套房";
  7479. break;
  7480. case "TBR":
  7481. hotelText = "双人间";
  7482. break;
  7483. }
  7484. if (item != "TBR")
  7485. {
  7486. 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";
  7487. }
  7488. else
  7489. {
  7490. 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";
  7491. }
  7492. index++;
  7493. }
  7494. }
  7495. }
  7496. index = 1;
  7497. foreach (var item in TzAirDescArr)
  7498. {
  7499. if (AinfoArr != null)
  7500. {
  7501. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7502. if (Ainfo != null)
  7503. {
  7504. if (int.Parse(Ainfo.rs) <= 0)
  7505. {
  7506. continue;
  7507. }
  7508. 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";
  7509. index++;
  7510. }
  7511. }
  7512. }
  7513. if (dto.costType == "B")
  7514. {
  7515. if (BParameter == null)
  7516. {
  7517. return Ok(JsonView(false, "B段系数不存在!"));
  7518. }
  7519. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7520. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7521. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7522. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7523. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7524. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7525. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7526. foreach (var item in TzHotelDescArr)
  7527. {
  7528. if (AinfoArr != null)
  7529. {
  7530. TzHotelDesc += "B段信息 \r\n";
  7531. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7532. if (Ainfo != null)
  7533. {
  7534. if (int.Parse(Ainfo.rs) <= 0)
  7535. {
  7536. continue;
  7537. }
  7538. var hotelText = string.Empty;
  7539. switch (item)
  7540. {
  7541. case "SGR":
  7542. hotelText = "单人间";
  7543. break;
  7544. case "JSES":
  7545. hotelText = "小套房";
  7546. break;
  7547. case "SUITE":
  7548. hotelText = "套房";
  7549. break;
  7550. case "TBR":
  7551. hotelText = "双人间";
  7552. break;
  7553. }
  7554. if (item != "TBR")
  7555. {
  7556. 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";
  7557. }
  7558. else
  7559. {
  7560. 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";
  7561. }
  7562. index++;
  7563. }
  7564. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7565. }
  7566. }
  7567. index = 1;
  7568. foreach (var item in TzAirDescArr)
  7569. {
  7570. if (AinfoArr != null)
  7571. {
  7572. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7573. if (Ainfo != null)
  7574. {
  7575. if (int.Parse(Ainfo.rs) <= 0)
  7576. {
  7577. continue;
  7578. }
  7579. 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";
  7580. index++;
  7581. }
  7582. }
  7583. }
  7584. }
  7585. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7586. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7587. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7588. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7589. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7590. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7591. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7592. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7593. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7594. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7595. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7596. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7597. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7598. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7599. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7600. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7601. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7602. DickeyValue.Add("TzZCost", TzZCost);
  7603. foreach (var key in DickeyValue.Keys)
  7604. {
  7605. if (doc.Range.Bookmarks[key] != null)
  7606. {
  7607. Bookmark mark = doc.Range.Bookmarks[key];
  7608. mark.Text = DickeyValue[key];
  7609. }
  7610. }
  7611. byte[] bytes = null;
  7612. string strFileName = di.TeamName + "-客户报价.doc";
  7613. using (MemoryStream stream = new MemoryStream())
  7614. {
  7615. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7616. bytes = stream.ToArray();
  7617. }
  7618. return Ok(JsonView(true, "", new
  7619. {
  7620. Data = bytes,
  7621. strFileName,
  7622. }));
  7623. }
  7624. /// <summary>
  7625. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7626. /// </summary>
  7627. /// <param name="dto"></param>
  7628. /// <returns></returns>
  7629. [HttpPost]
  7630. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7631. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7632. {
  7633. try
  7634. {
  7635. #region 参数验证
  7636. if (dto.DiId < 0)
  7637. {
  7638. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7639. }
  7640. List<int> cTableIds = new List<int>() {
  7641. 76 ,//酒店预订
  7642. 77 ,//行程
  7643. 79 ,//车/导游地接
  7644. 80 ,//签证
  7645. 81 ,//邀请/公务活
  7646. 82 ,//团组客户保险
  7647. 85 ,//机票预订
  7648. 98 ,//其他款项
  7649. 285 ,//收款退还
  7650. 751 ,//酒店早餐
  7651. 1015 // 超支费用
  7652. };
  7653. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7654. {
  7655. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7656. }
  7657. #endregion
  7658. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7659. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7660. if (_GroupCostParameters.Count <= 0)
  7661. {
  7662. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7663. }
  7664. if (_GroupCostParameters[0].IsShare == 0)
  7665. {
  7666. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7667. }
  7668. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7669. //处理date为空问题
  7670. if (_GroupCosts.Count > 0)
  7671. {
  7672. for (int i = 0; i < _GroupCosts.Count; i++)
  7673. {
  7674. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  7675. {
  7676. if (i > 0)
  7677. {
  7678. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  7679. }
  7680. }
  7681. }
  7682. }
  7683. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  7684. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  7685. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  7686. string currCode = "";
  7687. #region currCode 验证
  7688. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  7689. if (isInt)
  7690. {
  7691. var currData = currDatas.Find(it => it.Id == intCurrency);
  7692. if (currData != null)
  7693. {
  7694. currCode = currData.Name;
  7695. }
  7696. }
  7697. else
  7698. {
  7699. currCode = _GroupCostParameters[0].Currency.Trim();
  7700. }
  7701. #endregion
  7702. //op,酒店单段模式存储
  7703. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  7704. {
  7705. CurrencyCode = currCode,
  7706. Rate = _GroupCostParameters[0].Rate,
  7707. CostType = _GroupCostParameters[0].CostType,
  7708. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  7709. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  7710. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  7711. };
  7712. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  7713. if (_GroupCostParameters.Count == 2)
  7714. {
  7715. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  7716. }
  7717. foreach (var item in _GroupCostParameters)
  7718. {
  7719. decimal _rate = 1;
  7720. decimal _rate1 = item.Rate;
  7721. decimal _scale = 1;
  7722. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  7723. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  7724. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  7725. //if (userInfo != null)
  7726. //{
  7727. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  7728. // {
  7729. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  7730. // {
  7731. // _scale = 1.00M;
  7732. // }
  7733. // }
  7734. //}
  7735. #endregion
  7736. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  7737. {
  7738. CurrencyCode = currCode,
  7739. Rate = _rate1,
  7740. CostType = item.CostType,
  7741. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  7742. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  7743. CostTypeNumber = item.CostTypenumber
  7744. };
  7745. if (_GroupCostParameters.Count > 1)
  7746. {
  7747. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  7748. }
  7749. else
  7750. {
  7751. modulePromptInfo.CostTypeNumber = item.LYJRS;
  7752. }
  7753. if (dto.CTable == 79)//
  7754. {
  7755. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  7756. modulePromptInfo.TotalCost = item.DJCB;
  7757. }
  7758. List<string> costTypes = new List<string>() { "A", "B" };
  7759. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  7760. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  7761. if (_GroupCostsDuplicates.Count() == 1)
  7762. {
  7763. _GroupCostsTypeData = _GroupCosts;
  7764. }
  7765. else
  7766. {
  7767. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  7768. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  7769. }
  7770. /*
  7771. * 76 酒店预订
  7772. * 77 行程
  7773. * 79 车/导游地接
  7774. * 80 签证
  7775. * 81 邀请/公务活动
  7776. * 82 团组客户保险
  7777. * 85 机票预订
  7778. * 98 其他款项
  7779. * 285 收款退还
  7780. * 751 酒店早餐
  7781. * 1015 超支费用
  7782. */
  7783. switch (dto.CTable)
  7784. {
  7785. case 76: // 酒店预订
  7786. _ModuleSubPromptInfo.AddRange(
  7787. _GroupCostsTypeData.Select(it => new
  7788. {
  7789. it.DAY,
  7790. it.Date,
  7791. it.ACCON,
  7792. it.ITIN,
  7793. it.SGR,
  7794. it.TBR,
  7795. it.JS_ES,
  7796. it.Suite
  7797. })
  7798. );
  7799. break;
  7800. case 79: // 车/导游地接
  7801. _ModuleSubPromptInfo.AddRange(
  7802. _GroupCostsTypeData.Select(it => new
  7803. {
  7804. Date = it.Date, //日期
  7805. CarFee = (it.CarCost + it.CFM + it.CFOF) * _rate * _scale, //车费用
  7806. GuideFee = (it.TGS + it.TGOF + it.TGM + it.TGA + it.TGTF + it.TGEF) * _rate * _scale, //导游费用
  7807. MealFee = (it.B + it.L + it.D) * _rate * _scale, //餐食费
  7808. TicketFee = it.EF * _rate * _scale, //门票费
  7809. TipFee = (it.TGTips + it.DRVTips) * _rate * _scale, //小费
  7810. AirportTransferFee = 0.00M,
  7811. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  7812. TravelSupplies = it.TE * _rate * _scale, //出行物资
  7813. LeadersFee = it.TLF * _rate * _scale, //领队费
  7814. CarFee1 = it.CarCost * _rate * _scale,
  7815. CarType = it.CarType, //车型
  7816. SpentCash = it.PC * _rate * _scale, //零用金
  7817. })
  7818. );
  7819. break;
  7820. case 85: // 机票
  7821. List<dynamic> datas = new List<dynamic>();
  7822. datas.Add(
  7823. new
  7824. {
  7825. AirType = "经济舱",
  7826. AirNum = item.JJCRS,
  7827. AirDRCB = item.JJCCB,
  7828. AirZCB = (item.JJCRS * item.JJCCB)
  7829. }
  7830. );
  7831. datas.Add(
  7832. new
  7833. {
  7834. AirType = "公务舱",
  7835. AirNum = item.GWCRS,
  7836. AirDRCB = item.GWCCB,
  7837. AirZCB = (item.GWCRS * item.GWCCB)
  7838. }
  7839. );
  7840. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7841. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  7842. modulePromptInfo.Data = new {
  7843. airFeeData = datas,
  7844. airInitData = initDatas
  7845. };
  7846. _ModulePromptInfos.Add(modulePromptInfo);
  7847. break;
  7848. default:
  7849. break;
  7850. }
  7851. }
  7852. if (dto.CTable != 85)
  7853. {
  7854. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  7855. _ModulePromptInfos.Add(_ModulePromptInfo);
  7856. }
  7857. _view.ModulePromptInfos = _ModulePromptInfos;
  7858. return Ok(JsonView(true, "操作成功!", _view));
  7859. }
  7860. catch (Exception ex)
  7861. {
  7862. return Ok(JsonView(false, ex.Message));
  7863. }
  7864. }
  7865. /// <summary>
  7866. /// 根据黑屏代码重新生成行程
  7867. /// </summary>
  7868. /// <param name="dto"></param>
  7869. /// <returns></returns>
  7870. [HttpPost]
  7871. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  7872. {
  7873. var jw = JsonView(false);
  7874. var Create = _GroupCostRepository.
  7875. CreateGroupCostByBlackCode(dto.Diid);
  7876. jw.Msg = Create.Msg;
  7877. if (Create.Code == 0)
  7878. {
  7879. jw.Code = 200;
  7880. jw.Data = new
  7881. {
  7882. groupCost = Create.Data,
  7883. blackCodeIsTrue = true
  7884. };
  7885. }
  7886. else
  7887. {
  7888. jw.Code = 400;
  7889. jw.Data = new
  7890. {
  7891. groupCost = Create.Data,
  7892. blackCodeIsTrue = false,
  7893. };
  7894. }
  7895. return Ok(jw);
  7896. }
  7897. /// <summary>
  7898. /// 成本获取OP历史车费用
  7899. /// </summary>
  7900. /// <param name="dto"></param>
  7901. /// <returns></returns>
  7902. [HttpPost]
  7903. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  7904. {
  7905. var jw = JsonView(false);
  7906. try
  7907. {
  7908. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  7909. //获取现有所有车的数据
  7910. if (!dto.Param.IsNullOrWhiteSpace())
  7911. {
  7912. string sql = $@"
  7913. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  7914. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  7915. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  7916. 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
  7917. AND gctggr.ServiceEndTime is not NULL
  7918. ORDER by gctggrc.id DESC
  7919. ";
  7920. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  7921. var numeberResult = await Task.Run(() =>
  7922. {
  7923. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  7924. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  7925. return numberArr;
  7926. });
  7927. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  7928. foreach (var item in numeberResult)
  7929. {
  7930. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  7931. {
  7932. Country = "数据异常!",
  7933. City = string.Empty,
  7934. };
  7935. item.Area = find.Country + " " + find.City;
  7936. }
  7937. dbResult.AddRange(numeberResult);
  7938. if (dto.Param.Contains("、"))
  7939. {
  7940. var sp = dto.Param.Split("、");
  7941. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  7942. .Where(x =>
  7943. {
  7944. return System.Array.Exists(sp, e =>
  7945. {
  7946. bool where = false;
  7947. if (x.Area != null)
  7948. {
  7949. where = x.Area.Contains(e);
  7950. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  7951. {
  7952. return false;
  7953. }
  7954. }
  7955. if (x.PriceName != null && !where)
  7956. {
  7957. where = x.PriceName.Contains(e);
  7958. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  7959. {
  7960. return false;
  7961. }
  7962. }
  7963. return where;
  7964. });
  7965. }).ToList();
  7966. }
  7967. else
  7968. {
  7969. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  7970. .Where(x =>
  7971. {
  7972. bool where = false;
  7973. if (x.Area != null)
  7974. {
  7975. where = x.Area.Contains(dto.Param);
  7976. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  7977. {
  7978. return false;
  7979. }
  7980. }
  7981. if (x.PriceName != null && !where)
  7982. {
  7983. where = x.PriceName.Contains(dto.Param);
  7984. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  7985. {
  7986. return false;
  7987. }
  7988. }
  7989. return where;
  7990. }
  7991. )
  7992. .ToList();
  7993. }
  7994. }
  7995. var view = dbResult.Select(x => {
  7996. decimal dp = 0.00M;
  7997. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  7998. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  7999. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8000. {
  8001. if (startB && endB)
  8002. {
  8003. var timesp = endD.Subtract(startD);
  8004. if ((timesp.Days + 1) != 0)
  8005. {
  8006. dp = x.Price / (timesp.Days + 1);
  8007. }
  8008. }
  8009. }
  8010. else
  8011. {
  8012. dp = x.Price;
  8013. }
  8014. return new
  8015. {
  8016. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8017. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8018. x.Area,
  8019. x.id,
  8020. price = x.Price.ToString("F2"),
  8021. x.PriceName,
  8022. x.PriceContent,
  8023. x.TeamName,
  8024. x.DatePrice,
  8025. dayPrice = dp.ToString("F2"),
  8026. };
  8027. }).OrderByDescending(x => x.id).ToList();
  8028. jw = JsonView(true, "获取成功!", view);
  8029. }
  8030. catch (Exception e)
  8031. {
  8032. jw = JsonView(false, e.Message);
  8033. }
  8034. return Ok(jw);
  8035. }
  8036. #endregion
  8037. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8038. /// <summary>
  8039. /// 酒店预订
  8040. /// 酒店费用列表 根据团组Id查询
  8041. /// </summary>
  8042. /// <param name="_dto"></param>
  8043. /// <returns></returns>
  8044. [HttpPost]
  8045. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8046. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8047. {
  8048. #region 参数验证
  8049. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8050. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8051. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8052. #region 团组操作权限验证 76 酒店预定模块
  8053. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8054. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8055. #endregion
  8056. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8057. #region 页面操作权限验证
  8058. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8059. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8060. #endregion
  8061. #endregion
  8062. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8063. }
  8064. /// <summary>
  8065. /// 酒店预订
  8066. /// 基础数据
  8067. /// </summary>
  8068. /// <param name="_dto"></param>
  8069. /// <returns></returns>
  8070. [HttpPost]
  8071. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8072. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8073. {
  8074. #region 参数验证
  8075. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8076. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8077. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8078. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8079. #region 页面操作权限验证
  8080. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8081. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8082. #endregion
  8083. #region 团组操作权限验证 76 酒店预定模块
  8084. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8085. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8086. #endregion
  8087. #endregion
  8088. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8089. }
  8090. /// <summary>
  8091. /// 酒店预订
  8092. /// 创建 入住卷号码
  8093. /// </summary>
  8094. /// <param name="_dto"></param>
  8095. /// <returns></returns>
  8096. [HttpPost]
  8097. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8098. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8099. {
  8100. try
  8101. {
  8102. #region 参数验证
  8103. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8104. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8105. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8106. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8107. #region 页面操作权限验证
  8108. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8109. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8110. #endregion
  8111. #region 团组操作权限验证 76 酒店预定模块
  8112. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8113. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8114. #endregion
  8115. #endregion
  8116. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8117. if (data.Code != 0)
  8118. {
  8119. return Ok(JsonView(false, data.Msg));
  8120. }
  8121. return Ok(JsonView(true, data.Msg, data.Data));
  8122. }
  8123. catch (Exception ex)
  8124. {
  8125. return Ok(JsonView(false, ex.Message));
  8126. }
  8127. }
  8128. /// <summary>
  8129. /// 酒店预订
  8130. /// 详情
  8131. /// </summary>
  8132. /// <param name="_dto"></param>
  8133. /// <returns></returns>
  8134. [HttpPost]
  8135. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8136. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8137. {
  8138. #region 参数验证
  8139. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8140. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8141. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8142. #region 团组操作权限验证 76 酒店预定模块
  8143. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8144. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8145. #endregion
  8146. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8147. #region 页面操作权限验证
  8148. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8149. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8150. #endregion
  8151. #endregion
  8152. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8153. }
  8154. /// <summary>
  8155. /// 酒店预订
  8156. /// Add Or Edit
  8157. /// </summary>
  8158. /// <param name="_dto"></param>
  8159. /// <returns></returns>
  8160. [HttpPost]
  8161. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8162. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8163. {
  8164. #region 参数验证
  8165. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8166. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8167. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8168. #region 团组操作权限验证 76 酒店预定模块
  8169. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8170. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8171. #endregion
  8172. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8173. #region 页面操作权限验证
  8174. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8175. if (_dto.Id == 0) // Add
  8176. {
  8177. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8178. }
  8179. else if (_dto.Id > 1) // Edit
  8180. {
  8181. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8182. } else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8183. #endregion
  8184. #endregion
  8185. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8186. if (_view.Code != 200)
  8187. {
  8188. return Ok(_view);
  8189. }
  8190. #region 应用推送
  8191. try
  8192. {
  8193. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8194. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8195. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8196. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8197. //自动审核
  8198. await _feeAuditRep.FeeAutomaticAudit(1,_dto.DiId,hotelId);
  8199. }
  8200. catch (Exception ex)
  8201. {
  8202. }
  8203. #endregion
  8204. return Ok(_view);
  8205. }
  8206. /// <summary>
  8207. /// 酒店预订
  8208. /// Del
  8209. /// </summary>
  8210. /// <param name="_dto"></param>
  8211. /// <returns></returns>
  8212. [HttpPost]
  8213. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8214. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8215. {
  8216. #region 参数验证
  8217. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8218. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8219. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8220. #region 团组操作权限验证 76 酒店预定模块
  8221. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8222. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8223. #endregion
  8224. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8225. #region 页面操作权限验证
  8226. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8227. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8228. #endregion
  8229. #endregion
  8230. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8231. }
  8232. /// <summary>
  8233. /// 酒店预订
  8234. /// 生成VOUCHER
  8235. /// 2024.05.06 之前版本
  8236. /// </summary>
  8237. /// <param name="_dto"></param>
  8238. /// <returns></returns>
  8239. [HttpPost]
  8240. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8241. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8242. {
  8243. try
  8244. {
  8245. #region 参数验证
  8246. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8247. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8248. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8249. #region 团组操作权限验证 76 酒店预定模块
  8250. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8251. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8252. #endregion
  8253. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8254. #region 页面操作权限验证
  8255. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8256. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8257. #endregion
  8258. #endregion
  8259. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8260. //判断数据是否完整
  8261. if (hr != null)
  8262. {
  8263. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8264. {
  8265. string strFileName = "HotelStatement/";
  8266. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8267. if (dele != null)
  8268. strFileName += dele.TourCode;
  8269. //载入模板
  8270. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8271. Document doc = new Document(sss);
  8272. DocumentBuilder builder = new DocumentBuilder(doc);
  8273. #region 替换Word模板书签内容
  8274. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8275. //入住卷预定号码
  8276. if (doc.Range.Bookmarks["VNO"] != null)
  8277. {
  8278. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8279. mark.Text = hr.CheckNumber;
  8280. }
  8281. //酒店时间
  8282. if (doc.Range.Bookmarks["Date"] != null)
  8283. {
  8284. Bookmark mark = doc.Range.Bookmarks["Date"];
  8285. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8286. }
  8287. //团号
  8288. if (doc.Range.Bookmarks["TNo"] != null)
  8289. {
  8290. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8291. mark.Text = dele.TourCode;
  8292. }
  8293. //预定号码
  8294. if (doc.Range.Bookmarks["BookingId"] != null)
  8295. {
  8296. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8297. mark.Text = hr.ReservationsNo;
  8298. }
  8299. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8300. {
  8301. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8302. mark.Text = hr.DetermineNo;
  8303. }
  8304. //酒店城市
  8305. if (doc.Range.Bookmarks["City"] != null)
  8306. {
  8307. Bookmark mark = doc.Range.Bookmarks["City"];
  8308. mark.Text = hr.City;
  8309. }
  8310. //酒店名称
  8311. if (doc.Range.Bookmarks["HName"] != null)
  8312. {
  8313. Bookmark mark = doc.Range.Bookmarks["HName"];
  8314. mark.Text = hr.HotelName;
  8315. }
  8316. //酒店地址
  8317. if (doc.Range.Bookmarks["Address"] != null)
  8318. {
  8319. Bookmark mark = doc.Range.Bookmarks["Address"];
  8320. mark.Text = hr.HotelAddress;
  8321. }
  8322. //酒店电话
  8323. if (doc.Range.Bookmarks["Tel"] != null)
  8324. {
  8325. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8326. mark.Text = hr.HotelTel;
  8327. }
  8328. //酒店传真
  8329. if (doc.Range.Bookmarks["Fax"] != null)
  8330. {
  8331. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8332. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8333. {
  8334. mark.Text = hr.HotelFax;
  8335. }
  8336. }
  8337. //入住时间
  8338. if (doc.Range.Bookmarks["CIn"] != null)
  8339. {
  8340. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8341. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8342. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8343. }
  8344. //退房时间
  8345. if (doc.Range.Bookmarks["COut"] != null)
  8346. {
  8347. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8348. Bookmark mark = doc.Range.Bookmarks["COut"];
  8349. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8350. }
  8351. //客户名称
  8352. if (doc.Range.Bookmarks["GName"] != null)
  8353. {
  8354. string guestName = "";
  8355. string[] clients = new string[] { };
  8356. if (hr.GuestName.Contains(","))
  8357. {
  8358. clients = hr.GuestName.Split(",");
  8359. }
  8360. else
  8361. {
  8362. clients = new string[] { hr.GuestName };
  8363. }
  8364. List<int> clientIds_int = new List<int>();
  8365. if (clients.Length > 0)
  8366. {
  8367. foreach (var item in clients)
  8368. {
  8369. if (item.IsNumeric())
  8370. {
  8371. clientIds_int.Add(int.Parse(item));
  8372. }
  8373. }
  8374. }
  8375. if (clientIds_int.Count > 0)
  8376. {
  8377. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8378. foreach (var client in _clientDatas)
  8379. {
  8380. //男
  8381. if (client.Sex == 0) guestName += $"Mr.";
  8382. //女
  8383. else if (client.Sex == 1) guestName += $"Ms.";
  8384. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8385. {
  8386. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8387. }
  8388. //guestName += $"{client.Pinyin},";
  8389. }
  8390. if (guestName.Length > 0)
  8391. {
  8392. guestName = guestName.Substring(0, guestName.Length - 1);
  8393. }
  8394. }
  8395. else
  8396. {
  8397. guestName = hr.GuestName;
  8398. }
  8399. Bookmark mark = doc.Range.Bookmarks["GName"];
  8400. mark.Text = guestName;
  8401. }
  8402. //房间介绍
  8403. if (doc.Range.Bookmarks["ROOM"] != null)
  8404. {
  8405. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8406. mark.Text = hr.RoomExplanation;
  8407. }
  8408. //报价描述
  8409. if (doc.Range.Bookmarks["NOTE"] != null)
  8410. {
  8411. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8412. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8413. if (ss != null)
  8414. mark.Text = ss.Name;
  8415. }
  8416. //入住时间
  8417. if (doc.Range.Bookmarks["CheckIn"] != null)
  8418. {
  8419. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8420. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8421. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8422. }
  8423. //退房时间
  8424. if (doc.Range.Bookmarks["CheckOut"] != null)
  8425. {
  8426. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8427. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8428. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8429. }
  8430. //日期
  8431. if (doc.Range.Bookmarks["DT"] != null)
  8432. {
  8433. Bookmark mark = doc.Range.Bookmarks["DT"];
  8434. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8435. }
  8436. //名称
  8437. if (doc.Range.Bookmarks["VName"] != null)
  8438. {
  8439. Bookmark mark = doc.Range.Bookmarks["VName"];
  8440. mark.Text = hr.HotelName;
  8441. }
  8442. //号码
  8443. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8444. {
  8445. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8446. mark.Text = hr.CheckNumber;
  8447. }
  8448. #endregion
  8449. strFileName += "VOUCHER.doc";
  8450. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8451. doc.Save(fileDir);
  8452. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8453. return Ok(JsonView(true, "操作成功!", Url));
  8454. }
  8455. else
  8456. {
  8457. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8458. }
  8459. }
  8460. else
  8461. {
  8462. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8463. }
  8464. }
  8465. catch (Exception ex)
  8466. {
  8467. return Ok(JsonView(false, ex.Message));
  8468. }
  8469. }
  8470. /// <summary>
  8471. /// 酒店预订
  8472. /// 生成VOUCHER
  8473. /// 2024.05.06 之后版本
  8474. /// </summary>
  8475. /// <param name="_dto"></param>
  8476. /// <returns></returns>
  8477. [HttpPost]
  8478. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8479. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8480. {
  8481. #region 参数验证
  8482. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8483. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8484. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8485. #region 团组操作权限验证 76 酒店预定模块
  8486. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8487. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8488. #endregion
  8489. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8490. #region 页面操作权限验证
  8491. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8492. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8493. #endregion
  8494. #endregion
  8495. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8496. //判断数据是否完整
  8497. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8498. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8499. string strFileName = "HotelStatement/";
  8500. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8501. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8502. #region 数据处理
  8503. List<int> guestIds = new List<int>();
  8504. int index = 0;
  8505. foreach (var item in hrDtas)
  8506. {
  8507. if (item.GuestName.Contains(","))
  8508. {
  8509. string[] guestIdArr = item.GuestName.Split(',');
  8510. foreach (var guestIdStr in guestIdArr)
  8511. {
  8512. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8513. if (guestBool)
  8514. {
  8515. guestIds.Add(guestId);
  8516. }
  8517. }
  8518. }
  8519. else guestNames += item.GuestName;
  8520. var voucherInfo = new HotelVoucherInfoView()
  8521. {
  8522. HotelName = item.HotelName,
  8523. CheckInDate = item.CheckInDate,
  8524. CheckOutDate = item.CheckOutDate,
  8525. ConfirmationNumber = item.DetermineNo.Trim(),
  8526. RoomType = item.RoomExplanation
  8527. };
  8528. vouchers.Add(voucherInfo);
  8529. }
  8530. if (guestIds.Count > 0)
  8531. {
  8532. guestIds = guestIds.Distinct().ToList();
  8533. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8534. if (guestDatas.Count > 0)
  8535. {
  8536. guestNames = "";
  8537. foreach (var guest in guestDatas)
  8538. {
  8539. string guestName = "";
  8540. if (guest.Sex == 0) guestName += @"MR.";
  8541. else if (guest.Sex == 1) guestName += @"MS.";
  8542. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8543. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8544. guestNames += @$"{guestName.Trim()}、";
  8545. }
  8546. if (guestNames.Length > 0)
  8547. {
  8548. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8549. }
  8550. }
  8551. }
  8552. #endregion
  8553. //载入模板
  8554. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8555. Document doc = new Document(sss);
  8556. DocumentBuilder builder = new DocumentBuilder(doc);
  8557. if (doc.Range.Bookmarks["GuestName"] != null)
  8558. {
  8559. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  8560. mark.Text = guestNames;
  8561. }
  8562. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8563. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  8564. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  8565. for (int i = 1; i <= vouchers.Count; i++)
  8566. {
  8567. HotelVoucherInfoView hviv = vouchers[i - 1];
  8568. builder.MoveToCell(0, i, 0, 0);
  8569. builder.Write(hviv.HotelName);
  8570. builder.MoveToCell(0, i, 1, 0);
  8571. builder.Write(hviv.CheckInDate);
  8572. builder.MoveToCell(0, i, 2, 0);
  8573. builder.Write(hviv.CheckOutDate);
  8574. builder.MoveToCell(0, i, 3, 0);
  8575. builder.Write(hviv.RoomType);
  8576. builder.MoveToCell(0, i, 4, 0);
  8577. builder.Write(hviv.ConfirmationNumber);
  8578. }
  8579. //删除多余行
  8580. int currRowIndex = vouchers.Count + 1;
  8581. int delRows = 21 - currRowIndex;
  8582. if (delRows > 0)
  8583. {
  8584. for (int i = 0; i < delRows; i++)
  8585. {
  8586. table.Rows.RemoveAt(currRowIndex);
  8587. //cultivateRowIndex++;
  8588. }
  8589. }
  8590. strFileName += "VOUCHER.docx";
  8591. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8592. doc.Save(fileDir);
  8593. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8594. return Ok(JsonView(true, "操作成功!", Url));
  8595. }
  8596. /// <summary>
  8597. /// 酒店预订
  8598. /// 生成 预定成本 Excel
  8599. /// </summary>
  8600. /// <param name="_dto"></param>
  8601. /// <returns></returns>
  8602. [HttpPost]
  8603. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8604. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  8605. {
  8606. #region 参数验证
  8607. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  8608. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  8609. if (!vadalitorRes.IsValid)
  8610. {
  8611. var errors = new StringBuilder();
  8612. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  8613. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  8614. }
  8615. #region 团组操作权限验证 76 酒店预定模块
  8616. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8617. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8618. #endregion
  8619. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8620. #region 页面操作权限验证
  8621. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8622. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8623. #endregion
  8624. #endregion
  8625. decimal _rate = 1.00M;
  8626. string _currency = "";
  8627. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  8628. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8629. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  8630. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  8631. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  8632. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  8633. {
  8634. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  8635. }
  8636. _currency = _GroupCostParameter.Currency;
  8637. bool isIntType = int.TryParse(_currency, out int currId);
  8638. if (isIntType)
  8639. {
  8640. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  8641. }
  8642. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  8643. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  8644. if (currInfo == null)
  8645. {
  8646. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  8647. }
  8648. if (!_currency.ToUpper().Equals("CNY"))
  8649. {
  8650. _rate = _GroupCostParameter.Rate;
  8651. }
  8652. _rate = currInfo.Rate;
  8653. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8654. string strFileName = "HotelStatement/";
  8655. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8656. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  8657. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  8658. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  8659. #region 数据处理
  8660. foreach (var item in hrDtas)
  8661. {
  8662. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  8663. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  8664. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  8665. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  8666. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  8667. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  8668. string singleRoomFeeStr = string.Empty,
  8669. doubleRoomFeeStr = string.Empty,
  8670. suiteRoomFeeStr = string.Empty,
  8671. otherRoomFeeStr = string.Empty,
  8672. payMoneyStr = string.Empty,
  8673. cardPriceStr = string.Empty;
  8674. if (roomCurr.Equals(_currency))
  8675. {
  8676. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  8677. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  8678. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  8679. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  8680. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  8681. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  8682. }
  8683. else
  8684. {
  8685. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  8686. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  8687. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  8688. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  8689. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  8690. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  8691. }
  8692. string breakfastPriceStr = string.Empty,
  8693. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  8694. governmentRentStr = string.Empty,
  8695. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  8696. cityTaxStrStr = string.Empty,
  8697. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  8698. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  8699. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  8700. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  8701. pcfds.Add(new HotelReservations_PCFD_View()
  8702. {
  8703. City = item.City,
  8704. HotelName = item.HotelName,
  8705. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  8706. // SingleRoomCount = item.SingleRoomCount,
  8707. SingleRoomPrice = singleRoomFeeStr,
  8708. // DoubleRoomCount = item.DoubleRoomCount,
  8709. DoubleRoomPrice = doubleRoomFeeStr,
  8710. //SuiteRoomCount = item.SuiteRoomCount,
  8711. SuiteRoomPrice = suiteRoomFeeStr,
  8712. OtherRoomPrice = otherRoomFeeStr,
  8713. //OtherRoomCount = item.OtherRoomCount,
  8714. BreakfastPrice = breakfastPriceStr,
  8715. GovernmentRent = governmentRentStr,
  8716. CityTax = cityTaxStrStr,
  8717. RoomExplanation = item.RoomExplanation,
  8718. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  8719. PayTime = roomInfo.ConsumptionDate,
  8720. BankNo = roomInfo.BankNo,
  8721. PayMoney = payMoneyStr,
  8722. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  8723. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  8724. CardPrice = cardPriceStr,
  8725. Remark = ccpInfo.Remark
  8726. });
  8727. }
  8728. #endregion
  8729. //载入模板
  8730. WorkbookDesigner designer = new WorkbookDesigner();
  8731. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  8732. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  8733. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  8734. designer.SetDataSource("TourNo", groupInfo.TourCode);
  8735. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  8736. designer.SetDataSource("Opertor", userInfo.CnName);
  8737. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  8738. dt.TableName = "ViewMyHotelReservations";
  8739. designer.SetDataSource(dt);
  8740. designer.Process();
  8741. string fileName = ($"HotelReservation/{groupInfo.TeamName}_酒店预订成本_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls").Replace(":", "");
  8742. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  8743. designer.Workbook.Save(serverPath);
  8744. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  8745. #region 删除指定行
  8746. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  8747. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  8748. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  8749. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  8750. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  8751. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  8752. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  8753. cssIndex = dt.Columns["CityTax"].Ordinal,
  8754. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  8755. remarkIndex = dt.Columns["Remark"].Ordinal;
  8756. //删除指定列
  8757. foreach (DataRow item in dt.Rows)
  8758. {
  8759. string singleStr = item["SingleRoomPrice"].ToString();
  8760. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  8761. if (containsDigitButNotZero1) singleDel = false;
  8762. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  8763. string doubleStr = item["DoubleRoomPrice"].ToString();
  8764. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  8765. if (containsDigitButNotZero2) doubleDel = false;
  8766. string suiteStr = item["SuiteRoomPrice"].ToString();
  8767. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  8768. if (containsDigitButNotZero3) suiteDel = false;
  8769. string otherStr = item["OtherRoomPrice"].ToString();
  8770. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  8771. if (containsDigitButNotZero4) otherDel = false;
  8772. string zcStr = item["BreakfastPrice"].ToString();
  8773. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  8774. if (containsDigitButNotZero5) zcDel = false;
  8775. string dsStr = item["GovernmentRent"].ToString();
  8776. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  8777. if (containsDigitButNotZero6) dsDel = false;
  8778. string cssStr = item["CityTax"].ToString();
  8779. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  8780. if (containsDigitButNotZero7) cssDel = false;
  8781. string cpStr = item["ConsumptionPatterns"].ToString();
  8782. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  8783. string remarkStr = item["Remark"].ToString();
  8784. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  8785. }
  8786. DeleteColumn(serverPath, remarkIndex, remarkDel);
  8787. DeleteColumn(serverPath, cpIndex, cpDel);
  8788. DeleteColumn(serverPath, dsIndex, dsDel);
  8789. DeleteColumn(serverPath, cssIndex, cssDel);
  8790. DeleteColumn(serverPath, zcIndex, zcDel);
  8791. DeleteColumn(serverPath, otherIndex, otherDel);
  8792. DeleteColumn(serverPath, suiteIndex, suiteDel);
  8793. DeleteColumn(serverPath, doubleIndex, doubleDel);
  8794. DeleteColumn(serverPath, singleIndex, singleDel);
  8795. #endregion
  8796. //只保留第一个表格
  8797. DeleteSheet(serverPath);
  8798. return Ok(JsonView(true, "操作成功", url = rst));
  8799. }
  8800. /// <summary>
  8801. /// 删除指定列
  8802. /// </summary>
  8803. /// <param name="file"></param>
  8804. /// <param name="columnIndex"></param>
  8805. /// <param name="isDel"></param>
  8806. private void DeleteColumn(string file, int columnIndex, bool isDel)
  8807. {
  8808. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  8809. //wb.Save(file);
  8810. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  8811. if (sheet1 != null)
  8812. {
  8813. if (isDel)
  8814. {
  8815. Cells cells = sheet1.Cells;
  8816. cells.DeleteColumn(columnIndex);
  8817. }
  8818. }
  8819. wb.Save(file);
  8820. }
  8821. /// <summary>
  8822. /// 删除sheet
  8823. /// </summary>
  8824. /// <param name="file"></param>
  8825. /// <param name="sheetName"></param>
  8826. private void DeleteSheet(string file, string sheetName = "")
  8827. {
  8828. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  8829. //wb.Save(file);
  8830. List<string> sheets = new List<string>();
  8831. foreach (var item in wb.Worksheets)
  8832. {
  8833. sheets.Add(item.Name);
  8834. }
  8835. if (sheets.Count > 0)
  8836. {
  8837. sheets.RemoveAt(0);//不删除第一个sheet
  8838. foreach (var item in sheets)
  8839. {
  8840. wb.Worksheets.RemoveAt(item);
  8841. }
  8842. }
  8843. wb.Save(file);
  8844. }
  8845. /// <summary>
  8846. /// 酒店预订
  8847. /// 确认单
  8848. /// </summary>
  8849. /// <param name="_dto"></param>
  8850. /// <returns></returns>
  8851. [HttpPost]
  8852. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8853. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  8854. {
  8855. try
  8856. {
  8857. #region 参数验证
  8858. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8859. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8860. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8861. #region 团组操作权限验证 76 酒店预定模块
  8862. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8863. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8864. #endregion
  8865. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8866. #region 页面操作权限验证
  8867. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8868. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8869. #endregion
  8870. #endregion
  8871. //团组信息
  8872. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  8873. //酒店数据
  8874. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  8875. if (listhoteldata.Count < 0)
  8876. {
  8877. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  8878. }
  8879. //利datatable存储
  8880. DataTable dt = new DataTable();
  8881. dt.Columns.Add("CheckInDate", typeof(string));
  8882. dt.Columns.Add("City", typeof(string));
  8883. dt.Columns.Add("Hotel", typeof(string));
  8884. dt.Columns.Add("Room", typeof(string));
  8885. for (int i = 0; i < listhoteldata.Count; i++)
  8886. {
  8887. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  8888. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  8889. while (dayStart < dayEnd)
  8890. {
  8891. string temp = "";
  8892. DataRow row = dt.NewRow();
  8893. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  8894. row["City"] = listhoteldata[i].City;
  8895. row["Hotel"] = listhoteldata[i].HotelName;
  8896. if (listhoteldata[i].SingleRoomCount > 0)
  8897. {
  8898. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  8899. }
  8900. if (listhoteldata[i].DoubleRoomCount > 0)
  8901. {
  8902. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  8903. }
  8904. if (listhoteldata[i].SuiteRoomCount > 0)
  8905. {
  8906. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  8907. }
  8908. if (listhoteldata[i].OtherRoomCount > 0)
  8909. {
  8910. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  8911. }
  8912. row["Room"] = temp;
  8913. dt.Rows.Add(row);
  8914. dayStart = dayStart.AddDays(1);
  8915. }
  8916. }
  8917. Dictionary<string, string> dic = new Dictionary<string, string>();
  8918. dic.Add("Dele", di.TeamName);
  8919. dic.Add("City", di.VisitCountry);
  8920. //模板路径
  8921. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  8922. //载入模板
  8923. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  8924. DocumentBuilder builder = new DocumentBuilder(doc);
  8925. foreach (var key in dic.Keys)
  8926. {
  8927. builder.MoveToBookmark(key);
  8928. builder.Write(dic[key]);
  8929. }
  8930. //获取word里所有表格
  8931. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8932. //获取所填表格的序数
  8933. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  8934. var rowStart = tableOne.Rows[0]; //获取第1行
  8935. //循环赋值
  8936. for (int i = 0; i < dt.Rows.Count; i++)
  8937. {
  8938. builder.MoveToCell(0, i + 1, 0, 0);
  8939. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  8940. builder.MoveToCell(0, i + 1, 1, 0);
  8941. builder.Write(dt.Rows[i]["City"].ToString());
  8942. builder.MoveToCell(0, i + 1, 2, 0);
  8943. builder.Write(dt.Rows[i]["Hotel"].ToString());
  8944. builder.MoveToCell(0, i + 1, 3, 0);
  8945. builder.Write(dt.Rows[i]["Room"].ToString());
  8946. }
  8947. //删除多余行
  8948. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  8949. {
  8950. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  8951. }
  8952. string strFileName = di.TeamName + "酒店确认单.doc";
  8953. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  8954. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  8955. return Ok(JsonView(true, "成功", url));
  8956. }
  8957. catch (Exception ex)
  8958. {
  8959. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  8960. }
  8961. }
  8962. #endregion
  8963. #region 团组状态
  8964. /// <summary>
  8965. /// 团组状态列表 Page
  8966. /// </summary>
  8967. /// <param name="dto">团组列表请求dto</param>
  8968. /// <returns></returns>
  8969. [HttpPost]
  8970. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8971. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  8972. {
  8973. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  8974. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  8975. {
  8976. string sqlWhere = string.Empty;
  8977. if (dto.IsSure == 0) //未完成
  8978. {
  8979. sqlWhere += string.Format(@" And IsSure = 0");
  8980. }
  8981. else if (dto.IsSure == 1) //已完成
  8982. {
  8983. sqlWhere += string.Format(@" And IsSure = 1");
  8984. }
  8985. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  8986. {
  8987. string tj = dto.SearchCriteria;
  8988. 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}%')",
  8989. tj, tj, tj, tj, tj);
  8990. }
  8991. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  8992. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  8993. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  8994. From (
  8995. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  8996. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  8997. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  8998. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  8999. From Grp_DelegationInfo gdi
  9000. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9001. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9002. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9003. Where gdi.IsDel = 0 {0}
  9004. ) temp ", sqlWhere);
  9005. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9006. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9007. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9008. }
  9009. else
  9010. {
  9011. return Ok(JsonView(false, "查询失败"));
  9012. }
  9013. }
  9014. /// <summary>
  9015. /// 团组状态
  9016. /// 设置操作完成
  9017. /// </summary>
  9018. /// <param name="dto">团组列表请求dto</param>
  9019. /// <returns></returns>
  9020. [HttpPost]
  9021. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9022. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9023. {
  9024. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9025. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9026. {
  9027. Id = dto.Id,
  9028. IsSure = 1
  9029. };
  9030. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9031. .UpdateColumns(it => new { it.IsSure })
  9032. .WhereColumns(it => new { it.Id })
  9033. .ExecuteCommandAsync();
  9034. if (result > 0)
  9035. {
  9036. return Ok(JsonView(true, "操作完成!"));
  9037. }
  9038. return Ok(JsonView(false, "操作失败!"));
  9039. }
  9040. #endregion
  9041. #region 保险费用录入
  9042. /// <summary>
  9043. /// 根据团组Id查询保险费用列表
  9044. /// </summary>
  9045. /// <param name="dto"></param>
  9046. /// <returns></returns>
  9047. [HttpPost]
  9048. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9049. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9050. {
  9051. try
  9052. {
  9053. Result groupData = await _customersRep.CustomersByDiId(dto);
  9054. if (groupData.Code != 0)
  9055. {
  9056. return Ok(JsonView(false, groupData.Msg));
  9057. }
  9058. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9059. }
  9060. catch (Exception ex)
  9061. {
  9062. return Ok(JsonView(false, ex.Message));
  9063. }
  9064. }
  9065. /// <summary>
  9066. /// 根据保险费用Id查询保险费用详细
  9067. /// </summary>
  9068. /// <param name="dto"></param>
  9069. /// <returns></returns>
  9070. [HttpPost]
  9071. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9072. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9073. {
  9074. try
  9075. {
  9076. Result groupData = await _customersRep.CustomersById(dto);
  9077. if (groupData.Code != 0)
  9078. {
  9079. return Ok(JsonView(false, groupData.Msg));
  9080. }
  9081. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9082. }
  9083. catch (Exception ex)
  9084. {
  9085. return Ok(JsonView(false, ex.Message));
  9086. }
  9087. }
  9088. /// <summary>
  9089. /// 保险费用录入页面初始化绑定
  9090. /// </summary>
  9091. /// <param name="dto"></param>
  9092. /// <returns></returns>
  9093. [HttpPost]
  9094. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9095. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9096. {
  9097. try
  9098. {
  9099. Result groupData = await _customersRep.CustomersInitialize(dto);
  9100. if (groupData.Code != 0)
  9101. {
  9102. return Ok(JsonView(false, groupData.Msg));
  9103. }
  9104. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9105. }
  9106. catch (Exception ex)
  9107. {
  9108. return Ok(JsonView(false, ex.Message));
  9109. }
  9110. }
  9111. /// <summary>
  9112. /// 保险费用操作(Status:1.新增,2.修改)
  9113. /// </summary>
  9114. /// <param name="dto"></param>
  9115. /// <returns></returns>
  9116. [HttpPost]
  9117. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9118. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9119. {
  9120. try
  9121. {
  9122. Result groupData = await _customersRep.OpCustomers(dto);
  9123. if (groupData.Code != 0)
  9124. {
  9125. return Ok(JsonView(false, groupData.Msg));
  9126. }
  9127. #region 应用推送
  9128. try
  9129. {
  9130. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9131. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9132. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9133. }
  9134. catch (Exception ex)
  9135. {
  9136. }
  9137. #endregion
  9138. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9139. }
  9140. catch (Exception ex)
  9141. {
  9142. return Ok(JsonView(false, ex.Message));
  9143. }
  9144. }
  9145. /// <summary>
  9146. /// 保险文件上传
  9147. /// </summary>
  9148. /// <param name="file"></param>
  9149. /// <returns></returns>
  9150. [HttpPost]
  9151. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9152. public async Task<IActionResult> UploadCus(IFormFile file)
  9153. {
  9154. try
  9155. {
  9156. if (file != null)
  9157. {
  9158. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9159. //文件名称
  9160. string projectFileName = file.FileName;
  9161. //上传的文件的路径
  9162. string filePath = "";
  9163. if (!Directory.Exists(fileDir))
  9164. {
  9165. Directory.CreateDirectory(fileDir);
  9166. }
  9167. //上传的文件的路径
  9168. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9169. using (FileStream fs = System.IO.File.Create(filePath))
  9170. {
  9171. file.CopyTo(fs);
  9172. fs.Flush();
  9173. }
  9174. return Ok(JsonView(true, "上传成功!", projectFileName));
  9175. }
  9176. else
  9177. {
  9178. return Ok(JsonView(false, "上传失败!"));
  9179. }
  9180. }
  9181. catch (Exception ex)
  9182. {
  9183. return Ok(JsonView(false, "程序错误!"));
  9184. throw;
  9185. }
  9186. }
  9187. /// <summary>
  9188. /// 保险删除指定文件
  9189. /// </summary>
  9190. /// <param name="dto"></param>
  9191. /// <returns></returns>
  9192. [HttpPost]
  9193. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9194. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9195. {
  9196. try
  9197. {
  9198. string filePath = "";
  9199. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9200. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9201. //int id = 0;
  9202. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9203. // 删除该文件
  9204. try
  9205. {
  9206. System.IO.File.Delete(filePath);
  9207. 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()
  9208. {
  9209. Attachment = "",
  9210. }).ExecuteCommandAsync();
  9211. if (result != 0)
  9212. {
  9213. return Ok(JsonView(true, "成功!"));
  9214. }
  9215. else
  9216. {
  9217. return Ok(JsonView(false, "失败!"));
  9218. }
  9219. }
  9220. catch (Exception)
  9221. {
  9222. 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()
  9223. {
  9224. Attachment = "",
  9225. }).ExecuteCommandAsync();
  9226. if (result != 0)
  9227. {
  9228. return Ok(JsonView(true, "成功!"));
  9229. }
  9230. else
  9231. {
  9232. return Ok(JsonView(false, "失败!"));
  9233. }
  9234. }
  9235. }
  9236. catch (Exception ex)
  9237. {
  9238. return Ok(JsonView(false, "程序错误!"));
  9239. throw;
  9240. }
  9241. }
  9242. /// <summary>
  9243. /// 保险费用操作(删除)
  9244. /// </summary>
  9245. /// <param name="dto"></param>
  9246. /// <returns></returns>
  9247. [HttpPost]
  9248. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9249. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9250. {
  9251. try
  9252. {
  9253. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9254. if (!res)
  9255. {
  9256. return Ok(JsonView(false, "删除失败"));
  9257. }
  9258. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9259. {
  9260. IsDel = 1,
  9261. DeleteUserId = dto.DeleteUserId,
  9262. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9263. }).ExecuteCommandAsync();
  9264. return Ok(JsonView(true, "删除成功!"));
  9265. }
  9266. catch (Exception ex)
  9267. {
  9268. return Ok(JsonView(false, "程序错误!"));
  9269. throw;
  9270. }
  9271. }
  9272. #endregion
  9273. #region 接团客户名单 PageId 104
  9274. /// <summary>
  9275. /// 接团客户名单
  9276. /// 迁移数据(慎用!)
  9277. /// </summary>
  9278. /// <param name="dto"></param>
  9279. /// <returns></returns>
  9280. [HttpPost]
  9281. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9282. public async Task<IActionResult> PostTourClientListChange()
  9283. {
  9284. try
  9285. {
  9286. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9287. //var groupClinetData1
  9288. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9289. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9290. int updateCount = 0;
  9291. if (oldOAClientList.Count > 0)
  9292. {
  9293. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9294. _sqlSugar.BeginTran();
  9295. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9296. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9297. foreach (var item in oldOAClientList)
  9298. {
  9299. int comId = 0;
  9300. string format = "yyyy-MM-dd HH:mm:ss";
  9301. string data11 = "1990-01-01 00:00";
  9302. var data1 = IsValidDate(item.OPdate, format);
  9303. if (data1) data11 = item.OPdate;
  9304. //客户公司验证
  9305. if (!string.IsNullOrEmpty(item.Company))
  9306. {
  9307. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9308. if (clientComInfo == null) // add
  9309. {
  9310. var addInfo = new Crm_CustomerCompany()
  9311. {
  9312. CompanyAbbreviation = "",
  9313. CompanyFullName = item.Company,
  9314. Address = "",
  9315. PostCodes = "",
  9316. LastedOpUserId = item.OPer,
  9317. LastedOpDt = Convert.ToDateTime(data11),
  9318. CreateUserId = item.OPer,
  9319. CreateTime = Convert.ToDateTime(data11),
  9320. IsDel = 0
  9321. };
  9322. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9323. if (comId1 > 0) comId = comId1;
  9324. }
  9325. else comId = clientComInfo.Id;
  9326. }
  9327. //客户人员验证
  9328. int clientId = 0;
  9329. string name = item.LastName + item.Name;
  9330. if (!string.IsNullOrEmpty(name))
  9331. {
  9332. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9333. if (clientInfo == null)
  9334. {
  9335. DateTime? dateTime = null;
  9336. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9337. if (isDt) dateTime = birthDayDt;
  9338. var addInfo1 = new Crm_DeleClient()
  9339. {
  9340. CrmCompanyId = comId,
  9341. DiId = -1,
  9342. LastName = item.LastName,
  9343. FirstName = item.Name,
  9344. OldName = "",
  9345. Pinyin = item.Pinyin,
  9346. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9347. Marriage = 0,
  9348. Phone = item.Phone,
  9349. Job = item.Job,
  9350. BirthDay = dateTime
  9351. };
  9352. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9353. if (clientId1 > 0) clientId = clientId1;
  9354. }
  9355. else clientId = clientInfo.Id;
  9356. }
  9357. if (clientId < 1)
  9358. {
  9359. continue;
  9360. }
  9361. int airType = 0;
  9362. if (item.AirType == "超经舱") airType = 459;
  9363. else if (item.AirType == "公务舱") airType = 458;
  9364. else if (item.AirType == "经济舱") airType = 460;
  9365. else if (item.AirType == "其他") airType = 565;
  9366. else if (item.AirType == "头等舱") airType = 457;
  9367. var _TourClientListEntity = new Grp_TourClientList()
  9368. {
  9369. DiId = item.Diid,
  9370. ClientId = clientId,
  9371. CreateUserId = item.OPer,
  9372. CreateTime = Convert.ToDateTime(data11),
  9373. Remark = item.Remark,
  9374. IsDel = item.Isdel,
  9375. ShippingSpaceTypeId = airType,
  9376. ShippingSpaceSpecialNeeds = item.AirRemark,
  9377. HotelSpecialNeeds = item.RoomType
  9378. };
  9379. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9380. if (_TourClientList > 0)
  9381. {
  9382. updateCount++;
  9383. }
  9384. }
  9385. _sqlSugar.CommitTran();
  9386. }
  9387. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9388. }
  9389. catch (Exception ex)
  9390. {
  9391. _sqlSugar.RollbackTran();
  9392. return Ok(JsonView(false, ex.Message));
  9393. }
  9394. return Ok(JsonView(true));
  9395. }
  9396. private bool IsValidDate(string dateString, string format)
  9397. {
  9398. DateTime dateValue;
  9399. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9400. return valid;
  9401. }
  9402. /// <summary>
  9403. /// 接团客户名单
  9404. /// 根据团组Id查询List
  9405. /// </summary>
  9406. /// <param name="dto"></param>
  9407. /// <returns></returns>
  9408. [HttpPost]
  9409. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9410. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9411. {
  9412. #region 参数验证
  9413. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9414. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9415. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9416. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9417. #region 页面操作权限验证
  9418. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9419. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9420. #endregion
  9421. #endregion
  9422. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9423. if (viewData.Code != 0)
  9424. {
  9425. return Ok(JsonView(false, viewData.Msg));
  9426. }
  9427. return Ok(JsonView(viewData.Data));
  9428. }
  9429. /// <summary>
  9430. /// 接团客户名单
  9431. /// 基础数据 Init
  9432. /// </summary>
  9433. /// <param name="_dto"></param>
  9434. /// <returns></returns>
  9435. [HttpPost]
  9436. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9437. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9438. {
  9439. #region 参数验证
  9440. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9441. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9442. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9443. #region 页面操作权限验证
  9444. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9445. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9446. #endregion
  9447. #endregion
  9448. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9449. if (viewData.Code != 0)
  9450. {
  9451. return Ok(JsonView(false, viewData.Msg));
  9452. }
  9453. return Ok(JsonView(viewData.Data));
  9454. }
  9455. /// <summary>
  9456. /// 接团客户名单
  9457. /// 根据 Id查询 Details
  9458. /// </summary>
  9459. /// <param name="_dto"></param>
  9460. /// <returns></returns>
  9461. [HttpPost]
  9462. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9463. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9464. {
  9465. #region 参数验证
  9466. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9467. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9468. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9469. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9470. #region 页面操作权限验证
  9471. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9472. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9473. #endregion
  9474. #endregion
  9475. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9476. if (viewData.Code != 0)
  9477. {
  9478. return Ok(JsonView(false, viewData.Msg));
  9479. }
  9480. return Ok(JsonView(viewData.Data));
  9481. }
  9482. /// <summary>
  9483. /// 接团客户名单
  9484. /// Add Or Edit
  9485. /// </summary>
  9486. /// <param name="_dto"></param>
  9487. /// <returns></returns>
  9488. [HttpPost]
  9489. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9490. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9491. {
  9492. #region 参数验证
  9493. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9494. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9495. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9496. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9497. #region 页面操作权限验证
  9498. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9499. if (_dto.Id == 0) //添加
  9500. {
  9501. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9502. }
  9503. else if (_dto.Id >= 0) //修改
  9504. {
  9505. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9506. }
  9507. #endregion
  9508. #endregion
  9509. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9510. if (viewData.Code != 0)
  9511. {
  9512. return Ok(JsonView(false, viewData.Msg));
  9513. }
  9514. return Ok(JsonView(true));
  9515. }
  9516. /// <summary>
  9517. /// 接团客户名单
  9518. /// AddMultiple(添加多个)
  9519. /// </summary>
  9520. /// <param name="_dto"></param>
  9521. /// <returns></returns>
  9522. [HttpPost]
  9523. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9524. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9525. {
  9526. #region 参数验证
  9527. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9528. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9529. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9530. #region 页面操作权限验证
  9531. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9532. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9533. #endregion
  9534. #endregion
  9535. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9536. if (viewData.Code != 0)
  9537. {
  9538. return Ok(JsonView(false, viewData.Msg));
  9539. }
  9540. return Ok(JsonView(true));
  9541. }
  9542. /// <summary>
  9543. /// 接团客户名单
  9544. /// Del
  9545. /// </summary>
  9546. /// <param name="_dto"></param>
  9547. /// <returns></returns>
  9548. [HttpPost]
  9549. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9550. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9551. {
  9552. #region 参数验证
  9553. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9554. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9555. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9556. #region 页面操作权限验证
  9557. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9558. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9559. #endregion
  9560. #endregion
  9561. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  9562. if (viewData.Code != 0)
  9563. {
  9564. return Ok(JsonView(false, viewData.Msg));
  9565. }
  9566. return Ok(JsonView(true));
  9567. }
  9568. /// <summary>
  9569. /// 接团客户名单
  9570. /// 文件下载 客户名单
  9571. /// </summary>
  9572. /// <param name="_dto"></param>
  9573. /// <returns></returns>
  9574. [HttpPost]
  9575. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9576. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  9577. {
  9578. #region 参数验证
  9579. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9580. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9581. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  9582. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9583. #region 页面操作权限验证
  9584. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9585. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9586. #endregion
  9587. #endregion
  9588. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  9589. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  9590. From Grp_TourClientList tcl
  9591. Left Join
  9592. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  9593. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  9594. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  9595. From Crm_DeleClient dc
  9596. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  9597. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  9598. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  9599. Where dc.IsDel = 0) temp
  9600. On temp.DcId =tcl.ClientId
  9601. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  9602. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  9603. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  9604. //载入模板
  9605. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  9606. if (_dto.Language == 1)
  9607. {
  9608. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  9609. }
  9610. //载入模板
  9611. var doc = new Document(tempPath);
  9612. DocumentBuilder builder = new DocumentBuilder(doc);
  9613. //获取word里所有表格
  9614. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9615. //获取所填表格的序数
  9616. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9617. var rowStart = tableOne.Rows[0]; //获取第1行
  9618. if (_dto.Language == 0)
  9619. {
  9620. //循环赋值
  9621. for (int i = 0; i < DcList.Count; i++)
  9622. {
  9623. builder.MoveToCell(0, i + 1, 0, 0);
  9624. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  9625. builder.MoveToCell(0, i + 1, 1, 0);
  9626. int sex = DcList[i].Sex;
  9627. string sexStr = string.Empty;
  9628. if (sex == 0) sexStr = "男";
  9629. else if (sex == 1) sexStr = "女";
  9630. else sexStr = "未设置";
  9631. builder.Write(sexStr);
  9632. builder.MoveToCell(0, i + 1, 2, 0);
  9633. string birthDay = DcList[i].BirthDay;
  9634. string birthDayStr = string.Empty;
  9635. if (!string.IsNullOrEmpty(birthDay))
  9636. {
  9637. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  9638. }
  9639. builder.Write(birthDayStr);
  9640. builder.MoveToCell(0, i + 1, 3, 0);
  9641. string company = "";
  9642. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9643. {
  9644. company = DcList[i].CompanyFullName.ToString();
  9645. }
  9646. builder.Write(company);
  9647. builder.MoveToCell(0, i + 1, 4, 0);
  9648. builder.Write(DcList[i].Job);
  9649. }
  9650. }
  9651. else if (_dto.Language == 1)
  9652. {
  9653. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  9654. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  9655. //循环赋值
  9656. for (int i = 0; i < DcList.Count; i++)
  9657. {
  9658. string PYName = "";
  9659. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  9660. {
  9661. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  9662. string PY_First = DcList[i].Pinyin.Split('/')[1];
  9663. PYName = PY_First + " " + PY_Last;
  9664. }
  9665. else
  9666. {
  9667. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  9668. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  9669. PYName = PY_First + " " + PY_Last;
  9670. }
  9671. builder.MoveToCell(0, i + 1, 0, 0);
  9672. builder.Write(PYName);
  9673. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  9674. builder.MoveToCell(0, i + 1, 1, 0);
  9675. builder.Write(sex);
  9676. DateTime birthDt;
  9677. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  9678. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : "";
  9679. builder.MoveToCell(0, i + 1, 2, 0);
  9680. builder.Write(birthday);
  9681. string company = "";
  9682. try
  9683. {
  9684. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9685. {
  9686. //查询对照表
  9687. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  9688. if (tempCec != null)
  9689. {
  9690. company = tempCec.enName;
  9691. }
  9692. //翻译
  9693. else
  9694. {
  9695. company = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].CompanyFullName.ToString().Trim());
  9696. }
  9697. }
  9698. }
  9699. catch (Exception)
  9700. {
  9701. }
  9702. builder.MoveToCell(0, i + 1, 3, 0);
  9703. builder.Write(company);
  9704. string job = "";
  9705. try
  9706. {
  9707. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  9708. {
  9709. //查询对照表
  9710. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  9711. if (tempPec != null)
  9712. {
  9713. job = tempPec.enName;
  9714. }
  9715. //翻译
  9716. else
  9717. {
  9718. job = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].Job.ToString().Trim());
  9719. }
  9720. }
  9721. }
  9722. catch (Exception ex)
  9723. {
  9724. }
  9725. builder.MoveToCell(0, i + 1, 4, 0);
  9726. builder.Write(job);
  9727. }
  9728. }
  9729. //删除多余行
  9730. while (tableOne.Rows.Count > DcList.Count + 1)
  9731. {
  9732. tableOne.Rows.RemoveAt(DcList.Count + 1);
  9733. }
  9734. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  9735. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  9736. doc.Save(fileDir);
  9737. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  9738. return Ok(JsonView(true, "操作成功!", Url));
  9739. }
  9740. #endregion
  9741. #region 团组倒推表
  9742. /// <summary>
  9743. /// 倒推表基础数据
  9744. /// Init
  9745. /// </summary>
  9746. /// <param name="dto"></param>
  9747. /// <returns></returns>
  9748. [HttpPost]
  9749. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9750. public async Task<IActionResult> PostInvertedListInit()
  9751. {
  9752. var viewData = await _invertedListRep._Init();
  9753. if (viewData.Code != 0)
  9754. {
  9755. return Ok(JsonView(false, viewData.Msg));
  9756. }
  9757. return Ok(JsonView(viewData.Data));
  9758. }
  9759. /// <summary>
  9760. /// 倒推表
  9761. /// Info
  9762. /// </summary>
  9763. /// <param name="dto"></param>
  9764. /// <returns></returns>
  9765. [HttpPost]
  9766. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9767. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  9768. {
  9769. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  9770. if (viewData.Code != 0)
  9771. {
  9772. return Ok(JsonView(false, viewData.Msg));
  9773. }
  9774. return Ok(JsonView(viewData.Data));
  9775. }
  9776. /// <summary>
  9777. /// 倒推表
  9778. /// Create
  9779. /// </summary>
  9780. /// <param name="dto"></param>
  9781. /// <returns></returns>
  9782. [HttpPost]
  9783. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9784. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  9785. {
  9786. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  9787. if (viewData.Code != 0)
  9788. {
  9789. return Ok(JsonView(false, viewData.Msg));
  9790. }
  9791. return Ok(JsonView(viewData.Data));
  9792. }
  9793. /// <summary>
  9794. /// 倒推表
  9795. /// Update
  9796. /// </summary>
  9797. /// <param name="dto"></param>
  9798. /// <returns></returns>
  9799. [HttpPost]
  9800. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9801. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  9802. {
  9803. var viewData = await _invertedListRep._Update(dto);
  9804. if (viewData.Code != 0)
  9805. {
  9806. return Ok(JsonView(false, viewData.Msg));
  9807. }
  9808. return Ok(JsonView(viewData.Data));
  9809. }
  9810. /// <summary>
  9811. /// 倒推表
  9812. /// File Download
  9813. /// </summary>
  9814. /// <param name="dto"></param>
  9815. /// <returns></returns>
  9816. [HttpPost]
  9817. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9818. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  9819. {
  9820. var info2 = await _invertedListRep._Info(1, dto.DiId);
  9821. if (info2.Code != 0)
  9822. {
  9823. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  9824. }
  9825. var info1 = info2.Data as InvertedListInfoView;
  9826. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  9827. string teamName = "";
  9828. if (info != null) teamName = info.TeamName;
  9829. //载入模板
  9830. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  9831. DocumentBuilder builder = new DocumentBuilder(doc);
  9832. //利用键值对存放数据
  9833. Dictionary<string, string> dic = new Dictionary<string, string>();
  9834. dic.Add("TeamName", teamName);
  9835. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  9836. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  9837. dic.Add("BPRemark", info1.ApprovalDataRemark);
  9838. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  9839. dic.Add("SQRemark", info1.ApprovalRemark);
  9840. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  9841. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  9842. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  9843. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  9844. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  9845. dic.Add("QZRemark", info1.VisaInformationRemark);
  9846. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  9847. dic.Add("SQQZRemark", info1.SendVisaRemark);
  9848. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  9849. dic.Add("CQRemark", info1.IssueVisaRemark);
  9850. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  9851. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  9852. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  9853. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  9854. #region 填充word模板书签内容
  9855. foreach (var key in dic.Keys)
  9856. {
  9857. builder.MoveToBookmark(key);
  9858. builder.Write(dic[key]);
  9859. }
  9860. #endregion
  9861. var fileDir = AppSettingsHelper.Get("WordBasePath");
  9862. string fileName = $"{teamName}团出行准备流程表.doc";
  9863. string filePath = fileDir + $@"InvertedList/{fileName}";
  9864. doc.Save(filePath);
  9865. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  9866. return Ok(JsonView(true, "操作成功!", Url));
  9867. }
  9868. #endregion
  9869. #region 三公签证费用(签证费、代办费)
  9870. /// <summary>
  9871. /// 三公签证费用(签证费、代办费)
  9872. /// List
  9873. /// </summary>
  9874. /// <returns></returns>
  9875. [HttpPost]
  9876. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9877. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  9878. {
  9879. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  9880. if (_view.Code != 0)
  9881. {
  9882. return Ok(JsonView(false, _view.Msg));
  9883. }
  9884. return Ok(JsonView(true, "操作成功!", _view.Data));
  9885. }
  9886. /// <summary>
  9887. /// 三公签证费用(签证费、代办费)
  9888. /// Add Or Update
  9889. /// </summary>
  9890. /// <returns></returns>
  9891. [HttpPost]
  9892. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9893. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  9894. {
  9895. var _view = await _visaFeeInfoRep._Update(_dto);
  9896. if (_view.Code != 0)
  9897. {
  9898. return Ok(JsonView(false, _view.Msg));
  9899. }
  9900. return Ok(JsonView(true, _view.Msg));
  9901. }
  9902. #endregion
  9903. #region 酒店询价
  9904. /// <summary>
  9905. /// 酒店询价
  9906. /// Init
  9907. /// </summary>
  9908. /// <param name="dto"></param>
  9909. /// <returns></returns>
  9910. [HttpPost]
  9911. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9912. public async Task<IActionResult> PostHotelInquiryInit()
  9913. {
  9914. var res = await _hotelInquiryRep._Init();
  9915. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  9916. return Ok(JsonView(true, res.Msg, res.Data));
  9917. }
  9918. /// <summary>
  9919. /// 酒店询价
  9920. /// page Item
  9921. /// </summary>
  9922. /// <param name="_dto"></param>
  9923. /// <returns></returns>
  9924. [HttpPost]
  9925. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9926. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  9927. {
  9928. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  9929. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  9930. var view = res.Data as PageDataViewBase;
  9931. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  9932. }
  9933. /// <summary>
  9934. /// 酒店询价
  9935. /// info
  9936. /// </summary>
  9937. /// <param name="_dto"></param>
  9938. /// <returns></returns>
  9939. [HttpPost]
  9940. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9941. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  9942. {
  9943. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  9944. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  9945. return Ok(JsonView(true, res.Msg, res.Data));
  9946. }
  9947. /// <summary>
  9948. /// 酒店询价
  9949. /// Add Or Edit
  9950. /// </summary>
  9951. /// <param name="_dto"></param>
  9952. /// <returns></returns>
  9953. [HttpPost]
  9954. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9955. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  9956. {
  9957. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  9958. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  9959. return Ok(JsonView(true, res.Msg, res.Data));
  9960. }
  9961. /// <summary>
  9962. /// 酒店询价
  9963. /// Del
  9964. /// </summary>
  9965. /// <param name="_dto"></param>
  9966. /// <returns></returns>
  9967. [HttpPost]
  9968. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9969. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  9970. {
  9971. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  9972. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  9973. return Ok(JsonView(true, res.Msg, res.Data));
  9974. }
  9975. #endregion
  9976. #region 下载匹配op行程单
  9977. /// <summary>
  9978. /// 匹配op行程单
  9979. /// Init
  9980. /// </summary>
  9981. /// <param name="dto">团组列表请求dto</param>
  9982. /// <returns></returns>
  9983. [HttpPost]
  9984. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9985. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  9986. {
  9987. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  9988. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  9989. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  9990. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  9991. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  9992. .Where(it => it.IsDel == 0)
  9993. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  9994. .OrderByDescending(it => it.CreateUserId)
  9995. .ToList();
  9996. if (groupInfos.Count < 1) return Ok(JsonView(false,"暂无和你相关的团组信息!"));
  9997. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  9998. var diids = groupInfos.Select(it => it.Id).ToList();
  9999. List<string> countrys = new List<string>();
  10000. foreach (var item in country)
  10001. {
  10002. var data = _groupRepository.FormartTeamName(item);
  10003. var dataArray = _groupRepository.GroupSplitCountry(data);
  10004. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10005. }
  10006. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10007. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10008. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10009. foreach (var item in areaItem)
  10010. {
  10011. string areaStr = item.Value;
  10012. if (!string.IsNullOrEmpty(areaStr))
  10013. {
  10014. string[] str1 = areaStr.Split("-");
  10015. if (str1.Length > 0)
  10016. {
  10017. areaArray.AddRange(str1);
  10018. }
  10019. }
  10020. }
  10021. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10022. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10023. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10024. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10025. .ToList();
  10026. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10027. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10028. .Where(it => countriesIds.Contains(it.Id))
  10029. .Select(it => new { it.Id, Name = it.Name_CN })
  10030. .ToList();
  10031. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName) )
  10032. .Select(it => it.TeamName).ToList();
  10033. stopwatch.Stop();
  10034. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames,countriesDatas, citiesDatas = cityDatas }));
  10035. }
  10036. ///// <summary>
  10037. ///// 匹配op行程单
  10038. ///// Init 查询区域数据
  10039. ///// </summary>
  10040. ///// <param name="dto">团组列表请求dto</param>
  10041. ///// <returns></returns>
  10042. //[HttpPost]
  10043. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10044. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10045. //{
  10046. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10047. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10048. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10049. // if (string.IsNullOrEmpty(countriesDataStr))
  10050. // {
  10051. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10052. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10053. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10054. // }
  10055. // else
  10056. // {
  10057. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10058. // }
  10059. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10060. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10061. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10062. // List<dynamic> childList = new List<dynamic>();
  10063. // int parentId = dto.CountriesId;
  10064. // if (provinceData.Count > 1)
  10065. // {
  10066. // foreach (var item1 in provinceData)
  10067. // {
  10068. // List<dynamic> childList1 = new List<dynamic>();
  10069. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10070. // foreach (var item2 in citiesData1)
  10071. // {
  10072. // List<dynamic> childList2 = new List<dynamic>();
  10073. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10074. // foreach (var item3 in countiesData1)
  10075. // {
  10076. // childList2.Add(new
  10077. // {
  10078. // id = item3.Id,
  10079. // parentId = item2.Id,
  10080. // level = "district",
  10081. // name = item3.Name_CN,
  10082. // });
  10083. // }
  10084. // childList1.Add(new
  10085. // {
  10086. // id = item2.Id,
  10087. // parentId = item1.Id,
  10088. // level = "city",
  10089. // name = item2.Name_CN,
  10090. // childList = childList2
  10091. // });
  10092. // }
  10093. // childList.Add(new
  10094. // {
  10095. // id = item1.Id,
  10096. // parentId = parentId,
  10097. // level = "province",
  10098. // name = item1.Name_CN,
  10099. // childList = childList1
  10100. // });
  10101. // }
  10102. // //城市
  10103. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10104. // foreach (var item2 in citiesData2)
  10105. // {
  10106. // List<dynamic> childList22 = new List<dynamic>();
  10107. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10108. // foreach (var item3 in countiesData1)
  10109. // {
  10110. // childList22.Add(new
  10111. // {
  10112. // id = item3.Id,
  10113. // parentId = item2.Id,
  10114. // level = "district",
  10115. // name = item3.Name_CN,
  10116. // });
  10117. // }
  10118. // childList.Add(new
  10119. // {
  10120. // id = item2.Id,
  10121. // parentId = parentId,
  10122. // level = "city",
  10123. // name = item2.Name_CN,
  10124. // childList = childList22
  10125. // });
  10126. // }
  10127. // }
  10128. // else
  10129. // {
  10130. // foreach (var item2 in citiesData)
  10131. // {
  10132. // string cname = item2.Name_CN;
  10133. // List<dynamic> childList1 = new List<dynamic>();
  10134. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10135. // foreach (var item3 in countiesData1)
  10136. // {
  10137. // childList1.Add(new
  10138. // {
  10139. // Id = item3.Id,
  10140. // parentId = item2.Id,
  10141. // level = "district",
  10142. // name = item3.Name_CN
  10143. // });
  10144. // }
  10145. // childList.Add(new
  10146. // {
  10147. // id = item2.Id,
  10148. // parentId = parentId,
  10149. // level = "city",
  10150. // name = item2.Name_CN,
  10151. // childList = childList1
  10152. // });
  10153. // }
  10154. // }
  10155. // stopwatch.Stop();
  10156. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10157. //}
  10158. /// <summary>
  10159. /// 匹配op行程单
  10160. /// 接团信息列表 Page
  10161. /// </summary>
  10162. /// <param name="dto">团组列表请求dto</param>
  10163. /// <returns></returns>
  10164. [HttpPost]
  10165. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10166. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10167. {
  10168. var swatch = new Stopwatch();
  10169. swatch.Start();
  10170. #region 参数验证
  10171. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10172. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10173. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10174. #region 页面操作权限验证
  10175. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10176. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10177. #endregion
  10178. #endregion
  10179. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10180. {
  10181. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10182. string sqlWhere = "";
  10183. if (!string.IsNullOrEmpty(dto.Country))
  10184. {
  10185. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10186. }
  10187. if (!string.IsNullOrEmpty(dto.Area))
  10188. {
  10189. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10190. }
  10191. if (!string.IsNullOrEmpty(dto.TeamName))
  10192. {
  10193. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10194. }
  10195. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10196. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10197. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10198. swatch.Stop();
  10199. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10200. }
  10201. else
  10202. {
  10203. return Ok(JsonView(false, "查询失败"));
  10204. }
  10205. }
  10206. /// <summary>
  10207. /// 匹配op行程单
  10208. /// 行程单下载
  10209. /// </summary>
  10210. /// <param name="dto">团组列表请求dto</param>
  10211. /// <returns></returns>
  10212. [HttpPost]
  10213. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10214. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10215. {
  10216. #region 参数验证
  10217. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10218. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10219. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10220. #region 页面操作权限验证
  10221. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10222. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10223. #endregion
  10224. #endregion
  10225. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10226. {
  10227. var res = ExportTravel(new InitOpTravelDto() { Diid = dto.diId });
  10228. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10229. }
  10230. else
  10231. {
  10232. return Ok(JsonView(false, "下载失败!"));
  10233. }
  10234. }
  10235. #endregion
  10236. #region 国家信息 数据 注释
  10237. //[HttpPost]
  10238. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10239. //{
  10240. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10241. // foreach (var item in dto)
  10242. // {
  10243. // infos.Add(new Grp_GroupsTaskAssignment()
  10244. // {
  10245. // DIId = item,
  10246. // CTId = 82,
  10247. // UId = 248,
  10248. // IsEnable = 1,
  10249. // CreateUserId = 233,
  10250. // CreateTime = DateTime.Now,
  10251. // IsDel = 0
  10252. // });
  10253. // infos.Add(new Grp_GroupsTaskAssignment()
  10254. // {
  10255. // DIId = item,
  10256. // CTId = 82,
  10257. // UId = 286,
  10258. // IsEnable = 1,
  10259. // CreateUserId = 233,
  10260. // CreateTime = DateTime.Now,
  10261. // IsDel = 0
  10262. // });
  10263. // }
  10264. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10265. // return Ok("操作成功");
  10266. //}
  10267. //public class paramJsonDto
  10268. //{
  10269. // public List<CountriesInfo> str { get; set; }
  10270. //}
  10271. //[HttpPost]
  10272. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10273. //{
  10274. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10275. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10276. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10277. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10278. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10279. // _sqlSugar.BeginTran();
  10280. // int countitiesIndex = 0;
  10281. // foreach (var item in dto.str)
  10282. // {
  10283. // dynamic data = item.c;
  10284. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10285. // if (data != null)
  10286. // {
  10287. // countitiesIndex++;
  10288. // foreach (var item1 in data)
  10289. // {
  10290. // string cnname = item1.cn;
  10291. // string enname = item1.en;
  10292. // Sys_Cities provinceInfo = new Sys_Cities()
  10293. // {
  10294. // CountriesId = countriesId,
  10295. // Name_CN = cnname,
  10296. // Name_EN = enname,
  10297. // ParentId = 0,
  10298. // IsCapital = 1,
  10299. // CreateUserId = 208,
  10300. // CreateTime = DateTime.Now,
  10301. // IsDel = 0
  10302. // };
  10303. // if (item1.lv == "province") //省份
  10304. // {
  10305. // provinceInfo.Level = 1;
  10306. // int provinceId = 0;
  10307. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10308. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10309. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10310. // var data1 = item1.c;
  10311. // foreach (var item2 in data1)
  10312. // {
  10313. // if (item2.lv == "city")
  10314. // {
  10315. // string citycnname = item2.cn;
  10316. // string cityenname = item2.en;
  10317. // Sys_Cities cityInfo = new Sys_Cities()
  10318. // {
  10319. // CountriesId = countriesId,
  10320. // ParentId = provinceId,
  10321. // Level = 2,
  10322. // Name_CN = citycnname,
  10323. // Name_EN = cityenname,
  10324. // IsCapital = 1,
  10325. // CreateUserId = 208,
  10326. // CreateTime = DateTime.Now,
  10327. // IsDel = 0
  10328. // };
  10329. // if (item2.c != null)
  10330. // {
  10331. // int cityId = 0;
  10332. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10333. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10334. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10335. // foreach (var item3 in item2.c)
  10336. // {
  10337. // if (item3.lv == "district")
  10338. // {
  10339. // var districtInfo = new Sys_Cities()
  10340. // {
  10341. // CountriesId = countriesId,
  10342. // Name_CN = item3.cn,
  10343. // Name_EN = item3.en,
  10344. // Level = 3,
  10345. // ParentId = cityId,
  10346. // IsCapital = 1,
  10347. // CreateUserId = 208,
  10348. // CreateTime = DateTime.Now,
  10349. // IsDel = 0
  10350. // };
  10351. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10352. // //{
  10353. // districts.Add(districtInfo);
  10354. // //}
  10355. // }
  10356. // }
  10357. // }
  10358. // else
  10359. // {
  10360. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10361. // //{
  10362. // cities.Add(cityInfo);
  10363. // //}
  10364. // }
  10365. // }
  10366. // }
  10367. // }
  10368. // else if (item1.lv == "city")//城市
  10369. // {
  10370. // provinceInfo.Level = 2;
  10371. // if (item1.c != null)
  10372. // {
  10373. // int cityId = 0;
  10374. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10375. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10376. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10377. // foreach (var item3 in item1.c)
  10378. // {
  10379. // if (item3.lv == "district")
  10380. // {
  10381. // var districtInfo = new Sys_Cities()
  10382. // {
  10383. // CountriesId = countriesId,
  10384. // Name_CN = item3.cn,
  10385. // Name_EN = item3.en,
  10386. // Level = 3,
  10387. // ParentId = cityId,
  10388. // IsCapital = 1,
  10389. // CreateUserId = 208,
  10390. // CreateTime = DateTime.Now,
  10391. // IsDel = 0
  10392. // };
  10393. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10394. // //{
  10395. // districts.Add(districtInfo);
  10396. // //}
  10397. // }
  10398. // }
  10399. // }
  10400. // else
  10401. // {
  10402. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10403. // //{
  10404. // cities.Add(provinceInfo);
  10405. // //}
  10406. // }
  10407. // }
  10408. // }
  10409. // }
  10410. // }
  10411. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10412. // cities = cities.Distinct().ToList();
  10413. // districts = districts.Distinct().ToList();
  10414. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10415. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10416. // cities.AddRange(districts);
  10417. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10418. // //_sqlSugar.RollbackTran();
  10419. // _sqlSugar.CommitTran();
  10420. // return Ok(JsonView(false, "操作成功!"));
  10421. //}
  10422. //[HttpPost]
  10423. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10424. //{
  10425. // List<CountitiesInfo> infos = dto.MyProperty;
  10426. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10427. // _sqlSugar.BeginTran();
  10428. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10429. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10430. // foreach (var item in infos)
  10431. // {
  10432. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10433. // if (countryInfo != null)
  10434. // {
  10435. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10436. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10437. // if (cityInfo1 != null)
  10438. // {
  10439. // cityInfo1.IsCapital = 0;
  10440. // cityInfos.Add(cityInfo1);
  10441. // }
  10442. // }
  10443. // }
  10444. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10445. // .UpdateColumns(it => it.IsCapital)
  10446. // .WhereColumns(it => it.Id)
  10447. // .ExecuteCommand();
  10448. // //_sqlSugar.RollbackTran();
  10449. // _sqlSugar.CommitTran();
  10450. // return Ok(JsonView(false, "操作成功!"));
  10451. //}
  10452. //public class CounrtiesDto
  10453. //{
  10454. // public List<CountitiesInfo> MyProperty { get; set; }
  10455. //}
  10456. //public class CountitiesInfo
  10457. //{
  10458. // /// <summary>
  10459. // /// 圣约翰
  10460. // /// </summary>
  10461. // public string capital_name_chinese { get; set; }
  10462. // /// <summary>
  10463. // ///
  10464. // /// </summary>
  10465. // public string capital_name { get; set; }
  10466. // /// <summary>
  10467. // ///
  10468. // /// </summary>
  10469. // public string country_type { get; set; }
  10470. // /// <summary>
  10471. // /// 安提瓜和巴布达
  10472. // /// </summary>
  10473. // public string country_name_chinese { get; set; }
  10474. // /// <summary>
  10475. // /// 安提瓜和巴布达
  10476. // /// </summary>
  10477. // public string country_name_chinese_short { get; set; }
  10478. // /// <summary>
  10479. // /// 安提瓜和巴布达
  10480. // /// </summary>
  10481. // public string country_name_chinese_UN { get; set; }
  10482. // /// <summary>
  10483. // ///
  10484. // /// </summary>
  10485. // public string country_name_english_abbreviation { get; set; }
  10486. // /// <summary>
  10487. // ///
  10488. // /// </summary>
  10489. // public string country_name_english_formal { get; set; }
  10490. // /// <summary>
  10491. // ///
  10492. // /// </summary>
  10493. // public string country_name_english_UN { get; set; }
  10494. // /// <summary>
  10495. // ///
  10496. // /// </summary>
  10497. // public string continent_name { get; set; }
  10498. // /// <summary>
  10499. // ///
  10500. // /// </summary>
  10501. // public string subregion_name { get; set; }
  10502. // /// <summary>
  10503. // ///
  10504. // /// </summary>
  10505. // public string country_code2 { get; set; }
  10506. // /// <summary>
  10507. // ///
  10508. // /// </summary>
  10509. // public string country_code3 { get; set; }
  10510. // /// <summary>
  10511. // ///
  10512. // /// </summary>
  10513. // public string phone_code { get; set; }
  10514. //}
  10515. //public class CountriesInfo : BasicInfo
  10516. //{
  10517. // public List<CitiesInfo> c { get; set; }
  10518. //}
  10519. //public class CitiesInfo : BasicInfo
  10520. //{
  10521. // public List<AreaInfo> c { get; set; }
  10522. //}
  10523. //public class AreaInfo : BasicInfo
  10524. //{
  10525. // public List<AreaInfo> c { get; set; }
  10526. //}
  10527. //public class BasicInfo
  10528. //{
  10529. // public string code { get; set; }
  10530. // public string cn { get; set; }
  10531. // public string lv { get; set; }
  10532. // public string en { get; set; }
  10533. //}
  10534. #endregion
  10535. #region 查看邀请方
  10536. /// <summary>
  10537. /// 查看邀请方
  10538. /// 邀请方信息 Init
  10539. /// </summary>
  10540. /// <param name="dto"></param>
  10541. /// <returns></returns>
  10542. [HttpPost]
  10543. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10544. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  10545. {
  10546. string sqlWhere = string.Empty;
  10547. if (!string.IsNullOrEmpty(dto.Search))
  10548. {
  10549. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  10550. }
  10551. string sql = string.Format($@"Select
  10552. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  10553. Id,
  10554. UnitName
  10555. From Res_InvitationOfficialActivityData
  10556. Where IsDel = 0
  10557. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  10558. RefAsync<int> total = 0;
  10559. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10560. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  10561. }
  10562. /// <summary>
  10563. /// 查看邀请方
  10564. /// 国家信息 Init
  10565. /// </summary>
  10566. /// <param name="dto"></param>
  10567. /// <returns></returns>
  10568. [HttpPost]
  10569. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10570. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  10571. {
  10572. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  10573. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10574. var diids = groupInfos.Select(it => it.Id).ToList();
  10575. List<string> countrys = new List<string>();
  10576. foreach (var item in country)
  10577. {
  10578. var data = _groupRepository.FormartTeamName(item);
  10579. var dataArray = _groupRepository.GroupSplitCountry(data);
  10580. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10581. }
  10582. countrys = countrys.Distinct().ToList();
  10583. for (int i = 0; i < countrys.Count; i++)
  10584. {
  10585. string item = countrys[i];
  10586. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  10587. {
  10588. countrys.Remove(item);
  10589. i--;
  10590. }
  10591. }
  10592. RefAsync<int> total = 0;
  10593. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  10594. .Where(it => countrys.Contains(it.Name_CN))
  10595. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10596. .Select(it => new { id = it.Id, name = it.Name_CN })
  10597. .ToPageListAsync(dto.PageIndex,dto.PageSize, total);
  10598. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10599. }
  10600. /// <summary>
  10601. /// 查看邀请方
  10602. /// 城市信息 Init
  10603. /// </summary>
  10604. /// <param name="dto"></param>
  10605. /// <returns></returns>
  10606. [HttpPost]
  10607. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10608. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  10609. {
  10610. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  10611. RefAsync<int> total = 0;
  10612. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  10613. .Where(it => it.CountriesId == dto.CountiesId)
  10614. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10615. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  10616. .Select(it => new { id = it.Id, name = it.Name_CN })
  10617. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10618. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10619. }
  10620. /// <summary>
  10621. /// 查看邀请方
  10622. /// 团组名称 Init
  10623. /// </summary>
  10624. /// <param name="dto"></param>
  10625. /// <returns></returns>
  10626. [HttpPost]
  10627. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10628. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  10629. {
  10630. var watch = new Stopwatch();
  10631. watch.Start();
  10632. RefAsync<int> total = 0;
  10633. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  10634. .InnerJoin<Grp_DelegationInfo>((oa,di) => oa.DiId == di.Id)
  10635. .Where((oa, di) => oa.IsDel == 0)
  10636. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  10637. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  10638. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  10639. .Distinct()
  10640. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10641. watch.Stop();
  10642. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  10643. }
  10644. /// <summary>
  10645. /// 查看邀请方
  10646. /// 团组 & 邀请方信息
  10647. /// </summary>
  10648. /// <param name="dto"></param>
  10649. /// <returns></returns>
  10650. [HttpPost]
  10651. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10652. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  10653. {
  10654. var watch = new Stopwatch();
  10655. watch.Start();
  10656. RefAsync<int> total = 0;
  10657. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  10658. .AS("Grp_DelegationInfo")
  10659. .Includes(x => x.InvitingInfos)
  10660. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  10661. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  10662. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  10663. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  10664. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  10665. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  10666. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10667. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  10668. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  10669. infos.ForEach(x => {
  10670. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  10671. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  10672. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  10673. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  10674. });
  10675. watch.Stop();
  10676. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  10677. }
  10678. #endregion
  10679. #region 报批行程
  10680. /// <summary>
  10681. /// 报批行程初始化
  10682. /// </summary>
  10683. /// <param name="dto"></param>
  10684. /// <returns></returns>
  10685. [HttpPost]
  10686. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  10687. {
  10688. const int chiNumber = 5;
  10689. var jw = JsonView(false);
  10690. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  10691. var group = groupList.First();
  10692. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  10693. group = groupList.First(x => x.Id == diid);
  10694. if (group == null)
  10695. {
  10696. jw.Msg = "暂无团组!";
  10697. return Ok(jw);
  10698. }
  10699. var data = new
  10700. {
  10701. groupList = groupList.Select(x => new
  10702. {
  10703. x.TeamName,
  10704. x.Id
  10705. }),
  10706. content = new ArrayList(),
  10707. groupInfo = new
  10708. {
  10709. group.VisitDays,
  10710. group.TourCode,
  10711. group.VisitPNumber,
  10712. group.TeamName,
  10713. group.Id,
  10714. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  10715. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  10716. },
  10717. };
  10718. var resultArr = new ArrayList();
  10719. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  10720. if (content.Count == 0)
  10721. {
  10722. var stay = "-";
  10723. var cityPath = "-";
  10724. //添加城市路径以及住宿地
  10725. //黑屏代码数据
  10726. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  10727. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  10728. {
  10729. jw = JsonView(true, "黑屏代码有误!", data);
  10730. return Ok(jw);
  10731. }
  10732. foreach (DataRow row in dtBlack.Rows)
  10733. {
  10734. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  10735. {
  10736. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  10737. return Ok(jw);
  10738. }
  10739. }
  10740. //黑屏代码获取时间区间
  10741. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  10742. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  10743. _sqlSugar.BeginTran();
  10744. for (int i = 0; i < timeArr.Count; i++)
  10745. {
  10746. stay = "-";
  10747. cityPath = "-";
  10748. DateTime NewData = DateTime.Parse(timeArr[i]);
  10749. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  10750. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  10751. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  10752. if (tbSelect.Length > 0)
  10753. {
  10754. List<string> threeCodeStr = new List<string>();
  10755. foreach (var item in tbSelect)
  10756. {
  10757. var threeCode = item["Three"].ToString() ?? "";
  10758. if (threeCode.Length == 6)
  10759. {
  10760. var start = threeCode.Substring(0, 3);
  10761. var end = threeCode.Substring(3, 3);
  10762. if (threeCodeStr.Count == 0)
  10763. {
  10764. threeCodeStr.Add(start);
  10765. threeCodeStr.Add(end);
  10766. }
  10767. else
  10768. {
  10769. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  10770. {
  10771. threeCodeStr.Add(end);
  10772. }
  10773. else {
  10774. threeCodeStr.Add(start);
  10775. threeCodeStr.Add(end);
  10776. }
  10777. }
  10778. }
  10779. }
  10780. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  10781. var last = threeCodeStr.Last();
  10782. foreach (var item in threeCodeStr)
  10783. {
  10784. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  10785. if(item.Equals(last))
  10786. {
  10787. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  10788. }
  10789. }
  10790. cityPath = cityPath.Trim('-');
  10791. }
  10792. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  10793. appro.Diid = diid ?? -1;
  10794. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  10795. appro.Id = thisId;
  10796. appro.CreateUserId = dto.UserId;
  10797. appro.CreateTime = DateTime.Now;
  10798. content.Add(appro);
  10799. }
  10800. _sqlSugar.CommitTran();
  10801. }
  10802. foreach (var x in content)
  10803. {
  10804. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  10805. if (chiList.Count < chiNumber)
  10806. {
  10807. for (int i = chiList.Count; i < chiNumber; i++)
  10808. {
  10809. chiList.Add(new Grp_ApprovalTravelDetails());
  10810. }
  10811. }
  10812. resultArr.Add(new
  10813. {
  10814. x.Id,
  10815. x.Date,
  10816. x.Diid,
  10817. chiList = chiList.Select(x1 => new
  10818. {
  10819. timeInterval = x1.Time == null ? new string [1] : x1.Time.Split('-'),
  10820. x1.Details,
  10821. x1.ParentId,
  10822. x1.Id
  10823. })
  10824. });
  10825. }
  10826. data = data with
  10827. {
  10828. content = resultArr,
  10829. };
  10830. jw = JsonView(true,"获取成功!",data);
  10831. return Ok(jw);
  10832. }
  10833. /// <summary>
  10834. /// 报批行程删除
  10835. /// </summary>
  10836. /// <param name="dto"></param>
  10837. /// <returns></returns>
  10838. [HttpPost]
  10839. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  10840. {
  10841. var jw = JsonView(false);
  10842. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x=>x.Id == dto.Diid && x.IsDel == 0);
  10843. if (group == null)
  10844. {
  10845. jw.Msg = "团组参数有误!";
  10846. return Ok(jw);
  10847. }
  10848. try
  10849. {
  10850. _sqlSugar.BeginTran();
  10851. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x=>x.Id).ToList();
  10852. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  10853. {
  10854. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  10855. DeleteUserId = dto.uesrId,
  10856. IsDel = 1
  10857. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  10858. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  10859. {
  10860. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  10861. DeleteUserId = dto.uesrId,
  10862. IsDel = 1
  10863. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  10864. _sqlSugar.CommitTran();
  10865. jw = JsonView(true, "删除成功");
  10866. }
  10867. catch (Exception ex)
  10868. {
  10869. jw = JsonView(false, ex.Message);
  10870. }
  10871. return Ok(jw);
  10872. }
  10873. /// <summary>
  10874. /// 报批行程保存
  10875. /// </summary>
  10876. /// <param name="dto"></param>
  10877. /// <returns></returns>
  10878. [HttpPost]
  10879. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  10880. {
  10881. var jw = JsonView(false);
  10882. var Find = dto.Arr.Find(x => x.id == 0);
  10883. if (Find != null)
  10884. {
  10885. jw.Msg = "生成的ID为0!";
  10886. return Ok(jw);
  10887. }
  10888. foreach (var item in dto.Arr)
  10889. {
  10890. foreach (var chi in item.chiList)
  10891. {
  10892. if (chi.parentId == 0)
  10893. {
  10894. chi.parentId = item.id;
  10895. }
  10896. }
  10897. }
  10898. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  10899. _sqlSugar.BeginTran();
  10900. if (chiArr.Where(x=>x.id == 0).Count() == chiArr.Count)
  10901. {
  10902. var parentIds = dto.Arr.Select(x => x.id).ToList();
  10903. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x=>new Grp_ApprovalTravelDetails
  10904. {
  10905. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  10906. DeleteUserId = dto.UserId,
  10907. IsDel = 1
  10908. }).ExecuteCommand();
  10909. }
  10910. try
  10911. {
  10912. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  10913. {
  10914. CreateTime = DateTime.Now,
  10915. CreateUserId = dto.UserId,
  10916. Details = x.details,
  10917. ParentId = x.parentId,
  10918. Time = x.timeInterval.Count > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  10919. Remark = "",
  10920. IsDel = 0
  10921. }).ToList()).ExecuteCommand();
  10922. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  10923. {
  10924. Id = x.id,
  10925. Details = x.details,
  10926. ParentId = x.parentId,
  10927. Time = x.timeInterval.Count > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  10928. }).ToList()).UpdateColumns(x=> new Grp_ApprovalTravelDetails
  10929. {
  10930. Details = x.Details,
  10931. ParentId = x.ParentId,
  10932. Time = x.Time
  10933. }).ExecuteCommand();
  10934. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  10935. {
  10936. Id = x.id,
  10937. Date = x.date,
  10938. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  10939. {
  10940. Date = x.Date
  10941. }).ExecuteCommand();
  10942. _sqlSugar.CommitTran();
  10943. jw = JsonView(true, "保存成功!");
  10944. }
  10945. catch (Exception ex)
  10946. {
  10947. _sqlSugar.RollbackTran();
  10948. jw = JsonView(false, "保存失败!" + ex.Message);
  10949. }
  10950. return Ok(jw);
  10951. }
  10952. /// <summary>
  10953. /// 报批行程生成
  10954. /// </summary>
  10955. /// <param name="dto"></param>
  10956. /// <returns></returns>
  10957. [HttpPost]
  10958. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  10959. {
  10960. var jw = JsonView(false);
  10961. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  10962. if (group == null)
  10963. {
  10964. jw.Msg = "暂无该团组!";
  10965. return Ok(jw);
  10966. }
  10967. //黑屏代码数据
  10968. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  10969. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  10970. {
  10971. jw.Msg = "黑屏代码有误!";
  10972. return Ok(jw);
  10973. }
  10974. foreach (DataRow row in dtBlack.Rows)
  10975. {
  10976. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  10977. {
  10978. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  10979. return Ok(jw);
  10980. }
  10981. }
  10982. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  10983. var resultArr = new ArrayList();
  10984. if (officialActivitiesArr.Count == 0)
  10985. {
  10986. jw.Msg = "暂无公务出访信息!";
  10987. return Ok(jw);
  10988. }
  10989. try
  10990. {
  10991. _sqlSugar.BeginTran();
  10992. DeleteApprovalJourney(new
  10993. Domain.Dtos.Groups.DeleteApprovalJourney
  10994. {
  10995. Diid = dto.Diid,
  10996. uesrId = dto.Userid
  10997. });
  10998. var stay = "-";
  10999. var cityPath = "-";
  11000. //添加城市路径以及住宿地
  11001. //黑屏代码获取时间区间
  11002. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11003. var empty = "【未收入该三字码!请机票同事录入】";
  11004. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11005. for (int i = 0; i < timeArr.Count; i++)
  11006. {
  11007. stay = "-";
  11008. cityPath = "-";
  11009. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11010. DateTime NewData = DateTime.Parse(timeArr[i]);
  11011. 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();
  11012. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11013. if (tbSelect.Length > 0)
  11014. {
  11015. List<string> threeCodeStr = new List<string>();
  11016. bool isTrade = false;
  11017. string trip = string.Empty;
  11018. var rowLast = tbSelect.Last();
  11019. var rowFirst = tbSelect.First();
  11020. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11021. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11022. var takeOffTime = DateTime.Parse(timeArr[i]);
  11023. var fallToTime = DateTime.Parse(timeArr[i]);
  11024. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11025. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11026. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11027. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11028. foreach (var item in tbSelect)
  11029. {
  11030. var start = string.Empty;
  11031. var end = string.Empty;
  11032. var threeCode = item["Three"].ToString() ?? "";
  11033. if (threeCode.Length == 6)
  11034. {
  11035. start = threeCode.Substring(0, 3);
  11036. end = threeCode.Substring(3, 3);
  11037. if (threeCodeStr.Count == 0)
  11038. {
  11039. threeCodeStr.Add(start);
  11040. threeCodeStr.Add(end);
  11041. }
  11042. else
  11043. {
  11044. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11045. {
  11046. threeCodeStr.Add(end);
  11047. }
  11048. else
  11049. {
  11050. threeCodeStr.Add(start);
  11051. threeCodeStr.Add(end);
  11052. }
  11053. }
  11054. }
  11055. //处理机票信息
  11056. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11057. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11058. if (start_Object == null)
  11059. {
  11060. start_Object = new Res_ThreeCode()
  11061. {
  11062. AirPort = empty,
  11063. AirPort_En = empty,
  11064. City = empty,
  11065. Country = empty,
  11066. Four = empty,
  11067. Three = empty,
  11068. };
  11069. }
  11070. if (end_Object == null)
  11071. {
  11072. end_Object = new Res_ThreeCode()
  11073. {
  11074. AirPort = empty,
  11075. AirPort_En = empty,
  11076. City = empty,
  11077. Country = empty,
  11078. Four = empty,
  11079. Three = empty,
  11080. };
  11081. }
  11082. //机型判断
  11083. string airModel = item["AirModel"].ToString();
  11084. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11085. string flightTime = item["FlightTime"].ToString();
  11086. if (flightTime!.Contains(":"))
  11087. {
  11088. flightTime = flightTime.Replace(":", "小时");
  11089. flightTime += "分钟";
  11090. }
  11091. if (flightTime.Contains("H"))
  11092. {
  11093. flightTime = flightTime.Replace("H", "小时");
  11094. }
  11095. if (flightTime.Contains("M"))
  11096. {
  11097. flightTime = flightTime.Replace("M", "分钟");
  11098. }
  11099. //航班号
  11100. string flightcode = item["Fliagtcode"].ToString();
  11101. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11102. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11103. if (aircompany == null)
  11104. {
  11105. aircompany = new Res_AirCompany
  11106. {
  11107. CnName = hsEmpty,
  11108. EnName = hsEmpty,
  11109. ShortCode = hsEmpty,
  11110. };
  11111. }
  11112. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11113. trip += $" 从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n ({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11114. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11115. if (isTrade)
  11116. {
  11117. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转时间: 行李直达)";
  11118. }
  11119. else
  11120. {
  11121. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11122. }
  11123. }
  11124. chiarr.Add(new Grp_ApprovalTravelDetails
  11125. {
  11126. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11127. CreateTime = DateTime.Now,
  11128. CreateUserId = dto.Userid,
  11129. ParentId = 0,
  11130. Details = trip
  11131. }) ;
  11132. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11133. var last = threeCodeStr.Last();
  11134. foreach (var item in threeCodeStr)
  11135. {
  11136. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11137. if (item.Equals(last))
  11138. {
  11139. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11140. }
  11141. }
  11142. cityPath = cityPath.Trim('-');
  11143. }
  11144. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11145. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11146. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11147. appro.Diid = dto.Diid;
  11148. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11149. appro.Id = thisId;
  11150. appro.CreateUserId = dto.Userid;
  11151. appro.CreateTime = DateTime.Now;
  11152. foreach (var item in gwinfo)
  11153. {
  11154. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11155. chi.Details = "拜访" + item.Client;
  11156. chi.ParentId = thisId;
  11157. chi.Time = item.Time;
  11158. chiarr.Add(chi);
  11159. }
  11160. if (chiarr.Count < 5)
  11161. {
  11162. for (int j = chiarr.Count; j < 5; j++)
  11163. {
  11164. chiarr.Add(new
  11165. Grp_ApprovalTravelDetails());
  11166. }
  11167. }
  11168. resultArr.Add(new
  11169. {
  11170. appro.Id,
  11171. appro.Date,
  11172. appro.Diid,
  11173. chiList = chiarr.Select(x1 => new
  11174. {
  11175. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11176. x1.Details,
  11177. x1.ParentId,
  11178. x1.Id
  11179. })
  11180. });
  11181. }
  11182. _sqlSugar.CommitTran();
  11183. jw = JsonView(true, "生成成功!", resultArr);
  11184. }
  11185. catch (Exception ex)
  11186. {
  11187. jw.Code = 400;
  11188. jw.Msg = "生成失败!" + ex.Message;
  11189. }
  11190. return Ok(jw);
  11191. }
  11192. /// <summary>
  11193. /// 报批行程word导出
  11194. /// </summary>
  11195. /// <param name="dto"></param>
  11196. /// <returns></returns>
  11197. [HttpPost]
  11198. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11199. {
  11200. var jw = JsonView(false);
  11201. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11202. if (group == null)
  11203. {
  11204. jw.Msg = "暂无该团组!";
  11205. return Ok(jw);
  11206. }
  11207. //模板路径
  11208. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx");
  11209. //载入模板
  11210. Document doc = new Document(tempPath);
  11211. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11212. //获取所填表格的序数
  11213. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11214. Aspose.Words.Tables.Row titleRowClone = null;
  11215. Aspose.Words.Tables.Row CenterRowClone = null;
  11216. int index = 0;
  11217. int indexChi = 0;
  11218. int SetIndex = 0;
  11219. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11220. //获取数据,放到datatable
  11221. foreach (var item in ApprovalTravelArr)
  11222. {
  11223. if (index > 0)
  11224. {
  11225. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11226. tableOne.AppendChild(titleRowClone);
  11227. }
  11228. var textTime = item.Date;
  11229. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11230. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11231. SetIndex++;
  11232. if (ChiRep.Count > 0)
  11233. {
  11234. foreach (var itemChi in ChiRep)
  11235. {
  11236. var txtTime = itemChi.Time;
  11237. var txtDetail = itemChi.Details;
  11238. if (indexChi > 0)
  11239. {
  11240. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11241. tableOne.AppendChild(CenterRowClone);
  11242. }
  11243. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11244. {
  11245. SetCells(tableOne, doc, SetIndex, 0, "");
  11246. SetCells(tableOne, doc, SetIndex, 1, "");
  11247. indexChi++;
  11248. SetIndex++;
  11249. break;
  11250. }
  11251. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11252. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11253. indexChi++;
  11254. SetIndex++;
  11255. }
  11256. }
  11257. else
  11258. {
  11259. if (indexChi > 0)
  11260. {
  11261. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11262. tableOne.AppendChild(CenterRowClone);
  11263. }
  11264. SetCells(tableOne, doc, SetIndex, 0, "");
  11265. SetCells(tableOne, doc, SetIndex, 1, "");
  11266. indexChi++;
  11267. SetIndex++;
  11268. }
  11269. index++;
  11270. }
  11271. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11272. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName);
  11273. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; ;
  11274. jw.Code = 200;
  11275. jw.Msg = "";
  11276. return Ok(jw);
  11277. }
  11278. private string intToString(int numberVal)
  11279. {
  11280. string numberval = numberVal.ToString();
  11281. Dictionary<char, string> Number = new Dictionary<char, string>();
  11282. Number.Add('1', "一");
  11283. Number.Add('2', "二");
  11284. Number.Add('3', "三");
  11285. Number.Add('4', "四");
  11286. Number.Add('5', "五");
  11287. Number.Add('6', "六");
  11288. Number.Add('7', "七");
  11289. Number.Add('8', "八");
  11290. Number.Add('9', "九");
  11291. string stringNumberVal = string.Empty;
  11292. for (int i = 0; i < numberval.Length; i++)
  11293. {
  11294. if (i == 0)
  11295. {
  11296. stringNumberVal += Number[numberval[i]];
  11297. }
  11298. else if (i >= 1)
  11299. {
  11300. if (numberval[i] == '0')
  11301. {
  11302. stringNumberVal = "十";
  11303. }
  11304. else
  11305. {
  11306. stringNumberVal += "十" + Number[numberval[i]];
  11307. }
  11308. }
  11309. }
  11310. return stringNumberVal;
  11311. }
  11312. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11313. {
  11314. //获取table中的某个单元格,从0开始
  11315. Cell lshCell = table.Rows[rows].Cells[cells];
  11316. //将单元格中的第一个段落移除
  11317. lshCell.FirstParagraph.Remove();
  11318. //新建一个段落
  11319. Paragraph p = new Paragraph(doc);
  11320. var r = new Run(doc, val);
  11321. //把设置的值赋给之前新建的段落
  11322. p.AppendChild(r);
  11323. //将此段落加到单元格内
  11324. lshCell.AppendChild(p);
  11325. }
  11326. [HttpPost]
  11327. public async Task<IActionResult> ServerHttp(string paramStr)
  11328. {
  11329. paramStr = paramStr.TrimEnd('\'');
  11330. paramStr = paramStr.TrimStart('\'');
  11331. JsonView jw = JsonView(false);
  11332. JObject param = JObject.Parse(paramStr);
  11333. if (!param.ContainsKey("url"))
  11334. {
  11335. jw.Msg = "url null";
  11336. return Ok(jw);
  11337. }
  11338. string url = param["url"]!.ToString();
  11339. var methon = "get";
  11340. Dictionary<string, string> bodyValues = null;
  11341. Dictionary<string, string> headValues = null;
  11342. if (param.ContainsKey("methon"))
  11343. {
  11344. methon = param["methon"]!.ToString();
  11345. }
  11346. if (param.ContainsKey("header"))
  11347. {
  11348. var header = param["header"]!.ToString();
  11349. JObject headerJobject = JObject.Parse(header);
  11350. headValues = new Dictionary<string, string>();
  11351. foreach (JProperty item in headerJobject.Properties())
  11352. {
  11353. var value = item.Value.ToString();
  11354. var head = item.Path;
  11355. headValues.Add(head, value);
  11356. }
  11357. }
  11358. if (param.ContainsKey("body"))
  11359. {
  11360. var body = param["body"]!.ToString();
  11361. bodyValues = new Dictionary<string, string>();
  11362. JObject bodyJobject = JObject.Parse(body);
  11363. foreach (JProperty item in bodyJobject.Properties())
  11364. {
  11365. var value = item.Value.ToString();
  11366. var head = item.Path;
  11367. bodyValues.Add(head, value);
  11368. }
  11369. }
  11370. HttpClient client = new HttpClient();
  11371. string responseString = string.Empty;
  11372. if (param.ContainsKey("isJson"))
  11373. {
  11374. }
  11375. if (headValues != null)
  11376. {
  11377. foreach (var item in headValues.Keys)
  11378. {
  11379. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11380. }
  11381. }
  11382. try
  11383. {
  11384. if (methon == "get")
  11385. {
  11386. responseString = await client.GetStringAsync(url);
  11387. }
  11388. else if (methon == "post")
  11389. {
  11390. if (bodyValues == null)
  11391. {
  11392. jw.Msg = "methon post body null";
  11393. return Ok(jw);
  11394. }
  11395. // 数据转化为 key=val 格式
  11396. var content = new FormUrlEncodedContent(bodyValues);
  11397. var response = await client.PostAsync(url, content);
  11398. // 获取数据
  11399. responseString = await response.Content.ReadAsStringAsync();
  11400. }
  11401. else
  11402. {
  11403. jw.Msg = "methon error";
  11404. }
  11405. jw = JsonView(true, "success", responseString);
  11406. }
  11407. catch (Exception ex)
  11408. {
  11409. jw.Msg = "error " + ex.Message;
  11410. jw.Data = ex.StackTrace;
  11411. }
  11412. finally
  11413. {
  11414. client.Dispose();
  11415. }
  11416. return Ok(jw);
  11417. }
  11418. #endregion
  11419. // /// <summary>
  11420. // ///
  11421. // /// </summary>
  11422. // /// <param name="_dto"></param>
  11423. // /// <returns></returns>
  11424. // [HttpPost]
  11425. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11426. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11427. // {
  11428. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11429. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11430. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11431. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11432. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11433. // dic_psg.Add("客人", 974);
  11434. // dic_psg.Add("司机", 975);
  11435. // dic_psg.Add("导游", 976);
  11436. // dic_psg.Add("公司内部人员", 977);
  11437. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11438. // foreach (var item in list_visa)
  11439. // {
  11440. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11441. // temp.Id = item.Id;
  11442. // temp.DIId = item.DIId;
  11443. // temp.VisaClient = item.VisaClient;
  11444. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  11445. // temp.VisaCurrency = item.VisaCurrency;
  11446. // temp.IsThird = item.IsThird;
  11447. // if (dic_psg.ContainsKey(item.PassengerType))
  11448. // {
  11449. // temp.PassengerType = dic_psg[item.PassengerType];
  11450. // }
  11451. // else {
  11452. // temp.PassengerType = -1;
  11453. // }
  11454. // temp.VisaNumber = item.VisaNumber;
  11455. // temp.VisaFreeNumber = item.VisaFreeNumber;
  11456. // temp.CreateUserId = item.Operators;
  11457. // DateTime dt_ct;
  11458. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  11459. // if (b_ct)
  11460. // {
  11461. // temp.CreateTime = dt_ct;
  11462. // }
  11463. // else
  11464. // {
  11465. // temp.CreateTime = DateTime.Now;
  11466. // }
  11467. // temp.DeleteTime = "";
  11468. // temp.DeleteUserId = 0;
  11469. // temp.Remark = item.Remark;
  11470. // if (string.IsNullOrEmpty(temp.Remark)) {
  11471. // temp.Remark = "";
  11472. // }
  11473. // temp.IsDel = item.IsDel;
  11474. // temp.VisaDescription = item.VisaAttachment;
  11475. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  11476. //([Id]
  11477. // ,[DIId]
  11478. // ,[VisaClient]
  11479. // ,[VisaPrice]
  11480. // ,[VisaCurrency]
  11481. // ,[IsThird]
  11482. // ,[PassengerType]
  11483. // ,[VisaNumber]
  11484. // ,[VisaFreeNumber]
  11485. // ,[CreateUserId]
  11486. // ,[CreateTime]
  11487. // ,[DeleteTime]
  11488. // ,[DeleteUserId]
  11489. // ,[Remark]
  11490. // ,[IsDel]
  11491. // ,[visaDescription])
  11492. // VALUES
  11493. // ({0},{1},'{2}',{3},{4}
  11494. //,{5},{6},{7},{8},{9}
  11495. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  11496. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  11497. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  11498. //);
  11499. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  11500. // }
  11501. // return Ok(JsonView(true, "操作成功!"));
  11502. // }
  11503. /// <summary>
  11504. /// 123132123
  11505. /// </summary>
  11506. /// <param name="_dto"></param>
  11507. /// <returns></returns>
  11508. [HttpPost]
  11509. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11510. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11511. {
  11512. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11513. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  11514. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  11515. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11516. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  11517. dicDetail.Add(789, 1034);
  11518. dicDetail.Add(790, 1035);
  11519. dicDetail.Add(791, 1036);
  11520. dicDetail.Add(792, 1037);
  11521. dicDetail.Add(793, 1038);
  11522. dicDetail.Add(794, 1039);
  11523. dicDetail.Add(795, 1040);
  11524. dicDetail.Add(796, 1041);
  11525. dicDetail.Add(797, 1042);
  11526. dicDetail.Add(798, 1043);
  11527. dicDetail.Add(801, 1044);
  11528. dicDetail.Add(802, 1045);
  11529. dicDetail.Add(803, 1046);
  11530. Dictionary<int, int> dic = new Dictionary<int, int>();
  11531. dic.Add(806, 1027);
  11532. dic.Add(807, 1028);
  11533. dic.Add(808, 1029);
  11534. dic.Add(809, 1030);
  11535. dic.Add(810, 1031);
  11536. dic.Add(811, 1032);
  11537. dic.Add(812, 1033);
  11538. foreach (var item in list_visa)
  11539. {
  11540. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  11541. temp.Coefficient = item.coefficient;
  11542. DateTime dtCrt;
  11543. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  11544. if (b1)
  11545. {
  11546. temp.CreateTime = dtCrt;
  11547. }
  11548. else
  11549. {
  11550. temp.CreateTime = DateTime.Now;
  11551. }
  11552. temp.CreateUserId = item.Operators;
  11553. temp.DeleteTime = "";
  11554. temp.DeleteUserId = 0;
  11555. temp.DiId = int.Parse(item.DIID);
  11556. temp.FilePath = item.FilePath;
  11557. temp.IsDel = item.IsDel;
  11558. temp.Price = item.Price;
  11559. temp.PriceCount = 1;
  11560. temp.PriceCurrency = item.Currency;
  11561. int detailId = 0;
  11562. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  11563. {
  11564. detailId = dicDetail[item.PriceTypeDetail];
  11565. }
  11566. temp.PriceDetailType = detailId;
  11567. temp.PriceDt = DateTime.Now;
  11568. temp.PriceName = item.PriceName;
  11569. temp.PriceSum = item.Price;
  11570. int tid = 0;
  11571. if (dic.ContainsKey(item.PriceType))
  11572. {
  11573. tid = dic[item.PriceType];
  11574. }
  11575. temp.PriceType = tid;
  11576. temp.Remark = item.Remark;
  11577. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  11578. }
  11579. return Ok(JsonView(true, "操作成功!"));
  11580. }
  11581. }
  11582. }