GroupsController.cs 634 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. using NPOI.HSSF.Util;
  78. using NPOI.HSSF.UserModel;
  79. using NPOI.SS.UserModel;
  80. using NPOI.XSSF.UserModel;
  81. using MySqlX.XDevAPI.Relational;
  82. using SqlSugar.Extensions;
  83. using Table = Aspose.Words.Tables.Table;
  84. using Aspose.Cells.Tables;
  85. using NPOI.SS.Util;
  86. using RestSharp.Extensions;
  87. using Microsoft.AspNetCore.WebUtilities;
  88. using K4os.Compression.LZ4.Internal;
  89. using static Pipelines.Sockets.Unofficial.SocketConnection;
  90. using System.Diagnostics.PerformanceData;
  91. using System.Drawing.Printing;
  92. using OASystem.Domain.Dtos.FileDto;
  93. using Microsoft.VisualBasic;
  94. using Microsoft.EntityFrameworkCore.Query.Internal;
  95. using MathNet.Numerics.Distributions;
  96. namespace OASystem.API.Controllers
  97. {
  98. /// <summary>
  99. /// 团组相关
  100. /// </summary>
  101. //[Authorize]
  102. [Route("api/[controller]/[action]")]
  103. public class GroupsController : ControllerBase
  104. {
  105. private readonly GrpScheduleRepository _grpScheduleRep;
  106. private readonly IMapper _mapper;
  107. private readonly DelegationInfoRepository _groupRepository;
  108. private readonly TaskAssignmentRepository _taskAssignmentRep;
  109. private readonly AirTicketResRepository _airTicketResRep;
  110. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  111. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  112. private readonly DelegationEnDataRepository _delegationEnDataRep;
  113. private readonly DelegationVisaRepository _delegationVisaRep;
  114. private readonly VisaPriceRepository _visaPriceRep;
  115. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  116. private readonly HotelPriceRepository _hotelPriceRep;
  117. private readonly CustomersRepository _customersRep;
  118. private readonly MessageRepository _message;
  119. private readonly SqlSugarClient _sqlSugar;
  120. private readonly TourClientListRepository _tourClientListRep;
  121. private readonly TeamRateRepository _teamRateRep;
  122. #region 成本相关
  123. private readonly CheckBoxsRepository _checkBoxs;
  124. private readonly GroupCostRepository _GroupCostRepository;
  125. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  126. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  127. #endregion
  128. private readonly SetDataRepository _setDataRep;
  129. private string url;
  130. private string path;
  131. private readonly EnterExitCostRepository _enterExitCostRep;
  132. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  133. private readonly UsersRepository _usersRep;
  134. private readonly IJuHeApiService _juHeApi;
  135. private readonly InvertedListRepository _invertedListRep;
  136. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  137. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  138. private readonly ThreeCodeRepository _threeCodeRepository;
  139. private readonly HotelInquiryRepository _hotelInquiryRep;
  140. private readonly FeeAuditRepository _feeAuditRep;
  141. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  142. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  143. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  144. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  145. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  146. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  147. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  148. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  149. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  150. {
  151. _mapper = mapper;
  152. _grpScheduleRep = grpScheduleRep;
  153. _groupRepository = groupRepository;
  154. _taskAssignmentRep = taskAssignmentRep;
  155. _airTicketResRep = airTicketResRep;
  156. _sqlSugar = sqlSugar;
  157. url = AppSettingsHelper.Get("ExcelBaseUrl");
  158. path = AppSettingsHelper.Get("ExcelBasePath");
  159. if (!System.IO.Directory.Exists(path))
  160. {
  161. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  162. }
  163. _decreasePaymentsRep = decreasePaymentsRep;
  164. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  165. _delegationEnDataRep = delegationEnDataRep;
  166. _enterExitCostRep = enterExitCostRep;
  167. _delegationVisaRep = delegationVisaRep;
  168. _message = message;
  169. _visaPriceRep = visaPriceRep;
  170. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  171. _checkBoxs = checkBoxs;
  172. _GroupCostRepository = GroupCostRepository;
  173. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  174. _GroupCostParameterRepository = GroupCostParameterRepository;
  175. _hotelPriceRep = hotelPriceRep;
  176. _customersRep = customersRep;
  177. _setDataRep = setDataRep;
  178. _tourClientListRep = tourClientListRep;
  179. _teamRateRep = teamRateRep;
  180. _hubContext = hubContext;
  181. _usersRep = usersRep;
  182. _juHeApi = juHeApi;
  183. _invertedListRep = invertedListRep;
  184. _visaFeeInfoRep = visaFeeInfoRep;
  185. _ticketBlackCodeRep = ticketBlackCodeRep;
  186. _hotelInquiryRep = hotelInquiryRep;
  187. _threeCodeRepository = threeCodeRepository;
  188. _feeAuditRep = feeAuditRep;
  189. }
  190. #region 流程管控
  191. /// <summary>
  192. /// 获取团组流程管控信息
  193. /// </summary>
  194. /// <param name="paras">参数Json字符串</param>
  195. /// <returns></returns>
  196. [HttpPost]
  197. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  198. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  199. {
  200. if (string.IsNullOrEmpty(_jsonDto.Paras))
  201. {
  202. return Ok(JsonView(false, "参数为空"));
  203. }
  204. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  205. if (_ScheduleDto != null)
  206. {
  207. if (_ScheduleDto.SearchType == 2)//获取列表
  208. {
  209. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  210. return Ok(JsonView(_grpScheduleViewList));
  211. }
  212. else//获取对象
  213. {
  214. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  215. if (_grpScheduleView != null)
  216. {
  217. return Ok(JsonView(_grpScheduleView));
  218. }
  219. }
  220. }
  221. else
  222. {
  223. return Ok(JsonView(false, "参数反序列化失败"));
  224. }
  225. return Ok(JsonView(false, "暂无数据!"));
  226. }
  227. /// <summary>
  228. /// 修改团组流程管控详细表数据
  229. /// </summary>
  230. /// <param name="paras"></param>
  231. /// <returns></returns>
  232. [HttpPost]
  233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  234. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  235. {
  236. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  237. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  238. .SetColumns(it => it.Duty == _detail.Duty)
  239. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  240. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  241. .SetColumns(it => it.JobContent == _detail.JobContent)
  242. .SetColumns(it => it.Remark == _detail.Remark)
  243. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  244. .Where(s => s.Id == dto.Id)
  245. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  246. .ExecuteCommandAsync();
  247. if (result > 0)
  248. {
  249. return Ok(JsonView(true, "保存成功!"));
  250. }
  251. return Ok(JsonView(false, "保存失败!"));
  252. }
  253. /// <summary>
  254. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  255. /// </summary>
  256. /// <param name="dto"></param>
  257. /// <returns></returns>
  258. [HttpPost]
  259. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  260. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  261. {
  262. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  263. _detail.IsDel = 1;
  264. _detail.DeleteUserId = dto.Duty;
  265. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  266. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  267. .SetColumns(it => it.IsDel == _detail.IsDel)
  268. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  269. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  270. .Where(it => it.Id == dto.Id)
  271. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  272. //.WhereColumns(s => s.Id == dto.Id)
  273. .ExecuteCommandAsync();
  274. if (result > 0)
  275. {
  276. return Ok(JsonView(true, "删除成功!"));
  277. }
  278. return Ok(JsonView(false, "删除失败!"));
  279. }
  280. /// <summary>
  281. /// 增加团组流程管控详细表数据
  282. /// </summary>
  283. /// <param name="dto"></param>
  284. /// <returns></returns>
  285. [HttpPost]
  286. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  287. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  288. {
  289. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  290. if (DateTime.Now < _detail.ExpectBeginDt)
  291. {
  292. _detail.StepStatus = 0;
  293. }
  294. else
  295. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  296. _detail.StepStatus = 1;
  297. }
  298. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  299. if (result > 0)
  300. {
  301. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  302. return Ok(JsonView(true, "添加成功!", _result));
  303. }
  304. return Ok(JsonView(false, "添加失败!"));
  305. }
  306. #endregion
  307. #region 团组基本信息
  308. /// <summary>
  309. /// 接团信息列表
  310. /// </summary>
  311. /// <param name="dto">团组列表请求dto</param>
  312. /// <returns></returns>
  313. [HttpPost]
  314. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  315. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  316. {
  317. var groupData = await _groupRepository.GetGroupList(dto);
  318. if (groupData.Code != 0)
  319. {
  320. return Ok(JsonView(false, groupData.Msg));
  321. }
  322. return Ok(JsonView(groupData.Data));
  323. }
  324. /// <summary>
  325. /// 接团信息列表 Page
  326. /// </summary>
  327. /// <param name="dto">团组列表请求dto</param>
  328. /// <returns></returns>
  329. [HttpPost]
  330. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  331. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  332. {
  333. #region 参数验证
  334. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  335. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  336. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  337. #region 页面操作权限验证
  338. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  339. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  340. #endregion
  341. #endregion
  342. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  343. {
  344. string sqlWhere = string.Empty;
  345. if (dto.IsSure == 0) //未完成
  346. {
  347. sqlWhere += string.Format(@" And IsSure = 0");
  348. }
  349. else if (dto.IsSure == 1) //已完成
  350. {
  351. sqlWhere += string.Format(@" And IsSure = 1");
  352. }
  353. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  354. {
  355. string tj = dto.SearchCriteria;
  356. 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}%')",
  357. tj, tj, tj, tj, tj);
  358. }
  359. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  360. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  361. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  362. JietuanOperator,IsSure,CreateTime
  363. From (
  364. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  365. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  366. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  367. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  368. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  369. From Grp_DelegationInfo gdi
  370. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  371. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  372. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  373. Where gdi.IsDel = 0 {0}
  374. ) temp", sqlWhere);
  375. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  376. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  377. #region 处理所属部门
  378. /*
  379. * 1.sq 和 gyy 等显示 市场部
  380. * 2.王鸽和主管及张总还有管理员号统一国交部
  381. * 2-1. 4 管理员 ,21 张海麟
  382. */
  383. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  384. List<int> userIds1 = new List<int>() { 4, 21 };
  385. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  386. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  387. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  388. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  389. .ToList();
  390. foreach (var item in _DelegationList)
  391. {
  392. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  393. }
  394. #endregion
  395. var _view = new
  396. {
  397. PageFuncAuth = pageFunAuthView,
  398. Data = _DelegationList
  399. };
  400. return Ok(JsonView(true, "查询成功!", _view, total));
  401. }
  402. else
  403. {
  404. return Ok(JsonView(false, "查询失败"));
  405. }
  406. }
  407. /// <summary>
  408. /// 团组列表
  409. /// </summary>
  410. /// <returns></returns>
  411. [HttpPost]
  412. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  413. {
  414. #region 参数验证
  415. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  416. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  417. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  418. #region 页面操作权限验证
  419. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  420. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  421. #endregion
  422. #endregion
  423. if (dto.PortType != 1 && dto.PortType != 2)
  424. {
  425. return Ok(JsonView(false, "查询失败!"));
  426. }
  427. string orderbyStr = "order by gdi.CreateTime Desc";
  428. string sqlWhere = string.Empty;
  429. if (dto.IsSure == 0) //未完成
  430. {
  431. sqlWhere += string.Format(@" And IsSure = 0");
  432. }
  433. else if (dto.IsSure == 1) //已完成
  434. {
  435. sqlWhere += string.Format(@" And IsSure = 1");
  436. }
  437. //团组类型
  438. if (dto.TeamDid > 0)
  439. {
  440. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  441. }
  442. //团组名称
  443. if (!string.IsNullOrEmpty(dto.TeamName))
  444. {
  445. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  446. }
  447. //客户名称
  448. if (!string.IsNullOrEmpty(dto.ClientName))
  449. {
  450. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  451. }
  452. //客户单位
  453. if (!string.IsNullOrEmpty(dto.ClientUnit))
  454. {
  455. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  456. }
  457. //出访时间
  458. if (!string.IsNullOrEmpty(dto.visitDataTime))
  459. {
  460. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  461. orderbyStr = "order by gdi.VisitDate";
  462. }
  463. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  464. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  465. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  466. JietuanOperator,IsSure,CreateTime
  467. From (
  468. Select row_number() over({0}) as Row_Number,
  469. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  470. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  471. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  472. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  473. From Grp_DelegationInfo gdi
  474. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  475. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  476. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  477. Where gdi.IsDel = 0 {1}
  478. ) temp ", orderbyStr, sqlWhere);
  479. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  480. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  481. #region 处理所属部门
  482. /*
  483. * 1.sq 和 gyy 等显示 市场部
  484. * 2.王鸽和主管及张总还有管理员号统一国交部
  485. * 2-1. 4 管理员 ,21 张海麟
  486. */
  487. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  488. List<int> userIds1 = new List<int>() { 4, 21 };
  489. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  490. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  491. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  492. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  493. .ToList();
  494. foreach (var item in _DelegationList)
  495. {
  496. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  497. }
  498. #endregion
  499. var _view = new
  500. {
  501. PageFuncAuth = pageFunAuthView,
  502. Data = _DelegationList
  503. };
  504. return Ok(JsonView(true, "查询成功!", _view, total));
  505. }
  506. /// <summary>
  507. /// 接团信息详情
  508. /// </summary>
  509. /// <param name="dto">团组info请求dto</param>
  510. /// <returns></returns>
  511. [HttpPost]
  512. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  513. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  514. {
  515. var groupData = await _groupRepository.GetGroupInfo(dto);
  516. if (groupData.Code != 0)
  517. {
  518. return Ok(JsonView(false, groupData.Msg));
  519. }
  520. return Ok(JsonView(groupData.Data));
  521. }
  522. /// <summary>
  523. /// 接团信息 编辑添加
  524. /// 基础信息数据源
  525. /// </summary>
  526. /// <param name="dto"></param>
  527. /// <returns></returns>
  528. [HttpPost]
  529. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  530. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  531. {
  532. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  533. if (groupData.Code != 0)
  534. {
  535. return Ok(JsonView(false, groupData.Msg));
  536. }
  537. return Ok(JsonView(groupData.Data));
  538. }
  539. /// <summary>
  540. /// 接团信息 操作(增改)
  541. /// </summary>
  542. /// <param name="dto"></param>
  543. /// <returns></returns>
  544. [HttpPost]
  545. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  546. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  547. {
  548. try
  549. {
  550. var groupData = await _groupRepository.GroupOperation(dto);
  551. if (groupData.Code != 0)
  552. {
  553. return Ok(JsonView(false, groupData.Msg));
  554. }
  555. int diId = 0;
  556. //添加时 默认加入团组汇率
  557. if (dto.Status == 1) //添加
  558. {
  559. diId = groupData.Data;
  560. //添加默认币种
  561. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  562. //默认分配权限
  563. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  564. //消息提示 王鸽 主管号
  565. List<int> _managerIds = new List<int>() { 22, 32 };
  566. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  567. if (userIds.Count > 0)
  568. {
  569. userIds.Add(208);
  570. //创建团组管控
  571. GroupStepForDelegation.CreateWorkStep(diId);
  572. //发送消息
  573. string groupName = dto.TeamName;
  574. string createGroupUser = string.Empty;
  575. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  576. if (userInfo != null) createGroupUser = userInfo.CnName;
  577. string title = $"系统通知";
  578. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  579. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  580. }
  581. //默认创建倒推表
  582. await _invertedListRep._Create(dto.UserId, diId);
  583. }
  584. else if (dto.Status == 2)
  585. {
  586. diId = dto.Id;
  587. }
  588. return Ok(JsonView(true, "操作成功!", diId));
  589. }
  590. catch (Exception ex)
  591. {
  592. Logs("[response]" + JsonConvert.SerializeObject(dto));
  593. Logs(ex.Message);
  594. return Ok(JsonView(false, ex.Message));
  595. }
  596. }
  597. /// <summary>
  598. /// 接团流程操作(增改)
  599. /// 安卓端使用 建团时添加客户名单
  600. /// </summary>
  601. /// <param name="dto"></param>
  602. /// <returns></returns>
  603. [HttpPost]
  604. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  605. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  606. {
  607. try
  608. {
  609. #region 参数验证
  610. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  611. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  612. #region 页面操作权限验证
  613. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  614. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  615. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  616. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  617. #endregion
  618. #endregion
  619. _sqlSugar.BeginTran();
  620. var _dto = new GroupOperationDto();
  621. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  622. var groupData = await _groupRepository.GroupOperation(_dto);
  623. if (groupData.Code != 0)
  624. {
  625. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  626. }
  627. int diId = 0;
  628. //添加时 默认加入团组汇率
  629. if (dto.Status == 1) //添加
  630. {
  631. diId = groupData.Data;
  632. //添加默认币种
  633. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  634. //默认分配权限
  635. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  636. //消息提示 王鸽 主管号
  637. List<int> _managerIds = new List<int>() { 22, 32 };
  638. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  639. if (userIds.Count > 0)
  640. {
  641. userIds.Add(208);
  642. //创建团组管控
  643. GroupStepForDelegation.CreateWorkStep(diId);
  644. //发送消息
  645. string groupName = dto.TeamName;
  646. string createGroupUser = string.Empty;
  647. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  648. if (userInfo != null) createGroupUser = userInfo.CnName;
  649. string title = $"系统通知";
  650. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  651. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  652. }
  653. }
  654. if (dto.Status == 2)
  655. {
  656. diId = dto.Id;
  657. if (diId == 0)
  658. {
  659. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  660. }
  661. }
  662. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  663. if (viewData.Code != 0)
  664. {
  665. _sqlSugar.RollbackTran();
  666. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  667. }
  668. _sqlSugar.CommitTran();
  669. return Ok(JsonView(true, "添加成功"));
  670. }
  671. catch (Exception ex)
  672. {
  673. _sqlSugar.RollbackTran();
  674. return Ok(JsonView(false, ex.Message));
  675. }
  676. }
  677. /// <summary>
  678. /// 接团信息 操作(删除)
  679. /// </summary>
  680. /// <param name="dto"></param>
  681. /// <returns></returns>
  682. [HttpPost]
  683. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  684. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  685. {
  686. try
  687. {
  688. var groupData = await _groupRepository.GroupDel(dto);
  689. if (groupData.Code != 0)
  690. {
  691. return Ok(JsonView(false, groupData.Msg));
  692. }
  693. return Ok(JsonView(true));
  694. }
  695. catch (Exception ex)
  696. {
  697. Logs("[response]" + JsonConvert.SerializeObject(dto));
  698. Logs(ex.Message);
  699. return Ok(JsonView(false, ex.Message));
  700. }
  701. }
  702. /// <summary>
  703. /// 获取团组销售报价号
  704. /// 团组添加时 使用
  705. /// </summary>
  706. /// <returns></returns>
  707. [HttpPost]
  708. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  709. public async Task<IActionResult> GetGroupSalesQuoteNo()
  710. {
  711. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  712. if (groupData.Code != 0)
  713. {
  714. return Ok(JsonView(false, groupData.Msg));
  715. }
  716. object salesQuoteNo = new
  717. {
  718. SalesQuoteNo = groupData.Data
  719. };
  720. return Ok(JsonView(salesQuoteNo));
  721. }
  722. /// <summary>
  723. /// 设置确认出团
  724. /// </summary>
  725. /// <param name="dto"></param>
  726. /// <returns></returns>
  727. [HttpPost]
  728. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  729. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  730. {
  731. var groupData = await _groupRepository.ConfirmationGroup(dto);
  732. if (groupData.Code != 0)
  733. {
  734. return Ok(JsonView(false, groupData.Msg));
  735. }
  736. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  737. #region OA消息推送
  738. try
  739. {
  740. string groupName = groupInfo.TeamName;
  741. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  742. List<int> userIds = new List<int>();
  743. listUser.ForEach(s => userIds.Add(s.Id));
  744. string title = $"系统通知";
  745. string content = $"团组[{groupName}]已确认出团!";
  746. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  747. }
  748. catch (Exception ex)
  749. {
  750. }
  751. #endregion
  752. #region 应用推送
  753. try
  754. {
  755. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  756. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  757. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  758. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  759. {
  760. List<string> userList = new List<string>() { users.QiyeChatUserId };
  761. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  762. }
  763. }
  764. catch (Exception ex)
  765. {
  766. }
  767. #endregion
  768. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  769. return Ok(JsonView(true, "操作成功!", groupData.Data));
  770. }
  771. /// <summary>
  772. /// 获取团组名称data And 签证国别Data
  773. /// </summary>
  774. /// <param name="dto"></param>
  775. /// <returns></returns>
  776. [HttpPost]
  777. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  778. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  779. {
  780. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  781. if (groupData.Code != 0)
  782. {
  783. return Ok(JsonView(false, groupData.Msg));
  784. }
  785. return Ok(JsonView(groupData.Data));
  786. }
  787. /// <summary>
  788. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  789. /// </summary>
  790. /// <returns></returns>
  791. [HttpPost]
  792. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  793. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  794. {
  795. try
  796. {
  797. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  798. if (groupData.Code != 0)
  799. {
  800. return Ok(JsonView(false, groupData.Msg));
  801. }
  802. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  803. }
  804. catch (Exception ex)
  805. {
  806. return Ok(JsonView(false, "程序错误!"));
  807. throw;
  808. }
  809. }
  810. #endregion
  811. #region 团组&签证
  812. /// <summary>
  813. /// 根据团组Id获取签证客户信息List
  814. /// </summary>
  815. /// <param name="dto">请求dto</param>
  816. /// <returns></returns>
  817. [HttpPost]
  818. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  819. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  820. {
  821. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  822. if (groupData.Code != 0)
  823. {
  824. return Ok(JsonView(false, groupData.Msg));
  825. }
  826. return Ok(JsonView(groupData.Data));
  827. }
  828. /// <summary>
  829. /// IOS获取团组签证拍照上传进度01(团组列表)
  830. /// </summary>
  831. /// <param name="dto">请求dto</param>
  832. /// <returns></returns>
  833. [HttpPost]
  834. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  835. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  836. {
  837. if (dto == null)
  838. {
  839. return Ok(JsonView(false, "参数为空"));
  840. }
  841. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  842. return Ok(JsonView(visaList));
  843. }
  844. /// <summary>
  845. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  846. /// </summary>
  847. /// <returns></returns>
  848. [HttpPost]
  849. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  850. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  851. {
  852. if (dto == null)
  853. {
  854. return Ok(JsonView(false, "请求错误:"));
  855. }
  856. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  857. return Ok(JsonView(list));
  858. }
  859. /// <summary>
  860. /// IOS获取团组签证拍照上传进度03(相册)
  861. /// </summary>
  862. /// <returns></returns>
  863. [HttpPost]
  864. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  865. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  866. {
  867. if (dto == null)
  868. {
  869. return Ok(JsonView(false, "请求错误:"));
  870. }
  871. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  872. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  873. list.ForEach(s => s.url = url);
  874. return Ok(JsonView(list));
  875. }
  876. /// <summary>
  877. /// IOS获取团组签证拍照上传进度04(图片上传)
  878. /// </summary>
  879. /// <param name="dto"></param>
  880. /// <returns></returns>
  881. [HttpPost]
  882. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  883. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  884. {
  885. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  886. //if (!string.IsNullOrEmpty(result))
  887. //{
  888. //}
  889. //else {
  890. // return Ok(JsonView(false, "上传失败"));
  891. //}
  892. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  893. int sucNum = 0;
  894. try
  895. {
  896. foreach (var item in dto.base64DataList)
  897. {
  898. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  899. string result = decodeBase64ToImage(item, imageName);
  900. if (!string.IsNullOrEmpty(result))
  901. {
  902. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  903. pic.CreateUserId = dto.CreateUserId;
  904. pic.PicName = imageName;
  905. pic.PicPath = result;
  906. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  907. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  908. if (insertResult > 0)
  909. {
  910. sucNum++;
  911. }
  912. }
  913. }
  914. }
  915. catch (Exception ex)
  916. {
  917. return Ok(JsonView(false, ex.Message));
  918. }
  919. string msg = string.Format(@"成功上传{0}张", sucNum);
  920. return Ok(JsonView(true, msg));
  921. }
  922. private string decodeBase64ToImage(string base64DataURL, string imgName)
  923. {
  924. string filename = "";//声明一个string类型的相对路径
  925. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  926. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  927. try//会有异常抛出,try,catch一下
  928. {
  929. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  930. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  931. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  932. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  933. //文件名称
  934. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  935. //上传的文件的路径
  936. string filePath = "";
  937. if (!Directory.Exists(fileDir))
  938. {
  939. Directory.CreateDirectory(fileDir);
  940. }
  941. //上传的文件的路径
  942. filePath = fileDir + filename;
  943. //string url = HttpRuntime.AppDomainAppPath.ToString();
  944. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  945. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  946. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  947. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  948. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  949. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  950. ms.Close();//关闭当前流,并释放所有与之关联的资源
  951. bitmap.Dispose();
  952. }
  953. catch (Exception e)
  954. {
  955. string massage = e.Message;
  956. Logs("IOS图片上传Error:" + massage);
  957. //filename = e.Message;
  958. }
  959. return filename;//返回相对路径
  960. }
  961. /// <summary>
  962. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  963. /// </summary>
  964. /// <param name="dto"></param>
  965. /// <returns></returns>
  966. [HttpPost]
  967. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  968. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  969. {
  970. if (dto == null)
  971. {
  972. return Ok(JsonView(false, "请求错误:"));
  973. }
  974. string msg = "参数错误";
  975. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  976. {
  977. try
  978. {
  979. //_delegationVisaRep.BeginTran();
  980. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  981. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  982. .Where(s => s.Id == dto.visaProgressCustomerId)
  983. .ExecuteCommandAsync();
  984. if (updCount > 0 && dto.publishCode == 1)
  985. {
  986. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  987. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  988. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  989. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  990. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  991. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  992. if (groupData == null)
  993. {
  994. _delegationVisaRep.RollbackTran();
  995. }
  996. string title = string.Format(@"[签证进度更新]");
  997. string content = string.Format(@"测试文本");
  998. bool rst = await _message.AddMsg(new MessageDto()
  999. {
  1000. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  1001. IssuerId = dto.publisher,
  1002. Title = title,
  1003. Content = content,
  1004. ReleaseTime = DateTime.Now,
  1005. UIdList = new List<int> {
  1006. 234
  1007. }
  1008. });
  1009. if (rst)
  1010. {
  1011. return Ok(JsonView(true, "发送通知成功"));
  1012. }
  1013. }
  1014. //_delegationVisaRep.CommitTran();
  1015. }
  1016. catch (Exception)
  1017. {
  1018. //_delegationVisaRep.RollbackTran();
  1019. }
  1020. }
  1021. return Ok(JsonView(true, msg));
  1022. }
  1023. #endregion
  1024. #region 团组任务分配
  1025. /// <summary>
  1026. /// 团组任务分配初始化
  1027. /// </summary>
  1028. /// <param name="dto"></param>
  1029. /// <returns></returns>
  1030. [HttpPost]
  1031. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1032. public async Task<IActionResult> GetTaskAssignmen()
  1033. {
  1034. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1035. if (groupData.Code != 0)
  1036. {
  1037. return Ok(JsonView(false, groupData.Msg));
  1038. }
  1039. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1040. }
  1041. /// <summary>
  1042. /// 团组任务分配查询
  1043. /// </summary>
  1044. /// <param name="dto"></param>
  1045. /// <returns></returns>
  1046. [HttpPost]
  1047. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1048. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1049. {
  1050. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1051. if (groupData.Code != 0)
  1052. {
  1053. return Ok(JsonView(false, groupData.Msg));
  1054. }
  1055. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1056. }
  1057. /// <summary>
  1058. /// 团组任务分配操作
  1059. /// </summary>
  1060. /// <param name="dto"></param>
  1061. /// <returns></returns>
  1062. [HttpPost]
  1063. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1064. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1065. {
  1066. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1067. if (groupData.Code != 0)
  1068. {
  1069. return Ok(JsonView(false, groupData.Msg));
  1070. }
  1071. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1072. }
  1073. #endregion
  1074. #region 团组费用审核
  1075. /// <summary>
  1076. /// 费用审核
  1077. /// 团组列表 Page
  1078. /// </summary>
  1079. /// <param name="_dto">团组列表请求dto</param>
  1080. /// <returns></returns>
  1081. [HttpPost]
  1082. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1083. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1084. {
  1085. #region 参数验证
  1086. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1087. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1088. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1089. #region 页面操作权限验证
  1090. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1091. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1092. #endregion
  1093. #endregion
  1094. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1095. {
  1096. string sqlWhere = string.Empty;
  1097. if (_dto.IsSure == 0) //未完成
  1098. {
  1099. sqlWhere += string.Format(@" And IsSure = 0");
  1100. }
  1101. else if (_dto.IsSure == 1) //已完成
  1102. {
  1103. sqlWhere += string.Format(@" And IsSure = 1");
  1104. }
  1105. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1106. {
  1107. string tj = _dto.SearchCriteria;
  1108. 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}%')",
  1109. tj, tj, tj, tj, tj);
  1110. }
  1111. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1112. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1113. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1114. From (
  1115. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1116. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1117. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1118. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1119. From Grp_DelegationInfo gdi
  1120. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1121. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1122. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1123. Where gdi.IsDel = 0 {0}
  1124. ) temp ", sqlWhere);
  1125. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1126. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1127. var _view = new
  1128. {
  1129. PageFuncAuth = pageFunAuthView,
  1130. Data = _DelegationList
  1131. };
  1132. return Ok(JsonView(true, "查询成功!", _view, total));
  1133. }
  1134. else
  1135. {
  1136. return Ok(JsonView(false, "查询失败"));
  1137. }
  1138. }
  1139. /// <summary>
  1140. /// 获取团组费用审核
  1141. /// </summary>
  1142. /// <param name="paras">参数Json字符串</param>
  1143. /// <returns></returns>
  1144. [HttpPost]
  1145. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1146. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1147. {
  1148. try
  1149. {
  1150. #region 参数验证
  1151. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1152. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1153. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1154. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1155. #region 页面操作权限验证
  1156. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1157. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1158. #endregion
  1159. #endregion
  1160. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1161. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1162. #region 费用清单
  1163. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1164. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1165. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1166. List<Grp_CreditCardPayment> entityList = _groupRepository
  1167. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1168. .Where(exp.ToExpression())
  1169. .ToList();
  1170. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1171. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1172. /*
  1173. * 76://酒店预订
  1174. */
  1175. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1176. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1177. .ToListAsync();
  1178. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1179. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1180. .ToListAsync();
  1181. /*
  1182. * 79://车/导游地接
  1183. */
  1184. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1185. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1186. .ToListAsync();
  1187. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1188. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1189. .ToListAsync();
  1190. /*
  1191. * 80: //签证
  1192. */
  1193. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1194. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1195. .ToListAsync();
  1196. /*
  1197. *81: //邀请/公务活动
  1198. */
  1199. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1200. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1201. .ToListAsync();
  1202. /*
  1203. * 82: //团组客户保险
  1204. */
  1205. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1206. /*
  1207. * Lable = 85 机票预订
  1208. */
  1209. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1210. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1211. .ToListAsync();
  1212. /*
  1213. * 85 机票预定
  1214. */
  1215. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1216. /*
  1217. * 98 其他款项
  1218. */
  1219. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1220. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1221. .ToListAsync();
  1222. /*
  1223. * 285:收款退还
  1224. */
  1225. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1226. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1227. .ToListAsync();
  1228. /*
  1229. * 1015: //超支费用
  1230. */
  1231. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1232. /*
  1233. * 币种信息
  1234. */
  1235. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1236. /*
  1237. * 车/导游地接 费用类型
  1238. */
  1239. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1240. /*
  1241. * 车/导游地接 费用类型
  1242. */
  1243. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1244. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1245. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1246. /*
  1247. * 用户信息
  1248. */
  1249. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1250. /*
  1251. * 费用模块
  1252. */
  1253. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1254. string priceModule = string.Empty;
  1255. if (sdPriceName != null)
  1256. {
  1257. priceModule = sdPriceName.Name;
  1258. }
  1259. /*
  1260. * 成本信息
  1261. */
  1262. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1263. decimal _groupRate = 0.0000M;
  1264. string _groupCurrencyCode = "-";
  1265. if (groupCost != null)
  1266. {
  1267. _groupRate = groupCost.Rate;
  1268. if (int.TryParse(groupCost.Currency, out int _currency))
  1269. {
  1270. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1271. }
  1272. else _groupCurrencyCode = groupCost.Currency;
  1273. }
  1274. string costContentSql = $"Select * From Grp_GroupCost";
  1275. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1276. //处理日期为空的天数
  1277. for (int i = 0; i < groupCostDetails.Count; i++)
  1278. if (i != 0)
  1279. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1280. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1281. /*
  1282. * 处理详情数据
  1283. */
  1284. foreach (var entity in entityList)
  1285. {
  1286. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1287. _detail.Id = entity.Id;
  1288. _detail.PriceName = priceModule;
  1289. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1290. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1291. /*
  1292. * 应付款金额
  1293. */
  1294. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1295. string PaymentCurrency_WaitPay = "Unknown";
  1296. string hotelCurrncyCode = "Unknown";
  1297. string hotelCurrncyName = "Unknown";
  1298. if (sdPaymentCurrency_WaitPay != null)
  1299. {
  1300. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1301. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1302. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1303. if (hotelCurrncyCode.Equals("CNY"))
  1304. {
  1305. entity.DayRate = 1.0000M;
  1306. }
  1307. }
  1308. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1309. /*
  1310. * 此次付款金额
  1311. */
  1312. decimal CurrPayStr = 0;
  1313. if (entity.PayPercentage == 0)
  1314. {
  1315. if (entity.PayThenMoney != 0)
  1316. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1317. }
  1318. else
  1319. {
  1320. if (entity.PayMoney != 0)
  1321. {
  1322. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1323. }
  1324. }
  1325. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1326. /*
  1327. * 剩余尾款
  1328. */
  1329. decimal BalanceStr = 0;
  1330. if (CurrPayStr != 0)
  1331. {
  1332. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1333. BalanceStr = 0;
  1334. else
  1335. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1336. }
  1337. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1338. /*
  1339. * Bus名称
  1340. */
  1341. _detail.BusName = "待增加";
  1342. /*
  1343. *费用所属
  1344. */
  1345. switch (entity.CTable)
  1346. {
  1347. case 76://酒店预订
  1348. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1349. if (hotelReservations != null)
  1350. {
  1351. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1352. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1353. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1354. string roomFeeStr = "", roomFeestr1 = "";
  1355. //是否比较房型价格
  1356. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1357. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1358. if (hotelReservations.SingleRoomPrice > 0)
  1359. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1360. if (hotelReservations.DoubleRoomPrice > 0)
  1361. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1362. if (hotelReservations.SuiteRoomPrice > 0)
  1363. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1364. if (hotelReservations.OtherRoomPrice > 0)
  1365. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1366. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1367. else roomFeeStr += " 0.00 * 0";
  1368. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1369. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1370. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1371. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1372. /*
  1373. * 费用类型
  1374. * 1:房费
  1375. * 2:早餐
  1376. * 3:地税
  1377. * 4:城市税
  1378. * </summary>
  1379. */
  1380. //地税
  1381. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1382. if (governmentRentData != null)
  1383. {
  1384. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1385. governmentRentFee = governmentRentData.Price;
  1386. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1387. if (governmentRentCurrData != null)
  1388. {
  1389. governmentRentCode = governmentRentCurrData.Name;
  1390. governmentRentName = $"({governmentRentCurrData.Remark})";
  1391. }
  1392. }
  1393. //城市税
  1394. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1395. if (cityTaxData != null)
  1396. {
  1397. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1398. cityTaxFee = cityTaxData.Price;
  1399. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1400. if (cityTaxCurrData != null)
  1401. {
  1402. cityTaxCode = cityTaxCurrData.Name;
  1403. cityTaxName = $"({cityTaxCurrData.Remark})";
  1404. }
  1405. }
  1406. //酒店早餐
  1407. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1408. if (breakfastData != null)
  1409. {
  1410. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1411. breakfastFee = breakfastData.Price;
  1412. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1413. if (breakfastCurrData != null)
  1414. {
  1415. breakfastCode = breakfastCurrData.Name;
  1416. breakfastName = $"({breakfastCurrData.Remark})";
  1417. }
  1418. }
  1419. //房间费用
  1420. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1421. if (roomData != null)
  1422. {
  1423. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1424. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1425. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1426. roomFee = roomData.Price;
  1427. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1428. if (roomCurrData != null)
  1429. {
  1430. roomCode = roomCurrData.Name;
  1431. roomName = $"({roomCurrData.Remark})";
  1432. }
  1433. }
  1434. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1435. string hotelCostStr = "";
  1436. decimal hotelCsotTotal = 0.00M;
  1437. if (groupCost != null)
  1438. {
  1439. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1440. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1441. }
  1442. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1443. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1444. string hotelCost_day = "";
  1445. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1446. foreach (var item in hotelCostDetails1)
  1447. {
  1448. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1449. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1450. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1451. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1452. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1453. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1454. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1455. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1456. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1457. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1458. hotelCost_day += @$"</br>";
  1459. }
  1460. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1461. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1462. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1463. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1464. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1465. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1466. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1467. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1468. $"房间说明: {hotelReservations.Remark} <br/>" +
  1469. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1470. $"{hotelBreakfastStr}" +
  1471. $"{hotelGovernmentRentStr}" +
  1472. $"{hotelCityTaxStr}";
  1473. _detail.PriceNameContent = hotelReservations.HotelName;
  1474. }
  1475. break;
  1476. case 79://车/导游地接
  1477. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1478. if (touristGuideGroundReservations != null)
  1479. {
  1480. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1481. {
  1482. _detail.BusName = touristGuideGroundReservations.BusName;
  1483. }
  1484. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1485. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1486. //if (isInt)
  1487. //{
  1488. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1489. // if (cityInfo != null)
  1490. // {
  1491. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1492. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1493. // if (carFeeItem != null)
  1494. // {
  1495. // nameContent += $@"({carFeeItem.Name})";
  1496. // }
  1497. // _detail.PriceNameContent = nameContent;
  1498. // }
  1499. //}
  1500. //else
  1501. //{
  1502. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1503. //}
  1504. var touristGuideGroundReservationsContents =
  1505. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1506. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1507. foreach (var item in touristGuideGroundReservationsContents)
  1508. {
  1509. string typeName = "Unknown";
  1510. string carCurrencyCode = "Unknown";
  1511. string carCurrencyName = "Unknown";
  1512. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1513. if (carTypeData != null) typeName = carTypeData.Name;
  1514. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1515. if (currencyData != null)
  1516. {
  1517. carCurrencyCode = currencyData.Name;
  1518. carCurrencyName = currencyData.Remark;
  1519. }
  1520. string opCostStr = string.Empty;
  1521. decimal opCostTypePrice = 0.00M;
  1522. #region 处理成本各项费用
  1523. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1524. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1525. if (opCost.Count > 0)
  1526. {
  1527. switch (item.SId)
  1528. {
  1529. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1530. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1531. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1532. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1533. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1534. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1535. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1536. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1537. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1538. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1539. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1540. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1541. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1542. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1543. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1544. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1545. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1546. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1547. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1548. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1549. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1550. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1551. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1552. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1553. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1554. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1555. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1556. }
  1557. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1558. }
  1559. #endregion
  1560. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1561. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1562. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1563. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1564. }
  1565. _detail.PriceMsgContent = priceMsg;
  1566. }
  1567. break;
  1568. case 80: //签证
  1569. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1570. if (visaInfo != null)
  1571. {
  1572. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1573. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1574. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1575. }
  1576. break;
  1577. case 81: //邀请/公务活动
  1578. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1579. if (_ioa != null)
  1580. {
  1581. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1582. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1583. sendCurrName = "Unknown", //快递费用币种 Name
  1584. sendCurrCode = "Unknown", //快递费用币种 Code
  1585. eventsCurrName = "Unknown", //公务活动费币种 Name
  1586. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1587. translateCurrName = "Unknown", //公务翻译费 Name
  1588. translateCurrCode = "Unknown"; //公务翻译费 Code
  1589. #region 处理费用币种
  1590. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1591. if (inviteCurrData != null)
  1592. {
  1593. inviteCurrName = inviteCurrData.Remark;
  1594. inviteCurrCode = inviteCurrData.Name;
  1595. }
  1596. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1597. if (sendCurrData != null)
  1598. {
  1599. sendCurrName = sendCurrData.Remark;
  1600. sendCurrCode = sendCurrData.Name;
  1601. }
  1602. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1603. if (eventsCurrData != null)
  1604. {
  1605. eventsCurrName = eventsCurrData.Remark;
  1606. eventsCurrCode = eventsCurrData.Name;
  1607. }
  1608. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1609. if (translateCurrData != null)
  1610. {
  1611. translateCurrName = translateCurrData.Remark;
  1612. translateCurrCode = translateCurrData.Name;
  1613. }
  1614. #endregion
  1615. _detail.PriceNameContent = _ioa.InviterArea;
  1616. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1617. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1618. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1619. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1620. $@"备注:" + _ioa.Remark + "<br/>";
  1621. }
  1622. break;
  1623. case 82: //团组客户保险
  1624. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1625. if (customers != null)
  1626. {
  1627. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1628. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1629. }
  1630. break;
  1631. case 85: //机票预订
  1632. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1633. if (jpRes != null)
  1634. {
  1635. string FlightsDescription = jpRes.FlightsDescription;
  1636. string PriceDescription = jpRes.PriceDescription;
  1637. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1638. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1639. }
  1640. break;
  1641. case 98://其他款项
  1642. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1643. if (gdpRes != null)
  1644. {
  1645. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1646. _detail.PriceNameContent = gdpRes.PriceName;
  1647. }
  1648. break;
  1649. case 285://收款退还
  1650. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1651. if (refundAndOtherMoney != null)
  1652. {
  1653. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1654. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1655. }
  1656. break;
  1657. case 751://酒店早餐
  1658. break;
  1659. case 1015://超支费用
  1660. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1661. if (groupExtraCost != null)
  1662. {
  1663. _detail.PriceNameContent = groupExtraCost.PriceName;
  1664. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1665. }
  1666. break;
  1667. default:
  1668. break;
  1669. }
  1670. /*
  1671. * 申请人
  1672. */
  1673. string operatorName = " - ";
  1674. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1675. if (_opUser != null)
  1676. {
  1677. operatorName = _opUser.CnName;
  1678. }
  1679. _detail.OperatorName = operatorName;
  1680. /*
  1681. * 审核人
  1682. */
  1683. string auditOperatorName = "Unknown";
  1684. if (entity.AuditGMOperate == 0)
  1685. auditOperatorName = " - ";
  1686. else if (entity.AuditGMOperate == 4)
  1687. auditOperatorName = "自动审核";
  1688. else
  1689. {
  1690. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1691. if (_adUser != null)
  1692. {
  1693. auditOperatorName = _adUser.CnName;
  1694. }
  1695. }
  1696. _detail.AuditOperatorName = auditOperatorName;
  1697. /*
  1698. * 超预算比例
  1699. */
  1700. string overBudgetStr = "";
  1701. if (entity.ExceedBudget == -1)
  1702. overBudgetStr = sdPriceName.Name + "尚无预算";
  1703. else if (entity.ExceedBudget == 0)
  1704. {
  1705. if (entity.CTable == 76 || entity.CTable == 79)
  1706. {
  1707. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1708. else overBudgetStr = "超预算";
  1709. }
  1710. else
  1711. {
  1712. overBudgetStr = "未超预算";
  1713. }
  1714. }
  1715. else
  1716. overBudgetStr = entity.ExceedBudget.ToString("P");
  1717. _detail.OverBudget = overBudgetStr;
  1718. /*
  1719. * 费用总计
  1720. */
  1721. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1722. {
  1723. CurrencyId = entity.PaymentCurrency,
  1724. CurrencyName = PaymentCurrency_WaitPay,
  1725. AmountPayable = entity.PayMoney,
  1726. ThisPayment = CurrPayStr,
  1727. BalancePayment = BalanceStr,
  1728. AuditedFunds = CurrPayStr
  1729. });
  1730. _detail.IsAuditGM = entity.IsAuditGM;
  1731. detailList.Add(_detail);
  1732. }
  1733. #endregion
  1734. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1735. /*
  1736. * 下方描述处理
  1737. */
  1738. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1739. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1740. if (ccpCurrencyPrice != null)
  1741. {
  1742. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1743. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1744. }
  1745. else
  1746. {
  1747. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1748. }
  1749. string amountPayableStr = string.Format(@"应付款总金额: ");
  1750. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1751. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1752. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1753. foreach (var item in nonDuplicat)
  1754. {
  1755. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1756. if (strs.Count > 0)
  1757. {
  1758. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1759. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1760. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1761. //单独处理此次付款金额
  1762. if (item.CurrencyId == 836) //人民币
  1763. {
  1764. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1765. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1766. }
  1767. else
  1768. {
  1769. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1770. }
  1771. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1772. //单独处理已审核费用
  1773. if (item.CurrencyId == 836) //人民币
  1774. {
  1775. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1776. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1777. }
  1778. else
  1779. {
  1780. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1781. }
  1782. }
  1783. }
  1784. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1785. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1786. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1787. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1788. var _view1 = new
  1789. {
  1790. PageFuncAuth = pageFunAuthView,
  1791. Data = _view
  1792. };
  1793. return Ok(JsonView(_view1));
  1794. }
  1795. catch (Exception ex)
  1796. {
  1797. return Ok(JsonView(false, ex.Message));
  1798. }
  1799. }
  1800. /// <summary>
  1801. /// 费用审核
  1802. /// 修改团组费用审核状态
  1803. /// </summary>
  1804. /// <param name="_dto">参数Json字符串</param>
  1805. /// <returns></returns>
  1806. [HttpPost]
  1807. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1808. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1809. {
  1810. #region 参数验证
  1811. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1812. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1813. #endregion
  1814. #region 页面操作权限验证
  1815. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1816. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1817. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1818. #endregion
  1819. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1820. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1821. DateTime dtNow = DateTime.Now;
  1822. _groupRepository.BeginTran();
  1823. int rst = 0;
  1824. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1825. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1826. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1827. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1828. List<dynamic> msgDatas = new List<dynamic>();
  1829. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1830. foreach (var item in idList)
  1831. {
  1832. int CreditId = int.Parse(item);
  1833. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1834. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1835. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1836. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1837. .Where(s => s.Id == CreditId)
  1838. .ExecuteCommandAsync();
  1839. if (result < 1)
  1840. {
  1841. rst = -1;
  1842. _groupRepository.RollbackTran();
  1843. return Ok(JsonView(false, "操作失败并回滚!"));
  1844. }
  1845. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1846. if (creditData != null)
  1847. {
  1848. #region 应用通知配置
  1849. try
  1850. {
  1851. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1852. }
  1853. catch (Exception ex)
  1854. {
  1855. }
  1856. #endregion
  1857. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1858. string groupNameStr = string.Empty;
  1859. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1860. if (groupData != null) groupNameStr = groupData.TeamName;
  1861. string creditTypeStr = string.Empty;
  1862. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1863. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1864. string creditCurrency = string.Empty;
  1865. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1866. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1867. if (creditCurrency.Equals("CNY"))
  1868. {
  1869. creditData.DayRate = 1.0000M;
  1870. }
  1871. if (creditData.PayPercentage == 0.00M)
  1872. {
  1873. creditData.PayPercentage = 100M;
  1874. }
  1875. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1876. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1877. string msgContent = "";
  1878. if (creditCurrency.Equals("CNY"))
  1879. {
  1880. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1881. }
  1882. else
  1883. {
  1884. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1885. }
  1886. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1887. }
  1888. }
  1889. if (rst == 0)
  1890. {
  1891. _groupRepository.CommitTran();
  1892. foreach (var item in msgDatas)
  1893. {
  1894. //发送消息
  1895. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1896. }
  1897. #region 应用推送
  1898. try
  1899. {
  1900. foreach (var ccpId in dic_ccp_user.Keys)
  1901. {
  1902. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1903. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1904. }
  1905. }
  1906. catch (Exception)
  1907. {
  1908. }
  1909. #endregion
  1910. return Ok(JsonView(true, "操作成功!"));
  1911. }
  1912. return Ok(JsonView(false, "操作失败!"));
  1913. }
  1914. #endregion
  1915. #region 机票费用录入
  1916. /// <summary>
  1917. /// 机票录入当前登录人可操作团组
  1918. /// </summary>
  1919. /// <param name="dto"></param>
  1920. /// <returns></returns>
  1921. [HttpPost]
  1922. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1923. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1924. {
  1925. try
  1926. {
  1927. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1928. if (groupData.Code != 0)
  1929. {
  1930. return Ok(JsonView(false, groupData.Msg));
  1931. }
  1932. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1933. }
  1934. catch (Exception ex)
  1935. {
  1936. return Ok(JsonView(false, "程序错误!"));
  1937. throw;
  1938. }
  1939. }
  1940. /// <summary>
  1941. /// 机票费用录入列表
  1942. /// </summary>
  1943. /// <param name="dto"></param>
  1944. /// <returns></returns>
  1945. [HttpPost]
  1946. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1947. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1948. {
  1949. try
  1950. {
  1951. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1952. if (groupData.Code != 0)
  1953. {
  1954. return Ok(JsonView(false, groupData.Msg));
  1955. }
  1956. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1957. }
  1958. catch (Exception ex)
  1959. {
  1960. return Ok(JsonView(false, ex.Message));
  1961. throw;
  1962. }
  1963. }
  1964. /// <summary>
  1965. /// 根据id查询费用录入信息
  1966. /// </summary>
  1967. /// <param name="dto"></param>
  1968. /// <returns></returns>
  1969. [HttpPost]
  1970. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1971. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1972. {
  1973. try
  1974. {
  1975. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1976. if (groupData.Code != 0)
  1977. {
  1978. return Ok(JsonView(false, groupData.Msg));
  1979. }
  1980. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1981. }
  1982. catch (Exception ex)
  1983. {
  1984. return Ok(JsonView(false, "程序错误!"));
  1985. throw;
  1986. }
  1987. }
  1988. /// <summary>
  1989. /// 机票费用录入操作(Status:1.新增,2.修改)
  1990. /// </summary>
  1991. /// <param name="dto"></param>
  1992. /// <returns></returns>
  1993. [HttpPost]
  1994. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1995. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1996. {
  1997. try
  1998. {
  1999. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  2000. if (groupData.Code != 0)
  2001. {
  2002. return Ok(JsonView(false, groupData.Msg));
  2003. }
  2004. #region 应用推送
  2005. try
  2006. {
  2007. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2008. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2009. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2010. }
  2011. catch (Exception ex)
  2012. {
  2013. }
  2014. #endregion
  2015. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2016. }
  2017. catch (Exception ex)
  2018. {
  2019. return Ok(JsonView(false, "程序错误!"));
  2020. throw;
  2021. }
  2022. }
  2023. /// <summary>
  2024. /// 根据舱位类型查询接团客户名单信息
  2025. /// </summary>
  2026. /// <param name="dto"></param>
  2027. /// <returns></returns>
  2028. [HttpPost]
  2029. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2030. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2031. {
  2032. try
  2033. {
  2034. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2035. if (crm_Groups.Count != 0)
  2036. {
  2037. List<dynamic> Customer = new List<dynamic>();
  2038. foreach (var item in crm_Groups)
  2039. {
  2040. var data = new
  2041. {
  2042. Id = item.Id,
  2043. Pinyin = item.Pinyin,
  2044. Name = item.LastName + item.FirstName
  2045. };
  2046. Customer.Add(data);
  2047. }
  2048. return Ok(JsonView(true, "查询成功!", Customer));
  2049. }
  2050. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2051. }
  2052. catch (Exception ex)
  2053. {
  2054. return Ok(JsonView(false, "程序错误!"));
  2055. throw;
  2056. }
  2057. }
  2058. /// <summary>
  2059. /// 根据团号获取客户信息
  2060. /// </summary>
  2061. /// <param name="dto"></param>
  2062. /// <returns></returns>
  2063. [HttpPost]
  2064. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2065. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2066. {
  2067. var jw = JsonView(false);
  2068. if (dto.DIID < 1)
  2069. {
  2070. jw.Msg += "请输入正确的diid";
  2071. return Ok(jw);
  2072. }
  2073. var arr = getSimplClientList(dto.DIID);
  2074. jw = JsonView(true, "获取成功!", arr);
  2075. return Ok(jw);
  2076. }
  2077. private List<SimplClientInfo> getSimplClientList(int diId)
  2078. {
  2079. 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);
  2080. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2081. return arr;
  2082. }
  2083. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2084. {
  2085. string result = origin;
  2086. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2087. {
  2088. string[] temparr = origin.Split(',');
  2089. string fistrStr = temparr[0];
  2090. int count = temparr.Count();
  2091. int tempId;
  2092. bool success = int.TryParse(fistrStr, out tempId);
  2093. if (success)
  2094. {
  2095. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2096. if (tempInfo != null)
  2097. {
  2098. if (count > 1)
  2099. {
  2100. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2101. }
  2102. else
  2103. {
  2104. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2105. }
  2106. }
  2107. }
  2108. }
  2109. return result;
  2110. }
  2111. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2112. {
  2113. string result = origin;
  2114. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2115. {
  2116. string[] temparr = origin.Split(',');
  2117. result = "";
  2118. foreach (var item in temparr)
  2119. {
  2120. int tempId;
  2121. bool success = int.TryParse(item, out tempId);
  2122. if (success)
  2123. {
  2124. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2125. if (tempInfo != null)
  2126. {
  2127. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2128. }
  2129. }
  2130. }
  2131. }
  2132. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2133. return result;
  2134. }
  2135. /// <summary>
  2136. /// 机票费用录入,删除
  2137. /// </summary>
  2138. /// <param name="dto"></param>
  2139. /// <returns></returns>
  2140. [HttpPost]
  2141. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2142. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2143. {
  2144. try
  2145. {
  2146. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2147. if (res)
  2148. {
  2149. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2150. {
  2151. IsDel = 1,
  2152. DeleteUserId = dto.DeleteUserId,
  2153. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2154. }).ExecuteCommandAsync();
  2155. return Ok(JsonView(true, "删除成功!"));
  2156. }
  2157. return Ok(JsonView(false, "删除失败!"));
  2158. }
  2159. catch (Exception ex)
  2160. {
  2161. return Ok(JsonView(false, "程序错误!"));
  2162. throw;
  2163. }
  2164. }
  2165. /// <summary>
  2166. /// 导出机票录入报表
  2167. /// </summary>
  2168. /// <param name="dto"></param>
  2169. /// <returns></returns>
  2170. [HttpPost]
  2171. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2172. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2173. {
  2174. try
  2175. {
  2176. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2177. if (groupData.Code != 0)
  2178. {
  2179. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2180. }
  2181. else
  2182. {
  2183. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2184. if (AirTicketReservations.Count != 0)
  2185. {
  2186. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2187. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2188. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2189. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2190. WorkbookDesigner designer = new WorkbookDesigner();
  2191. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2192. decimal countCost = 0;
  2193. foreach (var item in AirTicketReservations)
  2194. {
  2195. #region 处理客人姓名
  2196. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2197. item.ClientName = clientNames;
  2198. #endregion
  2199. if (item.BankType == "其他")
  2200. {
  2201. item.BankNo = "--";
  2202. }
  2203. else
  2204. {
  2205. if (!string.IsNullOrEmpty(item.BankType))
  2206. {
  2207. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2208. }
  2209. }
  2210. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2211. item.Price = System.Decimal.Round(item.Price, 2);
  2212. countCost += Convert.ToDecimal(item.Price);
  2213. }
  2214. designer.SetDataSource("Export", AirTicketReservations);
  2215. designer.SetDataSource("ExportDiCode", diCode);
  2216. designer.SetDataSource("ExportDiName", diName);
  2217. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2218. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2219. designer.Process();
  2220. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2221. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2222. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2223. return Ok(JsonView(true, "成功", url = rst));
  2224. }
  2225. else
  2226. {
  2227. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2228. }
  2229. }
  2230. }
  2231. catch (Exception ex)
  2232. {
  2233. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2234. throw;
  2235. }
  2236. }
  2237. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2238. /// <summary>
  2239. /// 行程单导出
  2240. /// </summary>
  2241. /// <param name="dto"></param>
  2242. /// <returns></returns>
  2243. [HttpPost]
  2244. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2245. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2246. {
  2247. try
  2248. {
  2249. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2250. if (groupData.Code != 0)
  2251. {
  2252. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2253. }
  2254. else
  2255. {
  2256. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2257. if (dto.Language == "CN")
  2258. {
  2259. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2260. DocumentBuilder builder = new DocumentBuilder(doc);
  2261. int tableIndex = 0;//表格索引
  2262. //得到文档中的第一个表格
  2263. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2264. foreach (var item in _AirTicketReservations)
  2265. {
  2266. #region 处理固定数据
  2267. string[] FlightsCode = item.FlightsCode.Split('/');
  2268. if (FlightsCode.Length != 0)
  2269. {
  2270. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2271. if (_AirCompany != null)
  2272. {
  2273. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2274. }
  2275. else
  2276. {
  2277. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2278. }
  2279. }
  2280. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2281. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2282. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2283. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2284. string name = "";
  2285. foreach (string clientName in nameArray)
  2286. {
  2287. if (!name.Contains(clientName))
  2288. {
  2289. name += clientName + ",";
  2290. }
  2291. }
  2292. if (!string.IsNullOrWhiteSpace(name))
  2293. {
  2294. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2295. }
  2296. else
  2297. {
  2298. table.Range.Bookmarks["ClientName"].Text = "--";
  2299. }
  2300. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2301. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2302. table.Range.Bookmarks["JointTicket"].Text = "--";
  2303. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2304. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2305. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2306. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2307. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2308. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2309. #endregion
  2310. #region 循环数据处理
  2311. List<AirInfo> airs = new List<AirInfo>();
  2312. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2313. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2314. for (int i = 0; i < FlightsCode.Length; i++)
  2315. {
  2316. AirInfo air = new AirInfo();
  2317. string[] tempstr = DayArray[i]
  2318. .Replace("\r\n", string.Empty)
  2319. .Replace("\\r\\n", string.Empty)
  2320. .TrimStart().TrimEnd()
  2321. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2322. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2323. string starCity = "";
  2324. if (star_Three != null)
  2325. {
  2326. starCity = star_Three.AirPort;
  2327. }
  2328. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2329. string EndCity = "";
  2330. if (End_Three != null)
  2331. {
  2332. EndCity = End_Three.AirPort;
  2333. }
  2334. air.Destination = starCity + "/" + EndCity;
  2335. air.Flight = FlightsCode[i];
  2336. air.SeatingClass = item.CTypeName;
  2337. string dateTime = tempstr[2];
  2338. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2339. air.FlightDate = DateTemp;
  2340. air.DepartureTime = tempstr[5];
  2341. air.LandingTime = tempstr[6];
  2342. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2343. air.TicketStatus = "--";
  2344. air.Luggage = "--";
  2345. air.DepartureTerminal = "--";
  2346. air.LandingTerminal = "--";
  2347. airs.Add(air);
  2348. }
  2349. int row = 13;
  2350. for (int i = 0; i < airs.Count; i++)
  2351. {
  2352. if (airs.Count > 2)
  2353. {
  2354. for (int j = 0; j < airs.Count - 2; j++)
  2355. {
  2356. var CopyRow = table.Rows[12].Clone(true);
  2357. table.Rows.Add(CopyRow);
  2358. }
  2359. }
  2360. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2361. int index = 0;
  2362. foreach (PropertyInfo property in properties)
  2363. {
  2364. string value = property.GetValue(airs[i]).ToString();
  2365. Cell ishcel0 = table.Rows[row].Cells[index];
  2366. Paragraph p = new Paragraph(doc);
  2367. string s = value;
  2368. p.AppendChild(new Run(doc, s));
  2369. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2370. ishcel0.AppendChild(p);
  2371. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2372. index++;
  2373. }
  2374. row++;
  2375. }
  2376. #endregion
  2377. Paragraph lastParagraph = new Paragraph(doc);
  2378. //第一个表格末尾加段落
  2379. table.ParentNode.InsertAfter(lastParagraph, table);
  2380. //复制第一个表格
  2381. Table cloneTable = (Table)table.Clone(true);
  2382. //在文档末尾段落后面加入复制的表格
  2383. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2384. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2385. {
  2386. int rownewsIndex = 13;
  2387. for (int i = 0; i < 2; i++)
  2388. {
  2389. var CopyRow = table.Rows[12].Clone(true);
  2390. table.Rows.RemoveAt(13);
  2391. table.Rows.Add(CopyRow);
  2392. rownewsIndex++;
  2393. }
  2394. }
  2395. else
  2396. {
  2397. table.Rows.RemoveAt(12);
  2398. }
  2399. cloneTable.Rows.RemoveAt(12);
  2400. }
  2401. if (_AirTicketReservations.Count != 0)
  2402. {
  2403. string[] FlightsCode = _AirTicketReservations[0].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. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2410. }
  2411. else
  2412. {
  2413. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2414. }
  2415. }
  2416. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2417. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2418. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2419. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2420. string name = "";
  2421. foreach (string clientName in nameArray)
  2422. {
  2423. if (!name.Contains(clientName))
  2424. {
  2425. name += clientName + ",";
  2426. }
  2427. }
  2428. if (!string.IsNullOrWhiteSpace(name))
  2429. {
  2430. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2431. }
  2432. else
  2433. {
  2434. table.Range.Bookmarks["ClientName"].Text = "--";
  2435. }
  2436. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2437. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2438. table.Range.Bookmarks["JointTicket"].Text = "--";
  2439. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2440. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2441. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2442. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2443. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2444. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2445. }
  2446. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2447. //保存合并后的文档
  2448. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2449. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2450. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2451. return Ok(JsonView(true, "成功!", rst));
  2452. }
  2453. else
  2454. {
  2455. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2456. DocumentBuilder builder = new DocumentBuilder(doc);
  2457. int tableIndex = 0;//表格索引
  2458. //得到文档中的第一个表格
  2459. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2460. List<string> texts = new List<string>();
  2461. foreach (var item in _AirTicketReservations)
  2462. {
  2463. string[] FlightsCode = item.FlightsCode.Split('/');
  2464. if (FlightsCode.Length != 0)
  2465. {
  2466. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2467. if (_AirCompany != null)
  2468. {
  2469. if (!transDic.ContainsKey(_AirCompany.CnName))
  2470. {
  2471. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2472. }
  2473. }
  2474. else
  2475. {
  2476. if (!transDic.ContainsKey("--"))
  2477. {
  2478. transDic.Add("--", "--");
  2479. }
  2480. }
  2481. }
  2482. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2483. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2484. string name = "";
  2485. foreach (string clientName in nameArray)
  2486. {
  2487. name += clientName + ",";
  2488. }
  2489. if (!texts.Contains(name))
  2490. {
  2491. texts.Add(name);
  2492. }
  2493. List<AirInfo> airs = new List<AirInfo>();
  2494. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2495. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2496. for (int i = 0; i < FlightsCode.Length; i++)
  2497. {
  2498. AirInfo air = new AirInfo();
  2499. string[] tempstr = DayArray[i]
  2500. .Replace("\r\n", string.Empty)
  2501. .Replace("\\r\\n", string.Empty)
  2502. .TrimStart().TrimEnd()
  2503. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2504. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2505. if (star_Three != null)
  2506. {
  2507. if (!transDic.ContainsKey(star_Three.AirPort))
  2508. {
  2509. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2510. }
  2511. }
  2512. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2513. if (End_Three != null)
  2514. {
  2515. if (!transDic.ContainsKey(End_Three.AirPort))
  2516. {
  2517. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2518. }
  2519. }
  2520. if (!texts.Contains(item.CTypeName))
  2521. {
  2522. texts.Add(item.CTypeName);
  2523. }
  2524. }
  2525. }
  2526. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2527. if (transData.Count > 0)
  2528. {
  2529. foreach (TranslateResult item in transData)
  2530. {
  2531. if (!transDic.ContainsKey(item.Query))
  2532. {
  2533. transDic.Add(item.Query, item.Translation);
  2534. }
  2535. }
  2536. }
  2537. foreach (var item in _AirTicketReservations)
  2538. {
  2539. #region 处理固定数据
  2540. string[] FlightsCode = item.FlightsCode.Split('/');
  2541. if (FlightsCode.Length != 0)
  2542. {
  2543. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2544. if (_AirCompany != null)
  2545. {
  2546. string str = "--";
  2547. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2548. if (!string.IsNullOrEmpty(translateResult))
  2549. {
  2550. str = translateResult;
  2551. str = _airTicketResRep.Processing(str);
  2552. }
  2553. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2554. }
  2555. else
  2556. {
  2557. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2558. }
  2559. }
  2560. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2561. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2562. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2563. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2564. string names = "";
  2565. foreach (string clientName in nameArray)
  2566. {
  2567. names += clientName + ",";
  2568. }
  2569. if (!string.IsNullOrWhiteSpace(names))
  2570. {
  2571. string str = "--";
  2572. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2573. if (!string.IsNullOrEmpty(translateResult))
  2574. {
  2575. str = translateResult;
  2576. str = _airTicketResRep.Processing(str);
  2577. }
  2578. table.Range.Bookmarks["ClientName"].Text = str;
  2579. }
  2580. else
  2581. {
  2582. table.Range.Bookmarks["ClientName"].Text = "--";
  2583. }
  2584. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2585. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2586. table.Range.Bookmarks["JointTicket"].Text = "--";
  2587. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2588. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2589. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2590. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2591. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2592. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2593. #endregion
  2594. #region 循环数据处理
  2595. List<AirInfo> airs = new List<AirInfo>();
  2596. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2597. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2598. for (int i = 0; i < FlightsCode.Length; i++)
  2599. {
  2600. AirInfo air = new AirInfo();
  2601. string[] tempstr = DayArray[i]
  2602. .Replace("\r\n", string.Empty)
  2603. .Replace("\\r\\n", string.Empty)
  2604. .TrimStart().TrimEnd()
  2605. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2606. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2607. string starCity = "";
  2608. if (star_Three != null)
  2609. {
  2610. string str2 = "--";
  2611. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2612. if (!string.IsNullOrEmpty(translateResult2))
  2613. {
  2614. str2 = translateResult2;
  2615. str2 = _airTicketResRep.Processing(str2);
  2616. }
  2617. starCity = str2;
  2618. }
  2619. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2620. string EndCity = "";
  2621. if (End_Three != null)
  2622. {
  2623. string str1 = "--";
  2624. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2625. if (!string.IsNullOrEmpty(translateResult1))
  2626. {
  2627. str1 = translateResult1;
  2628. str1 = _airTicketResRep.Processing(str1);
  2629. }
  2630. EndCity = str1;
  2631. }
  2632. air.Destination = starCity + "/" + EndCity;
  2633. air.Flight = FlightsCode[i];
  2634. string str = "--";
  2635. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2636. if (!string.IsNullOrEmpty(translateResult))
  2637. {
  2638. str = translateResult;
  2639. str = _airTicketResRep.Processing(str);
  2640. }
  2641. air.SeatingClass = str;
  2642. string dateTime = tempstr[2];
  2643. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2644. air.FlightDate = DateTemp;
  2645. air.DepartureTime = tempstr[5];
  2646. air.LandingTime = tempstr[6];
  2647. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2648. air.TicketStatus = "--";
  2649. air.Luggage = "--";
  2650. air.DepartureTerminal = "--";
  2651. air.LandingTerminal = "--";
  2652. airs.Add(air);
  2653. }
  2654. int row = 13;
  2655. for (int i = 0; i < airs.Count; i++)
  2656. {
  2657. if (airs.Count > 2)
  2658. {
  2659. for (int j = 0; j < airs.Count - 2; j++)
  2660. {
  2661. var CopyRow = table.Rows[12].Clone(true);
  2662. table.Rows.Add(CopyRow);
  2663. }
  2664. }
  2665. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2666. int index = 0;
  2667. foreach (PropertyInfo property in properties)
  2668. {
  2669. string value = property.GetValue(airs[i]).ToString();
  2670. Cell ishcel0 = table.Rows[row].Cells[index];
  2671. Paragraph p = new Paragraph(doc);
  2672. string s = value;
  2673. p.AppendChild(new Run(doc, s));
  2674. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2675. ishcel0.AppendChild(p);
  2676. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2677. //ishcel0.CellFormat.VerticalAlignment=
  2678. index++;
  2679. }
  2680. row++;
  2681. }
  2682. #endregion
  2683. Paragraph lastParagraph = new Paragraph(doc);
  2684. //第一个表格末尾加段落
  2685. table.ParentNode.InsertAfter(lastParagraph, table);
  2686. //复制第一个表格
  2687. Table cloneTable = (Table)table.Clone(true);
  2688. //在文档末尾段落后面加入复制的表格
  2689. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2690. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2691. {
  2692. int rownewsIndex = 13;
  2693. for (int i = 0; i < 2; i++)
  2694. {
  2695. var CopyRow = table.Rows[12].Clone(true);
  2696. table.Rows.RemoveAt(13);
  2697. table.Rows.Add(CopyRow);
  2698. rownewsIndex++;
  2699. }
  2700. }
  2701. else
  2702. {
  2703. table.Rows.RemoveAt(12);
  2704. }
  2705. cloneTable.Rows.RemoveAt(12);
  2706. }
  2707. if (_AirTicketReservations.Count != 0)
  2708. {
  2709. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2710. if (FlightsCode.Length != 0)
  2711. {
  2712. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2713. if (_AirCompany != null)
  2714. {
  2715. string str = "--";
  2716. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2717. if (!string.IsNullOrEmpty(translateResult))
  2718. {
  2719. str = translateResult;
  2720. str = _airTicketResRep.Processing(str);
  2721. }
  2722. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2723. }
  2724. else
  2725. {
  2726. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2727. }
  2728. }
  2729. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2730. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2731. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2732. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2733. string names = "";
  2734. foreach (string clientName in nameArray)
  2735. {
  2736. names += clientName + ",";
  2737. }
  2738. if (!string.IsNullOrWhiteSpace(names))
  2739. {
  2740. string str = "--";
  2741. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2742. if (!string.IsNullOrEmpty(translateResult))
  2743. {
  2744. str = translateResult;
  2745. str = _airTicketResRep.Processing(str);
  2746. }
  2747. table.Range.Bookmarks["ClientName"].Text = str;
  2748. }
  2749. else
  2750. {
  2751. table.Range.Bookmarks["ClientName"].Text = "--";
  2752. }
  2753. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2754. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2755. table.Range.Bookmarks["JointTicket"].Text = "--";
  2756. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2757. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2758. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2759. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2760. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2761. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2762. }
  2763. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2764. //保存合并后的文档
  2765. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2766. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2767. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2768. return Ok(JsonView(true, "成功!", rst));
  2769. }
  2770. }
  2771. }
  2772. catch (Exception ex)
  2773. {
  2774. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2775. throw;
  2776. }
  2777. }
  2778. #endregion
  2779. #region 团组增减款项 --> 其他款项
  2780. /// <summary>
  2781. /// 团组增减款项下拉框绑定
  2782. /// </summary>
  2783. /// <param name="dto"></param>
  2784. /// <returns></returns>
  2785. [HttpPost]
  2786. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2787. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2788. {
  2789. #region 参数验证
  2790. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2791. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2792. #endregion
  2793. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2794. }
  2795. /// <summary>
  2796. /// 根据团组Id查询团组增减款项
  2797. /// </summary>
  2798. /// <param name="dto"></param>
  2799. /// <returns></returns>
  2800. [HttpPost]
  2801. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2802. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2803. {
  2804. #region 参数验证
  2805. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2806. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2807. #endregion
  2808. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2809. }
  2810. /// <summary>
  2811. /// 团组增减款项操作(Status:1.新增,2.修改)
  2812. /// </summary>
  2813. /// <param name="dto"></param>
  2814. /// <returns></returns>
  2815. [HttpPost]
  2816. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2817. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2818. {
  2819. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2820. if (groupData.Code != 200)
  2821. {
  2822. return Ok(JsonView(false, groupData.Msg));
  2823. }
  2824. #region 应用推送
  2825. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2826. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2827. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2828. #endregion
  2829. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2830. }
  2831. /// <summary>
  2832. /// 团组增减款项操作 删除
  2833. /// </summary>
  2834. /// <param name="dto"></param>
  2835. /// <returns></returns>
  2836. [HttpPost]
  2837. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2838. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2839. {
  2840. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2841. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2842. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2843. if (res.Code == 0)
  2844. {
  2845. return Ok(JsonView(true, "删除成功!"));
  2846. }
  2847. return Ok(JsonView(false, "删除失败!"));
  2848. }
  2849. /// <summary>
  2850. /// 根据团组增减款项Id查询
  2851. /// </summary>
  2852. /// <param name="dto"></param>
  2853. /// <returns></returns>
  2854. [HttpPost]
  2855. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2856. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2857. {
  2858. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2859. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2860. }
  2861. /// <summary>
  2862. /// 查询供应商名称
  2863. /// </summary>
  2864. /// <param name="dto"></param>
  2865. /// <returns></returns>
  2866. [HttpPost]
  2867. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2868. {
  2869. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2870. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2871. ?? new List<Grp_DecreasePayments>();
  2872. dbResult = dbResult.Distinct(new
  2873. ProductComparer()).ToList();
  2874. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2875. {
  2876. x.Id,
  2877. x.SupplierAddress,
  2878. x.SupplierArea,
  2879. x.SupplierContact,
  2880. x.SupplierContactNumber,
  2881. x.SupplierEmail,
  2882. x.SupplierName,
  2883. x.SupplierSocialAccount,
  2884. x.SupplierTypeId,
  2885. }).ToList());
  2886. return Ok(jw);
  2887. }
  2888. #endregion
  2889. #region 文件上传、删除
  2890. /// <summary>
  2891. /// region 文件上传 可以带参数
  2892. /// </summary>
  2893. /// <param name="file"></param>
  2894. /// <returns></returns>
  2895. [HttpPost]
  2896. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2897. public async Task<IActionResult> UploadProject(IFormFile file)
  2898. {
  2899. try
  2900. {
  2901. var TypeName = Request.Headers["TypeName"].ToString();
  2902. if (file != null)
  2903. {
  2904. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2905. //文件名称
  2906. string projectFileName = file.FileName;
  2907. //上传的文件的路径
  2908. string filePath = "";
  2909. if (TypeName == "A")//A代表团组增减款项
  2910. {
  2911. if (!Directory.Exists(fileDir))
  2912. {
  2913. Directory.CreateDirectory(fileDir);
  2914. }
  2915. //上传的文件的路径
  2916. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2917. }
  2918. else if (TypeName == "B")//B代表商邀相关文件
  2919. {
  2920. if (!Directory.Exists(fileDir))
  2921. {
  2922. Directory.CreateDirectory(fileDir);
  2923. }
  2924. //上传的文件的路径
  2925. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2926. }
  2927. using (FileStream fs = System.IO.File.Create(filePath))
  2928. {
  2929. file.CopyTo(fs);
  2930. fs.Flush();
  2931. }
  2932. return Ok(JsonView(true, "上传成功!", projectFileName));
  2933. }
  2934. else
  2935. {
  2936. return Ok(JsonView(false, "上传失败!"));
  2937. }
  2938. }
  2939. catch (Exception ex)
  2940. {
  2941. return Ok(JsonView(false, "程序错误!"));
  2942. throw;
  2943. }
  2944. }
  2945. /// <summary>
  2946. /// 删除指定文件
  2947. /// </summary>
  2948. /// <param name="dto"></param>
  2949. /// <returns></returns>
  2950. [HttpPost]
  2951. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2952. public async Task<IActionResult> DelFile(DelFileDto dto)
  2953. {
  2954. try
  2955. {
  2956. var TypeName = Request.Headers["TypeName"].ToString();
  2957. string filePath = "";
  2958. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2959. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2960. int id = 0;
  2961. if (TypeName == "A")
  2962. {
  2963. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2964. // 删除该文件
  2965. System.IO.File.Delete(filePath);
  2966. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2967. }
  2968. else if (TypeName == "B")
  2969. {
  2970. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2971. // 删除该文件
  2972. System.IO.File.Delete(filePath);
  2973. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2974. }
  2975. if (id != 0)
  2976. {
  2977. return Ok(JsonView(true, "成功!"));
  2978. }
  2979. else
  2980. {
  2981. return Ok(JsonView(false, "失败!"));
  2982. }
  2983. }
  2984. catch (Exception ex)
  2985. {
  2986. return Ok(JsonView(false, "程序错误!"));
  2987. throw;
  2988. }
  2989. }
  2990. #endregion
  2991. #region 商邀费用录入
  2992. /// <summary>
  2993. /// 根据团组Id查询商邀费用列表
  2994. /// </summary>
  2995. /// <param name="dto"></param>
  2996. /// <returns></returns>
  2997. [HttpPost]
  2998. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2999. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  3000. {
  3001. try
  3002. {
  3003. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3004. if (groupData.Code != 0)
  3005. {
  3006. return Ok(JsonView(false, groupData.Msg));
  3007. }
  3008. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3009. }
  3010. catch (Exception ex)
  3011. {
  3012. return Ok(JsonView(false, "程序错误!"));
  3013. throw;
  3014. }
  3015. }
  3016. //
  3017. /// <summary>
  3018. /// 商邀费用 Info Page 基础数据源
  3019. /// </summary>
  3020. /// <param name="dto"></param>
  3021. /// <returns></returns>
  3022. [HttpPost]
  3023. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3024. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3025. {
  3026. try
  3027. {
  3028. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3029. if (groupData.Code != 0)
  3030. {
  3031. return Ok(JsonView(false, groupData.Msg));
  3032. }
  3033. return Ok(JsonView(true, "操作成功", groupData.Data));
  3034. }
  3035. catch (Exception ex)
  3036. {
  3037. return Ok(JsonView(false, ex.Message));
  3038. throw;
  3039. }
  3040. }
  3041. /// <summary>
  3042. /// 根据商邀费用ID查询C表和商邀费用数据
  3043. /// </summary>
  3044. /// <param name="dto"></param>
  3045. /// <returns></returns>
  3046. [HttpPost]
  3047. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3048. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3049. {
  3050. try
  3051. {
  3052. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3053. if (groupData.Code != 0)
  3054. {
  3055. return Ok(JsonView(false, groupData.Msg));
  3056. }
  3057. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3058. }
  3059. catch (Exception ex)
  3060. {
  3061. return Ok(JsonView(false, ex.Message));
  3062. throw;
  3063. }
  3064. }
  3065. /// <summary>
  3066. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3067. /// </summary>
  3068. /// <param name="dto"></param>
  3069. /// <returns></returns>
  3070. [HttpPost]
  3071. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3072. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3073. {
  3074. try
  3075. {
  3076. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3077. if (groupData.Code != 0)
  3078. {
  3079. return Ok(JsonView(false, groupData.Msg));
  3080. }
  3081. #region 应用推送
  3082. try
  3083. {
  3084. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3085. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3086. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3087. }
  3088. catch (Exception ex)
  3089. {
  3090. }
  3091. #endregion
  3092. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3093. }
  3094. catch (Exception ex)
  3095. {
  3096. return Ok(JsonView(false, "程序错误!"));
  3097. throw;
  3098. }
  3099. }
  3100. /// <summary>
  3101. /// 商邀删除
  3102. /// </summary>
  3103. /// <param name="dto"></param>
  3104. /// <returns></returns>
  3105. [HttpPost]
  3106. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3107. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3108. {
  3109. try
  3110. {
  3111. _sqlSugar.BeginTran();
  3112. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3113. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3114. {
  3115. IsDel = 1,
  3116. DeleteUserId = dto.DeleteUserId,
  3117. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3118. })
  3119. .Where(it => it.Id == dto.Id)
  3120. .ExecuteCommand();
  3121. if (res1 > 0)
  3122. {
  3123. int _diId = 0;
  3124. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3125. if (_ioaInfo != null)
  3126. {
  3127. _diId = _ioaInfo.DiId;
  3128. }
  3129. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3130. .SetColumns(a => new Grp_CreditCardPayment()
  3131. {
  3132. IsDel = 1,
  3133. DeleteUserId = dto.DeleteUserId,
  3134. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3135. })
  3136. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3137. .ExecuteCommand();
  3138. if (res2 > 0)
  3139. {
  3140. _sqlSugar.CommitTran();
  3141. return Ok(JsonView(true, "删除成功!"));
  3142. }
  3143. }
  3144. _sqlSugar.RollbackTran();
  3145. return Ok(JsonView(false, "删除失败"));
  3146. }
  3147. catch (Exception ex)
  3148. {
  3149. _sqlSugar.RollbackTran();
  3150. return Ok(JsonView(false, ex.Message));
  3151. }
  3152. }
  3153. /// <summary>
  3154. /// 团组模块文件上传
  3155. /// </summary>
  3156. /// <param name="dto"></param>
  3157. /// <returns></returns>
  3158. [HttpPost]
  3159. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3160. {
  3161. var jw = JsonView(false);
  3162. long M = 1024 * 1024;
  3163. if (dto.Files == null || dto.Files.Count == 0)
  3164. {
  3165. jw.Msg = "无文件信息!";
  3166. return Ok(jw);
  3167. }
  3168. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3169. {
  3170. jw.Msg = "文件大小超过20M!";
  3171. return Ok(jw);
  3172. }
  3173. //var nameSp = dto.File.FileName.Split(".");
  3174. //if (nameSp.Length < 2)
  3175. //{
  3176. // jw.Msg = "拓展名称有误!";
  3177. // return Ok(jw);
  3178. //}
  3179. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3180. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3181. //{
  3182. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3183. // return Ok(jw);
  3184. //}
  3185. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3186. if (Ctable == null)
  3187. {
  3188. jw.Msg = "Ctable指向有误!";
  3189. return Ok(jw);
  3190. }
  3191. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3192. if (groupInfo == null)
  3193. {
  3194. jw.Msg = "团组信息不存在!";
  3195. return Ok(jw);
  3196. }
  3197. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3198. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3199. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3200. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3201. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3202. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3203. try
  3204. {
  3205. if (!Directory.Exists(fileBase))
  3206. {
  3207. Directory.CreateDirectory(fileBase);
  3208. }
  3209. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3210. foreach (var fileStream in dto.Files)
  3211. {
  3212. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3213. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3214. {
  3215. Cid = dto.Cid,
  3216. CreateTime = DateTime.Now,
  3217. CreateUserId = dto.Userid,
  3218. Ctable = dto.Ctable,
  3219. Diid = dto.Diid,
  3220. IsDel = 0,
  3221. FilePath = saveFilePath,
  3222. FileName = fileStream.FileName
  3223. };
  3224. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3225. {
  3226. fileStream.CopyTo(fs);
  3227. fs.Flush();
  3228. }
  3229. saveArr.Add(file);
  3230. }
  3231. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3232. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3233. jw = JsonView(true, "保存成功!", new
  3234. {
  3235. count = addResult,
  3236. filesName = saveArr.Select(x => x.FileName)
  3237. }) ;
  3238. }
  3239. catch (Exception ex)
  3240. {
  3241. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3242. {
  3243. count = 0,
  3244. filesName = new string[0],
  3245. }) ;
  3246. }
  3247. return Ok(jw);
  3248. }
  3249. /// <summary>
  3250. /// 查询各模块已保存文件
  3251. /// </summary>
  3252. /// <param name="dto"></param>
  3253. /// <returns></returns>
  3254. [HttpPost]
  3255. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3256. {
  3257. var expression = Expressionable.Create<Grp_GroupModelFile>()
  3258. .AndIF(dto.UserId != -1 , x => x.CreateUserId == dto.UserId);
  3259. var visaIds = _sqlSugar.Queryable<Sys_Users>().Where(x => x.JobPostId == 26).Select(x=>x.Id).ToList();
  3260. if (visaIds.Contains(dto.UserId) && dto.Ctable == 80)
  3261. {
  3262. expression = Expressionable.Create<Grp_GroupModelFile>()
  3263. .And(x=>visaIds.Contains(x.CreateUserId));
  3264. }
  3265. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3266. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3267. .Where(expression.ToExpression())
  3268. .ToList();
  3269. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3270. {
  3271. x.FileName,
  3272. x.Id,
  3273. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"), AppSettingsHelper.Get("GrpFileFtpPath")),
  3274. CreateTime = x.CreateTime.ToString("yyyy-MM-dd HH-mm"),
  3275. })));
  3276. }
  3277. /// <summary>
  3278. /// 下载该团组下的所有文件
  3279. /// </summary>
  3280. /// <param name="dto"></param>
  3281. /// <returns></returns>
  3282. [HttpPost]
  3283. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3284. {
  3285. var jw = JsonView(false);
  3286. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3287. if (groupInfo == null)
  3288. {
  3289. jw.Msg = "团组信息不存在!";
  3290. return Ok(jw);
  3291. }
  3292. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3293. var isModule = Convert.ToBoolean(dto.isModule);
  3294. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3295. IOOperatorHelper io = new IOOperatorHelper();
  3296. if (isModule)
  3297. {
  3298. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3299. foreach (var moduleArr in moduleGroup)
  3300. {
  3301. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3302. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3303. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3304. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3305. foreach (var item in moduleArr)
  3306. {
  3307. if (System.IO.File.Exists(item.FilePath))
  3308. {
  3309. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3310. {
  3311. byte[] bytes = new byte[fileStream.Length];
  3312. fileStream.Read(bytes, 0, bytes.Length);
  3313. fileStream.Close();
  3314. Stream stream = new MemoryStream(bytes);
  3315. chiZips.Add(item.FileName, stream);
  3316. }
  3317. }
  3318. }
  3319. if (chiZips.Count > 0)
  3320. {
  3321. var byts = io.ConvertZipStream(chiZips);
  3322. Stream stream = new MemoryStream(byts);
  3323. Zips.Add(key.Name+"_.zip", stream);
  3324. }
  3325. }
  3326. }
  3327. else
  3328. {
  3329. foreach (var item in dbQuery)
  3330. {
  3331. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3332. {
  3333. byte[] bytes = new byte[fileStream.Length];
  3334. fileStream.Read(bytes, 0, bytes.Length);
  3335. fileStream.Close();
  3336. Stream stream = new MemoryStream(bytes);
  3337. while (Zips.Keys.Contains(item.FileName))
  3338. {
  3339. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3340. }
  3341. Zips.Add(item.FileName, stream);
  3342. }
  3343. }
  3344. }
  3345. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3346. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3347. if (Zips.Count > 0)
  3348. {
  3349. var byts = io.ConvertZipStream(Zips);
  3350. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3351. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3352. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3353. }
  3354. else
  3355. {
  3356. jw.Msg = "暂无生成文件!";
  3357. }
  3358. return Ok(jw);
  3359. }
  3360. /// <summary>
  3361. /// 下载该团组下此模块的所有文件
  3362. /// </summary>
  3363. /// <param name="dto"></param>
  3364. /// <returns></returns>
  3365. [HttpPost]
  3366. public IActionResult ExportGroupByModule(ExportGroupByModuleDto dto)
  3367. {
  3368. var jw = JsonView(false);
  3369. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3370. if (groupInfo == null)
  3371. {
  3372. jw.Msg = "团组信息不存在!";
  3373. return Ok(jw);
  3374. }
  3375. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid && x.Ctable == dto.Ctable).ToList();
  3376. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == dto.Ctable
  3377. && x.IsDel == 0);
  3378. if (key == null)
  3379. {
  3380. jw.Msg = "Ctable指向错误!";
  3381. return Ok(jw);
  3382. }
  3383. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3384. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3385. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3386. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3387. IOOperatorHelper io = new IOOperatorHelper();
  3388. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3389. foreach (var item in dbQuery)
  3390. {
  3391. if (System.IO.File.Exists(item.FilePath))
  3392. {
  3393. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3394. {
  3395. byte[] bytes = new byte[fileStream.Length];
  3396. fileStream.Read(bytes, 0, bytes.Length);
  3397. fileStream.Close();
  3398. Stream stream = new MemoryStream(bytes);
  3399. while (Zips.Keys.Contains(item.FileName))
  3400. {
  3401. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3402. }
  3403. Zips.Add(item.FileName, stream);
  3404. }
  3405. }
  3406. }
  3407. if (Zips.Count > 0)
  3408. {
  3409. var byts = io.ConvertZipStream(Zips);
  3410. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3411. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{key.Name}_.Zip");
  3412. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{key.Name}_.zip" });
  3413. }
  3414. else
  3415. {
  3416. jw.Msg = "暂无生成文件!";
  3417. }
  3418. return Ok(jw);
  3419. }
  3420. /// <summary>
  3421. /// 删除该团组下的指定文件
  3422. /// </summary>
  3423. /// <param name="dto"></param>
  3424. /// <returns></returns>
  3425. [HttpPost]
  3426. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3427. {
  3428. var jw = JsonView(false);
  3429. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3430. if (sing == null)
  3431. {
  3432. jw.Msg = "暂无";
  3433. return Ok(jw);
  3434. }
  3435. if (System.IO.File.Exists(sing.FilePath))
  3436. {
  3437. try
  3438. {
  3439. System.IO.File.Delete(sing.FilePath);
  3440. }
  3441. catch (Exception ex)
  3442. {
  3443. jw.Msg = "删除失败!" + ex.Message;
  3444. return Ok(jw);
  3445. }
  3446. }
  3447. sing.IsDel = 1;
  3448. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3449. sing.DeleteUserId = dto.UserId;
  3450. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3451. jw = JsonView(true, "删除成功!");
  3452. return Ok(jw);
  3453. }
  3454. #endregion
  3455. #region 团组英文资料
  3456. /// <summary>
  3457. /// 查询团组英文所有资料
  3458. /// </summary>
  3459. /// <param name="dto"></param>
  3460. /// <returns></returns>
  3461. [HttpPost]
  3462. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3463. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3464. {
  3465. try
  3466. {
  3467. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3468. if (groupData.Code != 0)
  3469. {
  3470. return Ok(JsonView(false, groupData.Msg));
  3471. }
  3472. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3473. }
  3474. catch (Exception ex)
  3475. {
  3476. return Ok(JsonView(false, "程序错误!"));
  3477. throw;
  3478. }
  3479. }
  3480. /// <summary>
  3481. /// 团组英文资料操作(Status:1.新增,2.修改)
  3482. /// </summary>
  3483. /// <param name="dto"></param>
  3484. /// <returns></returns>
  3485. [HttpPost]
  3486. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3487. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3488. {
  3489. try
  3490. {
  3491. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3492. if (groupData.Code != 0)
  3493. {
  3494. return Ok(JsonView(false, groupData.Msg));
  3495. }
  3496. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3497. }
  3498. catch (Exception ex)
  3499. {
  3500. return Ok(JsonView(false, "程序错误!"));
  3501. throw;
  3502. }
  3503. }
  3504. /// <summary>
  3505. /// 团组英文资料Id查询数据
  3506. /// </summary>
  3507. /// <param name="dto"></param>
  3508. /// <returns></returns>
  3509. [HttpPost]
  3510. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3511. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3512. {
  3513. try
  3514. {
  3515. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3516. if (_DelegationEnData != null)
  3517. {
  3518. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3519. }
  3520. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3521. }
  3522. catch (Exception ex)
  3523. {
  3524. return Ok(JsonView(false, "程序错误!"));
  3525. throw;
  3526. }
  3527. }
  3528. /// <summary>
  3529. /// 团组英文资料删除
  3530. /// </summary>
  3531. /// <param name="dto"></param>
  3532. /// <returns></returns>
  3533. [HttpPost]
  3534. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3535. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3536. {
  3537. try
  3538. {
  3539. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3540. if (!res)
  3541. {
  3542. return Ok(JsonView(false, "删除失败"));
  3543. }
  3544. return Ok(JsonView(true, "删除成功!"));
  3545. }
  3546. catch (Exception ex)
  3547. {
  3548. return Ok(JsonView(false, "程序错误!"));
  3549. throw;
  3550. }
  3551. }
  3552. #endregion
  3553. #region 导出邀请函
  3554. /// <summary>
  3555. /// 导出邀请函页面初始化
  3556. /// </summary>
  3557. /// <param name="dto"></param>
  3558. /// <returns></returns>
  3559. [HttpPost]
  3560. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3561. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3562. {
  3563. try
  3564. {
  3565. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3566. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3567. if (dto.DiId == 0)
  3568. {
  3569. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3570. }
  3571. else
  3572. {
  3573. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3574. }
  3575. return Ok(JsonView(true, "查询成功!", new
  3576. {
  3577. deleClient = crm_Deles,
  3578. delegations = grp_Delegations
  3579. }));
  3580. }
  3581. catch (Exception ex)
  3582. {
  3583. return Ok(JsonView(false, "程序错误!"));
  3584. throw;
  3585. }
  3586. }
  3587. /// <summary>
  3588. /// 导出邀请函
  3589. /// </summary>
  3590. /// <param name="dto"></param>
  3591. /// <returns></returns>
  3592. [HttpPost]
  3593. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3594. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3595. {
  3596. #region 参数验证
  3597. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3598. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3599. #endregion
  3600. try
  3601. {
  3602. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3603. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3604. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3605. From Grp_TourClientList tcl
  3606. Left Join
  3607. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3608. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3609. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3610. From Crm_DeleClient dc
  3611. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3612. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3613. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3614. Where dc.IsDel = 0) temp
  3615. On temp.DcId =tcl.ClientId
  3616. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3617. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3618. List<string> texts = new List<string>();
  3619. if (datas.Count != 0)
  3620. {
  3621. foreach (TourClientListDetailsView item in datas)
  3622. {
  3623. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3624. {
  3625. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3626. }
  3627. else
  3628. {
  3629. string name = item.LastName + item.FirstName;
  3630. texts.Add(name);
  3631. }
  3632. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3633. {
  3634. if (!transDic.ContainsKey(item.Job))
  3635. {
  3636. texts.Add(item.Job);
  3637. }
  3638. }
  3639. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3640. {
  3641. texts.Add(item.CompanyFullName);
  3642. }
  3643. }
  3644. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3645. if (transData.Count > 0)
  3646. {
  3647. foreach (TranslateResult item in transData)
  3648. {
  3649. if (!transDic.ContainsKey(item.Query))
  3650. {
  3651. transDic.Add(item.Query, item.Translation);
  3652. }
  3653. }
  3654. }
  3655. List<GuestList> list = new List<GuestList>();
  3656. foreach (TourClientListDetailsView dele in datas)
  3657. {
  3658. GuestList guestList = new GuestList();
  3659. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3660. {
  3661. guestList.Name = dele.Pinyin;
  3662. }
  3663. else
  3664. {
  3665. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3666. guestList.Name = Name;
  3667. }
  3668. if (dele.Sex == 0)
  3669. {
  3670. guestList.Sex = "Male";
  3671. }
  3672. else if (dele.Sex == 1)
  3673. {
  3674. guestList.Sex = "Female";
  3675. }
  3676. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3677. if (!string.IsNullOrEmpty(dele.Job))
  3678. {
  3679. guestList.Job = dele.Job;
  3680. }
  3681. list.Add(guestList);
  3682. }
  3683. //载入模板
  3684. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3685. DocumentBuilder builder = new DocumentBuilder(doc);
  3686. //获取word里所有表格
  3687. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3688. //获取所填表格的序数
  3689. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3690. var rowStart = tableOne.Rows[0]; //获取第1行
  3691. //循环赋值
  3692. for (int i = 0; i < list.Count; i++)
  3693. {
  3694. builder.MoveToCell(0, i + 1, 0, 0);
  3695. builder.Write(list[i].Name.ToString());
  3696. builder.MoveToCell(0, i + 1, 1, 0);
  3697. builder.Write(list[i].Sex.ToString());
  3698. builder.MoveToCell(0, i + 1, 2, 0);
  3699. builder.Write(list[i].DOB.ToString());
  3700. builder.MoveToCell(0, i + 1, 3, 0);
  3701. builder.Write(list[i].Job.ToString());
  3702. }
  3703. //删除多余行
  3704. while (tableOne.Rows.Count > list.Count + 1)
  3705. {
  3706. tableOne.Rows.RemoveAt(list.Count + 1);
  3707. }
  3708. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3709. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3710. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3711. doc.Save(filePath);
  3712. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3713. return Ok(JsonView(true, "操作成功!", Url));
  3714. }
  3715. else
  3716. {
  3717. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3718. }
  3719. }
  3720. catch (Exception ex)
  3721. {
  3722. return Ok(JsonView(false, ex.Message));
  3723. throw;
  3724. }
  3725. }
  3726. #endregion
  3727. #region 团组经理模块 出入境费用
  3728. ///// <summary>
  3729. ///// 团组模块 - 出入境费用
  3730. ///// </summary>
  3731. ///// <returns></returns>
  3732. //[HttpPost]
  3733. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3734. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3735. //{
  3736. // try
  3737. // {
  3738. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3739. // if (data.Code != 0)
  3740. // {
  3741. // return Ok(JsonView(false, data.Msg));
  3742. // }
  3743. // return Ok(JsonView(true, "查询成功!"));
  3744. // }
  3745. // catch (Exception ex)
  3746. // {
  3747. // return Ok(JsonView(false, ex.Message));
  3748. // throw;
  3749. // }
  3750. //}
  3751. /// <summary>
  3752. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3753. /// </summary>
  3754. /// <returns></returns>
  3755. [HttpPost]
  3756. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3757. public async Task<IActionResult> SetDayAndCostAreaChange()
  3758. {
  3759. try
  3760. {
  3761. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3762. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3763. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3764. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3765. foreach (var item in unite) //处理交集数据
  3766. {
  3767. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3768. }
  3769. foreach (var item in merge) //处理差集数据
  3770. {
  3771. int nationalTravelFeeId = 0;
  3772. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3773. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3774. else
  3775. {
  3776. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3777. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3778. }
  3779. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3780. }
  3781. //只更新dayAndCost 的 nationalTravelFeeId;
  3782. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3783. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3784. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3785. }
  3786. catch (Exception ex)
  3787. {
  3788. return Ok(JsonView(false, ex.Message));
  3789. throw;
  3790. }
  3791. }
  3792. /// <summary>
  3793. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3794. /// </summary>
  3795. /// <returns></returns>
  3796. [HttpPost]
  3797. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3798. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3799. {
  3800. try
  3801. {
  3802. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3803. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3804. //SetDataInfoView
  3805. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3806. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3807. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3808. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3809. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3810. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3811. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3812. //默认币种显示
  3813. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3814. {
  3815. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3816. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3817. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3818. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3819. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3820. };
  3821. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3822. if (_currencyRate.Count > 0)
  3823. {
  3824. foreach (var item in _currencyInfos)
  3825. {
  3826. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3827. if (rateInfo != null)
  3828. {
  3829. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3830. rate1 *= 1.035M;
  3831. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3832. }
  3833. }
  3834. }
  3835. return Ok(JsonView(true, "查询成功!", new
  3836. {
  3837. GroupNameData = groupNameData.Data,
  3838. CurrencyData = _CurrencyData,
  3839. WordTypeData = _WordTypeData,
  3840. ExcelTypeData = _ExcelTypeData,
  3841. CurrencyInit = _currencyInfos
  3842. }));
  3843. }
  3844. catch (Exception ex)
  3845. {
  3846. return Ok(JsonView(false, ex.Message));
  3847. throw;
  3848. }
  3849. }
  3850. /// <summary>
  3851. /// 团组模块 - 出入境费用
  3852. /// 实时汇率 tips
  3853. /// 签证费用 tips
  3854. /// </summary>
  3855. /// <returns></returns>
  3856. [HttpPost]
  3857. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3858. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3859. {
  3860. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3861. //默认币种显示
  3862. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3863. {
  3864. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3865. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3866. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3867. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3868. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3869. };
  3870. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3871. List<dynamic> reteInfos = new List<dynamic>();
  3872. if (_currencyRate.Count > 0)
  3873. {
  3874. foreach (var item in _currencyInfos)
  3875. {
  3876. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3877. if (rateInfo != null)
  3878. {
  3879. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3880. decimal rate1 = item.Rate;
  3881. rate1 *= 1.03M;
  3882. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3883. reteInfos.Add(new
  3884. {
  3885. currCode = item.CurrencyCode,
  3886. currName = item.CurrencyName,
  3887. rate = rate2,
  3888. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3889. });
  3890. }
  3891. }
  3892. }
  3893. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3894. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3895. return Ok(JsonView(true, "查询成功!", new
  3896. {
  3897. //GroupNameData = groupNameData.Data,
  3898. visaData = visaData.Data,
  3899. airData = airData.Data,
  3900. reteInfos = reteInfos
  3901. }));
  3902. }
  3903. /// <summary>
  3904. /// 团组模块 - 出入境费用 - Info
  3905. /// </summary>
  3906. /// <returns></returns>
  3907. [HttpPost]
  3908. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3909. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3910. {
  3911. try
  3912. {
  3913. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3914. if (data.Code != 0)
  3915. {
  3916. return Ok(JsonView(false, data.Msg));
  3917. }
  3918. return Ok(JsonView(true, "查询成功!", data.Data));
  3919. }
  3920. catch (Exception ex)
  3921. {
  3922. return Ok(JsonView(false, ex.Message));
  3923. }
  3924. }
  3925. /// <summary>
  3926. /// 团组模块 - 出入境费用 - Add And Update
  3927. /// </summary>
  3928. /// <returns></returns>
  3929. [HttpPost]
  3930. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3931. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3932. {
  3933. try
  3934. {
  3935. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3936. if (data.Code != 0)
  3937. {
  3938. return Ok(JsonView(false, data.Msg));
  3939. }
  3940. //生成默认文件pdf并且通知人员
  3941. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3942. {
  3943. DiId = dto.DiId,
  3944. ExportType = 1,
  3945. SubTypeId = 1005
  3946. }, "pdf");
  3947. //发送通知
  3948. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3949. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3950. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3951. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3952. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3953. return Ok(JsonView(true, data.Msg, data.Data));
  3954. }
  3955. catch (Exception ex)
  3956. {
  3957. return Ok(JsonView(false, ex.Message));
  3958. }
  3959. }
  3960. /// <summary>
  3961. /// 团组模块 - 出入境费用 - Confirm 费用
  3962. /// </summary>
  3963. /// <returns></returns>
  3964. [HttpPost]
  3965. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3966. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3967. {
  3968. //TODO:测试完毕需把对应的用户ID更改
  3969. //1、数据表添加字段
  3970. //2、更改字段接口()
  3971. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3972. //3、确认成功 给财务发送消息
  3973. if (_view.Code == 200)
  3974. {
  3975. if (dto.Type == 1)
  3976. {
  3977. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  3978. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  3979. }
  3980. }
  3981. return Ok(_view);
  3982. }
  3983. /// <summary>
  3984. /// 团组模块 - 出入境费用 - File downlaod
  3985. /// </summary>
  3986. /// <param name="dto"></param>
  3987. /// <returns></returns>
  3988. [HttpPost]
  3989. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3990. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3991. {
  3992. try
  3993. {
  3994. if (dto.DiId < 1)
  3995. {
  3996. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3997. }
  3998. if (dto.ExportType < 1)
  3999. {
  4000. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  4001. }
  4002. if (dto.SubTypeId < 1)
  4003. {
  4004. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  4005. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  4006. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  4007. 3 团组成员名单 1 团组成员名单"));
  4008. }
  4009. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4010. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  4011. if (_EnterExitCosts == null)
  4012. {
  4013. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  4014. }
  4015. //数据源
  4016. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  4017. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  4018. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  4019. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  4020. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  4021. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  4022. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  4023. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  4024. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  4025. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  4026. .Select((tcl, dc, cc) => new
  4027. {
  4028. Name = dc.LastName + dc.FirstName,
  4029. Sex = dc.Sex,
  4030. Birthday = dc.BirthDay,
  4031. Company = cc.CompanyFullName,
  4032. Job = dc.Job
  4033. })
  4034. .ToList();
  4035. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4036. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  4037. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  4038. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  4039. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  4040. if (dto.ExportType == 1) //明细表
  4041. {
  4042. if (dto.SubTypeId == 1005) //1005(默认明细表)
  4043. {
  4044. //获取模板
  4045. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  4046. //载入模板
  4047. Document doc = new Document(tempPath);
  4048. DocumentBuilder builder = new DocumentBuilder(doc);
  4049. //利用键值对存放数据
  4050. Dictionary<string, string> dic = new Dictionary<string, string>();
  4051. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  4052. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  4053. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  4054. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  4055. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  4056. string row1_1 = "";
  4057. if (_EnterExitCosts.Visa > 0)
  4058. {
  4059. //insidePayTotal += _EnterExitCosts.Visa;
  4060. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  4061. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  4062. {
  4063. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  4064. }
  4065. }
  4066. string row1_2 = "";
  4067. if (_EnterExitCosts.YiMiao > 0)
  4068. {
  4069. //insidePayTotal += _EnterExitCosts.YiMiao;
  4070. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  4071. }
  4072. if (_EnterExitCosts.HeSuan > 0)
  4073. {
  4074. //insidePayTotal += _EnterExitCosts.HeSuan;
  4075. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4076. }
  4077. if (_EnterExitCosts.Service > 0)
  4078. {
  4079. //insidePayTotal += _EnterExitCosts.Service;
  4080. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4081. }
  4082. string row1_3 = "";
  4083. if (_EnterExitCosts.Safe > 0)
  4084. {
  4085. //insidePayTotal += _EnterExitCosts.Safe;
  4086. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4087. }
  4088. if (_EnterExitCosts.Ticket > 0)
  4089. {
  4090. //insidePayTotal += _EnterExitCosts.Ticket;
  4091. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4092. }
  4093. string row1 = "";
  4094. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4095. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4096. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4097. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4098. dic.Add("Row1Str", row1);
  4099. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  4100. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  4101. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4102. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  4103. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4104. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4105. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4106. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  4107. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  4108. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  4109. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  4110. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  4111. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4112. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4113. #region 填充word模板书签内容
  4114. foreach (var key in dic.Keys)
  4115. {
  4116. builder.MoveToBookmark(key);
  4117. builder.Write(dic[key]);
  4118. }
  4119. #endregion
  4120. #region 填充word表格内容
  4121. ////获读取指定表格方法二
  4122. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4123. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4124. for (int i = 0; i < dac1.Count; i++)
  4125. {
  4126. Grp_DayAndCost dac = dac1[i];
  4127. if (dac == null) continue;
  4128. builder.MoveToCell(0, i, 0, 0);
  4129. builder.Write("第" + dac.Days.ToString() + "晚:");
  4130. builder.MoveToCell(0, i, 1, 0);
  4131. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4132. //builder.Write(dac.Place == null ? "" : dac.Place);
  4133. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4134. builder.MoveToCell(0, i, 2, 0);
  4135. builder.Write("费用标准:");
  4136. string curr = "";
  4137. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4138. if (currData != null)
  4139. {
  4140. curr = currData.Name;
  4141. }
  4142. builder.MoveToCell(0, i, 3, 0);
  4143. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4144. builder.MoveToCell(0, i, 4, 0);
  4145. builder.Write("费用小计:");
  4146. builder.MoveToCell(0, i, 5, 0);
  4147. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4148. }
  4149. //删除多余行
  4150. while (table1.Rows.Count > dac1.Count)
  4151. {
  4152. table1.Rows.RemoveAt(dac1.Count);
  4153. }
  4154. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4155. for (int i = 0; i < dac2.Count; i++)
  4156. {
  4157. Grp_DayAndCost dac = dac2[i];
  4158. if (dac == null) continue;
  4159. builder.MoveToCell(1, i, 0, 0);
  4160. builder.Write("第" + dac.Days.ToString() + "天:");
  4161. builder.MoveToCell(1, i, 1, 0);
  4162. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4163. builder.MoveToCell(1, i, 2, 0);
  4164. builder.Write("费用标准:");
  4165. string curr = "";
  4166. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4167. if (currData != null)
  4168. {
  4169. curr = currData.Name;
  4170. }
  4171. builder.MoveToCell(1, i, 3, 0);
  4172. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4173. builder.MoveToCell(1, i, 4, 0);
  4174. builder.Write("费用小计:");
  4175. builder.MoveToCell(1, i, 5, 0);
  4176. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4177. }
  4178. //删除多余行
  4179. while (table2.Rows.Count > dac2.Count)
  4180. {
  4181. table2.Rows.RemoveAt(dac2.Count);
  4182. }
  4183. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4184. for (int i = 0; i < dac3.Count; i++)
  4185. {
  4186. Grp_DayAndCost dac = dac3[i];
  4187. if (dac == null) continue;
  4188. builder.MoveToCell(2, i, 0, 0);
  4189. builder.Write("第" + dac.Days.ToString() + "天:");
  4190. builder.MoveToCell(2, i, 1, 0);
  4191. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4192. builder.MoveToCell(2, i, 2, 0);
  4193. builder.Write("费用标准:");
  4194. string curr = "";
  4195. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4196. if (currData != null)
  4197. {
  4198. curr = currData.Name;
  4199. }
  4200. builder.MoveToCell(2, i, 3, 0);
  4201. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4202. builder.MoveToCell(2, i, 4, 0);
  4203. builder.Write("费用小计:");
  4204. builder.MoveToCell(2, i, 5, 0);
  4205. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4206. }
  4207. //删除多余行
  4208. while (table3.Rows.Count > dac3.Count)
  4209. {
  4210. table3.Rows.RemoveAt(dac3.Count);
  4211. }
  4212. #endregion
  4213. //文件名
  4214. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4215. AsposeHelper.removewatermark_v2180();
  4216. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4217. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4218. return Ok(JsonView(true, "成功", new { Url = url }));
  4219. }
  4220. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4221. {
  4222. //获取模板
  4223. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4224. //载入模板
  4225. Document doc = new Document(tempPath);
  4226. DocumentBuilder builder = new DocumentBuilder(doc);
  4227. Dictionary<string, string> dic = new Dictionary<string, string>();
  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. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4257. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4258. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4259. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4260. {
  4261. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4262. dic.Add("Day", sp.Days.ToString());
  4263. }
  4264. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4265. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4266. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4267. //dic.Add("Names", Names);
  4268. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4269. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4270. decimal dac1totalPrice = 0.00M;
  4271. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4272. foreach (var dac in dac1)
  4273. {
  4274. if (dac.SubTotal == 0.00M)
  4275. {
  4276. continue;
  4277. }
  4278. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4279. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4280. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4281. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4282. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4283. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4284. builder.Write(currency);//币种
  4285. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4286. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4287. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4288. builder.Write("");//人数
  4289. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4290. builder.Write("");//天数
  4291. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4292. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4293. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4294. decimal rate = 0.00M;
  4295. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4296. builder.Write(rate.ToString("#0.0000"));//汇率
  4297. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4298. decimal rbmPrice = dac.SubTotal;
  4299. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4300. accommodationStartIndex++;
  4301. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4302. }
  4303. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4304. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4305. {
  4306. table1.Rows.RemoveAt(i - 1);
  4307. foodandotherStartIndex--;
  4308. }
  4309. if (dac2.Count == dac3.Count)//国家 币种 金额
  4310. {
  4311. for (int i = 0; i < dac2.Count; i++)
  4312. {
  4313. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4314. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4315. }
  4316. }
  4317. decimal dac2totalPrice = 0.00M;
  4318. foreach (var dac in dac2)
  4319. {
  4320. if (dac.SubTotal == 0)
  4321. {
  4322. continue;
  4323. }
  4324. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4325. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4326. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4327. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4328. builder.Write(currency);//币种
  4329. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4330. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4331. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4332. builder.Write("");//人数
  4333. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4334. builder.Write("");//天数
  4335. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4336. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4337. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4338. decimal rate = 0.00M;
  4339. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4340. builder.Write(rate.ToString("#0.0000"));//汇率
  4341. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4342. decimal rbmPrice = dac.SubTotal;
  4343. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4344. foodandotherStartIndex++;
  4345. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4346. }
  4347. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4348. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4349. {
  4350. table1.Rows.RemoveAt(i - 1);
  4351. }
  4352. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4353. string otherFeeStr = "";
  4354. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4355. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4356. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4357. if (otherFeeStr.Length > 0)
  4358. {
  4359. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4360. otherFeeStr = $"({otherFeeStr})";
  4361. dic.Add("OtherFeeStr", otherFeeStr);
  4362. }
  4363. //总计
  4364. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4365. //国际旅费
  4366. string outsideJJ = "";
  4367. string allPriceJJ = "";
  4368. if (_EnterExitCosts.SumJJC == 1)
  4369. {
  4370. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4371. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4372. }
  4373. string outsideGW = "";
  4374. string allPriceGW = "";
  4375. if (_EnterExitCosts.SumGWC == 1)
  4376. {
  4377. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4378. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4379. }
  4380. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4381. {
  4382. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4383. dic.Add("InTravelPrice", InTravelPriceStr);
  4384. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4385. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4386. }
  4387. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4388. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4389. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4390. foreach (var key in dic.Keys)
  4391. {
  4392. builder.MoveToBookmark(key);
  4393. builder.Write(dic[key]);
  4394. }
  4395. //模板文件名
  4396. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4397. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4398. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4399. return Ok(JsonView(true, "成功", new { Url = url }));
  4400. }
  4401. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4402. {
  4403. //获取模板
  4404. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4405. //载入模板
  4406. WorkbookDesigner designer = new WorkbookDesigner();
  4407. designer.Workbook = new Workbook(tempPath);
  4408. Dictionary<string, string> dic = new Dictionary<string, string>();
  4409. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4410. {
  4411. List<string> list = new List<string>();
  4412. try
  4413. {
  4414. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4415. foreach (var item in spilitArr)
  4416. {
  4417. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4418. var depCode = spDotandEmpty[2].Substring(0, 3);
  4419. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4420. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4421. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4422. list.Add(depName);
  4423. list.Add(arrName);
  4424. }
  4425. list = list.Distinct().ToList();
  4426. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4427. }
  4428. catch (Exception)
  4429. {
  4430. dic.Add("ReturnCode", "行程录入不正确!");
  4431. }
  4432. }
  4433. else
  4434. {
  4435. dic.Add("ReturnCode", "未录入行程!");
  4436. }
  4437. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4438. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4439. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4440. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4441. {
  4442. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4443. dic.Add("Day", sp.Days.ToString());
  4444. }
  4445. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4446. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4447. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4448. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4449. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4450. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4451. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4452. designer.SetDataSource("Name", Names);
  4453. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4454. designer.SetDataSource("Day", dic["Day"] + "天");
  4455. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4456. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4457. int startIndex = 10;
  4458. const int startIndexcopy = 10;
  4459. if (dac2.Count == dac3.Count)//国家 币种 金额
  4460. {
  4461. for (int i = 0; i < dac2.Count; i++)
  4462. {
  4463. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4464. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4465. }
  4466. }
  4467. DataTable dtdac1 = new DataTable();
  4468. List<string> place = new List<string>();
  4469. dtdac1.Columns.AddRange(new DataColumn[] {
  4470. new DataColumn(){ ColumnName = "city"},
  4471. new DataColumn(){ ColumnName = "curr"},
  4472. new DataColumn(){ ColumnName = "criterion"},
  4473. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4474. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4475. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4476. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4477. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4478. });
  4479. DataTable dtdac2 = new DataTable();
  4480. dtdac2.Columns.AddRange(new DataColumn[] {
  4481. new DataColumn(){ ColumnName = "city"},
  4482. new DataColumn(){ ColumnName = "curr"},
  4483. new DataColumn(){ ColumnName = "criterion"},
  4484. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4485. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4486. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4487. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4488. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4489. });
  4490. dtdac1.TableName = "tb1";
  4491. dtdac2.TableName = "tb2";
  4492. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4493. foreach (var item in dac1)
  4494. {
  4495. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4496. if (place.Contains(item.Place))
  4497. {
  4498. continue;
  4499. }
  4500. DataRow row = dtdac1.NewRow();
  4501. row["city"] = item.Place;
  4502. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4503. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4504. row["curr"] = currency;
  4505. row["rate"] = rate.ToString("#0.0000");
  4506. row["criterion"] = item.Cost.ToString("#0.00");
  4507. row["number"] = 1;
  4508. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4509. //row["costRMB"] = rbmPrice;
  4510. dtdac1.Rows.Add(row);
  4511. place.Add(item.Place);
  4512. }
  4513. place = new List<string>();
  4514. foreach (var item in dac2)
  4515. {
  4516. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4517. if (place.Contains(item.Place))
  4518. {
  4519. continue;
  4520. }
  4521. DataRow row = dtdac2.NewRow();
  4522. row["city"] = item.Place;
  4523. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4524. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4525. row["curr"] = currency;
  4526. row["rate"] = rate.ToString("#0.0000");
  4527. row["criterion"] = item.Cost.ToString("#0.00");
  4528. row["number"] = 1;
  4529. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4530. //row["cost"] = item.SubTotal;
  4531. //row["costRMB"] = rbmPrice;
  4532. dtdac2.Rows.Add(row);
  4533. place.Add(item.Place);
  4534. //dac2totalPrice += rbmPrice;
  4535. }
  4536. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4537. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4538. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4539. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4540. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4541. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4542. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4543. string cellStr = $" 5.其他费用(";
  4544. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4545. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4546. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4547. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4548. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4549. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4550. if (cellStr.Length > 8)
  4551. {
  4552. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4553. }
  4554. cellStr += ")";
  4555. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4556. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4557. decimal pxFee = dac4.Sum(it => it.Cost);
  4558. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4559. string celllastStr1 = "";
  4560. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4561. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4562. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4563. celllastStr1 += $",国际旅费 元";
  4564. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4565. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4566. designer.SetDataSource("cell4Str", cell4Str);
  4567. designer.SetDataSource("cellStr", cellStr);
  4568. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4569. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4570. designer.SetDataSource("celllastStr", celllastStr);
  4571. Workbook wb = designer.Workbook;
  4572. var sheet = wb.Worksheets[0];
  4573. //绑定datatable数据集
  4574. designer.SetDataSource(dtdac1);
  4575. designer.SetDataSource(dtdac2);
  4576. designer.Process();
  4577. var rowStart = dtdac1.Rows.Count;
  4578. while (rowStart > 0)
  4579. {
  4580. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4581. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4582. startIndex++;
  4583. rowStart--;
  4584. }
  4585. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4586. startIndex += 1; //总计行
  4587. rowStart = dtdac2.Rows.Count;
  4588. while (rowStart > 0)
  4589. {
  4590. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4591. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4592. startIndex++;
  4593. rowStart--;
  4594. }
  4595. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4596. wb.CalculateFormula(true);
  4597. //模板文件名
  4598. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4599. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4600. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4601. return Ok(JsonView(true, "成功", new { Url = url }));
  4602. }
  4603. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4604. {
  4605. //获取模板
  4606. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4607. //载入模板
  4608. Document doc = new Document(tempPath);
  4609. DocumentBuilder builder = new DocumentBuilder(doc);
  4610. Dictionary<string, string> dic = new Dictionary<string, string>();
  4611. dic.Add("GroupName", _DelegationInfo.TeamName);
  4612. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4613. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4614. string missionLeaderJob = "";//负责人job
  4615. int groupNumber = 0; //团人数
  4616. if (DeleClientList.Count > 0)
  4617. {
  4618. missionLeader = DeleClientList[0]?.Name ?? "";
  4619. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4620. }
  4621. dic.Add("MissionLeader", missionLeader); //团负责人
  4622. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4623. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4624. #region MyRegion
  4625. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4626. //{
  4627. // List<string> list = new List<string>();
  4628. // try
  4629. // {
  4630. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4631. // foreach (var item in spilitArr)
  4632. // {
  4633. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4634. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4635. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4636. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4637. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4638. // list.Add(depName);
  4639. // list.Add(arrName);
  4640. // }
  4641. // list = list.Distinct().ToList();
  4642. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4643. // }
  4644. // catch (Exception)
  4645. // {
  4646. // dic.Add("ReturnCode", "行程录入不正确!");
  4647. // }
  4648. //}
  4649. //else
  4650. //{
  4651. // dic.Add("ReturnCode", "未录入行程!");
  4652. //}
  4653. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4654. dic.Add("ReturnCode", string.Join("、", countrys));
  4655. #endregion
  4656. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4657. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4658. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4659. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4660. //{
  4661. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4662. // dic.Add("Day", sp.Days.ToString());
  4663. //}
  4664. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4665. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4666. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4667. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4668. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4669. //培训人员名单
  4670. int cultivateRowIndex = 7;
  4671. foreach (var item in DeleClientList)
  4672. {
  4673. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4674. builder.Write(item.Name);
  4675. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4676. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4677. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4678. string birthDay = "";
  4679. if (item.Birthday != null)
  4680. {
  4681. DateTime dt = Convert.ToDateTime(item.Birthday);
  4682. birthDay = $"{dt.Year}.{dt.Month}";
  4683. }
  4684. builder.Write(birthDay);
  4685. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4686. builder.Write(item.Company);
  4687. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4688. builder.Write(item.Job);
  4689. cultivateRowIndex++;
  4690. }
  4691. //删除多余行
  4692. //cultivateRowIndex -= 2;
  4693. int delRows = 10 + 7 - cultivateRowIndex;
  4694. if (delRows > 0)
  4695. {
  4696. for (int i = 0; i < delRows; i++)
  4697. {
  4698. table1.Rows.RemoveAt(cultivateRowIndex);
  4699. //cultivateRowIndex++;
  4700. }
  4701. }
  4702. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4703. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4704. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4705. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4706. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4707. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4708. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4709. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4710. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4711. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4712. //其他费用
  4713. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4714. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4715. //其他费用合计
  4716. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4717. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4718. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4719. //公务舱合计
  4720. //国际旅费
  4721. string outsideJJ = "";
  4722. string allPriceJJ = "";
  4723. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4724. {
  4725. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4726. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4727. }
  4728. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4729. {
  4730. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4731. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4732. }
  4733. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4734. {
  4735. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4736. dic.Add("AirFeeTotal", airFeeTotalStr);
  4737. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4738. dic.Add("FeeTotal", feeTotalStr);
  4739. }
  4740. foreach (var key in dic.Keys)
  4741. {
  4742. builder.MoveToBookmark(key);
  4743. builder.Write(dic[key]);
  4744. }
  4745. //模板文件名
  4746. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4747. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4748. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4749. return Ok(JsonView(true, "成功", new { Url = url }));
  4750. }
  4751. }
  4752. else if (dto.ExportType == 2) //表格
  4753. {
  4754. //利用键值对存放数据
  4755. Dictionary<string, string> dic = new Dictionary<string, string>();
  4756. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4757. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4758. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4759. dic.Add("Day", sp.Days.ToString());
  4760. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4761. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4762. {
  4763. //获取模板
  4764. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4765. //载入模板
  4766. Document doc = new Document(tempPath);
  4767. DocumentBuilder builder = new DocumentBuilder(doc);
  4768. dic.Add("TeamName", _DelegationInfo.TeamName);
  4769. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4770. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4771. string missionLeaderName = "",
  4772. missionLeaderJob = "";
  4773. if (DeleClientList.Count > 0)
  4774. {
  4775. missionLeaderName = DeleClientList[0].Name;
  4776. missionLeaderJob = DeleClientList[0].Job;
  4777. }
  4778. dic.Add("MissionLeaderName", missionLeaderName);
  4779. dic.Add("MissionLeaderJob", missionLeaderJob);
  4780. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4781. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4782. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4783. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4784. int rowCount = 10;//总人数行
  4785. int startRowIndex = 7; //起始行
  4786. for (int i = 0; i < DeleClientList.Count; i++)
  4787. {
  4788. builder.MoveToCell(0, startRowIndex, 0, 0);
  4789. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4790. builder.MoveToCell(0, startRowIndex, 1, 0);
  4791. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4792. builder.Write(sex);//性别
  4793. builder.MoveToCell(0, startRowIndex, 2, 0);
  4794. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4795. builder.MoveToCell(0, startRowIndex, 3, 0);
  4796. builder.Write(DeleClientList[i].Company);//工作单位
  4797. builder.MoveToCell(0, startRowIndex, 4, 0);
  4798. builder.Write(DeleClientList[i].Job);//职务及级别
  4799. builder.MoveToCell(0, startRowIndex, 5, 0);
  4800. builder.Write("");//人员属性
  4801. builder.MoveToCell(0, startRowIndex, 6, 0);
  4802. builder.Write("");//上次出国时间
  4803. startRowIndex++;
  4804. }
  4805. int nullRow = rowCount - DeleClientList.Count;//空行
  4806. for (int i = 0; i < nullRow; i++)
  4807. {
  4808. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4809. }
  4810. foreach (var key in dic.Keys)
  4811. {
  4812. builder.MoveToBookmark(key);
  4813. builder.Write(dic[key]);
  4814. }
  4815. //模板文件名
  4816. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4817. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4818. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4819. return Ok(JsonView(true, "成功", new { Url = url }));
  4820. }
  4821. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4822. {
  4823. //获取模板
  4824. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4825. //载入模板
  4826. Document doc = new Document(tempPath);
  4827. DocumentBuilder builder = new DocumentBuilder(doc);
  4828. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4829. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4830. dic.Add("Names", Names);
  4831. int accommodationRows = 12, foodandotherRows = 12;
  4832. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4833. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4834. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4835. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4836. int accommodationStartIndex = 6;
  4837. decimal dac1totalPrice = 0.00M;
  4838. foreach (var dac in dac1)
  4839. {
  4840. if (dac.SubTotal == 0)
  4841. {
  4842. continue;
  4843. }
  4844. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4845. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4846. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4847. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4848. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4849. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4850. builder.Write(currency);//币种
  4851. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4852. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4853. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4854. builder.Write("");//人数
  4855. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4856. builder.Write("");//天数
  4857. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4858. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4859. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4860. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4861. builder.Write(rate.ToString("#0.0000"));//汇率
  4862. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4863. decimal rbmPrice = rate * dac.SubTotal;
  4864. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4865. accommodationStartIndex++;
  4866. dac1totalPrice += rbmPrice;
  4867. }
  4868. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4869. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4870. builder.Write("小计");
  4871. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4872. builder.Write(dac1totalPrice.ToString("#0.00"));
  4873. accommodationStartIndex++;
  4874. int nullRow = accommodationRows - dac1.Count;
  4875. //删除空行
  4876. //if (nullRow > 0)
  4877. //{
  4878. // int rowIndex = accommodationStartIndex;
  4879. // for (int i = 0; i < nullRow; i++)
  4880. // {
  4881. // Row row = table1.Rows[rowIndex];
  4882. // row.Remove();
  4883. // rowIndex++;
  4884. // }
  4885. //}
  4886. if (dac2.Count == dac3.Count)//国家 币种 金额
  4887. {
  4888. for (int i = 0; i < dac2.Count; i++)
  4889. {
  4890. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4891. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4892. }
  4893. }
  4894. int foodandotherStartIndex = 19;//
  4895. decimal dac2totalPrice = 0.00M;
  4896. foreach (var dac in dac2)
  4897. {
  4898. if (dac.SubTotal == 0)
  4899. {
  4900. continue;
  4901. }
  4902. //foodandotherStartIndex = 12;
  4903. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4904. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4905. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4906. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4907. builder.Write(currency);//币种
  4908. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4909. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4910. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4911. builder.Write("");//人数
  4912. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4913. builder.Write("");//天数
  4914. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4915. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4916. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4917. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4918. builder.Write(rate.ToString("#0.0000"));//汇率
  4919. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4920. decimal rbmPrice = rate * dac.SubTotal;
  4921. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4922. foodandotherStartIndex++;
  4923. dac2totalPrice += rbmPrice;
  4924. }
  4925. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4926. //删除空行
  4927. if (dac2.Count < foodandotherRows)
  4928. {
  4929. //int nullRow = accommodationRows - dac2.Count;
  4930. //while (table2.Rows.Count > dac2.Count)
  4931. //{
  4932. // table2.Rows.RemoveAt(dac2.Count);
  4933. //}
  4934. }
  4935. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4936. string otherFeeStr = "";
  4937. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4938. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4939. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4940. if (otherFeeStr.Length > 0)
  4941. {
  4942. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4943. otherFeeStr = $"({otherFeeStr})";
  4944. dic.Add("OtherFeeStr", otherFeeStr);
  4945. }
  4946. foreach (var key in dic.Keys)
  4947. {
  4948. builder.MoveToBookmark(key);
  4949. builder.Write(dic[key]);
  4950. }
  4951. //模板文件名
  4952. string strFileName = $"省级单位出(境)经费报销单.docx";
  4953. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4954. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4955. return Ok(JsonView(true, "成功", new { Url = url }));
  4956. }
  4957. }
  4958. else if (dto.ExportType == 3)
  4959. {
  4960. if (dto.SubTypeId == 1) //团组成员名单
  4961. {
  4962. if (DeleClientList.Count < 1)
  4963. {
  4964. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4965. }
  4966. //获取模板
  4967. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4968. //载入模板
  4969. Document doc = new Document(tempPath);
  4970. DocumentBuilder builder = new DocumentBuilder(doc);
  4971. //获取word里所有表格
  4972. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4973. //获取所填表格的序数
  4974. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4975. var rowStart = tableOne.Rows[0]; //获取第1行
  4976. //循环赋值
  4977. for (int i = 0; i < DeleClientList.Count; i++)
  4978. {
  4979. builder.MoveToCell(0, i + 1, 0, 0);
  4980. builder.Write(DeleClientList[i].Name);
  4981. builder.MoveToCell(0, i + 1, 1, 0);
  4982. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4983. builder.Write(sex);
  4984. builder.MoveToCell(0, i + 1, 2, 0);
  4985. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4986. builder.MoveToCell(0, i + 1, 3, 0);
  4987. builder.Write(DeleClientList[i].Company);
  4988. builder.MoveToCell(0, i + 1, 4, 0);
  4989. builder.Write(DeleClientList[i].Job);
  4990. }
  4991. //删除多余行
  4992. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4993. {
  4994. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4995. }
  4996. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4997. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4998. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4999. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5000. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5001. return Ok(JsonView(true, "成功", new { Url = url }));
  5002. }
  5003. }
  5004. return Ok(JsonView(false, "操作失败!"));
  5005. }
  5006. catch (Exception ex)
  5007. {
  5008. return Ok(JsonView(false, ex.Message));
  5009. }
  5010. }
  5011. /// <summary>
  5012. /// 获取三公费用标准city
  5013. /// </summary>
  5014. /// <param name="placeData"></param>
  5015. /// <param name="nationalTravelFeeId"></param>
  5016. /// <returns></returns>
  5017. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  5018. {
  5019. string _city = string.Empty;
  5020. if (placeData.Count < 1) return _city;
  5021. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  5022. if (data == null) return _city;
  5023. string country = data.Country;
  5024. string city = data.City;
  5025. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  5026. else _city = city;
  5027. return _city;
  5028. }
  5029. /// <summary>
  5030. /// 团组模块 - 出入境费用 - 明细表导出
  5031. /// </summary>
  5032. /// <returns></returns>
  5033. [HttpPost]
  5034. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5035. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  5036. {
  5037. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  5038. if (data.Code != 0)
  5039. {
  5040. return Ok(JsonView(false, data.Msg));
  5041. }
  5042. return Ok(JsonView(true, data.Msg, data.Data));
  5043. }
  5044. /// <summary>
  5045. /// 团组模块 - 出入境费用 - 一键清空
  5046. /// </summary>
  5047. /// <returns></returns>
  5048. [HttpPost]
  5049. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5050. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  5051. {
  5052. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  5053. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  5054. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  5055. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  5056. if (_view.Code == 0)
  5057. {
  5058. return Ok(JsonView(true, "操作成功"));
  5059. }
  5060. return Ok(JsonView(false, "操作失败"));
  5061. }
  5062. /// <summary>
  5063. /// 团组模块 - 出入境费用 - 子项删除
  5064. /// </summary>
  5065. /// <returns></returns>
  5066. [HttpPost]
  5067. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5068. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  5069. {
  5070. try
  5071. {
  5072. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  5073. if (data.Code != 0)
  5074. {
  5075. return Ok(JsonView(false, data.Msg));
  5076. }
  5077. return Ok(JsonView(true, "操作成功!", data.Data));
  5078. }
  5079. catch (Exception ex)
  5080. {
  5081. return Ok(JsonView(false, ex.Message));
  5082. }
  5083. }
  5084. /// <summary>
  5085. /// 团组模块 - 出入境国家费用标准 List
  5086. /// </summary>
  5087. /// <returns></returns>
  5088. [HttpPost]
  5089. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5090. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5091. {
  5092. try
  5093. {
  5094. Stopwatch sw = new Stopwatch();
  5095. sw.Start();
  5096. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5097. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5098. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5099. Where gntf.Isdel = 0");
  5100. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5101. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5102. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5103. //foreach (var item in nationalTravel)
  5104. //{
  5105. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5106. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5107. // if (otherData != null)
  5108. // {
  5109. // cityData.Remove(otherData);
  5110. // cityData.Add(otherData);
  5111. // }
  5112. // nationalTravelFeeData1.Add(new
  5113. // {
  5114. // Country = item.Country,
  5115. // CityData = cityData
  5116. // });
  5117. //}
  5118. sw.Stop();
  5119. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5120. }
  5121. catch (Exception ex)
  5122. {
  5123. return Ok(JsonView(false, ex.Message));
  5124. throw;
  5125. }
  5126. }
  5127. /// <summary>
  5128. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5129. /// </summary>
  5130. /// <returns></returns>
  5131. [HttpPost]
  5132. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5133. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5134. {
  5135. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5136. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5137. List<string> countryData = new List<string>();
  5138. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5139. countryData = countryData.Distinct().ToList();
  5140. List<dynamic> dataSource = new List<dynamic>();
  5141. foreach (var item in countryData)
  5142. {
  5143. List<string> cityData1 = new List<string>();
  5144. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5145. var countryData2 = new
  5146. {
  5147. CountryName = item,
  5148. CityData = cityData1
  5149. };
  5150. dataSource.Add(countryData2);
  5151. }
  5152. return Ok(JsonView(true, "查询成功!", dataSource));
  5153. }
  5154. /// <summary>
  5155. /// 团组模块 - 出入境国家费用标准 Page List
  5156. /// </summary>
  5157. /// <returns></returns>
  5158. [HttpPost]
  5159. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5160. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5161. {
  5162. int portId = dto.PortType;
  5163. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5164. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5165. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5166. string whereSql = string.Empty;
  5167. if (!string.IsNullOrEmpty(dto.Country))
  5168. {
  5169. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5170. }
  5171. if (!string.IsNullOrEmpty(dto.City))
  5172. {
  5173. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5174. }
  5175. string pageSql = string.Format(@"Select * From (
  5176. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5177. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5178. From Grp_NationalTravelFee gntf
  5179. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5180. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5181. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5182. RefAsync<int> total = 0;
  5183. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5184. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5185. }
  5186. /// <summary>
  5187. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5188. /// </summary>
  5189. /// <returns></returns>
  5190. [HttpPost]
  5191. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5192. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5193. {
  5194. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5195. int portId = dto.PortType;
  5196. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5197. string whereSql = string.Empty;
  5198. if (!string.IsNullOrEmpty(dto.Country))
  5199. {
  5200. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5201. }
  5202. if (!string.IsNullOrEmpty(dto.City))
  5203. {
  5204. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5205. }
  5206. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5207. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5208. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5209. From Grp_NationalTravelFee gntf
  5210. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5211. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5212. Where gntf.Isdel = 0 {0} ", whereSql);
  5213. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5214. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5215. }
  5216. /// <summary>
  5217. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5218. /// </summary>
  5219. /// <returns></returns>
  5220. [HttpPost]
  5221. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5222. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5223. {
  5224. try
  5225. {
  5226. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5227. if (data.Code != 0)
  5228. {
  5229. return Ok(JsonView(false, data.Msg));
  5230. }
  5231. return Ok(JsonView(true, "操作成功!", data.Data));
  5232. }
  5233. catch (Exception ex)
  5234. {
  5235. return Ok(JsonView(false, ex.Message));
  5236. }
  5237. }
  5238. /// <summary>
  5239. /// 团组模块 - 出入境国家费用标准 - Del
  5240. /// </summary>
  5241. /// <returns></returns>
  5242. [HttpPost]
  5243. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5244. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5245. {
  5246. try
  5247. {
  5248. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5249. {
  5250. Id = dto.Id,
  5251. DeleteUserId = dto.DeleteUserId,
  5252. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5253. IsDel = 1
  5254. };
  5255. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5256. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5257. .WhereColumns(it => new { it.Id })
  5258. .ExecuteCommandAsync();
  5259. if (delStatus <= 0)
  5260. {
  5261. return Ok(JsonView(false, "删除失败!"));
  5262. }
  5263. return Ok(JsonView(true, "操作成功!"));
  5264. }
  5265. catch (Exception ex)
  5266. {
  5267. return Ok(JsonView(false, ex.Message));
  5268. }
  5269. }
  5270. #endregion
  5271. #region 签证费用录入
  5272. /// <summary>
  5273. /// 根据diid查询签证费用列表
  5274. /// </summary>
  5275. /// <param name="dto"></param>
  5276. /// <returns></returns>
  5277. [HttpPost]
  5278. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5279. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5280. {
  5281. try
  5282. {
  5283. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5284. if (groupData.Code != 0)
  5285. {
  5286. return Ok(JsonView(false, groupData.Msg));
  5287. }
  5288. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5289. }
  5290. catch (Exception ex)
  5291. {
  5292. return Ok(JsonView(false, ex.Message));
  5293. }
  5294. }
  5295. /// <summary>
  5296. /// 根据签证费用Id查询单条数据及c表数据
  5297. /// </summary>
  5298. /// <param name="dto"></param>
  5299. /// <returns></returns>
  5300. [HttpPost]
  5301. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5302. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5303. {
  5304. try
  5305. {
  5306. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5307. if (groupData.Code != 0)
  5308. {
  5309. return Ok(JsonView(false, groupData.Msg));
  5310. }
  5311. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5312. }
  5313. catch (Exception ex)
  5314. {
  5315. return Ok(JsonView(false, ex.Message));
  5316. }
  5317. }
  5318. /// <summary>
  5319. /// 签证费用删除
  5320. /// </summary>
  5321. /// <param name="dto"></param>
  5322. /// <returns></returns>
  5323. [HttpPost]
  5324. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5325. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5326. {
  5327. _sqlSugar.BeginTran();
  5328. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5329. if (!res)
  5330. {
  5331. _sqlSugar.RollbackTran();
  5332. return Ok(JsonView(false, "删除失败"));
  5333. }
  5334. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5335. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5336. .SetColumns(a => new Grp_CreditCardPayment()
  5337. {
  5338. IsDel = 1,
  5339. DeleteUserId = dto.DeleteUserId,
  5340. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5341. }).ExecuteCommand();
  5342. if (resSub < 1)
  5343. {
  5344. _sqlSugar.RollbackTran();
  5345. return Ok(JsonView(false, "删除失败"));
  5346. }
  5347. _sqlSugar.CommitTran();
  5348. return Ok(JsonView(true, "删除成功!"));
  5349. }
  5350. /// <summary>
  5351. /// 签证费用录入下拉框初始化
  5352. /// </summary>
  5353. /// <returns></returns>
  5354. [HttpPost]
  5355. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5356. public async Task<IActionResult> VisaPriceAddSelect()
  5357. {
  5358. try
  5359. {
  5360. //支付方式
  5361. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5362. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5363. //币种
  5364. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5365. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5366. //乘客类型
  5367. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5368. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5369. //卡类型
  5370. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5371. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5372. var data = new
  5373. {
  5374. Payment = _Payment,
  5375. CurrencyList = _CurrencyList,
  5376. PassengerType = _PassengerType,
  5377. BankCard = _BankCard
  5378. };
  5379. return Ok(JsonView(true, "查询成功!", data));
  5380. }
  5381. catch (Exception ex)
  5382. {
  5383. return Ok(JsonView(false, "程序错误!"));
  5384. throw;
  5385. }
  5386. }
  5387. /// <summary>
  5388. /// 签证费用录入操作(Status:1.新增,2.修改)
  5389. /// </summary>
  5390. /// <param name="dto"></param>
  5391. /// <returns></returns>
  5392. [HttpPost]
  5393. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5394. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5395. {
  5396. try
  5397. {
  5398. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5399. if (groupData.Code != 0)
  5400. {
  5401. return Ok(JsonView(false, groupData.Msg));
  5402. }
  5403. #region 应用推送
  5404. try
  5405. {
  5406. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5407. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5408. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5409. }
  5410. catch (Exception ex)
  5411. {
  5412. }
  5413. #endregion
  5414. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5415. }
  5416. catch (Exception ex)
  5417. {
  5418. return Ok(JsonView(false, ex.Message));
  5419. }
  5420. }
  5421. #endregion
  5422. #region op费用录入
  5423. /// <summary>
  5424. /// 根据diid查询op费用列表
  5425. /// </summary>
  5426. /// <param name="dto"></param>
  5427. /// <returns></returns>
  5428. [HttpPost]
  5429. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5430. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5431. {
  5432. try
  5433. {
  5434. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5435. if (groupData.Code != 0)
  5436. {
  5437. return Ok(JsonView(false, groupData.Msg));
  5438. }
  5439. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5440. }
  5441. catch (Exception ex)
  5442. {
  5443. return Ok(JsonView(false, ex.Message));
  5444. }
  5445. }
  5446. /// <summary>
  5447. /// 根据op费用Id查询单条数据及c表数据
  5448. /// </summary>
  5449. /// <param name="dto"></param>
  5450. /// <returns></returns>
  5451. [HttpPost]
  5452. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5453. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5454. {
  5455. try
  5456. {
  5457. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5458. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5459. var data = new
  5460. {
  5461. CarTouristGuideGround = _groupData,
  5462. CreditCardPayment = _creditCardPayment
  5463. };
  5464. return Ok(JsonView(true, "查询成功!", data));
  5465. }
  5466. catch (Exception ex)
  5467. {
  5468. return Ok(JsonView(false, "程序错误!"));
  5469. }
  5470. }
  5471. /// <summary>
  5472. /// op费用删除
  5473. /// </summary>
  5474. /// <param name="dto"></param>
  5475. /// <returns></returns>
  5476. [HttpPost]
  5477. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5478. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5479. {
  5480. try
  5481. {
  5482. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5483. if (!res)
  5484. {
  5485. return Ok(JsonView(false, "删除失败"));
  5486. }
  5487. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5488. {
  5489. IsDel = 1,
  5490. DeleteUserId = dto.DeleteUserId,
  5491. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5492. }).ExecuteCommandAsync();
  5493. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5494. {
  5495. IsDel = 1,
  5496. DeleteUserId = dto.DeleteUserId,
  5497. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5498. }).ExecuteCommandAsync();
  5499. return Ok(JsonView(true, "删除成功!"));
  5500. }
  5501. catch (Exception ex)
  5502. {
  5503. return Ok(JsonView(false, "程序错误!"));
  5504. throw;
  5505. }
  5506. }
  5507. /// <summary>
  5508. /// op费用录入操作(Status:1.新增,2.修改)
  5509. /// </summary>
  5510. /// <param name="dto"></param>
  5511. /// <returns></returns>
  5512. [HttpPost]
  5513. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5514. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5515. {
  5516. try
  5517. {
  5518. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5519. if (groupData.Code != 0)
  5520. {
  5521. return Ok(JsonView(false, groupData.Msg));
  5522. }
  5523. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5524. }
  5525. catch (Exception ex)
  5526. {
  5527. return Ok(JsonView(false, ex.Message));
  5528. }
  5529. }
  5530. /// <summary>
  5531. /// 填写费用详细页面初始化绑定
  5532. /// </summary>
  5533. /// <param name="dto"></param>
  5534. /// <returns></returns>
  5535. [HttpPost]
  5536. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5537. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5538. {
  5539. try
  5540. {
  5541. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5542. if (groupData.Code != 0)
  5543. {
  5544. return Ok(JsonView(false, groupData.Msg));
  5545. }
  5546. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5547. }
  5548. catch (Exception ex)
  5549. {
  5550. return Ok(JsonView(false, ex.Message));
  5551. }
  5552. }
  5553. /// <summary>
  5554. /// 根据op费用Id查询详细数据
  5555. /// </summary>
  5556. /// <param name="dto"></param>
  5557. /// <returns></returns>
  5558. [HttpPost]
  5559. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5560. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5561. {
  5562. try
  5563. {
  5564. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5565. if (groupData.Code != 0)
  5566. {
  5567. return Ok(JsonView(false, groupData.Msg));
  5568. }
  5569. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5570. }
  5571. catch (Exception ex)
  5572. {
  5573. return Ok(JsonView(false, ex.Message));
  5574. }
  5575. }
  5576. /// <summary>
  5577. /// OP费用录入填写详情
  5578. /// </summary>
  5579. /// <param name="dto"></param>
  5580. /// <returns></returns>
  5581. [HttpPost]
  5582. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5583. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5584. {
  5585. try
  5586. {
  5587. #region 参数校验
  5588. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5589. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5590. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5591. #endregion
  5592. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5593. if (groupData.Code != 0)
  5594. {
  5595. return Ok(JsonView(false, groupData.Msg));
  5596. }
  5597. //自动审核
  5598. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5599. #region 应用推送
  5600. try
  5601. {
  5602. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5603. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5604. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5605. }
  5606. catch (Exception ex)
  5607. {
  5608. }
  5609. #endregion
  5610. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5611. }
  5612. catch (Exception ex)
  5613. {
  5614. return Ok(JsonView(false, ex.Message));
  5615. }
  5616. }
  5617. /// <summary>
  5618. /// 获取三公详细所有城市
  5619. /// </summary>
  5620. /// <returns></returns>
  5621. [HttpGet]
  5622. public IActionResult OpCarCityResult()
  5623. {
  5624. var jw = JsonView(false);
  5625. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5626. {
  5627. x.Id,
  5628. x.Country,
  5629. x.City,
  5630. }).ToList();
  5631. if (data.Count > 0)
  5632. {
  5633. jw = JsonView(true, "获取成功!", data);
  5634. }
  5635. else
  5636. {
  5637. jw.Msg = "城市数据为空!";
  5638. jw.Data = new string[0];
  5639. }
  5640. return Ok(jw);
  5641. }
  5642. /// <summary>
  5643. /// 导出地接费用明细
  5644. /// </summary>
  5645. /// <param name="dto"></param>
  5646. /// <returns></returns>
  5647. [HttpPost]
  5648. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5649. {
  5650. var jw = JsonView(false);
  5651. if (dto.Diid < 1)
  5652. {
  5653. jw.Msg = "请输入正确的diid!";
  5654. return Ok(jw);
  5655. }
  5656. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5657. if (group == null)
  5658. {
  5659. jw.Msg = "未找到团组信息!";
  5660. return Ok(jw);
  5661. }
  5662. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5663. if (localGuideArr.Count == 0)
  5664. {
  5665. jw.Msg = "该团组暂无地接信息!";
  5666. return Ok(jw);
  5667. }
  5668. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5669. var overspendSoure = new Dictionary<int, int>
  5670. {
  5671. { 91, 982 }, //车
  5672. { 92 , 1059} ,//导游
  5673. { 994 , 1073}, //翻译
  5674. { 988 , 1074 }, //早餐
  5675. { 93 , 1075 }, //午餐
  5676. { 989 , 1076 }, //晚餐
  5677. };
  5678. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5679. foreach (var groupArr in localGroup)
  5680. {
  5681. var keyValue = groupArr.Key;
  5682. if (int.TryParse(keyValue, out int cityid))
  5683. {
  5684. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5685. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5686. }
  5687. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5688. foreach (var item in groupArr)
  5689. {
  5690. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5691. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5692. new Grp_CarTouristGuideGroundReservationsContentExtend
  5693. {
  5694. Count = a.Count,
  5695. CreateTime = a.CreateTime,
  5696. CreateUserId = a.CreateUserId,
  5697. CTGGRId = a.CTGGRId,
  5698. Currency = a.Currency,
  5699. DatePrice = a.DatePrice,
  5700. DeleteTime = a.DeleteTime,
  5701. DeleteUserId = a.DeleteUserId,
  5702. DiId = a.DiId,
  5703. Id = a.Id,
  5704. IsDel = a.IsDel,
  5705. Price = a.Price,
  5706. PriceContent = a.PriceContent,
  5707. Remark = a.Remark,
  5708. SId = a.SId,
  5709. SidName = b.Name,
  5710. Units = a.Units,
  5711. }
  5712. ).ToList();
  5713. if (content.Count > 0)
  5714. {
  5715. contentArr.Add(content);
  5716. }
  5717. }
  5718. //open excel
  5719. //set excel
  5720. //save excel
  5721. try
  5722. {
  5723. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5724. IWorkbook workbook;
  5725. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5726. {
  5727. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5728. }
  5729. else
  5730. {
  5731. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5732. }
  5733. ISheet sheet = workbook.GetSheetAt(0);
  5734. var rowStartIndex = 2;
  5735. var clounmCount = 10;
  5736. var initStyleRow = sheet.GetRow(2);
  5737. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5738. //var overspendArrDetail =
  5739. var existsId = new List<CarCompare>();
  5740. var lastElem = arr.Last();
  5741. var thisSid = -1;
  5742. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5743. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5744. {
  5745. Name = "未知币种!",
  5746. Remark = "未知币种!",
  5747. };
  5748. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5749. Action cloneRowFn = () =>
  5750. {
  5751. rowStartIndex++;
  5752. var cloneRow = sheet.CreateRow(rowStartIndex);
  5753. // 复制样式
  5754. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5755. {
  5756. ICell sourceCell = initStyleRow.GetCell(i);
  5757. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5758. // 确保单元格存在样式
  5759. if (sourceCell.CellStyle != null)
  5760. {
  5761. targetCell.CellStyle = sourceCell.CellStyle;
  5762. }
  5763. }
  5764. };
  5765. var mergeRow = () =>
  5766. {
  5767. for (int i = 2; i < sheet.LastRowNum; i++)
  5768. {
  5769. var row = sheet.GetRow(i);
  5770. var cellFirst = row.GetCell(0);
  5771. var thisIndex = i + 1;
  5772. while (thisIndex < sheet.LastRowNum)
  5773. {
  5774. var nextRow = sheet.GetRow(thisIndex);
  5775. var nextCellFirst = nextRow.GetCell(0);
  5776. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5777. {
  5778. thisIndex++;
  5779. }
  5780. else
  5781. {
  5782. break;
  5783. }
  5784. }
  5785. thisIndex--;
  5786. if (thisIndex != i)
  5787. {
  5788. //合并row
  5789. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5790. i, // 起始行索引(0-based)
  5791. thisIndex, // 结束行索引(0-based)
  5792. 0, // 起始列索引(0-based)
  5793. 0 // 结束列索引(0-based)
  5794. );
  5795. sheet.AddMergedRegion(cellRangeAddress);
  5796. i = thisIndex;
  5797. }
  5798. }
  5799. };
  5800. var chaoshiNumber = 0;
  5801. var totalNumber = 0.00M;
  5802. string lastStr = "";
  5803. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5804. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5805. {
  5806. b.IsAuditGM,
  5807. x.Id,
  5808. x.Area,
  5809. b.PayPercentage,
  5810. b.PayMoney,
  5811. }).ToList();
  5812. string yesPayment = "", noPayment = "";
  5813. foreach (var item in queryCarArrByCityAndDiid)
  5814. {
  5815. if (item.IsAuditGM == 1)
  5816. {
  5817. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5818. }
  5819. else
  5820. {
  5821. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5822. }
  5823. }
  5824. lastStr = yesPayment + noPayment;
  5825. foreach (var item in arr)
  5826. {
  5827. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5828. {
  5829. if (thisSid != item.SId)
  5830. {
  5831. if (thisSid == -1)
  5832. {
  5833. thisSid = item.SId;
  5834. }
  5835. else
  5836. {
  5837. //合并小计行
  5838. //创建合并区域的实例
  5839. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5840. rowStartIndex, // 起始行索引(0-based)
  5841. rowStartIndex, // 结束行索引(0-based)
  5842. 0, // 起始列索引(0-based)
  5843. 3 // 结束列索引(0-based)
  5844. );
  5845. sheet.AddMergedRegion(cellRangeAddress);
  5846. var CellStyle = workbook.CreateCellStyle();
  5847. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5848. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5849. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5850. for (int i = 0; i <= clounmCount; i++)
  5851. {
  5852. if (i > 6)
  5853. {
  5854. var CellStyle1 = workbook.CreateCellStyle();
  5855. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5856. IFont Font = workbook.CreateFont(); // 创建字体
  5857. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5858. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5859. CellStyle1.SetFont(Font);
  5860. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5861. }
  5862. else
  5863. {
  5864. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5865. }
  5866. }
  5867. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5868. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5869. //超时合计
  5870. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5871. //超时数
  5872. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5873. //超时合计费用
  5874. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5875. thisSid = item.SId;
  5876. cloneRowFn();
  5877. chaoshiNumber = 0;
  5878. totalNumber = 0;
  5879. }
  5880. }
  5881. IRow row = sheet.GetRow(rowStartIndex);
  5882. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5883. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5884. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5885. if (isOpenOverspendSoure)
  5886. {
  5887. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5888. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5889. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5890. }
  5891. for (int i = 0; i <= clounmCount; i++)
  5892. {
  5893. var cell = row.GetCell(i);
  5894. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5895. if (cell == null)
  5896. {
  5897. cell = row.CreateCell(i);
  5898. }
  5899. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5900. fontRed.CloneStyleFrom(cell.CellStyle);
  5901. IFont Font = workbook.CreateFont(); // 创建字体
  5902. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5903. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5904. fontRed.SetFont(Font);
  5905. byte[] rgb = new byte[3] { 255, 242, 204 };
  5906. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5907. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5908. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5909. if (workbook is XSSFWorkbook)
  5910. {
  5911. BackgroundColor255_242_204.FillForegroundColor = 0;
  5912. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5913. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5914. }
  5915. else
  5916. {
  5917. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5918. }
  5919. if (i == 1 || i > 6)
  5920. {
  5921. if (i > 6)
  5922. {
  5923. fontRed.FillForegroundColor = 0;
  5924. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5925. fontRed.FillPattern = FillPattern.SolidForeground;
  5926. }
  5927. cell.CellStyle = fontRed;
  5928. }
  5929. if (i > 2 && i < 7)
  5930. {
  5931. cell.CellStyle = BackgroundColor255_242_204;
  5932. }
  5933. cell.SetCellValue(setCellValue); //写入单元格
  5934. }
  5935. if (overspendSoure.ContainsKey(thisSid))
  5936. {
  5937. var overspendId = overspendSoure[thisSid];
  5938. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5939. }
  5940. cloneRowFn();
  5941. existsId.Add(new CarCompare
  5942. {
  5943. DataPrice = item.DatePrice.ObjToDate(),
  5944. Sid = item.SId
  5945. });
  5946. }
  5947. if (item.Equals(lastElem))
  5948. {
  5949. //合并小计行
  5950. //创建合并区域的实例
  5951. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5952. rowStartIndex, // 起始行索引(0-based)
  5953. rowStartIndex, // 结束行索引(0-based)
  5954. 0, // 起始列索引(0-based)
  5955. 3 // 结束列索引(0-based)
  5956. );
  5957. sheet.AddMergedRegion(cellRangeAddress);
  5958. var CellStyle = workbook.CreateCellStyle();
  5959. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5960. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5961. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5962. for (int i = 0; i <= clounmCount; i++)
  5963. {
  5964. if (i > 6)
  5965. {
  5966. var CellStyle1 = workbook.CreateCellStyle();
  5967. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5968. IFont Font = workbook.CreateFont(); // 创建字体
  5969. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5970. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5971. CellStyle1.SetFont(Font);
  5972. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5973. }
  5974. else
  5975. {
  5976. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5977. }
  5978. }
  5979. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5980. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5981. //超时合计
  5982. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5983. //超时数
  5984. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5985. //超时合计费用
  5986. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5987. cloneRowFn();
  5988. // 创建合并区域的实例
  5989. cellRangeAddress = new CellRangeAddress(
  5990. rowStartIndex, // 起始行索引(0-based)
  5991. rowStartIndex, // 结束行索引(0-based)
  5992. 0, // 起始列索引(0-based)
  5993. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  5994. );
  5995. // 添加合并区域
  5996. sheet.AddMergedRegion(cellRangeAddress);
  5997. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  5998. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  5999. }
  6000. }
  6001. mergeRow();
  6002. // 保存修改后的Excel文件到新文件
  6003. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  6004. // new FileStream(newFilePath, FileMode.CreateNew)
  6005. using (var stream = new MemoryStream())
  6006. {
  6007. workbook.Write(stream, true);
  6008. stream.Flush();
  6009. stream.Seek(0, SeekOrigin.Begin);
  6010. MemoryStream memoryStream = new MemoryStream();
  6011. stream.CopyTo(memoryStream);
  6012. memoryStream.Seek(0, SeekOrigin.Begin);
  6013. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  6014. }
  6015. workbook.Close();
  6016. workbook.Dispose();
  6017. }
  6018. catch (Exception ex)
  6019. {
  6020. jw.Msg = "出现异常!" + ex.Message;
  6021. return Ok(jw);
  6022. }
  6023. }
  6024. if (Zips.Count > 0)
  6025. {
  6026. IOOperatorHelper io = new IOOperatorHelper();
  6027. var byts = io.ConvertZipStream(Zips);
  6028. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  6029. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  6030. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  6031. }
  6032. else
  6033. {
  6034. jw.Msg = "暂无生成文件!";
  6035. }
  6036. return Ok(jw);
  6037. }
  6038. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  6039. {
  6040. string outStr = string.Empty;
  6041. switch (i)
  6042. {
  6043. case 0:
  6044. outStr = arr[0].SidName;
  6045. break;
  6046. case 1:
  6047. outStr = arr[0].DataPriceStr;
  6048. break;
  6049. case 2:
  6050. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  6051. break;
  6052. case 4:
  6053. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  6054. break;
  6055. case 7:
  6056. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6057. {
  6058. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  6059. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  6060. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  6061. }
  6062. break;
  6063. case 8:
  6064. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6065. {
  6066. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  6067. }
  6068. break;
  6069. case 9:
  6070. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6071. {
  6072. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  6073. }
  6074. break;
  6075. case 10:
  6076. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6077. {
  6078. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6079. }
  6080. break;
  6081. }
  6082. return outStr;
  6083. }
  6084. #region OP行程单
  6085. /// <summary>
  6086. /// OP行程单初始化
  6087. /// </summary>
  6088. /// <param name="dto"></param>
  6089. /// <returns></returns>
  6090. [HttpPost]
  6091. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6092. {
  6093. var jw = JsonView(false);
  6094. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6095. var group = groupList.First();
  6096. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6097. if (group == null)
  6098. {
  6099. jw.Msg = "暂无团组!";
  6100. return Ok(jw);
  6101. }
  6102. group = groupList.Find(x => x.Id == diid);
  6103. if (group == null)
  6104. {
  6105. jw.Msg = "请输入正确的团组ID!";
  6106. return Ok(jw);
  6107. }
  6108. string city = string.Empty;
  6109. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6110. if (blackCode.Count > 0)
  6111. {
  6112. var black = blackCode.First();
  6113. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6114. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6115. if (blackSp.Length > 0)
  6116. {
  6117. try
  6118. {
  6119. var cityArrCode = new List<string>(20);
  6120. foreach (var item in blackSp)
  6121. {
  6122. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6123. var IndexSelect = itemSp[2];
  6124. var cityArrCodeLength = cityArrCode.Count - 1;
  6125. var startCity = IndexSelect.Substring(0, 3);
  6126. if (cityArrCodeLength > 0)
  6127. {
  6128. var arrEndCity = cityArrCode[cityArrCodeLength];
  6129. if (arrEndCity != startCity)
  6130. {
  6131. cityArrCode.Add(startCity.ToUpper());
  6132. }
  6133. }
  6134. else
  6135. {
  6136. cityArrCode.Add(startCity.ToUpper());
  6137. }
  6138. var endCity = IndexSelect.Substring(3, 3);
  6139. cityArrCode.Add(endCity.ToUpper());
  6140. }
  6141. var cityThree = string.Empty;
  6142. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6143. cityThree = cityThree.TrimEnd(',');
  6144. if (string.IsNullOrWhiteSpace(cityThree))
  6145. {
  6146. throw new
  6147. Exception("error");
  6148. }
  6149. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6150. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6151. foreach (var item in cityArrCode)
  6152. {
  6153. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6154. if (find != null)
  6155. {
  6156. city += find.City + "/";
  6157. }
  6158. else
  6159. {
  6160. city += item + "三字码未收入/";
  6161. }
  6162. }
  6163. city = city.TrimEnd('/');
  6164. }
  6165. catch (Exception e)
  6166. {
  6167. city = "黑屏代码格式不正确!";
  6168. }
  6169. }
  6170. }
  6171. else
  6172. {
  6173. city = "未录入黑屏代码";
  6174. }
  6175. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6176. {
  6177. Date = x.Date,
  6178. Days = x.Days,
  6179. Diffgroup = x.Diffgroup,
  6180. Diid = x.Diid,
  6181. Traffic_First = x.Traffic_First,
  6182. Traffic_Second = x.Traffic_Second,
  6183. Trip = x.Trip,
  6184. WeekDay = x.WeekDay,
  6185. Id = x.Id
  6186. }).ToList();
  6187. jw.Data = new
  6188. {
  6189. groupList = groupList.Select(x => new
  6190. {
  6191. x.Id,
  6192. x.TeamName,
  6193. x.TourCode
  6194. }).ToList(),
  6195. groupInfo = new
  6196. {
  6197. group.VisitDays,
  6198. group.TourCode,
  6199. group.VisitPNumber,
  6200. group.TeamName,
  6201. city
  6202. },
  6203. OpTravelList
  6204. };
  6205. jw.Code = 200;
  6206. jw.Msg = "操作成功!";
  6207. return Ok(jw);
  6208. }
  6209. /// <summary>
  6210. /// 删除团组行程单
  6211. /// </summary>
  6212. /// <returns></returns>
  6213. [HttpPost]
  6214. public IActionResult DelTravel(DelOpTravelDto dto)
  6215. {
  6216. var jw = JsonView(false);
  6217. if (dto.UserId <= 0 || dto.Diid <= 0)
  6218. {
  6219. jw.Msg = "请输入正确的参数!";
  6220. return Ok(jw);
  6221. }
  6222. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6223. .SetColumns(x => new Grp_TravelList
  6224. {
  6225. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6226. DeleteUserId = dto.UserId,
  6227. IsDel = 1,
  6228. }).ExecuteCommand();
  6229. jw = JsonView(true);
  6230. return Ok(jw);
  6231. }
  6232. /// <summary>
  6233. /// 行程单保存
  6234. /// </summary>
  6235. /// <returns></returns>
  6236. [HttpPost]
  6237. public IActionResult TravelSave(TravelSaveDto dto)
  6238. {
  6239. var jw = JsonView(false);
  6240. if (dto.Arr.Count > 0)
  6241. {
  6242. try
  6243. {
  6244. _sqlSugar.BeginTran();
  6245. foreach (var item in dto.Arr)
  6246. {
  6247. if (item.Id == 0)
  6248. {
  6249. throw new Exception("请传入正确的Id");
  6250. }
  6251. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6252. .SetColumns(x => new Grp_TravelList
  6253. {
  6254. Trip = item.Trip
  6255. }).ExecuteCommand();
  6256. }
  6257. _sqlSugar.CommitTran();
  6258. jw = JsonView(true);
  6259. }
  6260. catch (Exception ex)
  6261. {
  6262. _sqlSugar.RollbackTran();
  6263. jw.Msg = "程序异常!" + ex.Message;
  6264. }
  6265. }
  6266. else
  6267. {
  6268. jw.Msg = "请传入正确的参数!";
  6269. }
  6270. return Ok(jw);
  6271. }
  6272. /// <summary>
  6273. /// 导出行程单
  6274. /// </summary>
  6275. /// <param name="dto"></param>
  6276. /// <returns></returns>
  6277. [HttpPost]
  6278. public IActionResult ExportTravel(ExportTravelDto dto)
  6279. {
  6280. var jw = JsonView(false);
  6281. jw.Data = "";
  6282. int diid = 0;
  6283. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6284. if (Find == null)
  6285. {
  6286. jw.Msg = "请选择正确的团组!";
  6287. return Ok(jw);
  6288. }
  6289. else
  6290. {
  6291. diid = Find.Id;
  6292. }
  6293. //数据源
  6294. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6295. DataTable dtBlack = null;
  6296. try
  6297. {
  6298. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6299. }
  6300. catch (Exception)
  6301. {
  6302. jw.Msg = "机票黑屏代码有误!";
  6303. return Ok(jw);
  6304. }
  6305. string CityStr = string.Empty;
  6306. if (dtBlack.Rows.Count == 0)
  6307. {
  6308. jw.Msg = "机票黑屏代码有误!";
  6309. return Ok(jw);
  6310. }
  6311. else
  6312. {
  6313. foreach (DataRow row in dtBlack.Rows)
  6314. {
  6315. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6316. {
  6317. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6318. return Ok(jw);
  6319. }
  6320. }
  6321. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6322. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6323. }
  6324. //创建数据源Table
  6325. DataTable dtSource = new DataTable();
  6326. dtSource.Columns.Add("Days", typeof(string));
  6327. dtSource.Columns.Add("Date", typeof(string));
  6328. dtSource.Columns.Add("Week", typeof(string));
  6329. dtSource.Columns.Add("Traffic", typeof(string));
  6330. dtSource.Columns.Add("Trip", typeof(string));
  6331. //获取数据,放到datatable
  6332. foreach (var item in _travelList)
  6333. {
  6334. DataRow dr = dtSource.NewRow();
  6335. dr["Days"] = item.Days;
  6336. dr["Date"] = item.Date;
  6337. dr["Week"] = item.WeekDay;
  6338. dr["Traffic"] = item.Traffic_First
  6339. + "\r\n"
  6340. + item.Traffic_Second;
  6341. dr["Trip"] = item.Trip;
  6342. dtSource.Rows.Add(dr);
  6343. }
  6344. Dictionary<string, string> dic = new Dictionary<string, string>();
  6345. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6346. dic.Add("City", CityStr);
  6347. dic.Add("Days", Find.VisitDays.ToString());
  6348. dic.Add("DeleCode", Find.TourCode);
  6349. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6350. //模板路径
  6351. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6352. //载入模板
  6353. Document doc = null;
  6354. DocumentBuilder builder = null;
  6355. try
  6356. {
  6357. //载入模板
  6358. doc = new Document(tempPath);
  6359. builder = new DocumentBuilder(doc);
  6360. }
  6361. catch (Exception)
  6362. {
  6363. jw.Msg = "模板位置不存在!";
  6364. return Ok(jw);
  6365. }
  6366. foreach (var key in dic.Keys)
  6367. {
  6368. Bookmark bookmark = doc.Range.Bookmarks[key];
  6369. if (bookmark != null)
  6370. {
  6371. builder.MoveToBookmark(key);
  6372. builder.Write(dic[key]);
  6373. }
  6374. }
  6375. //获取word里所有表格
  6376. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6377. //获取所填表格的序数
  6378. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6379. try
  6380. {
  6381. //循环赋值
  6382. for (int i = 0; i < dtSource.Rows.Count; i++)
  6383. {
  6384. builder.MoveToCell(0, i + 1, 0, 0);
  6385. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6386. builder.MoveToCell(0, i + 1, 1, 0);
  6387. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6388. builder.MoveToCell(0, i + 1, 2, 0);
  6389. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6390. var trip = dtSource.Rows[i]["Trip"].ToString();
  6391. builder.MoveToCell(0, i + 1, 3, 0);
  6392. builder.Write(trip);
  6393. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6394. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6395. // 获取特定索引的段落
  6396. Paragraph paragraph = (Paragraph)paragraphs[0];
  6397. Run run = paragraph.Runs[0];
  6398. Aspose.Words.Font font = run.Font;
  6399. font.Name = "黑体";
  6400. //设置双休红色
  6401. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6402. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6403. paragraph = (Paragraph)paragraphs[1];
  6404. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6405. {
  6406. run = paragraph.Runs[0];
  6407. font = run.Font;
  6408. font.Color = Color.Red;
  6409. }
  6410. }
  6411. }
  6412. catch (Exception ex)
  6413. {
  6414. }
  6415. //删除多余行
  6416. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6417. {
  6418. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6419. }
  6420. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6421. if (!Directory.Exists(savePath))
  6422. {
  6423. try
  6424. {
  6425. Directory.CreateDirectory(savePath);
  6426. }
  6427. catch
  6428. {
  6429. }
  6430. }
  6431. string path = savePath + Find.TeamName + "出访日程";
  6432. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6433. try
  6434. {
  6435. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6436. string postfix = ".docx";
  6437. if (dto.IsPDF == 1)
  6438. {
  6439. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6440. postfix = ".pdf";
  6441. }
  6442. doc.Save(path + postfix, saveFormat);
  6443. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6444. }
  6445. catch (Exception)
  6446. {
  6447. jw = JsonView(false);
  6448. }
  6449. return Ok(jw);
  6450. }
  6451. /// <summary>
  6452. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6453. /// </summary>
  6454. /// <param name="num"></param>
  6455. /// <returns></returns>
  6456. string GetNum(string num)
  6457. {
  6458. string str = "";
  6459. switch (num)
  6460. {
  6461. case "1":
  6462. str = "一";
  6463. break;
  6464. case "2":
  6465. str = "二";
  6466. break;
  6467. case "3":
  6468. str = "三";
  6469. break;
  6470. case "4":
  6471. str = "四";
  6472. break;
  6473. case "5":
  6474. str = "五";
  6475. break;
  6476. case "6":
  6477. str = "六";
  6478. break;
  6479. case "7":
  6480. str = "七";
  6481. break;
  6482. case "8":
  6483. str = "八";
  6484. break;
  6485. case "9":
  6486. str = "九";
  6487. break;
  6488. case "10":
  6489. str = "十";
  6490. break;
  6491. case "11":
  6492. str = "十一";
  6493. break;
  6494. case "12":
  6495. str = "十二";
  6496. break;
  6497. case "一":
  6498. str = "1";
  6499. break;
  6500. case "二":
  6501. str = "2";
  6502. break;
  6503. case "三":
  6504. str = "3";
  6505. break;
  6506. case "四":
  6507. str = "4";
  6508. break;
  6509. case "五":
  6510. str = "5";
  6511. break;
  6512. case "六":
  6513. str = "6";
  6514. break;
  6515. case "七":
  6516. str = "7";
  6517. break;
  6518. case "八":
  6519. str = "8";
  6520. break;
  6521. case "九":
  6522. str = "9";
  6523. break;
  6524. case "十":
  6525. str = "10";
  6526. break;
  6527. case "十一":
  6528. str = "11";
  6529. break;
  6530. case "十二":
  6531. str = "12";
  6532. break;
  6533. }
  6534. return str;
  6535. }
  6536. #endregion
  6537. #endregion
  6538. #region 团组成本
  6539. /// <summary>
  6540. /// 团组成本数据初始化
  6541. /// </summary>
  6542. /// <param name="dto"></param>
  6543. /// <returns></returns>
  6544. [HttpPost]
  6545. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6546. {
  6547. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6548. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6549. WHEN COUNT(*) >= 0 THEN 'True'
  6550. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6551. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6552. ").ToList(); //团组列表
  6553. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6554. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6555. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6556. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6557. if (groupinfoValue != null)
  6558. {
  6559. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6560. var spArr = new string[1] { countryArr };
  6561. if (countryArr.Contains("|"))
  6562. {
  6563. spArr = countryArr.Split("|");
  6564. }
  6565. else if (countryArr.Contains("、"))
  6566. {
  6567. spArr = countryArr.Split("、");
  6568. }
  6569. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6570. {
  6571. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6572. if (dbQueryCountry != null)
  6573. {
  6574. visaCountryInfoArr.Add(dbQueryCountry);
  6575. }
  6576. }
  6577. }
  6578. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6579. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6580. var create = _GroupCostRepository.
  6581. CreateGroupCostByBlackCode(dto.Diid);
  6582. if (groupCost.Count == 0 && create.Code == 0)
  6583. {
  6584. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6585. }
  6586. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6587. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6588. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6589. groupCostMap = groupCostMap.Select(x =>
  6590. {
  6591. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6592. {
  6593. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6594. }
  6595. return x;
  6596. }).ToList();
  6597. //GroupCostParameter.Add(new
  6598. // Grp_GroupCostParameter());
  6599. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6600. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6601. return Ok(JsonView(new
  6602. {
  6603. groupList,
  6604. groupInfo,
  6605. groupChecks,
  6606. groupCost = groupCostMap,
  6607. hotelNumber,
  6608. GroupCostParameter = GroupCostParameterMap,
  6609. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6610. {
  6611. x.VisaCountry,
  6612. x.VisaPrice,
  6613. x.Id,
  6614. }).ToList(),
  6615. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6616. blackCodeIsTrue = create.Code == 0 ? true : false,
  6617. hotelIsTrue = hotelIsTrue,
  6618. }));
  6619. }
  6620. /// <summary>
  6621. /// 团组成本信息保存
  6622. /// </summary>
  6623. /// <param name="dto"></param>
  6624. /// <returns></returns>
  6625. [HttpPost]
  6626. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6627. {
  6628. if (dto.Diid <= 0 || dto.Userid <= 0)
  6629. {
  6630. return Ok(JsonView(false));
  6631. }
  6632. JsonView jw = null;
  6633. bool isTrue = false;
  6634. #region 复制团组成本
  6635. //if (dto.Diid == 2581)
  6636. //{
  6637. // dto.Diid = 2599;
  6638. // dto.CheckBoxs.ForEach(x =>
  6639. // {
  6640. // x.Diid = 2599;
  6641. // });
  6642. // dto.GroupCosts.ForEach(x =>
  6643. // {
  6644. // x.Diid = 2599;
  6645. // });
  6646. // dto.CostTypeHotelNumbers.ForEach(x =>
  6647. // {
  6648. // x.Diid = 2599;
  6649. // });
  6650. // dto.GroupCostParameters.ForEach(x =>
  6651. // {
  6652. // x.DiId = 2599;
  6653. // });
  6654. //}
  6655. #endregion
  6656. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6657. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6658. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6659. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6660. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6661. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6662. try
  6663. {
  6664. _sqlSugar.BeginTran();
  6665. isTrue = await _GroupCostRepository.
  6666. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6667. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6668. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6669. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6670. _sqlSugar.CommitTran();
  6671. jw = JsonView(true, "保存成功!", isTrue);
  6672. }
  6673. catch (Exception)
  6674. {
  6675. _sqlSugar.RollbackTran();
  6676. jw = JsonView(false);
  6677. }
  6678. return Ok(jw);
  6679. }
  6680. /// <summary>
  6681. /// 司兼导数据
  6682. /// </summary>
  6683. /// <param name="dto"></param>
  6684. /// <returns></returns>
  6685. [HttpPost]
  6686. public IActionResult GetCarGuides(CarGuidesDto dto)
  6687. {
  6688. JsonView jw = null;
  6689. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6690. jw = JsonView(true, "获取成功!", Data);
  6691. return Ok(jw);
  6692. }
  6693. /// <summary>
  6694. /// 导游数据
  6695. /// </summary>
  6696. /// <param name="dto"></param>
  6697. /// <returns></returns>
  6698. [HttpPost]
  6699. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6700. {
  6701. JsonView jw = null;
  6702. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6703. // 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
  6704. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6705. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6706. jw = JsonView(true, "获取成功!", Data);
  6707. return Ok(jw);
  6708. }
  6709. /// <summary>
  6710. /// 成本车数据
  6711. /// </summary>
  6712. /// <param name="dto"></param>
  6713. /// <returns></returns>
  6714. [HttpPost]
  6715. public IActionResult GetCarInfo(CarGuidesDto dto)
  6716. {
  6717. JsonView jw = null;
  6718. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6719. jw = JsonView(true, "获取成功!", Data);
  6720. return Ok(jw);
  6721. }
  6722. /// <summary>
  6723. /// 景点数据
  6724. /// </summary>
  6725. /// <param name="dto"></param>
  6726. /// <returns></returns>
  6727. [HttpPost]
  6728. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6729. {
  6730. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6731. return Ok(JsonView(true, "获取成功!", Data));
  6732. }
  6733. /// <summary>
  6734. /// 成本通知
  6735. /// </summary>
  6736. /// <param name="dto"></param>
  6737. /// <returns></returns>
  6738. [HttpPost]
  6739. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6740. {
  6741. if (dto.Diid < 0)
  6742. {
  6743. return Ok(JsonView(false));
  6744. }
  6745. JsonView jw = null;
  6746. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6747. if (GroupCostParameter != null)
  6748. {
  6749. int IsShare = 0;
  6750. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6751. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6752. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6753. string msg = string.Empty;
  6754. if (isTrue)
  6755. {
  6756. if (IsShare == 0)
  6757. {
  6758. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6759. }
  6760. else
  6761. {
  6762. #region 企微通知对应岗位用户
  6763. try
  6764. {
  6765. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6766. }
  6767. catch (Exception ex)
  6768. {
  6769. }
  6770. #endregion
  6771. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6772. }
  6773. jw = JsonView(isTrue, msg, new { IsShare });
  6774. }
  6775. else
  6776. {
  6777. msg = "修改失败!";
  6778. jw = JsonView(isTrue, msg);
  6779. }
  6780. }
  6781. else
  6782. {
  6783. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6784. }
  6785. return Ok(jw);
  6786. }
  6787. /// <summary>
  6788. /// 导出报价单
  6789. /// </summary>
  6790. /// <param name="dto"></param>
  6791. /// <returns></returns>
  6792. [HttpPost]
  6793. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6794. {
  6795. if (dto.Diid == 0)
  6796. {
  6797. return Ok(JsonView(false, "请传递团组id"));
  6798. }
  6799. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6800. if (deleInfo.Code != 0)
  6801. {
  6802. return Ok(JsonView(false, "团组信息查询失败!"));
  6803. }
  6804. var di = deleInfo.Data as DelegationInfoWebView;
  6805. if (di != null)
  6806. {
  6807. //文件名
  6808. string strFileName = di.TeamName + "-收款账单.doc";
  6809. //获取模板
  6810. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6811. //载入模板
  6812. Document doc = new Document(tmppath);
  6813. decimal TotalPrice = 0.00M;
  6814. string itemStr = string.Empty;
  6815. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6816. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6817. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6818. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6819. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6820. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6821. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6822. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6823. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6824. foreach (var cost in groupCostType)
  6825. {
  6826. var List = cost.ToList();
  6827. if (cost.Key == "A")
  6828. {
  6829. foreach (var ListItem in List)
  6830. {
  6831. if (ListItem.number > 0)
  6832. {
  6833. if (ListItem.code.Contains("TBR"))
  6834. {
  6835. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6836. }
  6837. else
  6838. {
  6839. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6840. }
  6841. TotalPrice += (ListItem.number * ListItem.price);
  6842. }
  6843. }
  6844. }
  6845. else
  6846. {
  6847. itemStr = itemStr.Insert(0, "A段\r\n");
  6848. itemStr += "B段\r\n";
  6849. foreach (var ListItem in List)
  6850. {
  6851. if (ListItem.number > 0)
  6852. {
  6853. if (ListItem.code.Contains("TBR"))
  6854. {
  6855. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6856. }
  6857. else
  6858. {
  6859. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6860. }
  6861. TotalPrice += (ListItem.number * ListItem.price);
  6862. }
  6863. }
  6864. }
  6865. }
  6866. #region 替换Word模板书签内容
  6867. Dictionary<string, string> marks = new Dictionary<string, string>();
  6868. marks.Add("To", di.ClientUnit);//付款方
  6869. marks.Add("ToTel", di.TellPhone);//付款方电话
  6870. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6871. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6872. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6873. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6874. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6875. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6876. marks.Add("PayItemContent", itemStr);//详细信息
  6877. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6878. #endregion
  6879. ////注
  6880. //if (doc.Range.Bookmarks["Attention"] != null)
  6881. //{
  6882. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6883. // mark.Text = frList[0].Attention;
  6884. //}
  6885. foreach (var item in marks.Keys)
  6886. {
  6887. if (doc.Range.Bookmarks[item] != null)
  6888. {
  6889. Bookmark mark = doc.Range.Bookmarks[item];
  6890. mark.Text = marks[item];
  6891. }
  6892. }
  6893. byte[] bytes = null;
  6894. using (MemoryStream stream = new MemoryStream())
  6895. {
  6896. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6897. bytes = stream.ToArray();
  6898. }
  6899. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6900. return Ok(JsonView(true, "", new
  6901. {
  6902. Data = bytes,
  6903. strFileName,
  6904. }));
  6905. }
  6906. else
  6907. {
  6908. return Ok(JsonView(false, "团组信息不存在!"));
  6909. }
  6910. }
  6911. /// <summary>
  6912. /// 导出团组成本
  6913. /// </summary>
  6914. /// <param name="dto"></param>
  6915. /// <returns></returns>
  6916. [HttpPost]
  6917. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6918. {
  6919. var jw = JsonView(false);
  6920. if (dto.Diid == 0)
  6921. {
  6922. return Ok(JsonView(false, "请传递团组id"));
  6923. }
  6924. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6925. if (deleInfo.Code != 0)
  6926. {
  6927. return Ok(JsonView(false, "团组信息查询失败!"));
  6928. }
  6929. var di = deleInfo.Data as DelegationInfoWebView;
  6930. if (di == null)
  6931. {
  6932. return Ok(JsonView(false, "团组信息查询失败!"));
  6933. }
  6934. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6935. WorkbookDesigner designer = new WorkbookDesigner();
  6936. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6937. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6938. for (int i = 0; i < List_GC.Count; i++)
  6939. {
  6940. GroupCost_Excel gc = new GroupCost_Excel();
  6941. gc.Id = List_GC[i].Id;
  6942. gc.Diid = List_GC[i].Diid.ToString();
  6943. gc.DAY = List_GC[i].DAY;
  6944. string week = "";
  6945. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6946. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6947. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6948. gc.ITIN = List_GC[i].ITIN;
  6949. gc.CarType = List_GC[i].CarType;
  6950. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6951. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6952. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6953. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6954. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6955. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6956. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6957. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6958. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6959. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6960. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6961. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6962. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6963. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6964. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6965. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6966. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6967. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6968. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6969. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6970. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6971. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6972. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6973. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6974. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6975. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6976. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6977. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6978. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6979. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6980. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6981. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6982. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6983. List_GC1.Add(gc);
  6984. }
  6985. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6986. dt.TableName = "TB";
  6987. //报表标题等不用dt的值
  6988. designer.SetDataSource("TeamName", dto.title.TeamName);
  6989. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6990. designer.SetDataSource("Tax", dto.title.Tax);
  6991. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6992. designer.SetDataSource("Currency", dto.title.Currency);
  6993. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6994. designer.SetDataSource("Rate", dto.title.Rate);
  6995. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6996. var Aparams = hotels.Find(x => x.Type == "Default");
  6997. if (Aparams == null)
  6998. {
  6999. return Ok(jw);
  7000. }
  7001. //酒店数量
  7002. var txtSGRNumber = Aparams.SGR.ToString();
  7003. var txtTBRNumber = Aparams.TBR.ToString();
  7004. var txtJSESNumber = Aparams.JSES.ToString();
  7005. var txtSUITENumbe = Aparams.SUITE.ToString();
  7006. if (dto.costType == "B")
  7007. {
  7008. Aparams = hotels.Find(x => x.Type == "A");
  7009. var Bparams = hotels.Find(x => x.Type == "B");
  7010. if (Aparams == null || Bparams == null)
  7011. {
  7012. return Ok(jw);
  7013. }
  7014. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  7015. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  7016. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  7017. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  7018. }
  7019. designer.SetDataSource("SGRNumber", txtSGRNumber);
  7020. designer.SetDataSource("TBRNumber", txtTBRNumber);
  7021. designer.SetDataSource("JSESNumber", txtJSESNumber);
  7022. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  7023. var ws = designer.Workbook.Worksheets[0];
  7024. int Row = List_GC.Count;
  7025. int startIndex = 11;
  7026. int HideRows = 0;
  7027. List<int> hideRowsList = new List<int>();
  7028. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  7029. #region A段left数据
  7030. var left = dto.leftInfo.Find(x => x.Type == "A");
  7031. if (left == null)
  7032. {
  7033. return Ok(jw);
  7034. }
  7035. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  7036. if (leftBindData != null)
  7037. {
  7038. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  7039. designer.SetDataSource("VisaRS", leftBindData.rs);
  7040. designer.SetDataSource("VisaXS", leftBindData.xs);
  7041. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7042. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7043. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7044. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7045. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7046. }
  7047. else
  7048. {
  7049. hideRowsList.Add(Row + startIndex + HideRows);
  7050. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7051. }
  7052. HideRows += 2;
  7053. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  7054. if (leftBindData != null)
  7055. {
  7056. designer.SetDataSource("BXDRCB", leftBindData.cb);
  7057. designer.SetDataSource("BXRS", leftBindData.rs);
  7058. designer.SetDataSource("BXXS", leftBindData.xs);
  7059. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7060. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7061. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7062. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7063. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7064. }
  7065. else
  7066. {
  7067. hideRowsList.Add(Row + startIndex + HideRows);
  7068. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7069. }
  7070. HideRows += 2;
  7071. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7072. if (leftBindData != null)
  7073. {
  7074. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7075. designer.SetDataSource("HSRS", leftBindData.rs);
  7076. designer.SetDataSource("HSXS", leftBindData.xs);
  7077. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7078. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7079. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7080. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7081. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7082. }
  7083. else
  7084. {
  7085. hideRowsList.Add(Row + startIndex + HideRows);
  7086. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7087. }
  7088. HideRows += 2;
  7089. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7090. if (leftBindData != null)
  7091. {
  7092. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7093. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7094. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7095. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7096. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7097. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7098. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7099. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7100. }
  7101. else
  7102. {
  7103. hideRowsList.Add(Row + startIndex + HideRows);
  7104. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7105. }
  7106. HideRows += 2;
  7107. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7108. if (leftBindData != null)
  7109. {
  7110. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7111. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7112. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7113. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7114. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7115. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7116. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7117. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7118. }
  7119. else
  7120. {
  7121. hideRowsList.Add(Row + startIndex + HideRows);
  7122. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7123. }
  7124. HideRows += 2;
  7125. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7126. if (leftBindData != null)
  7127. {
  7128. ////TBR
  7129. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7130. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7131. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7132. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7133. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7134. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7135. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7136. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7137. }
  7138. else
  7139. {
  7140. hideRowsList.Add(Row + startIndex + HideRows);
  7141. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7142. }
  7143. HideRows += 2;
  7144. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7145. if (leftBindData != null)
  7146. {
  7147. ////SGR
  7148. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7149. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7150. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7151. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7152. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7153. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7154. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7155. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7156. }
  7157. else
  7158. {
  7159. hideRowsList.Add(Row + startIndex + HideRows);
  7160. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7161. }
  7162. HideRows += 2;
  7163. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7164. if (leftBindData != null)
  7165. {
  7166. ////JS/ES
  7167. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7168. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7169. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7170. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7171. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7172. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7173. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7174. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7175. }
  7176. else
  7177. {
  7178. hideRowsList.Add(Row + startIndex + HideRows);
  7179. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7180. }
  7181. HideRows += 2;
  7182. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7183. if (leftBindData != null)
  7184. {
  7185. ////SUITE
  7186. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7187. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7188. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7189. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7190. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7191. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7192. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7193. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7194. }
  7195. else
  7196. {
  7197. hideRowsList.Add(Row + startIndex + HideRows);
  7198. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7199. }
  7200. HideRows += 2;
  7201. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7202. if (leftBindData != null)
  7203. {
  7204. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7205. designer.SetDataSource("DJRS", leftBindData.rs);
  7206. designer.SetDataSource("DJXS", leftBindData.xs);
  7207. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7208. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7209. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7210. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7211. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7212. }
  7213. else
  7214. {
  7215. hideRowsList.Add(Row + startIndex + HideRows);
  7216. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7217. }
  7218. HideRows += 2;
  7219. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7220. if (leftBindData != null)
  7221. {
  7222. designer.SetDataSource("HCPCB", leftBindData.cb);
  7223. designer.SetDataSource("HCPRS", leftBindData.rs);
  7224. designer.SetDataSource("HCPXS", leftBindData.xs);
  7225. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7226. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7227. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7228. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7229. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7230. }
  7231. else
  7232. {
  7233. hideRowsList.Add(Row + startIndex + HideRows);
  7234. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7235. }
  7236. HideRows += 2;
  7237. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7238. if (leftBindData != null)
  7239. {
  7240. designer.SetDataSource("CPCB", leftBindData.cb);
  7241. designer.SetDataSource("CPRS", leftBindData.rs);
  7242. designer.SetDataSource("CPXS", leftBindData.xs);
  7243. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7244. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7245. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7246. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7247. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7248. }
  7249. else
  7250. {
  7251. hideRowsList.Add(Row + startIndex + HideRows);
  7252. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7253. }
  7254. HideRows += 2;
  7255. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7256. if (leftBindData != null)
  7257. {
  7258. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7259. designer.SetDataSource("GWRS", leftBindData.rs);
  7260. designer.SetDataSource("GWXS", leftBindData.xs);
  7261. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7262. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7263. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7264. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7265. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7266. }
  7267. else
  7268. {
  7269. hideRowsList.Add(Row + startIndex + HideRows);
  7270. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7271. }
  7272. HideRows += 2;
  7273. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7274. if (leftBindData != null)
  7275. {
  7276. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7277. designer.SetDataSource("LYJRS", leftBindData.rs);
  7278. designer.SetDataSource("LYJXS", leftBindData.xs);
  7279. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7280. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7281. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7282. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7283. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7284. }
  7285. else
  7286. {
  7287. hideRowsList.Add(Row + startIndex + HideRows);
  7288. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7289. }
  7290. #endregion
  7291. #region A段Right信息
  7292. var right = dto.rightInfo.Find(x => x.Type == "A");
  7293. if (right == null)
  7294. {
  7295. return Ok(jw);
  7296. }
  7297. HideRows += 4;
  7298. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7299. if (rightBindData != null)
  7300. {
  7301. //经济舱 + 双人间 TBR
  7302. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7303. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7304. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7305. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7306. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7307. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7308. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7309. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7310. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7311. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7312. }
  7313. else
  7314. {
  7315. hideRowsList.Add(Row + startIndex + HideRows);
  7316. }
  7317. HideRows += 2;
  7318. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7319. if (rightBindData != null)
  7320. {
  7321. //经济舱 + 单人间 SGR
  7322. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7323. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7324. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7325. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7326. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7327. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7328. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7329. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7330. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7331. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7332. }
  7333. else
  7334. {
  7335. hideRowsList.Add(Row + startIndex + HideRows);
  7336. }
  7337. HideRows += 2;
  7338. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7339. if (rightBindData != null)
  7340. {
  7341. //公务舱 + 单人间 SGR
  7342. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7343. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7344. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7345. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7346. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7347. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7348. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7349. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7350. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7351. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7352. }
  7353. else
  7354. {
  7355. hideRowsList.Add(Row + startIndex + HideRows);
  7356. }
  7357. HideRows += 2;
  7358. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7359. if (rightBindData != null)
  7360. {
  7361. //公务舱 + 小套房 JSES
  7362. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7363. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7364. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7365. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7366. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7367. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7368. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7369. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7370. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7371. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7372. }
  7373. else
  7374. {
  7375. hideRowsList.Add(Row + startIndex + HideRows);
  7376. }
  7377. HideRows += 2;
  7378. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7379. if (rightBindData != null)
  7380. {
  7381. //公务舱 + 小套房 JSES
  7382. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7383. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7384. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7385. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7386. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7387. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7388. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7389. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7390. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7391. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7392. }
  7393. else
  7394. {
  7395. hideRowsList.Add(Row + startIndex + HideRows);
  7396. }
  7397. HideRows += 2;
  7398. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7399. if (rightBindData != null)
  7400. {
  7401. //经济舱 + 大套房
  7402. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7403. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7404. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7405. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7406. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7407. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7408. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7409. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7410. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7411. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7412. }
  7413. else
  7414. {
  7415. hideRowsList.Add(Row + startIndex + HideRows);
  7416. }
  7417. #endregion
  7418. #region B段标题清空
  7419. designer.SetDataSource("CostBDRCB", "");
  7420. designer.SetDataSource("CostBRS", "");
  7421. designer.SetDataSource("CostBXS", "");
  7422. designer.SetDataSource("CostBZCB", "");
  7423. designer.SetDataSource("CostBDRBJ", "");
  7424. designer.SetDataSource("CostBZBJ", "");
  7425. designer.SetDataSource("CostBDRLR", "");
  7426. designer.SetDataSource("CostBZLR", "");
  7427. designer.SetDataSource("CostBDRCBOM", "");
  7428. designer.SetDataSource("CostBRSOM", "");
  7429. designer.SetDataSource("CostBZCBOM", "");
  7430. designer.SetDataSource("CostBDRBJOM", "");
  7431. designer.SetDataSource("CostBZBJOM", "");
  7432. designer.SetDataSource("CostBDRLROM", "");
  7433. designer.SetDataSource("CostBZLROM", "");
  7434. #endregion
  7435. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7436. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7437. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7438. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7439. designer.SetDataSource("DJName", "地接(CNY)");
  7440. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7441. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7442. designer.SetDataSource("GWName", "公务(CNY)");
  7443. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7444. designer.SetDataSource("LYJName", "零用金(CNY)");
  7445. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7446. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7447. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7448. designer.SetDataSource("BXName", "保险(CNY)");
  7449. designer.SetDataSource("VisaName", "签证(CNY)");
  7450. #region B段基本数据
  7451. if (dto.costType == "B")
  7452. {
  7453. left = dto.leftInfo.Find(x => x.Type == "B");
  7454. if (left == null)
  7455. {
  7456. return Ok(jw);
  7457. }
  7458. #region B段left数据
  7459. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7460. if (leftBindData != null)
  7461. {
  7462. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7463. designer.SetDataSource("BHSRS", leftBindData.rs);
  7464. designer.SetDataSource("BHSXS", leftBindData.xs);
  7465. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7466. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7467. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7468. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7469. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7470. }
  7471. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7472. if (leftBindData != null)
  7473. {
  7474. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7475. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7476. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7477. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7478. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7479. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7480. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7481. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7482. }
  7483. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7484. if (leftBindData != null)
  7485. {
  7486. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7487. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7488. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7489. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7490. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7491. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7492. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7493. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7494. }
  7495. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7496. if (leftBindData != null)
  7497. {
  7498. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7499. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7500. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7501. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7502. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7503. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7504. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7505. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7506. }
  7507. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7508. if (leftBindData != null)
  7509. {
  7510. designer.SetDataSource("BCPCB", leftBindData.cb);
  7511. designer.SetDataSource("BCPRS", leftBindData.rs);
  7512. designer.SetDataSource("BCPXS", leftBindData.xs);
  7513. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7514. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7515. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7516. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7517. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7518. }
  7519. //TBR
  7520. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7521. if (leftBindData != null)
  7522. {
  7523. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7524. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7525. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7526. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7527. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7528. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7529. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7530. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7531. }
  7532. //SGR
  7533. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7534. if (leftBindData != null)
  7535. {
  7536. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7537. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7538. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7539. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7540. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7541. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7542. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7543. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7544. }
  7545. //JS/ES
  7546. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7547. if (leftBindData != null)
  7548. {
  7549. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7550. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7551. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7552. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7553. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7554. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7555. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7556. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7557. }
  7558. //SUITE
  7559. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7560. if (leftBindData != null)
  7561. {
  7562. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7563. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7564. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7565. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7566. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7567. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7568. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7569. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7570. }
  7571. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7572. if (leftBindData != null)
  7573. {
  7574. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7575. designer.SetDataSource("BDJRS", leftBindData.rs);
  7576. designer.SetDataSource("BDJXS", leftBindData.xs);
  7577. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7578. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7579. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7580. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7581. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7582. }
  7583. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7584. if (leftBindData != null)
  7585. {
  7586. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7587. designer.SetDataSource("BGWRS", leftBindData.rs);
  7588. designer.SetDataSource("BGWXS", leftBindData.xs);
  7589. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7590. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7591. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7592. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7593. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7594. }
  7595. #region 优化方案
  7596. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7597. //excelBind.Add("零用金", new {
  7598. //cb="",
  7599. //rs="",
  7600. //xs ="",
  7601. //zcb = "",
  7602. //});
  7603. #endregion
  7604. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7605. if (leftBindData != null)
  7606. {
  7607. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7608. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7609. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7610. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7611. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7612. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7613. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7614. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7615. }
  7616. #endregion
  7617. #region B段Right信息
  7618. right = dto.rightInfo.Find(x => x.Type == "B");
  7619. if (right == null)
  7620. {
  7621. return Ok(jw);
  7622. }
  7623. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7624. if (rightBindData != null)
  7625. {
  7626. //经济舱 + 双人间 TBR
  7627. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7628. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7629. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7630. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7631. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7632. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7633. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7634. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7635. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7636. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7637. }
  7638. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7639. if (rightBindData != null)
  7640. {
  7641. //经济舱 + 单人间 SGR
  7642. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7643. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7644. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7645. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7646. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7647. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7648. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7649. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7650. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7651. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7652. }
  7653. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7654. if (rightBindData != null)
  7655. {
  7656. //公务舱 + 单人间 SGR
  7657. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7658. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7659. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7660. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7661. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7662. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7663. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7664. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7665. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7666. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7667. }
  7668. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7669. if (rightBindData != null)
  7670. {
  7671. //公务舱 + 小套房 JSES
  7672. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7673. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7674. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7675. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7676. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7677. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7678. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7679. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7680. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7681. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7682. }
  7683. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7684. if (rightBindData != null)
  7685. {
  7686. //公务舱 + 小套房 JSES
  7687. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7688. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7689. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7690. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7691. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7692. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7693. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7694. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7695. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7696. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7697. }
  7698. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7699. if (rightBindData != null)
  7700. {
  7701. //经济舱 + 大套房
  7702. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7703. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7704. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7705. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7706. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7707. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7708. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7709. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7710. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7711. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7712. }
  7713. #endregion
  7714. #region 标题
  7715. designer.SetDataSource("CostBDRCB", "单人成本");
  7716. designer.SetDataSource("CostBRS", "人数");
  7717. designer.SetDataSource("CostBXS", "系数");
  7718. designer.SetDataSource("CostBZCB", "总成本");
  7719. designer.SetDataSource("CostBDRBJ", "单人报价");
  7720. designer.SetDataSource("CostBZBJ", "总报价");
  7721. designer.SetDataSource("CostBDRLR", "单人利润");
  7722. designer.SetDataSource("CostBZLR", "总利润");
  7723. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7724. designer.SetDataSource("CostBRSOM", "人数");
  7725. designer.SetDataSource("CostBZCBOM", "总成本");
  7726. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7727. designer.SetDataSource("CostBZBJOM", "总报价");
  7728. designer.SetDataSource("CostBDRLROM", "单人利润");
  7729. designer.SetDataSource("CostBZLROM", "总利润");
  7730. #endregion
  7731. }
  7732. #endregion
  7733. designer.SetDataSource("TzZCB2", TzZCB2);
  7734. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7735. designer.SetDataSource("TzZLR2", TzZLR2);
  7736. string[] dataSourceKeys = new string[]
  7737. {
  7738. "VF",
  7739. "TGS",
  7740. "TGOF",
  7741. "TGM",
  7742. "TGA",
  7743. "TGTF",
  7744. "TGEF",
  7745. "CFM",
  7746. "CFOF",
  7747. "B",
  7748. "L",
  7749. "D",
  7750. "TBR",
  7751. "SGR",
  7752. "JSES",
  7753. "Suite",
  7754. "TV",
  7755. "1L",
  7756. "IF",
  7757. "EF",
  7758. "BRF",
  7759. "TE",
  7760. "TGT",
  7761. "DRVT",
  7762. "PC",
  7763. "TLF",
  7764. "ECT"
  7765. };
  7766. foreach (var item in dataSourceKeys)
  7767. {
  7768. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7769. if (find != null)
  7770. {
  7771. designer.SetDataSource(item, find.text);
  7772. }
  7773. else
  7774. {
  7775. designer.SetDataSource(item, 0);
  7776. }
  7777. }
  7778. designer.SetDataSource(dt);
  7779. //根据数据源处理生成报表内容
  7780. designer.Process();
  7781. designer.Workbook.Worksheets[0].Name = "清单";
  7782. Worksheet sheet = designer.Workbook.Worksheets[0];
  7783. foreach (var Rowindex in hideRowsList)
  7784. {
  7785. ws.Cells.HideRows(Rowindex, 2);
  7786. }
  7787. byte[] bytes = null;
  7788. string strFileName = di.TeamName + "-团组-成本.xls";
  7789. using (MemoryStream stream = new MemoryStream())
  7790. {
  7791. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7792. bytes = stream.ToArray();
  7793. }
  7794. return Ok(JsonView(true, "", new
  7795. {
  7796. Data = bytes,
  7797. strFileName,
  7798. }));
  7799. }
  7800. /// <summary>
  7801. /// 导出客户报表
  7802. /// </summary>
  7803. /// <returns></returns>
  7804. [HttpPost]
  7805. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7806. {
  7807. var jw = JsonView(false);
  7808. if (dto.Diid == 0)
  7809. {
  7810. return Ok(JsonView(false, "请传递团组id"));
  7811. }
  7812. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7813. if (deleInfo.Code != 0)
  7814. {
  7815. return Ok(JsonView(false, "团组信息查询失败!"));
  7816. }
  7817. var di = deleInfo.Data as DelegationInfoWebView;
  7818. if (di == null)
  7819. {
  7820. return Ok(JsonView(false, "团组信息查询失败!"));
  7821. }
  7822. //文件名
  7823. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7824. //获取模板
  7825. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7826. //载入模板
  7827. Document doc = new Document(tmppath);
  7828. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7829. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7830. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7831. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7832. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7833. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7834. if (AParameter == null)
  7835. {
  7836. return Ok(JsonView(false, "系数不存在!"));
  7837. }
  7838. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7839. , TzAirDesc, TzZCost;
  7840. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7841. = TzAirDesc = TzZCost = string.Empty;
  7842. TzNumber = AParameter.CostTypenumber.ToString();
  7843. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7844. CarGuides1 = dto.CarGuides1;
  7845. Meal = dto.Meal;
  7846. SubsidizedMeals = dto.SubsidizedMeals;
  7847. NightRepair = dto.NightRepair;
  7848. AttractionsTickets = dto.AttractionsTickets;
  7849. MiscellaneousFees = dto.MiscellaneousFees;
  7850. ATip = dto.ATip;
  7851. TzHotelDesc = "";
  7852. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7853. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7854. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7855. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7856. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7857. TzAirDesc = "";
  7858. TzZCost = dto.TzZCost;
  7859. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7860. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7861. var index = 1;
  7862. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7863. foreach (var item in TzHotelDescArr)
  7864. {
  7865. if (AinfoArr != null)
  7866. {
  7867. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7868. if (Ainfo != null)
  7869. {
  7870. if (int.Parse(Ainfo.rs) <= 0)
  7871. {
  7872. continue;
  7873. }
  7874. var hotelText = string.Empty;
  7875. switch (item)
  7876. {
  7877. case "SGR":
  7878. hotelText = "单人间";
  7879. break;
  7880. case "JSES":
  7881. hotelText = "小套房";
  7882. break;
  7883. case "SUITE":
  7884. hotelText = "套房";
  7885. break;
  7886. case "TBR":
  7887. hotelText = "双人间";
  7888. break;
  7889. }
  7890. if (item != "TBR")
  7891. {
  7892. 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";
  7893. }
  7894. else
  7895. {
  7896. 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";
  7897. }
  7898. index++;
  7899. }
  7900. }
  7901. }
  7902. index = 1;
  7903. foreach (var item in TzAirDescArr)
  7904. {
  7905. if (AinfoArr != null)
  7906. {
  7907. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7908. if (Ainfo != null)
  7909. {
  7910. if (int.Parse(Ainfo.rs) <= 0)
  7911. {
  7912. continue;
  7913. }
  7914. 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";
  7915. index++;
  7916. }
  7917. }
  7918. }
  7919. if (dto.costType == "B")
  7920. {
  7921. if (BParameter == null)
  7922. {
  7923. return Ok(JsonView(false, "B段系数不存在!"));
  7924. }
  7925. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7926. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7927. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7928. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7929. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7930. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7931. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7932. foreach (var item in TzHotelDescArr)
  7933. {
  7934. if (AinfoArr != null)
  7935. {
  7936. TzHotelDesc += "B段信息 \r\n";
  7937. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7938. if (Ainfo != null)
  7939. {
  7940. if (int.Parse(Ainfo.rs) <= 0)
  7941. {
  7942. continue;
  7943. }
  7944. var hotelText = string.Empty;
  7945. switch (item)
  7946. {
  7947. case "SGR":
  7948. hotelText = "单人间";
  7949. break;
  7950. case "JSES":
  7951. hotelText = "小套房";
  7952. break;
  7953. case "SUITE":
  7954. hotelText = "套房";
  7955. break;
  7956. case "TBR":
  7957. hotelText = "双人间";
  7958. break;
  7959. }
  7960. if (item != "TBR")
  7961. {
  7962. 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";
  7963. }
  7964. else
  7965. {
  7966. 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";
  7967. }
  7968. index++;
  7969. }
  7970. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7971. }
  7972. }
  7973. index = 1;
  7974. foreach (var item in TzAirDescArr)
  7975. {
  7976. if (AinfoArr != null)
  7977. {
  7978. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7979. if (Ainfo != null)
  7980. {
  7981. if (int.Parse(Ainfo.rs) <= 0)
  7982. {
  7983. continue;
  7984. }
  7985. 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";
  7986. index++;
  7987. }
  7988. }
  7989. }
  7990. }
  7991. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7992. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7993. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7994. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7995. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7996. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7997. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7998. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7999. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  8000. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  8001. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  8002. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  8003. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  8004. DickeyValue.Add("Visa", Visa); // 签证单人报价
  8005. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  8006. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  8007. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  8008. DickeyValue.Add("TzZCost", TzZCost);
  8009. foreach (var key in DickeyValue.Keys)
  8010. {
  8011. if (doc.Range.Bookmarks[key] != null)
  8012. {
  8013. Bookmark mark = doc.Range.Bookmarks[key];
  8014. mark.Text = DickeyValue[key];
  8015. }
  8016. }
  8017. byte[] bytes = null;
  8018. string strFileName = di.TeamName + "-客户报价.doc";
  8019. using (MemoryStream stream = new MemoryStream())
  8020. {
  8021. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  8022. bytes = stream.ToArray();
  8023. }
  8024. return Ok(JsonView(true, "", new
  8025. {
  8026. Data = bytes,
  8027. strFileName,
  8028. }));
  8029. }
  8030. /// <summary>
  8031. /// 团组成本 各模块(酒店,地接,机票)成本提示
  8032. /// </summary>
  8033. /// <param name="dto"></param>
  8034. /// <returns></returns>
  8035. [HttpPost]
  8036. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8037. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  8038. {
  8039. try
  8040. {
  8041. #region 参数验证
  8042. if (dto.DiId < 0)
  8043. {
  8044. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  8045. }
  8046. List<int> cTableIds = new List<int>() {
  8047. 76 ,//酒店预订
  8048. 77 ,//行程
  8049. 79 ,//车/导游地接
  8050. 80 ,//签证
  8051. 81 ,//邀请/公务活
  8052. 82 ,//团组客户保险
  8053. 85 ,//机票预订
  8054. 98 ,//其他款项
  8055. 285 ,//收款退还
  8056. 751 ,//酒店早餐
  8057. 1015 // 超支费用
  8058. };
  8059. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  8060. {
  8061. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  8062. }
  8063. #endregion
  8064. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  8065. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  8066. if (_GroupCostParameters.Count <= 0)
  8067. {
  8068. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  8069. }
  8070. if (_GroupCostParameters[0].IsShare == 0)
  8071. {
  8072. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  8073. }
  8074. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8075. //处理date为空问题
  8076. if (_GroupCosts.Count > 0)
  8077. {
  8078. for (int i = 0; i < _GroupCosts.Count; i++)
  8079. {
  8080. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8081. {
  8082. if (i > 0)
  8083. {
  8084. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8085. }
  8086. }
  8087. }
  8088. }
  8089. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8090. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8091. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8092. string currCode = "";
  8093. #region currCode 验证
  8094. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8095. if (isInt)
  8096. {
  8097. var currData = currDatas.Find(it => it.Id == intCurrency);
  8098. if (currData != null)
  8099. {
  8100. currCode = currData.Name;
  8101. }
  8102. }
  8103. else
  8104. {
  8105. currCode = _GroupCostParameters[0].Currency.Trim();
  8106. }
  8107. #endregion
  8108. //op,酒店单段模式存储
  8109. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8110. {
  8111. CurrencyCode = currCode,
  8112. Rate = _GroupCostParameters[0].Rate,
  8113. CostType = _GroupCostParameters[0].CostType,
  8114. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8115. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8116. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8117. };
  8118. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8119. if (_GroupCostParameters.Count == 2)
  8120. {
  8121. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8122. }
  8123. foreach (var item in _GroupCostParameters)
  8124. {
  8125. decimal _rate = 1;
  8126. decimal _rate1 = item.Rate;
  8127. decimal _scale = 1;
  8128. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8129. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8130. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8131. //if (userInfo != null)
  8132. //{
  8133. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8134. // {
  8135. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8136. // {
  8137. // _scale = 1.00M;
  8138. // }
  8139. // }
  8140. //}
  8141. #endregion
  8142. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8143. {
  8144. CurrencyCode = currCode,
  8145. Rate = _rate1,
  8146. CostType = item.CostType,
  8147. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8148. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8149. CostTypeNumber = item.CostTypenumber
  8150. };
  8151. if (_GroupCostParameters.Count > 1)
  8152. {
  8153. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8154. }
  8155. else
  8156. {
  8157. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8158. }
  8159. if (dto.CTable == 79)//
  8160. {
  8161. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8162. modulePromptInfo.TotalCost = item.DJCB;
  8163. }
  8164. List<string> costTypes = new List<string>() { "A", "B" };
  8165. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8166. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8167. if (_GroupCostsDuplicates.Count() == 1)
  8168. {
  8169. _GroupCostsTypeData = _GroupCosts;
  8170. }
  8171. else
  8172. {
  8173. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8174. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8175. }
  8176. /*
  8177. * 76 酒店预订
  8178. * 77 行程
  8179. * 79 车/导游地接
  8180. * 80 签证
  8181. * 81 邀请/公务活动
  8182. * 82 团组客户保险
  8183. * 85 机票预订
  8184. * 98 其他款项
  8185. * 285 收款退还
  8186. * 751 酒店早餐
  8187. * 1015 超支费用
  8188. */
  8189. switch (dto.CTable)
  8190. {
  8191. case 76: // 酒店预订
  8192. _ModuleSubPromptInfo.AddRange(
  8193. _GroupCostsTypeData.Select(it => new
  8194. {
  8195. it.DAY,
  8196. it.Date,
  8197. it.ACCON,
  8198. it.ITIN,
  8199. it.SGR,
  8200. it.TBR,
  8201. it.JS_ES,
  8202. it.Suite
  8203. })
  8204. );
  8205. break;
  8206. case 79: // 车/导游地接
  8207. _ModuleSubPromptInfo.AddRange(
  8208. _GroupCostsTypeData.Select(it => new
  8209. {
  8210. Date = it.Date, //日期
  8211. CarFee = it.CarCost * _rate * _scale, //车费用
  8212. CarType = it.CarType, //车型
  8213. DriverFee = it.CFS * _rate * _scale, //司机工资
  8214. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8215. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8216. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8217. GuideFee = it.TGS * _rate * _scale, //导游费用
  8218. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8219. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8220. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8221. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8222. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8223. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8224. Breakfast = it.B * _rate * _scale, //早餐费
  8225. Lunch = it.L * _rate * _scale, //午餐费
  8226. Dinner = it.D * _rate * _scale, //晚餐费
  8227. TicketFee = it.EF * _rate * _scale, //门票费
  8228. SpentCash = it.PC * _rate * _scale, //零用金
  8229. LeadersFee = it.TLF * _rate * _scale, //领队费
  8230. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8231. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8232. })
  8233. );
  8234. break;
  8235. case 85: // 机票
  8236. List<dynamic> datas = new List<dynamic>();
  8237. datas.Add(
  8238. new
  8239. {
  8240. AirType = "经济舱",
  8241. AirNum = item.JJCRS,
  8242. AirDRCB = item.JJCCB,
  8243. AirZCB = (item.JJCRS * item.JJCCB)
  8244. }
  8245. );
  8246. datas.Add(
  8247. new
  8248. {
  8249. AirType = "公务舱",
  8250. AirNum = item.GWCRS,
  8251. AirDRCB = item.GWCCB,
  8252. AirZCB = (item.GWCRS * item.GWCCB)
  8253. }
  8254. );
  8255. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8256. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8257. modulePromptInfo.Data = new
  8258. {
  8259. airFeeData = datas,
  8260. airInitData = initDatas
  8261. };
  8262. _ModulePromptInfos.Add(modulePromptInfo);
  8263. break;
  8264. default:
  8265. break;
  8266. }
  8267. }
  8268. if (dto.CTable != 85)
  8269. {
  8270. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8271. _ModulePromptInfos.Add(_ModulePromptInfo);
  8272. }
  8273. _view.ModulePromptInfos = _ModulePromptInfos;
  8274. return Ok(JsonView(true, "操作成功!", _view));
  8275. }
  8276. catch (Exception ex)
  8277. {
  8278. return Ok(JsonView(false, ex.Message));
  8279. }
  8280. }
  8281. /// <summary>
  8282. /// 根据黑屏代码重新生成行程
  8283. /// </summary>
  8284. /// <param name="dto"></param>
  8285. /// <returns></returns>
  8286. [HttpPost]
  8287. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8288. {
  8289. var jw = JsonView(false);
  8290. var Create = _GroupCostRepository.
  8291. CreateGroupCostByBlackCode(dto.Diid);
  8292. jw.Msg = Create.Msg;
  8293. if (Create.Code == 0)
  8294. {
  8295. jw.Code = 200;
  8296. jw.Data = new
  8297. {
  8298. groupCost = Create.Data,
  8299. blackCodeIsTrue = true
  8300. };
  8301. }
  8302. else
  8303. {
  8304. jw.Code = 400;
  8305. jw.Data = new
  8306. {
  8307. groupCost = Create.Data,
  8308. blackCodeIsTrue = false,
  8309. };
  8310. }
  8311. return Ok(jw);
  8312. }
  8313. /// <summary>
  8314. /// 成本获取OP历史车费用
  8315. /// </summary>
  8316. /// <param name="dto"></param>
  8317. /// <returns></returns>
  8318. [HttpPost]
  8319. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8320. {
  8321. var jw = JsonView(false);
  8322. try
  8323. {
  8324. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8325. //获取现有所有车的数据
  8326. if (!dto.Param.IsNullOrWhiteSpace())
  8327. {
  8328. string sql = $@"
  8329. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8330. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8331. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8332. 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
  8333. AND gctggr.ServiceEndTime is not NULL
  8334. ORDER by gctggrc.id DESC
  8335. ";
  8336. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8337. var numeberResult = await Task.Run(() =>
  8338. {
  8339. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8340. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8341. return numberArr;
  8342. });
  8343. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8344. foreach (var item in numeberResult)
  8345. {
  8346. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8347. {
  8348. Country = "数据异常!",
  8349. City = string.Empty,
  8350. };
  8351. item.Area = find.Country + " " + find.City;
  8352. }
  8353. dbResult.AddRange(numeberResult);
  8354. if (dto.Param.Contains("、"))
  8355. {
  8356. var sp = dto.Param.Split("、");
  8357. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8358. .Where(x =>
  8359. {
  8360. return System.Array.Exists(sp, e =>
  8361. {
  8362. bool where = false;
  8363. if (x.Area != null)
  8364. {
  8365. where = x.Area.Contains(e);
  8366. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8367. {
  8368. return false;
  8369. }
  8370. }
  8371. if (x.PriceName != null && !where)
  8372. {
  8373. where = x.PriceName.Contains(e);
  8374. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8375. {
  8376. return false;
  8377. }
  8378. }
  8379. return where;
  8380. });
  8381. }).ToList();
  8382. }
  8383. else
  8384. {
  8385. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8386. .Where(x =>
  8387. {
  8388. bool where = false;
  8389. if (x.Area != null)
  8390. {
  8391. where = x.Area.Contains(dto.Param);
  8392. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8393. {
  8394. return false;
  8395. }
  8396. }
  8397. if (x.PriceName != null && !where)
  8398. {
  8399. where = x.PriceName.Contains(dto.Param);
  8400. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8401. {
  8402. return false;
  8403. }
  8404. }
  8405. return where;
  8406. }
  8407. )
  8408. .ToList();
  8409. }
  8410. }
  8411. var view = dbResult.Select(x =>
  8412. {
  8413. decimal dp = 0.00M;
  8414. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8415. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8416. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8417. {
  8418. if (startB && endB)
  8419. {
  8420. var timesp = endD.Subtract(startD);
  8421. if ((timesp.Days + 1) != 0)
  8422. {
  8423. dp = x.Price / (timesp.Days + 1);
  8424. }
  8425. }
  8426. }
  8427. else
  8428. {
  8429. dp = x.Price;
  8430. }
  8431. return new
  8432. {
  8433. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8434. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8435. x.Area,
  8436. x.id,
  8437. price = x.Price.ToString("F2"),
  8438. x.PriceName,
  8439. x.PriceContent,
  8440. x.TeamName,
  8441. x.DatePrice,
  8442. dayPrice = dp.ToString("F2"),
  8443. };
  8444. }).OrderByDescending(x => x.id).ToList();
  8445. jw = JsonView(true, "获取成功!", view);
  8446. }
  8447. catch (Exception e)
  8448. {
  8449. jw = JsonView(false, e.Message);
  8450. }
  8451. return Ok(jw);
  8452. }
  8453. #endregion
  8454. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8455. /// <summary>
  8456. /// 酒店预订
  8457. /// 酒店费用列表 根据团组Id查询
  8458. /// </summary>
  8459. /// <param name="_dto"></param>
  8460. /// <returns></returns>
  8461. [HttpPost]
  8462. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8463. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8464. {
  8465. #region 参数验证
  8466. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8467. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8468. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8469. #region 团组操作权限验证 76 酒店预定模块
  8470. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8471. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8472. #endregion
  8473. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8474. #region 页面操作权限验证
  8475. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8476. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8477. #endregion
  8478. #endregion
  8479. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8480. }
  8481. /// <summary>
  8482. /// 酒店预订
  8483. /// 基础数据
  8484. /// </summary>
  8485. /// <param name="_dto"></param>
  8486. /// <returns></returns>
  8487. [HttpPost]
  8488. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8489. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8490. {
  8491. #region 参数验证
  8492. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8493. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8494. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8495. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8496. #region 页面操作权限验证
  8497. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8498. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8499. #endregion
  8500. #region 团组操作权限验证 76 酒店预定模块
  8501. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8502. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8503. #endregion
  8504. #endregion
  8505. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8506. }
  8507. /// <summary>
  8508. /// 酒店预订
  8509. /// 创建 入住卷号码
  8510. /// </summary>
  8511. /// <param name="_dto"></param>
  8512. /// <returns></returns>
  8513. [HttpPost]
  8514. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8515. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8516. {
  8517. try
  8518. {
  8519. #region 参数验证
  8520. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8521. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8522. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8523. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8524. #region 页面操作权限验证
  8525. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8526. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8527. #endregion
  8528. #region 团组操作权限验证 76 酒店预定模块
  8529. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8530. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8531. #endregion
  8532. #endregion
  8533. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8534. if (data.Code != 0)
  8535. {
  8536. return Ok(JsonView(false, data.Msg));
  8537. }
  8538. return Ok(JsonView(true, data.Msg, data.Data));
  8539. }
  8540. catch (Exception ex)
  8541. {
  8542. return Ok(JsonView(false, ex.Message));
  8543. }
  8544. }
  8545. /// <summary>
  8546. /// 酒店预订
  8547. /// 详情
  8548. /// </summary>
  8549. /// <param name="_dto"></param>
  8550. /// <returns></returns>
  8551. [HttpPost]
  8552. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8553. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8554. {
  8555. #region 参数验证
  8556. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8557. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8558. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8559. #region 团组操作权限验证 76 酒店预定模块
  8560. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8561. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8562. #endregion
  8563. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8564. #region 页面操作权限验证
  8565. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8566. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8567. #endregion
  8568. #endregion
  8569. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8570. }
  8571. /// <summary>
  8572. /// 酒店预订
  8573. /// Add Or Edit
  8574. /// </summary>
  8575. /// <param name="_dto"></param>
  8576. /// <returns></returns>
  8577. [HttpPost]
  8578. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8579. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8580. {
  8581. #region 参数验证
  8582. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8583. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8584. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8585. #region 团组操作权限验证 76 酒店预定模块
  8586. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8587. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8588. #endregion
  8589. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8590. #region 页面操作权限验证
  8591. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8592. if (_dto.Id == 0) // Add
  8593. {
  8594. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8595. }
  8596. else if (_dto.Id > 1) // Edit
  8597. {
  8598. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8599. }
  8600. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8601. #endregion
  8602. #endregion
  8603. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8604. if (_view.Code != 200)
  8605. {
  8606. return Ok(_view);
  8607. }
  8608. #region 应用推送
  8609. try
  8610. {
  8611. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8612. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8613. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8614. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8615. //自动审核
  8616. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8617. }
  8618. catch (Exception ex)
  8619. {
  8620. }
  8621. #endregion
  8622. return Ok(_view);
  8623. }
  8624. /// <summary>
  8625. /// 酒店预订
  8626. /// Del
  8627. /// </summary>
  8628. /// <param name="_dto"></param>
  8629. /// <returns></returns>
  8630. [HttpPost]
  8631. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8632. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8633. {
  8634. #region 参数验证
  8635. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8636. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8637. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8638. #region 团组操作权限验证 76 酒店预定模块
  8639. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8640. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8641. #endregion
  8642. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8643. #region 页面操作权限验证
  8644. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8645. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8646. #endregion
  8647. #endregion
  8648. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8649. }
  8650. /// <summary>
  8651. /// 酒店预订
  8652. /// 生成VOUCHER
  8653. /// 2024.05.06 之前版本
  8654. /// </summary>
  8655. /// <param name="_dto"></param>
  8656. /// <returns></returns>
  8657. [HttpPost]
  8658. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8659. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8660. {
  8661. try
  8662. {
  8663. #region 参数验证
  8664. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8665. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8666. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8667. #region 团组操作权限验证 76 酒店预定模块
  8668. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8669. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8670. #endregion
  8671. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8672. #region 页面操作权限验证
  8673. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8674. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8675. #endregion
  8676. #endregion
  8677. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8678. //判断数据是否完整
  8679. if (hr != null)
  8680. {
  8681. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8682. {
  8683. string strFileName = "HotelStatement/";
  8684. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8685. if (dele != null)
  8686. strFileName += dele.TourCode;
  8687. //载入模板
  8688. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8689. Document doc = new Document(sss);
  8690. DocumentBuilder builder = new DocumentBuilder(doc);
  8691. #region 替换Word模板书签内容
  8692. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8693. //入住卷预定号码
  8694. if (doc.Range.Bookmarks["VNO"] != null)
  8695. {
  8696. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8697. mark.Text = hr.CheckNumber;
  8698. }
  8699. //酒店时间
  8700. if (doc.Range.Bookmarks["Date"] != null)
  8701. {
  8702. Bookmark mark = doc.Range.Bookmarks["Date"];
  8703. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8704. }
  8705. //团号
  8706. if (doc.Range.Bookmarks["TNo"] != null)
  8707. {
  8708. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8709. mark.Text = dele.TourCode;
  8710. }
  8711. //预定号码
  8712. if (doc.Range.Bookmarks["BookingId"] != null)
  8713. {
  8714. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8715. mark.Text = hr.ReservationsNo;
  8716. }
  8717. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8718. {
  8719. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8720. mark.Text = hr.DetermineNo;
  8721. }
  8722. //酒店城市
  8723. if (doc.Range.Bookmarks["City"] != null)
  8724. {
  8725. Bookmark mark = doc.Range.Bookmarks["City"];
  8726. mark.Text = hr.City;
  8727. }
  8728. //酒店名称
  8729. if (doc.Range.Bookmarks["HName"] != null)
  8730. {
  8731. Bookmark mark = doc.Range.Bookmarks["HName"];
  8732. mark.Text = hr.HotelName;
  8733. }
  8734. //酒店地址
  8735. if (doc.Range.Bookmarks["Address"] != null)
  8736. {
  8737. Bookmark mark = doc.Range.Bookmarks["Address"];
  8738. mark.Text = hr.HotelAddress;
  8739. }
  8740. //酒店电话
  8741. if (doc.Range.Bookmarks["Tel"] != null)
  8742. {
  8743. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8744. mark.Text = hr.HotelTel;
  8745. }
  8746. //酒店传真
  8747. if (doc.Range.Bookmarks["Fax"] != null)
  8748. {
  8749. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8750. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8751. {
  8752. mark.Text = hr.HotelFax;
  8753. }
  8754. }
  8755. //入住时间
  8756. if (doc.Range.Bookmarks["CIn"] != null)
  8757. {
  8758. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8759. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8760. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8761. }
  8762. //退房时间
  8763. if (doc.Range.Bookmarks["COut"] != null)
  8764. {
  8765. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8766. Bookmark mark = doc.Range.Bookmarks["COut"];
  8767. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8768. }
  8769. //客户名称
  8770. if (doc.Range.Bookmarks["GName"] != null)
  8771. {
  8772. string guestName = "";
  8773. string[] clients = new string[] { };
  8774. if (hr.GuestName.Contains(","))
  8775. {
  8776. clients = hr.GuestName.Split(",");
  8777. }
  8778. else
  8779. {
  8780. clients = new string[] { hr.GuestName };
  8781. }
  8782. List<int> clientIds_int = new List<int>();
  8783. if (clients.Length > 0)
  8784. {
  8785. foreach (var item in clients)
  8786. {
  8787. if (item.IsNumeric())
  8788. {
  8789. clientIds_int.Add(int.Parse(item));
  8790. }
  8791. }
  8792. }
  8793. if (clientIds_int.Count > 0)
  8794. {
  8795. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8796. foreach (var client in _clientDatas)
  8797. {
  8798. //男
  8799. if (client.Sex == 0) guestName += $"Mr.";
  8800. //女
  8801. else if (client.Sex == 1) guestName += $"Ms.";
  8802. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8803. {
  8804. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8805. }
  8806. //guestName += $"{client.Pinyin},";
  8807. }
  8808. if (guestName.Length > 0)
  8809. {
  8810. guestName = guestName.Substring(0, guestName.Length - 1);
  8811. }
  8812. }
  8813. else
  8814. {
  8815. guestName = hr.GuestName;
  8816. }
  8817. Bookmark mark = doc.Range.Bookmarks["GName"];
  8818. mark.Text = guestName;
  8819. }
  8820. //房间介绍
  8821. if (doc.Range.Bookmarks["ROOM"] != null)
  8822. {
  8823. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8824. mark.Text = hr.RoomExplanation;
  8825. }
  8826. //报价描述
  8827. if (doc.Range.Bookmarks["NOTE"] != null)
  8828. {
  8829. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8830. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8831. if (ss != null)
  8832. mark.Text = ss.Name;
  8833. }
  8834. //入住时间
  8835. if (doc.Range.Bookmarks["CheckIn"] != null)
  8836. {
  8837. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8838. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8839. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8840. }
  8841. //退房时间
  8842. if (doc.Range.Bookmarks["CheckOut"] != null)
  8843. {
  8844. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8845. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8846. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8847. }
  8848. //日期
  8849. if (doc.Range.Bookmarks["DT"] != null)
  8850. {
  8851. Bookmark mark = doc.Range.Bookmarks["DT"];
  8852. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8853. }
  8854. //名称
  8855. if (doc.Range.Bookmarks["VName"] != null)
  8856. {
  8857. Bookmark mark = doc.Range.Bookmarks["VName"];
  8858. mark.Text = hr.HotelName;
  8859. }
  8860. //号码
  8861. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8862. {
  8863. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8864. mark.Text = hr.CheckNumber;
  8865. }
  8866. #endregion
  8867. strFileName += "VOUCHER.doc";
  8868. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8869. doc.Save(fileDir);
  8870. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8871. return Ok(JsonView(true, "操作成功!", Url));
  8872. }
  8873. else
  8874. {
  8875. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8876. }
  8877. }
  8878. else
  8879. {
  8880. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8881. }
  8882. }
  8883. catch (Exception ex)
  8884. {
  8885. return Ok(JsonView(false, ex.Message));
  8886. }
  8887. }
  8888. /// <summary>
  8889. /// 酒店预订
  8890. /// 生成VOUCHER
  8891. /// 2024.05.06 之后版本
  8892. /// </summary>
  8893. /// <param name="_dto"></param>
  8894. /// <returns></returns>
  8895. [HttpPost]
  8896. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8897. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8898. {
  8899. #region 参数验证
  8900. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8901. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8902. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8903. #region 团组操作权限验证 76 酒店预定模块
  8904. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8905. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8906. #endregion
  8907. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8908. #region 页面操作权限验证
  8909. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8910. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8911. #endregion
  8912. #endregion
  8913. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8914. //判断数据是否完整
  8915. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8916. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8917. string strFileName = "HotelStatement/";
  8918. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8919. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8920. #region 数据处理
  8921. List<int> guestIds = new List<int>();
  8922. int index = 0;
  8923. foreach (var item in hrDtas)
  8924. {
  8925. if (item.GuestName.Contains(","))
  8926. {
  8927. string[] guestIdArr = item.GuestName.Split(',');
  8928. foreach (var guestIdStr in guestIdArr)
  8929. {
  8930. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8931. if (guestBool)
  8932. {
  8933. guestIds.Add(guestId);
  8934. }
  8935. }
  8936. }
  8937. else guestNames += item.GuestName;
  8938. var voucherInfo = new HotelVoucherInfoView()
  8939. {
  8940. HotelName = item.HotelName,
  8941. CheckInDate = item.CheckInDate,
  8942. CheckOutDate = item.CheckOutDate,
  8943. ConfirmationNumber = item.DetermineNo.Trim(),
  8944. RoomType = item.RoomExplanation
  8945. };
  8946. vouchers.Add(voucherInfo);
  8947. }
  8948. if (guestIds.Count > 0)
  8949. {
  8950. guestIds = guestIds.Distinct().ToList();
  8951. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8952. if (guestDatas.Count > 0)
  8953. {
  8954. guestNames = "";
  8955. foreach (var guest in guestDatas)
  8956. {
  8957. string guestName = "";
  8958. if (guest.Sex == 0) guestName += @"MR.";
  8959. else if (guest.Sex == 1) guestName += @"MS.";
  8960. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8961. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8962. guestNames += @$"{guestName.Trim()}、";
  8963. }
  8964. if (guestNames.Length > 0)
  8965. {
  8966. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8967. }
  8968. }
  8969. }
  8970. #endregion
  8971. //载入模板
  8972. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8973. Document doc = new Document(sss);
  8974. DocumentBuilder builder = new DocumentBuilder(doc);
  8975. if (doc.Range.Bookmarks["GuestName"] != null)
  8976. {
  8977. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  8978. mark.Text = guestNames;
  8979. }
  8980. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8981. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  8982. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  8983. for (int i = 1; i <= vouchers.Count; i++)
  8984. {
  8985. HotelVoucherInfoView hviv = vouchers[i - 1];
  8986. builder.MoveToCell(0, i, 0, 0);
  8987. builder.Write(hviv.HotelName);
  8988. builder.MoveToCell(0, i, 1, 0);
  8989. builder.Write(hviv.CheckInDate);
  8990. builder.MoveToCell(0, i, 2, 0);
  8991. builder.Write(hviv.CheckOutDate);
  8992. builder.MoveToCell(0, i, 3, 0);
  8993. builder.Write(hviv.RoomType);
  8994. builder.MoveToCell(0, i, 4, 0);
  8995. builder.Write(hviv.ConfirmationNumber);
  8996. }
  8997. //删除多余行
  8998. int currRowIndex = vouchers.Count + 1;
  8999. int delRows = 21 - currRowIndex;
  9000. if (delRows > 0)
  9001. {
  9002. for (int i = 0; i < delRows; i++)
  9003. {
  9004. table.Rows.RemoveAt(currRowIndex);
  9005. //cultivateRowIndex++;
  9006. }
  9007. }
  9008. strFileName += "VOUCHER.docx";
  9009. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9010. doc.Save(fileDir);
  9011. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9012. return Ok(JsonView(true, "操作成功!", Url));
  9013. }
  9014. /// <summary>
  9015. /// 酒店预订
  9016. /// 生成 预定成本 Excel
  9017. /// </summary>
  9018. /// <param name="_dto"></param>
  9019. /// <returns></returns>
  9020. [HttpPost]
  9021. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9022. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9023. {
  9024. #region 参数验证
  9025. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9026. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9027. if (!vadalitorRes.IsValid)
  9028. {
  9029. var errors = new StringBuilder();
  9030. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9031. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  9032. }
  9033. #region 团组操作权限验证 76 酒店预定模块
  9034. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9035. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9036. #endregion
  9037. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9038. #region 页面操作权限验证
  9039. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9040. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9041. #endregion
  9042. #endregion
  9043. decimal _rate = 1.00M;
  9044. string _currency = "";
  9045. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9046. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9047. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  9048. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9049. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  9050. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9051. {
  9052. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  9053. }
  9054. _currency = _GroupCostParameter.Currency;
  9055. bool isIntType = int.TryParse(_currency, out int currId);
  9056. if (isIntType)
  9057. {
  9058. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9059. }
  9060. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9061. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9062. if (currInfo == null)
  9063. {
  9064. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  9065. }
  9066. if (!_currency.ToUpper().Equals("CNY"))
  9067. {
  9068. _rate = _GroupCostParameter.Rate;
  9069. }
  9070. _rate = currInfo.Rate;
  9071. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9072. string strFileName = "HotelStatement/";
  9073. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9074. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9075. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  9076. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  9077. #region 数据处理
  9078. foreach (var item in hrDtas)
  9079. {
  9080. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9081. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  9082. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  9083. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  9084. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  9085. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  9086. string singleRoomFeeStr = string.Empty,
  9087. doubleRoomFeeStr = string.Empty,
  9088. suiteRoomFeeStr = string.Empty,
  9089. otherRoomFeeStr = string.Empty,
  9090. payMoneyStr = string.Empty,
  9091. cardPriceStr = string.Empty;
  9092. if (roomCurr.Equals(_currency))
  9093. {
  9094. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9095. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9096. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9097. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9098. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9099. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9100. }
  9101. else
  9102. {
  9103. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9104. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9105. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9106. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9107. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9108. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9109. }
  9110. string breakfastPriceStr = string.Empty,
  9111. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9112. governmentRentStr = string.Empty,
  9113. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9114. cityTaxStrStr = string.Empty,
  9115. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9116. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  9117. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  9118. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  9119. pcfds.Add(new HotelReservations_PCFD_View()
  9120. {
  9121. City = item.City,
  9122. HotelName = item.HotelName,
  9123. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9124. // SingleRoomCount = item.SingleRoomCount,
  9125. SingleRoomPrice = singleRoomFeeStr,
  9126. // DoubleRoomCount = item.DoubleRoomCount,
  9127. DoubleRoomPrice = doubleRoomFeeStr,
  9128. //SuiteRoomCount = item.SuiteRoomCount,
  9129. SuiteRoomPrice = suiteRoomFeeStr,
  9130. OtherRoomPrice = otherRoomFeeStr,
  9131. //OtherRoomCount = item.OtherRoomCount,
  9132. BreakfastPrice = breakfastPriceStr,
  9133. GovernmentRent = governmentRentStr,
  9134. CityTax = cityTaxStrStr,
  9135. RoomExplanation = item.RoomExplanation,
  9136. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  9137. PayTime = roomInfo.ConsumptionDate,
  9138. BankNo = roomInfo.BankNo,
  9139. PayMoney = payMoneyStr,
  9140. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9141. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  9142. CardPrice = cardPriceStr,
  9143. Remark = ccpInfo.Remark
  9144. });
  9145. }
  9146. #endregion
  9147. //载入模板
  9148. WorkbookDesigner designer = new WorkbookDesigner();
  9149. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9150. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9151. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9152. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9153. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9154. designer.SetDataSource("Opertor", userInfo.CnName);
  9155. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9156. dt.TableName = "ViewMyHotelReservations";
  9157. designer.SetDataSource(dt);
  9158. designer.Process();
  9159. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  9160. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9161. designer.Workbook.Save(serverPath);
  9162. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9163. #region 删除指定行
  9164. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  9165. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9166. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9167. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9168. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9169. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9170. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9171. cssIndex = dt.Columns["CityTax"].Ordinal,
  9172. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9173. remarkIndex = dt.Columns["Remark"].Ordinal;
  9174. //删除指定列
  9175. foreach (DataRow item in dt.Rows)
  9176. {
  9177. string singleStr = item["SingleRoomPrice"].ToString();
  9178. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9179. if (containsDigitButNotZero1) singleDel = false;
  9180. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9181. string doubleStr = item["DoubleRoomPrice"].ToString();
  9182. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9183. if (containsDigitButNotZero2) doubleDel = false;
  9184. string suiteStr = item["SuiteRoomPrice"].ToString();
  9185. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9186. if (containsDigitButNotZero3) suiteDel = false;
  9187. string otherStr = item["OtherRoomPrice"].ToString();
  9188. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9189. if (containsDigitButNotZero4) otherDel = false;
  9190. string zcStr = item["BreakfastPrice"].ToString();
  9191. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9192. if (containsDigitButNotZero5) zcDel = false;
  9193. string dsStr = item["GovernmentRent"].ToString();
  9194. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9195. if (containsDigitButNotZero6) dsDel = false;
  9196. string cssStr = item["CityTax"].ToString();
  9197. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9198. if (containsDigitButNotZero7) cssDel = false;
  9199. string cpStr = item["ConsumptionPatterns"].ToString();
  9200. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9201. string remarkStr = item["Remark"].ToString();
  9202. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9203. }
  9204. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9205. DeleteColumn(serverPath, cpIndex, cpDel);
  9206. DeleteColumn(serverPath, dsIndex, dsDel);
  9207. DeleteColumn(serverPath, cssIndex, cssDel);
  9208. DeleteColumn(serverPath, zcIndex, zcDel);
  9209. DeleteColumn(serverPath, otherIndex, otherDel);
  9210. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9211. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9212. DeleteColumn(serverPath, singleIndex, singleDel);
  9213. #endregion
  9214. //只保留第一个表格
  9215. DeleteSheet(serverPath);
  9216. return Ok(JsonView(true, "操作成功", url = rst));
  9217. }
  9218. /// <summary>
  9219. /// 删除指定列
  9220. /// </summary>
  9221. /// <param name="file"></param>
  9222. /// <param name="columnIndex"></param>
  9223. /// <param name="isDel"></param>
  9224. private void DeleteColumn(string file, int columnIndex, bool isDel)
  9225. {
  9226. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9227. //wb.Save(file);
  9228. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9229. if (sheet1 != null)
  9230. {
  9231. if (isDel)
  9232. {
  9233. Cells cells = sheet1.Cells;
  9234. cells.DeleteColumn(columnIndex);
  9235. }
  9236. }
  9237. wb.Save(file);
  9238. }
  9239. /// <summary>
  9240. /// 删除sheet
  9241. /// </summary>
  9242. /// <param name="file"></param>
  9243. /// <param name="sheetName"></param>
  9244. private void DeleteSheet(string file, string sheetName = "")
  9245. {
  9246. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9247. //wb.Save(file);
  9248. List<string> sheets = new List<string>();
  9249. foreach (var item in wb.Worksheets)
  9250. {
  9251. sheets.Add(item.Name);
  9252. }
  9253. if (sheets.Count > 0)
  9254. {
  9255. sheets.RemoveAt(0);//不删除第一个sheet
  9256. foreach (var item in sheets)
  9257. {
  9258. wb.Worksheets.RemoveAt(item);
  9259. }
  9260. }
  9261. wb.Save(file);
  9262. }
  9263. /// <summary>
  9264. /// 酒店预订
  9265. /// 确认单
  9266. /// </summary>
  9267. /// <param name="_dto"></param>
  9268. /// <returns></returns>
  9269. [HttpPost]
  9270. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9271. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9272. {
  9273. try
  9274. {
  9275. #region 参数验证
  9276. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9277. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9278. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9279. #region 团组操作权限验证 76 酒店预定模块
  9280. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9281. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9282. #endregion
  9283. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9284. #region 页面操作权限验证
  9285. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9286. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9287. #endregion
  9288. #endregion
  9289. //团组信息
  9290. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9291. //酒店数据
  9292. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9293. if (listhoteldata.Count < 0)
  9294. {
  9295. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9296. }
  9297. //利datatable存储
  9298. DataTable dt = new DataTable();
  9299. dt.Columns.Add("CheckInDate", typeof(string));
  9300. dt.Columns.Add("City", typeof(string));
  9301. dt.Columns.Add("Hotel", typeof(string));
  9302. dt.Columns.Add("Room", typeof(string));
  9303. for (int i = 0; i < listhoteldata.Count; i++)
  9304. {
  9305. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9306. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9307. while (dayStart < dayEnd)
  9308. {
  9309. string temp = "";
  9310. DataRow row = dt.NewRow();
  9311. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9312. row["City"] = listhoteldata[i].City;
  9313. row["Hotel"] = listhoteldata[i].HotelName;
  9314. if (listhoteldata[i].SingleRoomCount > 0)
  9315. {
  9316. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9317. }
  9318. if (listhoteldata[i].DoubleRoomCount > 0)
  9319. {
  9320. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9321. }
  9322. if (listhoteldata[i].SuiteRoomCount > 0)
  9323. {
  9324. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9325. }
  9326. if (listhoteldata[i].OtherRoomCount > 0)
  9327. {
  9328. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9329. }
  9330. row["Room"] = temp;
  9331. dt.Rows.Add(row);
  9332. dayStart = dayStart.AddDays(1);
  9333. }
  9334. }
  9335. Dictionary<string, string> dic = new Dictionary<string, string>();
  9336. dic.Add("Dele", di.TeamName);
  9337. dic.Add("City", di.VisitCountry);
  9338. //模板路径
  9339. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9340. //载入模板
  9341. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9342. DocumentBuilder builder = new DocumentBuilder(doc);
  9343. foreach (var key in dic.Keys)
  9344. {
  9345. builder.MoveToBookmark(key);
  9346. builder.Write(dic[key]);
  9347. }
  9348. //获取word里所有表格
  9349. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9350. //获取所填表格的序数
  9351. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9352. var rowStart = tableOne.Rows[0]; //获取第1行
  9353. //循环赋值
  9354. for (int i = 0; i < dt.Rows.Count; i++)
  9355. {
  9356. builder.MoveToCell(0, i + 1, 0, 0);
  9357. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9358. builder.MoveToCell(0, i + 1, 1, 0);
  9359. builder.Write(dt.Rows[i]["City"].ToString());
  9360. builder.MoveToCell(0, i + 1, 2, 0);
  9361. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9362. builder.MoveToCell(0, i + 1, 3, 0);
  9363. builder.Write(dt.Rows[i]["Room"].ToString());
  9364. }
  9365. //删除多余行
  9366. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9367. {
  9368. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9369. }
  9370. string strFileName = di.TeamName + "酒店确认单.doc";
  9371. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9372. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9373. return Ok(JsonView(true, "成功", url));
  9374. }
  9375. catch (Exception ex)
  9376. {
  9377. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9378. }
  9379. }
  9380. #endregion
  9381. #region 团组状态
  9382. /// <summary>
  9383. /// 团组状态列表 Page
  9384. /// </summary>
  9385. /// <param name="dto">团组列表请求dto</param>
  9386. /// <returns></returns>
  9387. [HttpPost]
  9388. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9389. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9390. {
  9391. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9392. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9393. {
  9394. string sqlWhere = string.Empty;
  9395. if (dto.IsSure == 0) //未完成
  9396. {
  9397. sqlWhere += string.Format(@" And IsSure = 0");
  9398. }
  9399. else if (dto.IsSure == 1) //已完成
  9400. {
  9401. sqlWhere += string.Format(@" And IsSure = 1");
  9402. }
  9403. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9404. {
  9405. string tj = dto.SearchCriteria;
  9406. 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}%')",
  9407. tj, tj, tj, tj, tj);
  9408. }
  9409. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9410. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9411. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9412. From (
  9413. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9414. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9415. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9416. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9417. From Grp_DelegationInfo gdi
  9418. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9419. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9420. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9421. Where gdi.IsDel = 0 {0}
  9422. ) temp ", sqlWhere);
  9423. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9424. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9425. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9426. }
  9427. else
  9428. {
  9429. return Ok(JsonView(false, "查询失败"));
  9430. }
  9431. }
  9432. /// <summary>
  9433. /// 团组状态
  9434. /// 设置操作完成
  9435. /// </summary>
  9436. /// <param name="dto">团组列表请求dto</param>
  9437. /// <returns></returns>
  9438. [HttpPost]
  9439. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9440. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9441. {
  9442. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9443. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9444. {
  9445. Id = dto.Id,
  9446. IsSure = 1
  9447. };
  9448. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9449. .UpdateColumns(it => new { it.IsSure })
  9450. .WhereColumns(it => new { it.Id })
  9451. .ExecuteCommandAsync();
  9452. if (result > 0)
  9453. {
  9454. return Ok(JsonView(true, "操作完成!"));
  9455. }
  9456. return Ok(JsonView(false, "操作失败!"));
  9457. }
  9458. #endregion
  9459. #region 保险费用录入
  9460. /// <summary>
  9461. /// 根据团组Id查询保险费用列表
  9462. /// </summary>
  9463. /// <param name="dto"></param>
  9464. /// <returns></returns>
  9465. [HttpPost]
  9466. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9467. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9468. {
  9469. try
  9470. {
  9471. Result groupData = await _customersRep.CustomersByDiId(dto);
  9472. if (groupData.Code != 0)
  9473. {
  9474. return Ok(JsonView(false, groupData.Msg));
  9475. }
  9476. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9477. }
  9478. catch (Exception ex)
  9479. {
  9480. return Ok(JsonView(false, ex.Message));
  9481. }
  9482. }
  9483. /// <summary>
  9484. /// 根据保险费用Id查询保险费用详细
  9485. /// </summary>
  9486. /// <param name="dto"></param>
  9487. /// <returns></returns>
  9488. [HttpPost]
  9489. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9490. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9491. {
  9492. try
  9493. {
  9494. Result groupData = await _customersRep.CustomersById(dto);
  9495. if (groupData.Code != 0)
  9496. {
  9497. return Ok(JsonView(false, groupData.Msg));
  9498. }
  9499. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9500. }
  9501. catch (Exception ex)
  9502. {
  9503. return Ok(JsonView(false, ex.Message));
  9504. }
  9505. }
  9506. /// <summary>
  9507. /// 保险费用录入页面初始化绑定
  9508. /// </summary>
  9509. /// <param name="dto"></param>
  9510. /// <returns></returns>
  9511. [HttpPost]
  9512. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9513. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9514. {
  9515. try
  9516. {
  9517. Result groupData = await _customersRep.CustomersInitialize(dto);
  9518. if (groupData.Code != 0)
  9519. {
  9520. return Ok(JsonView(false, groupData.Msg));
  9521. }
  9522. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9523. }
  9524. catch (Exception ex)
  9525. {
  9526. return Ok(JsonView(false, ex.Message));
  9527. }
  9528. }
  9529. /// <summary>
  9530. /// 保险费用操作(Status:1.新增,2.修改)
  9531. /// </summary>
  9532. /// <param name="dto"></param>
  9533. /// <returns></returns>
  9534. [HttpPost]
  9535. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9536. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9537. {
  9538. try
  9539. {
  9540. Result groupData = await _customersRep.OpCustomers(dto);
  9541. if (groupData.Code != 0)
  9542. {
  9543. return Ok(JsonView(false, groupData.Msg));
  9544. }
  9545. #region 应用推送
  9546. try
  9547. {
  9548. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9549. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9550. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9551. }
  9552. catch (Exception ex)
  9553. {
  9554. }
  9555. #endregion
  9556. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9557. }
  9558. catch (Exception ex)
  9559. {
  9560. return Ok(JsonView(false, ex.Message));
  9561. }
  9562. }
  9563. /// <summary>
  9564. /// 保险文件上传
  9565. /// </summary>
  9566. /// <param name="file"></param>
  9567. /// <returns></returns>
  9568. [HttpPost]
  9569. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9570. public async Task<IActionResult> UploadCus(IFormFile file)
  9571. {
  9572. try
  9573. {
  9574. if (file != null)
  9575. {
  9576. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9577. //文件名称
  9578. string projectFileName = file.FileName;
  9579. //上传的文件的路径
  9580. string filePath = "";
  9581. if (!Directory.Exists(fileDir))
  9582. {
  9583. Directory.CreateDirectory(fileDir);
  9584. }
  9585. //上传的文件的路径
  9586. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9587. using (FileStream fs = System.IO.File.Create(filePath))
  9588. {
  9589. file.CopyTo(fs);
  9590. fs.Flush();
  9591. }
  9592. return Ok(JsonView(true, "上传成功!", projectFileName));
  9593. }
  9594. else
  9595. {
  9596. return Ok(JsonView(false, "上传失败!"));
  9597. }
  9598. }
  9599. catch (Exception ex)
  9600. {
  9601. return Ok(JsonView(false, "程序错误!"));
  9602. throw;
  9603. }
  9604. }
  9605. /// <summary>
  9606. /// 保险删除指定文件
  9607. /// </summary>
  9608. /// <param name="dto"></param>
  9609. /// <returns></returns>
  9610. [HttpPost]
  9611. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9612. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9613. {
  9614. try
  9615. {
  9616. string filePath = "";
  9617. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9618. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9619. //int id = 0;
  9620. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9621. // 删除该文件
  9622. try
  9623. {
  9624. System.IO.File.Delete(filePath);
  9625. 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()
  9626. {
  9627. Attachment = "",
  9628. }).ExecuteCommandAsync();
  9629. if (result != 0)
  9630. {
  9631. return Ok(JsonView(true, "成功!"));
  9632. }
  9633. else
  9634. {
  9635. return Ok(JsonView(false, "失败!"));
  9636. }
  9637. }
  9638. catch (Exception)
  9639. {
  9640. 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()
  9641. {
  9642. Attachment = "",
  9643. }).ExecuteCommandAsync();
  9644. if (result != 0)
  9645. {
  9646. return Ok(JsonView(true, "成功!"));
  9647. }
  9648. else
  9649. {
  9650. return Ok(JsonView(false, "失败!"));
  9651. }
  9652. }
  9653. }
  9654. catch (Exception ex)
  9655. {
  9656. return Ok(JsonView(false, "程序错误!"));
  9657. throw;
  9658. }
  9659. }
  9660. /// <summary>
  9661. /// 保险费用操作(删除)
  9662. /// </summary>
  9663. /// <param name="dto"></param>
  9664. /// <returns></returns>
  9665. [HttpPost]
  9666. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9667. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9668. {
  9669. try
  9670. {
  9671. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9672. if (!res)
  9673. {
  9674. return Ok(JsonView(false, "删除失败"));
  9675. }
  9676. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9677. {
  9678. IsDel = 1,
  9679. DeleteUserId = dto.DeleteUserId,
  9680. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9681. }).ExecuteCommandAsync();
  9682. return Ok(JsonView(true, "删除成功!"));
  9683. }
  9684. catch (Exception ex)
  9685. {
  9686. return Ok(JsonView(false, "程序错误!"));
  9687. throw;
  9688. }
  9689. }
  9690. #endregion
  9691. #region 接团客户名单 PageId 104
  9692. /// <summary>
  9693. /// 接团客户名单
  9694. /// 迁移数据(慎用!)
  9695. /// </summary>
  9696. /// <param name="dto"></param>
  9697. /// <returns></returns>
  9698. [HttpPost]
  9699. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9700. public async Task<IActionResult> PostTourClientListChange()
  9701. {
  9702. try
  9703. {
  9704. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9705. //var groupClinetData1
  9706. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9707. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9708. int updateCount = 0;
  9709. if (oldOAClientList.Count > 0)
  9710. {
  9711. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9712. _sqlSugar.BeginTran();
  9713. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9714. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9715. foreach (var item in oldOAClientList)
  9716. {
  9717. int comId = 0;
  9718. string format = "yyyy-MM-dd HH:mm:ss";
  9719. string data11 = "1990-01-01 00:00";
  9720. var data1 = IsValidDate(item.OPdate, format);
  9721. if (data1) data11 = item.OPdate;
  9722. //客户公司验证
  9723. if (!string.IsNullOrEmpty(item.Company))
  9724. {
  9725. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9726. if (clientComInfo == null) // add
  9727. {
  9728. var addInfo = new Crm_CustomerCompany()
  9729. {
  9730. CompanyAbbreviation = "",
  9731. CompanyFullName = item.Company,
  9732. Address = "",
  9733. PostCodes = "",
  9734. LastedOpUserId = item.OPer,
  9735. LastedOpDt = Convert.ToDateTime(data11),
  9736. CreateUserId = item.OPer,
  9737. CreateTime = Convert.ToDateTime(data11),
  9738. IsDel = 0
  9739. };
  9740. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9741. if (comId1 > 0) comId = comId1;
  9742. }
  9743. else comId = clientComInfo.Id;
  9744. }
  9745. //客户人员验证
  9746. int clientId = 0;
  9747. string name = item.LastName + item.Name;
  9748. if (!string.IsNullOrEmpty(name))
  9749. {
  9750. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9751. if (clientInfo == null)
  9752. {
  9753. DateTime? dateTime = null;
  9754. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9755. if (isDt) dateTime = birthDayDt;
  9756. var addInfo1 = new Crm_DeleClient()
  9757. {
  9758. CrmCompanyId = comId,
  9759. DiId = -1,
  9760. LastName = item.LastName,
  9761. FirstName = item.Name,
  9762. OldName = "",
  9763. Pinyin = item.Pinyin,
  9764. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9765. Marriage = 0,
  9766. Phone = item.Phone,
  9767. Job = item.Job,
  9768. BirthDay = dateTime
  9769. };
  9770. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9771. if (clientId1 > 0) clientId = clientId1;
  9772. }
  9773. else clientId = clientInfo.Id;
  9774. }
  9775. if (clientId < 1)
  9776. {
  9777. continue;
  9778. }
  9779. int airType = 0;
  9780. if (item.AirType == "超经舱") airType = 459;
  9781. else if (item.AirType == "公务舱") airType = 458;
  9782. else if (item.AirType == "经济舱") airType = 460;
  9783. else if (item.AirType == "其他") airType = 565;
  9784. else if (item.AirType == "头等舱") airType = 457;
  9785. var _TourClientListEntity = new Grp_TourClientList()
  9786. {
  9787. DiId = item.Diid,
  9788. ClientId = clientId,
  9789. CreateUserId = item.OPer,
  9790. CreateTime = Convert.ToDateTime(data11),
  9791. Remark = item.Remark,
  9792. IsDel = item.Isdel,
  9793. ShippingSpaceTypeId = airType,
  9794. ShippingSpaceSpecialNeeds = item.AirRemark,
  9795. HotelSpecialNeeds = item.RoomType
  9796. };
  9797. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9798. if (_TourClientList > 0)
  9799. {
  9800. updateCount++;
  9801. }
  9802. }
  9803. _sqlSugar.CommitTran();
  9804. }
  9805. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9806. }
  9807. catch (Exception ex)
  9808. {
  9809. _sqlSugar.RollbackTran();
  9810. return Ok(JsonView(false, ex.Message));
  9811. }
  9812. return Ok(JsonView(true));
  9813. }
  9814. private bool IsValidDate(string dateString, string format)
  9815. {
  9816. DateTime dateValue;
  9817. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9818. return valid;
  9819. }
  9820. /// <summary>
  9821. /// 接团客户名单
  9822. /// 根据团组Id查询List
  9823. /// </summary>
  9824. /// <param name="dto"></param>
  9825. /// <returns></returns>
  9826. [HttpPost]
  9827. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9828. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9829. {
  9830. #region 参数验证
  9831. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9832. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9833. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9834. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9835. #region 页面操作权限验证
  9836. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9837. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9838. #endregion
  9839. #endregion
  9840. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9841. if (viewData.Code != 0)
  9842. {
  9843. return Ok(JsonView(false, viewData.Msg));
  9844. }
  9845. return Ok(JsonView(viewData.Data));
  9846. }
  9847. /// <summary>
  9848. /// 接团客户名单
  9849. /// 基础数据 Init
  9850. /// </summary>
  9851. /// <param name="_dto"></param>
  9852. /// <returns></returns>
  9853. [HttpPost]
  9854. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9855. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9856. {
  9857. #region 参数验证
  9858. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9859. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9860. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9861. #region 页面操作权限验证
  9862. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9863. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9864. #endregion
  9865. #endregion
  9866. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9867. if (viewData.Code != 0)
  9868. {
  9869. return Ok(JsonView(false, viewData.Msg));
  9870. }
  9871. return Ok(JsonView(viewData.Data));
  9872. }
  9873. /// <summary>
  9874. /// 接团客户名单
  9875. /// 根据 Id查询 Details
  9876. /// </summary>
  9877. /// <param name="_dto"></param>
  9878. /// <returns></returns>
  9879. [HttpPost]
  9880. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9881. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9882. {
  9883. #region 参数验证
  9884. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9885. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9886. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9887. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9888. #region 页面操作权限验证
  9889. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9890. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9891. #endregion
  9892. #endregion
  9893. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9894. if (viewData.Code != 0)
  9895. {
  9896. return Ok(JsonView(false, viewData.Msg));
  9897. }
  9898. return Ok(JsonView(viewData.Data));
  9899. }
  9900. /// <summary>
  9901. /// 接团客户名单
  9902. /// Add Or Edit
  9903. /// </summary>
  9904. /// <param name="_dto"></param>
  9905. /// <returns></returns>
  9906. [HttpPost]
  9907. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9908. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9909. {
  9910. #region 参数验证
  9911. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9912. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9913. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9914. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9915. #region 页面操作权限验证
  9916. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9917. if (_dto.Id == 0) //添加
  9918. {
  9919. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9920. }
  9921. else if (_dto.Id >= 0) //修改
  9922. {
  9923. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9924. }
  9925. #endregion
  9926. #endregion
  9927. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9928. if (viewData.Code != 0)
  9929. {
  9930. return Ok(JsonView(false, viewData.Msg));
  9931. }
  9932. return Ok(JsonView(true));
  9933. }
  9934. /// <summary>
  9935. /// 接团客户名单
  9936. /// AddMultiple(添加多个)
  9937. /// </summary>
  9938. /// <param name="_dto"></param>
  9939. /// <returns></returns>
  9940. [HttpPost]
  9941. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9942. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9943. {
  9944. #region 参数验证
  9945. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9946. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9947. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9948. #region 页面操作权限验证
  9949. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9950. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9951. #endregion
  9952. #endregion
  9953. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9954. if (viewData.Code != 0)
  9955. {
  9956. return Ok(JsonView(false, viewData.Msg));
  9957. }
  9958. return Ok(JsonView(true));
  9959. }
  9960. /// <summary>
  9961. /// 接团客户名单
  9962. /// Del
  9963. /// </summary>
  9964. /// <param name="_dto"></param>
  9965. /// <returns></returns>
  9966. [HttpPost]
  9967. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9968. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9969. {
  9970. #region 参数验证
  9971. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9972. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9973. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9974. #region 页面操作权限验证
  9975. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9976. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9977. #endregion
  9978. #endregion
  9979. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  9980. if (viewData.Code != 0)
  9981. {
  9982. return Ok(JsonView(false, viewData.Msg));
  9983. }
  9984. return Ok(JsonView(true));
  9985. }
  9986. /// <summary>
  9987. /// 接团客户名单
  9988. /// 文件下载 客户名单
  9989. /// </summary>
  9990. /// <param name="_dto"></param>
  9991. /// <returns></returns>
  9992. [HttpPost]
  9993. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9994. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  9995. {
  9996. #region 参数验证
  9997. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9998. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9999. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10000. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10001. #region 页面操作权限验证
  10002. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10003. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10004. #endregion
  10005. #endregion
  10006. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10007. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10008. From Grp_TourClientList tcl
  10009. Left Join
  10010. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10011. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10012. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10013. From Crm_DeleClient dc
  10014. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10015. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10016. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10017. Where dc.IsDel = 0) temp
  10018. On temp.DcId =tcl.ClientId
  10019. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10020. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10021. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10022. //载入模板
  10023. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10024. if (_dto.Language == 1)
  10025. {
  10026. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10027. }
  10028. //载入模板
  10029. var doc = new Document(tempPath);
  10030. DocumentBuilder builder = new DocumentBuilder(doc);
  10031. //获取word里所有表格
  10032. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10033. //获取所填表格的序数
  10034. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10035. var rowStart = tableOne.Rows[0]; //获取第1行
  10036. if (_dto.Language == 0)
  10037. {
  10038. //循环赋值
  10039. for (int i = 0; i < DcList.Count; i++)
  10040. {
  10041. builder.MoveToCell(0, i + 1, 0, 0);
  10042. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10043. builder.MoveToCell(0, i + 1, 1, 0);
  10044. int sex = DcList[i].Sex;
  10045. string sexStr = string.Empty;
  10046. if (sex == 0) sexStr = "男";
  10047. else if (sex == 1) sexStr = "女";
  10048. else sexStr = "未设置";
  10049. builder.Write(sexStr);
  10050. builder.MoveToCell(0, i + 1, 2, 0);
  10051. string birthDay = DcList[i].BirthDay;
  10052. string birthDayStr = string.Empty;
  10053. if (!string.IsNullOrEmpty(birthDay))
  10054. {
  10055. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10056. }
  10057. builder.Write(birthDayStr);
  10058. builder.MoveToCell(0, i + 1, 3, 0);
  10059. string company = "";
  10060. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10061. {
  10062. company = DcList[i].CompanyFullName.ToString();
  10063. }
  10064. builder.Write(company);
  10065. builder.MoveToCell(0, i + 1, 4, 0);
  10066. builder.Write(DcList[i].Job);
  10067. }
  10068. }
  10069. else if (_dto.Language == 1)
  10070. {
  10071. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10072. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10073. List<string> transArrayStr = new List<string>();
  10074. string transStrRes1 = "";
  10075. for (int i = 0; i < DcList.Count; i++)
  10076. {
  10077. var dc = DcList[i];
  10078. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  10079. if (dc.Job.Equals("暂无")) dc.Job = "-";
  10080. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  10081. if (DcList.Count - 1 == i) transStrRes1 += str1;
  10082. else transStrRes1 += $"{str1}|";
  10083. }
  10084. //string transStrRes = "0 & Provincial Health & Health Commission Deputy Director | 1 & Provincial People's Hospital & Provincial People's Hospital Chief Accountant | 2 & Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College & North Sichuan Medical College | 3 & Provincial Health Commission Planning & Provincial Health Commission Planning and Information Division Director | 4 &-& Deputy Director | 5 & Provincial Health Commission population and Family Division & Provincial Health Commission population and Family Division Director";
  10085. string transStrRes = "";
  10086. if (transStrRes1.Length > 0 )
  10087. {
  10088. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  10089. }
  10090. //0、 Deputy Director of the Provincial Health and Health Commission | 1、 Chief Accountant of the provincial People's Hospital | 2、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 3、 Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director | 5、 Director of the population and Family Department of the Provincial Health and Health Commission | 3、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 4、 Deputy Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director of the population and Family Department of the Provincial Health and Health Commission | 5、 Director of the population and Family Department of the Provincial Health and Health Commission
  10091. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  10092. //List<string> transArray = new List<string> { };
  10093. List<TranslateInfo> transArray = new List<TranslateInfo>();
  10094. if (transStrRes.Contains("|"))
  10095. {
  10096. string[] transArray1 = transStrRes.Split('|');
  10097. if (transArray1.Length > 0)
  10098. {
  10099. foreach (var item in transArray1)
  10100. {
  10101. if (item.Contains("&"))
  10102. {
  10103. string[] transArray2 = item.Split('&');
  10104. int index = 0;
  10105. string companyName = "", job = "";
  10106. if (transArray2.Length > 0)
  10107. {
  10108. bool success = int.TryParse(transArray2[0].Trim(), out index);
  10109. if (1 < transArray2.Length) companyName = transArray2[1];
  10110. if (2 < transArray2.Length) job = transArray2[2];
  10111. }
  10112. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  10113. }
  10114. }
  10115. }
  10116. }
  10117. //循环赋值
  10118. for (int i = 0; i < DcList.Count; i++)
  10119. {
  10120. string PYName = "";
  10121. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10122. {
  10123. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10124. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10125. PYName = PY_First + " " + PY_Last;
  10126. }
  10127. else
  10128. {
  10129. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10130. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10131. PYName = PY_First + " " + PY_Last;
  10132. }
  10133. builder.MoveToCell(0, i + 1, 0, 0);
  10134. builder.Write(PYName);
  10135. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10136. builder.MoveToCell(0, i + 1, 1, 0);
  10137. builder.Write(sex);
  10138. DateTime birthDt;
  10139. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10140. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  10141. builder.MoveToCell(0, i + 1, 2, 0);
  10142. builder.Write(birthday);
  10143. string company = string.Empty,job = string.Empty;
  10144. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  10145. if (dcTransInfo != null)
  10146. {
  10147. company = dcTransInfo.CompanyName;
  10148. job = dcTransInfo.Job;
  10149. }
  10150. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10151. {
  10152. //查询对照表
  10153. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10154. if (tempCec != null)
  10155. {
  10156. company = tempCec.enName;
  10157. }
  10158. //翻译
  10159. else
  10160. {
  10161. }
  10162. }
  10163. builder.MoveToCell(0, i + 1, 3, 0);
  10164. builder.Write(company);
  10165. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10166. {
  10167. //查询对照表
  10168. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10169. if (tempPec != null)
  10170. {
  10171. job = tempPec.enName;
  10172. }
  10173. //翻译
  10174. else
  10175. {
  10176. }
  10177. }
  10178. builder.MoveToCell(0, i + 1, 4, 0);
  10179. builder.Write(job);
  10180. }
  10181. }
  10182. //删除多余行
  10183. while (tableOne.Rows.Count > DcList.Count + 1)
  10184. {
  10185. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10186. }
  10187. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10188. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10189. doc.Save(fileDir);
  10190. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10191. return Ok(JsonView(true, "操作成功!", Url));
  10192. }
  10193. private class TranslateInfo
  10194. {
  10195. public int Index { get; set; }
  10196. public string CompanyName { get; set; }
  10197. public string Job { get; set; }
  10198. }
  10199. #endregion
  10200. #region 团组倒推表
  10201. /// <summary>
  10202. /// 倒推表基础数据
  10203. /// Init
  10204. /// </summary>
  10205. /// <param name="dto"></param>
  10206. /// <returns></returns>
  10207. [HttpPost]
  10208. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10209. public async Task<IActionResult> PostInvertedListInit()
  10210. {
  10211. var viewData = await _invertedListRep._Init();
  10212. if (viewData.Code != 0)
  10213. {
  10214. return Ok(JsonView(false, viewData.Msg));
  10215. }
  10216. return Ok(JsonView(viewData.Data));
  10217. }
  10218. /// <summary>
  10219. /// 倒推表
  10220. /// Info
  10221. /// </summary>
  10222. /// <param name="dto"></param>
  10223. /// <returns></returns>
  10224. [HttpPost]
  10225. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10226. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10227. {
  10228. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10229. if (viewData.Code != 0)
  10230. {
  10231. return Ok(JsonView(false, viewData.Msg));
  10232. }
  10233. return Ok(JsonView(viewData.Data));
  10234. }
  10235. /// <summary>
  10236. /// 倒推表
  10237. /// Create
  10238. /// </summary>
  10239. /// <param name="dto"></param>
  10240. /// <returns></returns>
  10241. [HttpPost]
  10242. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10243. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10244. {
  10245. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10246. if (viewData.Code != 0)
  10247. {
  10248. return Ok(JsonView(false, viewData.Msg));
  10249. }
  10250. return Ok(JsonView(viewData.Data));
  10251. }
  10252. /// <summary>
  10253. /// 倒推表
  10254. /// Update
  10255. /// </summary>
  10256. /// <param name="dto"></param>
  10257. /// <returns></returns>
  10258. [HttpPost]
  10259. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10260. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10261. {
  10262. var viewData = await _invertedListRep._Update(dto);
  10263. if (viewData.Code != 0)
  10264. {
  10265. return Ok(JsonView(false, viewData.Msg));
  10266. }
  10267. return Ok(JsonView(viewData.Data));
  10268. }
  10269. /// <summary>
  10270. /// 倒推表
  10271. /// File Download
  10272. /// </summary>
  10273. /// <param name="dto"></param>
  10274. /// <returns></returns>
  10275. [HttpPost]
  10276. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10277. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10278. {
  10279. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10280. if (info2.Code != 0)
  10281. {
  10282. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10283. }
  10284. var info1 = info2.Data as InvertedListInfoView;
  10285. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10286. string teamName = "";
  10287. if (info != null) teamName = info.TeamName;
  10288. //载入模板
  10289. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10290. DocumentBuilder builder = new DocumentBuilder(doc);
  10291. //利用键值对存放数据
  10292. Dictionary<string, string> dic = new Dictionary<string, string>();
  10293. dic.Add("TeamName", teamName);
  10294. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10295. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10296. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10297. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10298. dic.Add("SQRemark", info1.ApprovalRemark);
  10299. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10300. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10301. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10302. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10303. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10304. dic.Add("QZRemark", info1.VisaInformationRemark);
  10305. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10306. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10307. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10308. dic.Add("CQRemark", info1.IssueVisaRemark);
  10309. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10310. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10311. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10312. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10313. #region 填充word模板书签内容
  10314. foreach (var key in dic.Keys)
  10315. {
  10316. builder.MoveToBookmark(key);
  10317. builder.Write(dic[key]);
  10318. }
  10319. #endregion
  10320. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10321. string fileName = $"{teamName}团出行准备流程表.doc";
  10322. string filePath = fileDir + $@"InvertedList/{fileName}";
  10323. doc.Save(filePath);
  10324. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10325. return Ok(JsonView(true, "操作成功!", Url));
  10326. }
  10327. #endregion
  10328. #region 三公签证费用(签证费、代办费)
  10329. /// <summary>
  10330. /// 三公签证费用(签证费、代办费)
  10331. /// List
  10332. /// </summary>
  10333. /// <returns></returns>
  10334. [HttpPost]
  10335. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10336. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10337. {
  10338. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10339. if (_view.Code != 0)
  10340. {
  10341. return Ok(JsonView(false, _view.Msg));
  10342. }
  10343. return Ok(JsonView(true, "操作成功!", _view.Data));
  10344. }
  10345. /// <summary>
  10346. /// 三公签证费用(签证费、代办费)
  10347. /// Add Or Update
  10348. /// </summary>
  10349. /// <returns></returns>
  10350. [HttpPost]
  10351. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10352. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10353. {
  10354. var _view = await _visaFeeInfoRep._Update(_dto);
  10355. if (_view.Code != 0)
  10356. {
  10357. return Ok(JsonView(false, _view.Msg));
  10358. }
  10359. return Ok(JsonView(true, _view.Msg));
  10360. }
  10361. #endregion
  10362. #region 酒店询价
  10363. /// <summary>
  10364. /// 酒店询价
  10365. /// Init
  10366. /// </summary>
  10367. /// <param name="dto"></param>
  10368. /// <returns></returns>
  10369. [HttpPost]
  10370. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10371. public async Task<IActionResult> PostHotelInquiryInit()
  10372. {
  10373. var res = await _hotelInquiryRep._Init();
  10374. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10375. return Ok(JsonView(true, res.Msg, res.Data));
  10376. }
  10377. /// <summary>
  10378. /// 酒店询价
  10379. /// page Item
  10380. /// </summary>
  10381. /// <param name="_dto"></param>
  10382. /// <returns></returns>
  10383. [HttpPost]
  10384. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10385. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10386. {
  10387. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10388. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10389. var view = res.Data as PageDataViewBase;
  10390. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10391. }
  10392. /// <summary>
  10393. /// 酒店询价
  10394. /// info
  10395. /// </summary>
  10396. /// <param name="_dto"></param>
  10397. /// <returns></returns>
  10398. [HttpPost]
  10399. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10400. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10401. {
  10402. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10403. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10404. return Ok(JsonView(true, res.Msg, res.Data));
  10405. }
  10406. /// <summary>
  10407. /// 酒店询价
  10408. /// Add Or Edit
  10409. /// </summary>
  10410. /// <param name="_dto"></param>
  10411. /// <returns></returns>
  10412. [HttpPost]
  10413. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10414. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10415. {
  10416. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10417. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10418. return Ok(JsonView(true, res.Msg, res.Data));
  10419. }
  10420. /// <summary>
  10421. /// 酒店询价
  10422. /// Del
  10423. /// </summary>
  10424. /// <param name="_dto"></param>
  10425. /// <returns></returns>
  10426. [HttpPost]
  10427. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10428. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10429. {
  10430. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10431. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10432. return Ok(JsonView(true, res.Msg, res.Data));
  10433. }
  10434. #endregion
  10435. #region 下载匹配op行程单
  10436. /// <summary>
  10437. /// 匹配op行程单
  10438. /// Init
  10439. /// </summary>
  10440. /// <param name="dto">团组列表请求dto</param>
  10441. /// <returns></returns>
  10442. [HttpPost]
  10443. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10444. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10445. {
  10446. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10447. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10448. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10449. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10450. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10451. .Where(it => it.IsDel == 0)
  10452. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10453. .OrderByDescending(it => it.CreateUserId)
  10454. .ToList();
  10455. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10456. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10457. var diids = groupInfos.Select(it => it.Id).ToList();
  10458. List<string> countrys = new List<string>();
  10459. foreach (var item in country)
  10460. {
  10461. var data = _groupRepository.FormartTeamName(item);
  10462. var dataArray = _groupRepository.GroupSplitCountry(data);
  10463. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10464. }
  10465. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10466. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10467. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10468. foreach (var item in areaItem)
  10469. {
  10470. string areaStr = item.Value;
  10471. if (!string.IsNullOrEmpty(areaStr))
  10472. {
  10473. string[] str1 = areaStr.Split("-");
  10474. if (str1.Length > 0)
  10475. {
  10476. areaArray.AddRange(str1);
  10477. }
  10478. }
  10479. }
  10480. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10481. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10482. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10483. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10484. .ToList();
  10485. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10486. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10487. .Where(it => countriesIds.Contains(it.Id))
  10488. .Select(it => new { it.Id, Name = it.Name_CN })
  10489. .ToList();
  10490. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10491. .Select(it => it.TeamName).ToList();
  10492. stopwatch.Stop();
  10493. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10494. }
  10495. ///// <summary>
  10496. ///// 匹配op行程单
  10497. ///// Init 查询区域数据
  10498. ///// </summary>
  10499. ///// <param name="dto">团组列表请求dto</param>
  10500. ///// <returns></returns>
  10501. //[HttpPost]
  10502. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10503. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10504. //{
  10505. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10506. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10507. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10508. // if (string.IsNullOrEmpty(countriesDataStr))
  10509. // {
  10510. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10511. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10512. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10513. // }
  10514. // else
  10515. // {
  10516. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10517. // }
  10518. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10519. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10520. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10521. // List<dynamic> childList = new List<dynamic>();
  10522. // int parentId = dto.CountriesId;
  10523. // if (provinceData.Count > 1)
  10524. // {
  10525. // foreach (var item1 in provinceData)
  10526. // {
  10527. // List<dynamic> childList1 = new List<dynamic>();
  10528. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10529. // foreach (var item2 in citiesData1)
  10530. // {
  10531. // List<dynamic> childList2 = new List<dynamic>();
  10532. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10533. // foreach (var item3 in countiesData1)
  10534. // {
  10535. // childList2.Add(new
  10536. // {
  10537. // id = item3.Id,
  10538. // parentId = item2.Id,
  10539. // level = "district",
  10540. // name = item3.Name_CN,
  10541. // });
  10542. // }
  10543. // childList1.Add(new
  10544. // {
  10545. // id = item2.Id,
  10546. // parentId = item1.Id,
  10547. // level = "city",
  10548. // name = item2.Name_CN,
  10549. // childList = childList2
  10550. // });
  10551. // }
  10552. // childList.Add(new
  10553. // {
  10554. // id = item1.Id,
  10555. // parentId = parentId,
  10556. // level = "province",
  10557. // name = item1.Name_CN,
  10558. // childList = childList1
  10559. // });
  10560. // }
  10561. // //城市
  10562. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10563. // foreach (var item2 in citiesData2)
  10564. // {
  10565. // List<dynamic> childList22 = new List<dynamic>();
  10566. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10567. // foreach (var item3 in countiesData1)
  10568. // {
  10569. // childList22.Add(new
  10570. // {
  10571. // id = item3.Id,
  10572. // parentId = item2.Id,
  10573. // level = "district",
  10574. // name = item3.Name_CN,
  10575. // });
  10576. // }
  10577. // childList.Add(new
  10578. // {
  10579. // id = item2.Id,
  10580. // parentId = parentId,
  10581. // level = "city",
  10582. // name = item2.Name_CN,
  10583. // childList = childList22
  10584. // });
  10585. // }
  10586. // }
  10587. // else
  10588. // {
  10589. // foreach (var item2 in citiesData)
  10590. // {
  10591. // string cname = item2.Name_CN;
  10592. // List<dynamic> childList1 = new List<dynamic>();
  10593. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10594. // foreach (var item3 in countiesData1)
  10595. // {
  10596. // childList1.Add(new
  10597. // {
  10598. // Id = item3.Id,
  10599. // parentId = item2.Id,
  10600. // level = "district",
  10601. // name = item3.Name_CN
  10602. // });
  10603. // }
  10604. // childList.Add(new
  10605. // {
  10606. // id = item2.Id,
  10607. // parentId = parentId,
  10608. // level = "city",
  10609. // name = item2.Name_CN,
  10610. // childList = childList1
  10611. // });
  10612. // }
  10613. // }
  10614. // stopwatch.Stop();
  10615. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10616. //}
  10617. /// <summary>
  10618. /// 匹配op行程单
  10619. /// 接团信息列表 Page
  10620. /// </summary>
  10621. /// <param name="dto">团组列表请求dto</param>
  10622. /// <returns></returns>
  10623. [HttpPost]
  10624. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10625. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10626. {
  10627. var swatch = new Stopwatch();
  10628. swatch.Start();
  10629. #region 参数验证
  10630. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10631. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10632. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10633. #region 页面操作权限验证
  10634. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10635. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10636. #endregion
  10637. #endregion
  10638. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10639. {
  10640. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10641. string sqlWhere = "";
  10642. if (!string.IsNullOrEmpty(dto.Country))
  10643. {
  10644. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10645. }
  10646. if (!string.IsNullOrEmpty(dto.Area))
  10647. {
  10648. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10649. }
  10650. if (!string.IsNullOrEmpty(dto.TeamName))
  10651. {
  10652. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10653. }
  10654. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10655. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10656. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10657. swatch.Stop();
  10658. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10659. }
  10660. else
  10661. {
  10662. return Ok(JsonView(false, "查询失败"));
  10663. }
  10664. }
  10665. /// <summary>
  10666. /// 匹配op行程单
  10667. /// 行程单下载
  10668. /// </summary>
  10669. /// <param name="dto">团组列表请求dto</param>
  10670. /// <returns></returns>
  10671. [HttpPost]
  10672. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10673. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10674. {
  10675. #region 参数验证
  10676. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10677. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10678. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10679. #region 页面操作权限验证
  10680. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10681. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10682. #endregion
  10683. #endregion
  10684. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10685. {
  10686. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10687. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10688. }
  10689. else
  10690. {
  10691. return Ok(JsonView(false, "下载失败!"));
  10692. }
  10693. }
  10694. #endregion
  10695. #region 国家信息 数据 注释
  10696. //[HttpPost]
  10697. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10698. //{
  10699. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10700. // foreach (var item in dto)
  10701. // {
  10702. // infos.Add(new Grp_GroupsTaskAssignment()
  10703. // {
  10704. // DIId = item,
  10705. // CTId = 82,
  10706. // UId = 248,
  10707. // IsEnable = 1,
  10708. // CreateUserId = 233,
  10709. // CreateTime = DateTime.Now,
  10710. // IsDel = 0
  10711. // });
  10712. // infos.Add(new Grp_GroupsTaskAssignment()
  10713. // {
  10714. // DIId = item,
  10715. // CTId = 82,
  10716. // UId = 286,
  10717. // IsEnable = 1,
  10718. // CreateUserId = 233,
  10719. // CreateTime = DateTime.Now,
  10720. // IsDel = 0
  10721. // });
  10722. // }
  10723. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10724. // return Ok("操作成功");
  10725. //}
  10726. //public class paramJsonDto
  10727. //{
  10728. // public List<CountriesInfo> str { get; set; }
  10729. //}
  10730. //[HttpPost]
  10731. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10732. //{
  10733. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10734. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10735. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10736. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10737. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10738. // _sqlSugar.BeginTran();
  10739. // int countitiesIndex = 0;
  10740. // foreach (var item in dto.str)
  10741. // {
  10742. // dynamic data = item.c;
  10743. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10744. // if (data != null)
  10745. // {
  10746. // countitiesIndex++;
  10747. // foreach (var item1 in data)
  10748. // {
  10749. // string cnname = item1.cn;
  10750. // string enname = item1.en;
  10751. // Sys_Cities provinceInfo = new Sys_Cities()
  10752. // {
  10753. // CountriesId = countriesId,
  10754. // Name_CN = cnname,
  10755. // Name_EN = enname,
  10756. // ParentId = 0,
  10757. // IsCapital = 1,
  10758. // CreateUserId = 208,
  10759. // CreateTime = DateTime.Now,
  10760. // IsDel = 0
  10761. // };
  10762. // if (item1.lv == "province") //省份
  10763. // {
  10764. // provinceInfo.Level = 1;
  10765. // int provinceId = 0;
  10766. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10767. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10768. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10769. // var data1 = item1.c;
  10770. // foreach (var item2 in data1)
  10771. // {
  10772. // if (item2.lv == "city")
  10773. // {
  10774. // string citycnname = item2.cn;
  10775. // string cityenname = item2.en;
  10776. // Sys_Cities cityInfo = new Sys_Cities()
  10777. // {
  10778. // CountriesId = countriesId,
  10779. // ParentId = provinceId,
  10780. // Level = 2,
  10781. // Name_CN = citycnname,
  10782. // Name_EN = cityenname,
  10783. // IsCapital = 1,
  10784. // CreateUserId = 208,
  10785. // CreateTime = DateTime.Now,
  10786. // IsDel = 0
  10787. // };
  10788. // if (item2.c != null)
  10789. // {
  10790. // int cityId = 0;
  10791. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10792. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10793. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10794. // foreach (var item3 in item2.c)
  10795. // {
  10796. // if (item3.lv == "district")
  10797. // {
  10798. // var districtInfo = new Sys_Cities()
  10799. // {
  10800. // CountriesId = countriesId,
  10801. // Name_CN = item3.cn,
  10802. // Name_EN = item3.en,
  10803. // Level = 3,
  10804. // ParentId = cityId,
  10805. // IsCapital = 1,
  10806. // CreateUserId = 208,
  10807. // CreateTime = DateTime.Now,
  10808. // IsDel = 0
  10809. // };
  10810. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10811. // //{
  10812. // districts.Add(districtInfo);
  10813. // //}
  10814. // }
  10815. // }
  10816. // }
  10817. // else
  10818. // {
  10819. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10820. // //{
  10821. // cities.Add(cityInfo);
  10822. // //}
  10823. // }
  10824. // }
  10825. // }
  10826. // }
  10827. // else if (item1.lv == "city")//城市
  10828. // {
  10829. // provinceInfo.Level = 2;
  10830. // if (item1.c != null)
  10831. // {
  10832. // int cityId = 0;
  10833. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10834. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10835. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10836. // foreach (var item3 in item1.c)
  10837. // {
  10838. // if (item3.lv == "district")
  10839. // {
  10840. // var districtInfo = new Sys_Cities()
  10841. // {
  10842. // CountriesId = countriesId,
  10843. // Name_CN = item3.cn,
  10844. // Name_EN = item3.en,
  10845. // Level = 3,
  10846. // ParentId = cityId,
  10847. // IsCapital = 1,
  10848. // CreateUserId = 208,
  10849. // CreateTime = DateTime.Now,
  10850. // IsDel = 0
  10851. // };
  10852. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10853. // //{
  10854. // districts.Add(districtInfo);
  10855. // //}
  10856. // }
  10857. // }
  10858. // }
  10859. // else
  10860. // {
  10861. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10862. // //{
  10863. // cities.Add(provinceInfo);
  10864. // //}
  10865. // }
  10866. // }
  10867. // }
  10868. // }
  10869. // }
  10870. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10871. // cities = cities.Distinct().ToList();
  10872. // districts = districts.Distinct().ToList();
  10873. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10874. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10875. // cities.AddRange(districts);
  10876. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10877. // //_sqlSugar.RollbackTran();
  10878. // _sqlSugar.CommitTran();
  10879. // return Ok(JsonView(false, "操作成功!"));
  10880. //}
  10881. //[HttpPost]
  10882. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10883. //{
  10884. // List<CountitiesInfo> infos = dto.MyProperty;
  10885. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10886. // _sqlSugar.BeginTran();
  10887. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10888. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10889. // foreach (var item in infos)
  10890. // {
  10891. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10892. // if (countryInfo != null)
  10893. // {
  10894. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10895. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10896. // if (cityInfo1 != null)
  10897. // {
  10898. // cityInfo1.IsCapital = 0;
  10899. // cityInfos.Add(cityInfo1);
  10900. // }
  10901. // }
  10902. // }
  10903. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10904. // .UpdateColumns(it => it.IsCapital)
  10905. // .WhereColumns(it => it.Id)
  10906. // .ExecuteCommand();
  10907. // //_sqlSugar.RollbackTran();
  10908. // _sqlSugar.CommitTran();
  10909. // return Ok(JsonView(false, "操作成功!"));
  10910. //}
  10911. //public class CounrtiesDto
  10912. //{
  10913. // public List<CountitiesInfo> MyProperty { get; set; }
  10914. //}
  10915. //public class CountitiesInfo
  10916. //{
  10917. // /// <summary>
  10918. // /// 圣约翰
  10919. // /// </summary>
  10920. // public string capital_name_chinese { get; set; }
  10921. // /// <summary>
  10922. // ///
  10923. // /// </summary>
  10924. // public string capital_name { get; set; }
  10925. // /// <summary>
  10926. // ///
  10927. // /// </summary>
  10928. // public string country_type { get; set; }
  10929. // /// <summary>
  10930. // /// 安提瓜和巴布达
  10931. // /// </summary>
  10932. // public string country_name_chinese { get; set; }
  10933. // /// <summary>
  10934. // /// 安提瓜和巴布达
  10935. // /// </summary>
  10936. // public string country_name_chinese_short { get; set; }
  10937. // /// <summary>
  10938. // /// 安提瓜和巴布达
  10939. // /// </summary>
  10940. // public string country_name_chinese_UN { get; set; }
  10941. // /// <summary>
  10942. // ///
  10943. // /// </summary>
  10944. // public string country_name_english_abbreviation { get; set; }
  10945. // /// <summary>
  10946. // ///
  10947. // /// </summary>
  10948. // public string country_name_english_formal { get; set; }
  10949. // /// <summary>
  10950. // ///
  10951. // /// </summary>
  10952. // public string country_name_english_UN { get; set; }
  10953. // /// <summary>
  10954. // ///
  10955. // /// </summary>
  10956. // public string continent_name { get; set; }
  10957. // /// <summary>
  10958. // ///
  10959. // /// </summary>
  10960. // public string subregion_name { get; set; }
  10961. // /// <summary>
  10962. // ///
  10963. // /// </summary>
  10964. // public string country_code2 { get; set; }
  10965. // /// <summary>
  10966. // ///
  10967. // /// </summary>
  10968. // public string country_code3 { get; set; }
  10969. // /// <summary>
  10970. // ///
  10971. // /// </summary>
  10972. // public string phone_code { get; set; }
  10973. //}
  10974. //public class CountriesInfo : BasicInfo
  10975. //{
  10976. // public List<CitiesInfo> c { get; set; }
  10977. //}
  10978. //public class CitiesInfo : BasicInfo
  10979. //{
  10980. // public List<AreaInfo> c { get; set; }
  10981. //}
  10982. //public class AreaInfo : BasicInfo
  10983. //{
  10984. // public List<AreaInfo> c { get; set; }
  10985. //}
  10986. //public class BasicInfo
  10987. //{
  10988. // public string code { get; set; }
  10989. // public string cn { get; set; }
  10990. // public string lv { get; set; }
  10991. // public string en { get; set; }
  10992. //}
  10993. #endregion
  10994. #region 查看邀请方
  10995. /// <summary>
  10996. /// 查看邀请方
  10997. /// 邀请方信息 Init
  10998. /// </summary>
  10999. /// <param name="dto"></param>
  11000. /// <returns></returns>
  11001. [HttpPost]
  11002. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11003. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  11004. {
  11005. string sqlWhere = string.Empty;
  11006. if (!string.IsNullOrEmpty(dto.Search))
  11007. {
  11008. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  11009. }
  11010. string sql = string.Format($@"Select
  11011. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  11012. Id,
  11013. UnitName
  11014. From Res_InvitationOfficialActivityData
  11015. Where IsDel = 0
  11016. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  11017. RefAsync<int> total = 0;
  11018. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11019. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  11020. }
  11021. /// <summary>
  11022. /// 查看邀请方
  11023. /// 国家信息 Init
  11024. /// </summary>
  11025. /// <param name="dto"></param>
  11026. /// <returns></returns>
  11027. [HttpPost]
  11028. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11029. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  11030. {
  11031. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  11032. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11033. var diids = groupInfos.Select(it => it.Id).ToList();
  11034. List<string> countrys = new List<string>();
  11035. foreach (var item in country)
  11036. {
  11037. var data = _groupRepository.FormartTeamName(item);
  11038. var dataArray = _groupRepository.GroupSplitCountry(data);
  11039. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11040. }
  11041. countrys = countrys.Distinct().ToList();
  11042. for (int i = 0; i < countrys.Count; i++)
  11043. {
  11044. string item = countrys[i];
  11045. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  11046. {
  11047. countrys.Remove(item);
  11048. i--;
  11049. }
  11050. }
  11051. RefAsync<int> total = 0;
  11052. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  11053. .Where(it => countrys.Contains(it.Name_CN))
  11054. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11055. .Select(it => new { id = it.Id, name = it.Name_CN })
  11056. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11057. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11058. }
  11059. /// <summary>
  11060. /// 查看邀请方
  11061. /// 城市信息 Init
  11062. /// </summary>
  11063. /// <param name="dto"></param>
  11064. /// <returns></returns>
  11065. [HttpPost]
  11066. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11067. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  11068. {
  11069. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  11070. RefAsync<int> total = 0;
  11071. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  11072. .Where(it => it.CountriesId == dto.CountiesId)
  11073. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11074. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  11075. .Select(it => new { id = it.Id, name = it.Name_CN })
  11076. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11077. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11078. }
  11079. /// <summary>
  11080. /// 查看邀请方
  11081. /// 团组名称 Init
  11082. /// </summary>
  11083. /// <param name="dto"></param>
  11084. /// <returns></returns>
  11085. [HttpPost]
  11086. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11087. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  11088. {
  11089. var watch = new Stopwatch();
  11090. watch.Start();
  11091. RefAsync<int> total = 0;
  11092. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  11093. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  11094. .Where((oa, di) => oa.IsDel == 0)
  11095. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  11096. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  11097. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  11098. .Distinct()
  11099. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11100. watch.Stop();
  11101. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  11102. }
  11103. /// <summary>
  11104. /// 查看邀请方
  11105. /// 团组 & 邀请方信息
  11106. /// </summary>
  11107. /// <param name="dto"></param>
  11108. /// <returns></returns>
  11109. [HttpPost]
  11110. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11111. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  11112. {
  11113. var watch = new Stopwatch();
  11114. watch.Start();
  11115. RefAsync<int> total = 0;
  11116. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  11117. .AS("Grp_DelegationInfo")
  11118. .Includes(x => x.InvitingInfos)
  11119. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  11120. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  11121. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  11122. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  11123. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  11124. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  11125. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11126. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  11127. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  11128. infos.ForEach(x =>
  11129. {
  11130. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  11131. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  11132. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  11133. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  11134. });
  11135. watch.Stop();
  11136. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  11137. }
  11138. #endregion
  11139. #region 报批行程
  11140. /// <summary>
  11141. /// 报批行程初始化
  11142. /// </summary>
  11143. /// <param name="dto"></param>
  11144. /// <returns></returns>
  11145. [HttpPost]
  11146. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  11147. {
  11148. const int chiNumber = 5;
  11149. var jw = JsonView(false);
  11150. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  11151. var group = groupList.First();
  11152. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  11153. group = groupList.First(x => x.Id == diid);
  11154. if (group == null)
  11155. {
  11156. jw.Msg = "暂无团组!";
  11157. return Ok(jw);
  11158. }
  11159. var data = new
  11160. {
  11161. groupList = groupList.Select(x => new
  11162. {
  11163. x.TeamName,
  11164. x.Id
  11165. }),
  11166. content = new ArrayList(),
  11167. groupInfo = new
  11168. {
  11169. group.VisitDays,
  11170. group.TourCode,
  11171. group.VisitPNumber,
  11172. group.TeamName,
  11173. group.Id,
  11174. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  11175. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  11176. },
  11177. };
  11178. var resultArr = new ArrayList();
  11179. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  11180. if (content.Count == 0)
  11181. {
  11182. var stay = "-";
  11183. var cityPath = "-";
  11184. //添加城市路径以及住宿地
  11185. //黑屏代码数据
  11186. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11187. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11188. {
  11189. jw = JsonView(true, "黑屏代码有误!", data);
  11190. return Ok(jw);
  11191. }
  11192. foreach (DataRow row in dtBlack.Rows)
  11193. {
  11194. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11195. {
  11196. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  11197. return Ok(jw);
  11198. }
  11199. }
  11200. //黑屏代码获取时间区间
  11201. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11202. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11203. _sqlSugar.BeginTran();
  11204. for (int i = 0; i < timeArr.Count; i++)
  11205. {
  11206. stay = "-";
  11207. cityPath = "-";
  11208. DateTime NewData = DateTime.Parse(timeArr[i]);
  11209. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11210. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11211. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11212. if (tbSelect.Length > 0)
  11213. {
  11214. List<string> threeCodeStr = new List<string>();
  11215. foreach (var item in tbSelect)
  11216. {
  11217. var threeCode = item["Three"].ToString() ?? "";
  11218. if (threeCode.Length == 6)
  11219. {
  11220. var start = threeCode.Substring(0, 3);
  11221. var end = threeCode.Substring(3, 3);
  11222. if (threeCodeStr.Count == 0)
  11223. {
  11224. threeCodeStr.Add(start);
  11225. threeCodeStr.Add(end);
  11226. }
  11227. else
  11228. {
  11229. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11230. {
  11231. threeCodeStr.Add(end);
  11232. }
  11233. else
  11234. {
  11235. threeCodeStr.Add(start);
  11236. threeCodeStr.Add(end);
  11237. }
  11238. }
  11239. }
  11240. }
  11241. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11242. var last = threeCodeStr.Last();
  11243. foreach (var item in threeCodeStr)
  11244. {
  11245. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11246. if (item.Equals(last))
  11247. {
  11248. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11249. }
  11250. }
  11251. cityPath = cityPath.Trim('-');
  11252. }
  11253. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11254. appro.Diid = diid ?? -1;
  11255. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11256. appro.Id = thisId;
  11257. appro.CreateUserId = dto.UserId;
  11258. appro.CreateTime = DateTime.Now;
  11259. content.Add(appro);
  11260. }
  11261. _sqlSugar.CommitTran();
  11262. }
  11263. foreach (var x in content)
  11264. {
  11265. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  11266. if (chiList.Count < chiNumber)
  11267. {
  11268. for (int i = chiList.Count; i < chiNumber; i++)
  11269. {
  11270. chiList.Add(new Grp_ApprovalTravelDetails());
  11271. }
  11272. }
  11273. resultArr.Add(new
  11274. {
  11275. x.Id,
  11276. x.Date,
  11277. x.Diid,
  11278. chiList = chiList.Select(x1 => new
  11279. {
  11280. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11281. x1.Details,
  11282. x1.ParentId,
  11283. x1.Id
  11284. })
  11285. });
  11286. }
  11287. data = data with
  11288. {
  11289. content = resultArr,
  11290. };
  11291. jw = JsonView(true, "获取成功!", data);
  11292. return Ok(jw);
  11293. }
  11294. /// <summary>
  11295. /// 报批行程删除
  11296. /// </summary>
  11297. /// <param name="dto"></param>
  11298. /// <returns></returns>
  11299. [HttpPost]
  11300. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11301. {
  11302. var jw = JsonView(false);
  11303. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11304. if (group == null)
  11305. {
  11306. jw.Msg = "团组参数有误!";
  11307. return Ok(jw);
  11308. }
  11309. try
  11310. {
  11311. _sqlSugar.BeginTran();
  11312. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11313. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11314. {
  11315. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11316. DeleteUserId = dto.uesrId,
  11317. IsDel = 1
  11318. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11319. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11320. {
  11321. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11322. DeleteUserId = dto.uesrId,
  11323. IsDel = 1
  11324. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11325. _sqlSugar.CommitTran();
  11326. jw = JsonView(true, "删除成功");
  11327. }
  11328. catch (Exception ex)
  11329. {
  11330. jw = JsonView(false, ex.Message);
  11331. }
  11332. return Ok(jw);
  11333. }
  11334. /// <summary>
  11335. /// 报批行程保存
  11336. /// </summary>
  11337. /// <param name="dto"></param>
  11338. /// <returns></returns>
  11339. [HttpPost]
  11340. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11341. {
  11342. var jw = JsonView(false);
  11343. var Find = dto.Arr.Find(x => x.id == 0);
  11344. if (Find != null)
  11345. {
  11346. jw.Msg = "生成的ID为0!";
  11347. return Ok(jw);
  11348. }
  11349. foreach (var item in dto.Arr)
  11350. {
  11351. foreach (var chi in item.chiList)
  11352. {
  11353. if (chi.parentId == 0)
  11354. {
  11355. chi.parentId = item.id;
  11356. }
  11357. }
  11358. }
  11359. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11360. _sqlSugar.BeginTran();
  11361. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11362. {
  11363. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11364. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11365. {
  11366. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11367. DeleteUserId = dto.UserId,
  11368. IsDel = 1
  11369. }).ExecuteCommand();
  11370. }
  11371. try
  11372. {
  11373. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11374. {
  11375. CreateTime = DateTime.Now,
  11376. CreateUserId = dto.UserId,
  11377. Details = x.details,
  11378. ParentId = x.parentId,
  11379. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11380. Remark = "",
  11381. IsDel = 0
  11382. }).ToList()).ExecuteCommand();
  11383. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11384. {
  11385. Id = x.id,
  11386. Details = x.details,
  11387. ParentId = x.parentId,
  11388. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11389. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11390. {
  11391. Details = x.Details,
  11392. ParentId = x.ParentId,
  11393. Time = x.Time
  11394. }).ExecuteCommand();
  11395. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11396. {
  11397. Id = x.id,
  11398. Date = x.date,
  11399. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11400. {
  11401. Date = x.Date
  11402. }).ExecuteCommand();
  11403. _sqlSugar.CommitTran();
  11404. jw = JsonView(true, "保存成功!");
  11405. }
  11406. catch (Exception ex)
  11407. {
  11408. _sqlSugar.RollbackTran();
  11409. jw = JsonView(false, "保存失败!" + ex.Message);
  11410. }
  11411. return Ok(jw);
  11412. }
  11413. /// <summary>
  11414. /// 报批行程生成
  11415. /// </summary>
  11416. /// <param name="dto"></param>
  11417. /// <returns></returns>
  11418. [HttpPost]
  11419. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11420. {
  11421. var jw = JsonView(false);
  11422. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11423. if (group == null)
  11424. {
  11425. jw.Msg = "暂无该团组!";
  11426. return Ok(jw);
  11427. }
  11428. //黑屏代码数据
  11429. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11430. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11431. {
  11432. jw.Msg = "黑屏代码有误!";
  11433. return Ok(jw);
  11434. }
  11435. foreach (DataRow row in dtBlack.Rows)
  11436. {
  11437. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11438. {
  11439. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11440. return Ok(jw);
  11441. }
  11442. }
  11443. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11444. var resultArr = new ArrayList();
  11445. if (officialActivitiesArr.Count == 0)
  11446. {
  11447. jw.Msg = "暂无公务出访信息!";
  11448. return Ok(jw);
  11449. }
  11450. try
  11451. {
  11452. _sqlSugar.BeginTran();
  11453. DeleteApprovalJourney(new
  11454. Domain.Dtos.Groups.DeleteApprovalJourney
  11455. {
  11456. Diid = dto.Diid,
  11457. uesrId = dto.Userid
  11458. });
  11459. var stay = "-";
  11460. var cityPath = "-";
  11461. //添加城市路径以及住宿地
  11462. //黑屏代码获取时间区间
  11463. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11464. var empty = "【未收入该三字码!请机票同事录入】";
  11465. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11466. for (int i = 0; i < timeArr.Count; i++)
  11467. {
  11468. stay = "-";
  11469. cityPath = "-";
  11470. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11471. DateTime NewData = DateTime.Parse(timeArr[i]);
  11472. 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();
  11473. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11474. if (tbSelect.Length > 0)
  11475. {
  11476. List<string> threeCodeStr = new List<string>();
  11477. bool isTrade = false;
  11478. string trip = string.Empty;
  11479. var rowLast = tbSelect.Last();
  11480. var rowFirst = tbSelect.First();
  11481. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11482. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11483. var takeOffTime = DateTime.Parse(timeArr[i]);
  11484. var fallToTime = DateTime.Parse(timeArr[i]);
  11485. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11486. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11487. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11488. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11489. foreach (var item in tbSelect)
  11490. {
  11491. var start = string.Empty;
  11492. var end = string.Empty;
  11493. var threeCode = item["Three"].ToString() ?? "";
  11494. if (threeCode.Length == 6)
  11495. {
  11496. start = threeCode.Substring(0, 3);
  11497. end = threeCode.Substring(3, 3);
  11498. if (threeCodeStr.Count == 0)
  11499. {
  11500. threeCodeStr.Add(start);
  11501. threeCodeStr.Add(end);
  11502. }
  11503. else
  11504. {
  11505. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11506. {
  11507. threeCodeStr.Add(end);
  11508. }
  11509. else
  11510. {
  11511. threeCodeStr.Add(start);
  11512. threeCodeStr.Add(end);
  11513. }
  11514. }
  11515. }
  11516. //处理机票信息
  11517. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11518. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11519. if (start_Object == null)
  11520. {
  11521. start_Object = new Res_ThreeCode()
  11522. {
  11523. AirPort = empty,
  11524. AirPort_En = empty,
  11525. City = empty,
  11526. Country = empty,
  11527. Four = empty,
  11528. Three = empty,
  11529. };
  11530. }
  11531. if (end_Object == null)
  11532. {
  11533. end_Object = new Res_ThreeCode()
  11534. {
  11535. AirPort = empty,
  11536. AirPort_En = empty,
  11537. City = empty,
  11538. Country = empty,
  11539. Four = empty,
  11540. Three = empty,
  11541. };
  11542. }
  11543. //机型判断
  11544. string airModel = item["AirModel"].ToString();
  11545. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11546. string flightTime = item["FlightTime"].ToString();
  11547. if (flightTime!.Contains(":"))
  11548. {
  11549. flightTime = flightTime.Replace(":", "小时");
  11550. flightTime += "分钟";
  11551. }
  11552. if (flightTime.Contains("H"))
  11553. {
  11554. flightTime = flightTime.Replace("H", "小时");
  11555. }
  11556. if (flightTime.Contains("M"))
  11557. {
  11558. flightTime = flightTime.Replace("M", "分钟");
  11559. }
  11560. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11561. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11562. {
  11563. flightTime = flightDataTime.Hour > 0
  11564. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11565. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11566. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11567. }
  11568. //航班号
  11569. string flightcode = item["Fliagtcode"].ToString();
  11570. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11571. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11572. if (aircompany == null)
  11573. {
  11574. aircompany = new Res_AirCompany
  11575. {
  11576. CnName = hsEmpty,
  11577. EnName = hsEmpty,
  11578. ShortCode = hsEmpty,
  11579. };
  11580. }
  11581. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11582. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11583. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11584. if (isTrade)
  11585. {
  11586. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11587. }
  11588. else
  11589. {
  11590. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11591. }
  11592. }
  11593. chiarr.Add(new Grp_ApprovalTravelDetails
  11594. {
  11595. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11596. CreateTime = DateTime.Now,
  11597. CreateUserId = dto.Userid,
  11598. ParentId = 0,
  11599. Details = trip
  11600. });
  11601. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11602. var last = threeCodeStr.Last();
  11603. foreach (var item in threeCodeStr)
  11604. {
  11605. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11606. if (item.Equals(last))
  11607. {
  11608. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11609. }
  11610. }
  11611. cityPath = cityPath.Trim('-');
  11612. }
  11613. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11614. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11615. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11616. appro.Diid = dto.Diid;
  11617. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11618. appro.Id = thisId;
  11619. appro.CreateUserId = dto.Userid;
  11620. appro.CreateTime = DateTime.Now;
  11621. foreach (var item in gwinfo)
  11622. {
  11623. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11624. chi.Details = "拜访" + item.Client;
  11625. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11626. {
  11627. chi.Details += "," + item.ReqSample;
  11628. }
  11629. chi.ParentId = thisId;
  11630. chi.Time = item.Time;
  11631. chiarr.Add(chi);
  11632. }
  11633. if (chiarr.Count < 5)
  11634. {
  11635. for (int j = chiarr.Count; j < 5; j++)
  11636. {
  11637. chiarr.Add(new
  11638. Grp_ApprovalTravelDetails());
  11639. }
  11640. }
  11641. resultArr.Add(new
  11642. {
  11643. appro.Id,
  11644. appro.Date,
  11645. appro.Diid,
  11646. chiList = chiarr.Select(x1 => new
  11647. {
  11648. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11649. x1.Details,
  11650. x1.ParentId,
  11651. x1.Id
  11652. })
  11653. });
  11654. }
  11655. _sqlSugar.CommitTran();
  11656. jw = JsonView(true, "生成成功!", resultArr);
  11657. }
  11658. catch (Exception ex)
  11659. {
  11660. jw.Code = 400;
  11661. jw.Msg = "生成失败!" + ex.Message;
  11662. }
  11663. return Ok(jw);
  11664. }
  11665. /// <summary>
  11666. /// 报批行程word导出
  11667. /// </summary>
  11668. /// <param name="dto"></param>
  11669. /// <returns></returns>
  11670. [HttpPost]
  11671. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11672. {
  11673. var jw = JsonView(false);
  11674. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11675. if (group == null)
  11676. {
  11677. jw.Msg = "暂无该团组!";
  11678. return Ok(jw);
  11679. }
  11680. //模板路径
  11681. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11682. //载入模板
  11683. Document doc = new Document(tempPath);
  11684. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11685. //获取所填表格的序数
  11686. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11687. Aspose.Words.Tables.Row titleRowClone = null;
  11688. Aspose.Words.Tables.Row CenterRowClone = null;
  11689. int index = 0;
  11690. int indexChi = 0;
  11691. int SetIndex = 0;
  11692. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11693. //获取数据,放到datatable
  11694. foreach (var item in ApprovalTravelArr)
  11695. {
  11696. if (index > 0)
  11697. {
  11698. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11699. tableOne.AppendChild(titleRowClone);
  11700. }
  11701. var textTime = item.Date;
  11702. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11703. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11704. SetIndex++;
  11705. if (ChiRep.Count > 0)
  11706. {
  11707. foreach (var itemChi in ChiRep)
  11708. {
  11709. var txtTime = itemChi.Time;
  11710. var txtDetail = itemChi.Details;
  11711. if (indexChi > 0)
  11712. {
  11713. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11714. tableOne.AppendChild(CenterRowClone);
  11715. }
  11716. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11717. {
  11718. SetCells(tableOne, doc, SetIndex, 0, "");
  11719. SetCells(tableOne, doc, SetIndex, 1, "");
  11720. indexChi++;
  11721. SetIndex++;
  11722. break;
  11723. }
  11724. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11725. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11726. indexChi++;
  11727. SetIndex++;
  11728. }
  11729. }
  11730. else
  11731. {
  11732. if (indexChi > 0)
  11733. {
  11734. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11735. tableOne.AppendChild(CenterRowClone);
  11736. }
  11737. SetCells(tableOne, doc, SetIndex, 0, "");
  11738. SetCells(tableOne, doc, SetIndex, 1, "");
  11739. indexChi++;
  11740. SetIndex++;
  11741. }
  11742. index++;
  11743. }
  11744. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11745. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11746. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11747. jw.Code = 200;
  11748. jw.Msg = "";
  11749. return Ok(jw);
  11750. }
  11751. private string intToString(int numberVal)
  11752. {
  11753. string numberval = numberVal.ToString();
  11754. Dictionary<char, string> Number = new Dictionary<char, string>();
  11755. Number.Add('1', "一");
  11756. Number.Add('2', "二");
  11757. Number.Add('3', "三");
  11758. Number.Add('4', "四");
  11759. Number.Add('5', "五");
  11760. Number.Add('6', "六");
  11761. Number.Add('7', "七");
  11762. Number.Add('8', "八");
  11763. Number.Add('9', "九");
  11764. string stringNumberVal = string.Empty;
  11765. for (int i = 0; i < numberval.Length; i++)
  11766. {
  11767. if (i == 0)
  11768. {
  11769. stringNumberVal += Number[numberval[i]];
  11770. }
  11771. else if (i >= 1)
  11772. {
  11773. if (numberval[i] == '0')
  11774. {
  11775. stringNumberVal = "十";
  11776. }
  11777. else
  11778. {
  11779. stringNumberVal += "十" + Number[numberval[i]];
  11780. }
  11781. }
  11782. }
  11783. return stringNumberVal;
  11784. }
  11785. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11786. {
  11787. //获取table中的某个单元格,从0开始
  11788. Cell lshCell = table.Rows[rows].Cells[cells];
  11789. //将单元格中段落移除
  11790. foreach (Node item in lshCell.Paragraphs)
  11791. {
  11792. lshCell.Paragraphs.Remove(item);
  11793. }
  11794. if (val.Contains("\r\n"))
  11795. {
  11796. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11797. foreach (var item in spArr)
  11798. {
  11799. //新建一个段落
  11800. Paragraph p = new Paragraph(doc);
  11801. var r = new Run(doc, item);
  11802. //把设置的值赋给之前新建的段落
  11803. p.AppendChild(r);
  11804. //将此段落加到单元格内
  11805. lshCell.AppendChild(p);
  11806. }
  11807. }
  11808. else
  11809. {
  11810. //新建一个段落
  11811. Paragraph p = new Paragraph(doc);
  11812. var r = new Run(doc, val);
  11813. //把设置的值赋给之前新建的段落
  11814. p.AppendChild(r);
  11815. //将此段落加到单元格内
  11816. lshCell.AppendChild(p);
  11817. }
  11818. }
  11819. [HttpPost]
  11820. public async Task<IActionResult> ServerHttp(string paramStr)
  11821. {
  11822. paramStr = paramStr.TrimEnd('\'');
  11823. paramStr = paramStr.TrimStart('\'');
  11824. JsonView jw = JsonView(false);
  11825. JObject param = JObject.Parse(paramStr);
  11826. if (!param.ContainsKey("url"))
  11827. {
  11828. jw.Msg = "url null";
  11829. return Ok(jw);
  11830. }
  11831. string url = param["url"]!.ToString();
  11832. var methon = "get";
  11833. Dictionary<string, string> bodyValues = null;
  11834. Dictionary<string, string> headValues = null;
  11835. if (param.ContainsKey("methon"))
  11836. {
  11837. methon = param["methon"]!.ToString();
  11838. }
  11839. if (param.ContainsKey("header"))
  11840. {
  11841. var header = param["header"]!.ToString();
  11842. JObject headerJobject = JObject.Parse(header);
  11843. headValues = new Dictionary<string, string>();
  11844. foreach (JProperty item in headerJobject.Properties())
  11845. {
  11846. var value = item.Value.ToString();
  11847. var head = item.Path;
  11848. headValues.Add(head, value);
  11849. }
  11850. }
  11851. if (param.ContainsKey("body"))
  11852. {
  11853. var body = param["body"]!.ToString();
  11854. bodyValues = new Dictionary<string, string>();
  11855. JObject bodyJobject = JObject.Parse(body);
  11856. foreach (JProperty item in bodyJobject.Properties())
  11857. {
  11858. var value = item.Value.ToString();
  11859. var head = item.Path;
  11860. bodyValues.Add(head, value);
  11861. }
  11862. }
  11863. HttpClient client = new HttpClient();
  11864. string responseString = string.Empty;
  11865. if (param.ContainsKey("isJson"))
  11866. {
  11867. }
  11868. if (headValues != null)
  11869. {
  11870. foreach (var item in headValues.Keys)
  11871. {
  11872. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11873. }
  11874. }
  11875. try
  11876. {
  11877. if (methon == "get")
  11878. {
  11879. responseString = await client.GetStringAsync(url);
  11880. }
  11881. else if (methon == "post")
  11882. {
  11883. if (bodyValues == null)
  11884. {
  11885. jw.Msg = "methon post body null";
  11886. return Ok(jw);
  11887. }
  11888. // 数据转化为 key=val 格式
  11889. var content = new FormUrlEncodedContent(bodyValues);
  11890. var response = await client.PostAsync(url, content);
  11891. // 获取数据
  11892. responseString = await response.Content.ReadAsStringAsync();
  11893. }
  11894. else
  11895. {
  11896. jw.Msg = "methon error";
  11897. }
  11898. jw = JsonView(true, "success", responseString);
  11899. }
  11900. catch (Exception ex)
  11901. {
  11902. jw.Msg = "error " + ex.Message;
  11903. jw.Data = ex.StackTrace;
  11904. }
  11905. finally
  11906. {
  11907. client.Dispose();
  11908. }
  11909. return Ok(jw);
  11910. }
  11911. #endregion
  11912. // /// <summary>
  11913. // ///
  11914. // /// </summary>
  11915. // /// <param name="_dto"></param>
  11916. // /// <returns></returns>
  11917. // [HttpPost]
  11918. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11919. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11920. // {
  11921. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11922. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11923. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11924. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11925. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11926. // dic_psg.Add("客人", 974);
  11927. // dic_psg.Add("司机", 975);
  11928. // dic_psg.Add("导游", 976);
  11929. // dic_psg.Add("公司内部人员", 977);
  11930. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11931. // foreach (var item in list_visa)
  11932. // {
  11933. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11934. // temp.Id = item.Id;
  11935. // temp.DIId = item.DIId;
  11936. // temp.VisaClient = item.VisaClient;
  11937. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  11938. // temp.VisaCurrency = item.VisaCurrency;
  11939. // temp.IsThird = item.IsThird;
  11940. // if (dic_psg.ContainsKey(item.PassengerType))
  11941. // {
  11942. // temp.PassengerType = dic_psg[item.PassengerType];
  11943. // }
  11944. // else {
  11945. // temp.PassengerType = -1;
  11946. // }
  11947. // temp.VisaNumber = item.VisaNumber;
  11948. // temp.VisaFreeNumber = item.VisaFreeNumber;
  11949. // temp.CreateUserId = item.Operators;
  11950. // DateTime dt_ct;
  11951. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  11952. // if (b_ct)
  11953. // {
  11954. // temp.CreateTime = dt_ct;
  11955. // }
  11956. // else
  11957. // {
  11958. // temp.CreateTime = DateTime.Now;
  11959. // }
  11960. // temp.DeleteTime = "";
  11961. // temp.DeleteUserId = 0;
  11962. // temp.Remark = item.Remark;
  11963. // if (string.IsNullOrEmpty(temp.Remark)) {
  11964. // temp.Remark = "";
  11965. // }
  11966. // temp.IsDel = item.IsDel;
  11967. // temp.VisaDescription = item.VisaAttachment;
  11968. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  11969. //([Id]
  11970. // ,[DIId]
  11971. // ,[VisaClient]
  11972. // ,[VisaPrice]
  11973. // ,[VisaCurrency]
  11974. // ,[IsThird]
  11975. // ,[PassengerType]
  11976. // ,[VisaNumber]
  11977. // ,[VisaFreeNumber]
  11978. // ,[CreateUserId]
  11979. // ,[CreateTime]
  11980. // ,[DeleteTime]
  11981. // ,[DeleteUserId]
  11982. // ,[Remark]
  11983. // ,[IsDel]
  11984. // ,[visaDescription])
  11985. // VALUES
  11986. // ({0},{1},'{2}',{3},{4}
  11987. //,{5},{6},{7},{8},{9}
  11988. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  11989. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  11990. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  11991. //);
  11992. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  11993. // }
  11994. // return Ok(JsonView(true, "操作成功!"));
  11995. // }
  11996. /// <summary>
  11997. /// 123132123
  11998. /// </summary>
  11999. /// <param name="_dto"></param>
  12000. /// <returns></returns>
  12001. [HttpPost]
  12002. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12003. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12004. {
  12005. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12006. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  12007. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  12008. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12009. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  12010. dicDetail.Add(789, 1034);
  12011. dicDetail.Add(790, 1035);
  12012. dicDetail.Add(791, 1036);
  12013. dicDetail.Add(792, 1037);
  12014. dicDetail.Add(793, 1038);
  12015. dicDetail.Add(794, 1039);
  12016. dicDetail.Add(795, 1040);
  12017. dicDetail.Add(796, 1041);
  12018. dicDetail.Add(797, 1042);
  12019. dicDetail.Add(798, 1043);
  12020. dicDetail.Add(801, 1044);
  12021. dicDetail.Add(802, 1045);
  12022. dicDetail.Add(803, 1046);
  12023. Dictionary<int, int> dic = new Dictionary<int, int>();
  12024. dic.Add(806, 1027);
  12025. dic.Add(807, 1028);
  12026. dic.Add(808, 1029);
  12027. dic.Add(809, 1030);
  12028. dic.Add(810, 1031);
  12029. dic.Add(811, 1032);
  12030. dic.Add(812, 1033);
  12031. foreach (var item in list_visa)
  12032. {
  12033. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  12034. temp.Coefficient = item.coefficient;
  12035. DateTime dtCrt;
  12036. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  12037. if (b1)
  12038. {
  12039. temp.CreateTime = dtCrt;
  12040. }
  12041. else
  12042. {
  12043. temp.CreateTime = DateTime.Now;
  12044. }
  12045. temp.CreateUserId = item.Operators;
  12046. temp.DeleteTime = "";
  12047. temp.DeleteUserId = 0;
  12048. temp.DiId = int.Parse(item.DIID);
  12049. temp.FilePath = item.FilePath;
  12050. temp.IsDel = item.IsDel;
  12051. temp.Price = item.Price;
  12052. temp.PriceCount = 1;
  12053. temp.PriceCurrency = item.Currency;
  12054. int detailId = 0;
  12055. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  12056. {
  12057. detailId = dicDetail[item.PriceTypeDetail];
  12058. }
  12059. temp.PriceDetailType = detailId;
  12060. temp.PriceDt = DateTime.Now;
  12061. temp.PriceName = item.PriceName;
  12062. temp.PriceSum = item.Price;
  12063. int tid = 0;
  12064. if (dic.ContainsKey(item.PriceType))
  12065. {
  12066. tid = dic[item.PriceType];
  12067. }
  12068. temp.PriceType = tid;
  12069. temp.Remark = item.Remark;
  12070. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  12071. }
  12072. return Ok(JsonView(true, "操作成功!"));
  12073. }
  12074. }
  12075. }