GroupsController.cs 553 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308
  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. namespace OASystem.API.Controllers
  78. {
  79. /// <summary>
  80. /// 团组相关
  81. /// </summary>
  82. //[Authorize]
  83. [Route("api/[controller]/[action]")]
  84. public class GroupsController : ControllerBase
  85. {
  86. private readonly GrpScheduleRepository _grpScheduleRep;
  87. private readonly IMapper _mapper;
  88. private readonly DelegationInfoRepository _groupRepository;
  89. private readonly TaskAssignmentRepository _taskAssignmentRep;
  90. private readonly AirTicketResRepository _airTicketResRep;
  91. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  92. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  93. private readonly DelegationEnDataRepository _delegationEnDataRep;
  94. private readonly DelegationVisaRepository _delegationVisaRep;
  95. private readonly VisaPriceRepository _visaPriceRep;
  96. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  97. private readonly HotelPriceRepository _hotelPriceRep;
  98. private readonly CustomersRepository _customersRep;
  99. private readonly MessageRepository _message;
  100. private readonly SqlSugarClient _sqlSugar;
  101. private readonly TourClientListRepository _tourClientListRep;
  102. private readonly TeamRateRepository _teamRateRep;
  103. #region 成本相关
  104. private readonly CheckBoxsRepository _checkBoxs;
  105. private readonly GroupCostRepository _GroupCostRepository;
  106. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  107. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  108. #endregion
  109. private readonly SetDataRepository _setDataRep;
  110. private string url;
  111. private string path;
  112. private readonly EnterExitCostRepository _enterExitCostRep;
  113. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  114. private readonly UsersRepository _usersRep;
  115. private readonly IJuHeApiService _juHeApi;
  116. private readonly InvertedListRepository _invertedListRep;
  117. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  118. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  119. private readonly HotelInquiryRepository _hotelInquiryRep;
  120. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  121. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  122. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  123. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  124. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  125. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  126. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  127. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep)
  128. {
  129. _mapper = mapper;
  130. _grpScheduleRep = grpScheduleRep;
  131. _groupRepository = groupRepository;
  132. _taskAssignmentRep = taskAssignmentRep;
  133. _airTicketResRep = airTicketResRep;
  134. _sqlSugar = sqlSugar;
  135. url = AppSettingsHelper.Get("ExcelBaseUrl");
  136. path = AppSettingsHelper.Get("ExcelBasePath");
  137. if (!System.IO.Directory.Exists(path))
  138. {
  139. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  140. }
  141. _decreasePaymentsRep = decreasePaymentsRep;
  142. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  143. _delegationEnDataRep = delegationEnDataRep;
  144. _enterExitCostRep = enterExitCostRep;
  145. _delegationVisaRep = delegationVisaRep;
  146. _message = message;
  147. _visaPriceRep = visaPriceRep;
  148. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  149. _checkBoxs = checkBoxs;
  150. _GroupCostRepository = GroupCostRepository;
  151. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  152. _GroupCostParameterRepository = GroupCostParameterRepository;
  153. _hotelPriceRep = hotelPriceRep;
  154. _customersRep = customersRep;
  155. _setDataRep = setDataRep;
  156. _tourClientListRep = tourClientListRep;
  157. _teamRateRep = teamRateRep;
  158. _hubContext = hubContext;
  159. _usersRep = usersRep;
  160. _juHeApi = juHeApi;
  161. _invertedListRep = invertedListRep;
  162. _visaFeeInfoRep = visaFeeInfoRep;
  163. _ticketBlackCodeRep = ticketBlackCodeRep;
  164. _hotelInquiryRep = hotelInquiryRep;
  165. }
  166. #region 流程管控
  167. /// <summary>
  168. /// 获取团组流程管控信息
  169. /// </summary>
  170. /// <param name="paras">参数Json字符串</param>
  171. /// <returns></returns>
  172. [HttpPost]
  173. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  174. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  175. {
  176. if (string.IsNullOrEmpty(_jsonDto.Paras))
  177. {
  178. return Ok(JsonView(false, "参数为空"));
  179. }
  180. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  181. if (_ScheduleDto != null)
  182. {
  183. if (_ScheduleDto.SearchType == 2)//获取列表
  184. {
  185. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  186. return Ok(JsonView(_grpScheduleViewList));
  187. }
  188. else//获取对象
  189. {
  190. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  191. if (_grpScheduleView != null)
  192. {
  193. return Ok(JsonView(_grpScheduleView));
  194. }
  195. }
  196. }
  197. else
  198. {
  199. return Ok(JsonView(false, "参数反序列化失败"));
  200. }
  201. return Ok(JsonView(false, "暂无数据!"));
  202. }
  203. /// <summary>
  204. /// 修改团组流程管控详细表数据
  205. /// </summary>
  206. /// <param name="paras"></param>
  207. /// <returns></returns>
  208. [HttpPost]
  209. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  210. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  211. {
  212. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  213. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  214. .SetColumns(it => it.Duty == _detail.Duty)
  215. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  216. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  217. .SetColumns(it => it.JobContent == _detail.JobContent)
  218. .SetColumns(it => it.Remark == _detail.Remark)
  219. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  220. .Where(s => s.Id == dto.Id)
  221. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  222. .ExecuteCommandAsync();
  223. if (result > 0)
  224. {
  225. return Ok(JsonView(true, "保存成功!"));
  226. }
  227. return Ok(JsonView(false, "保存失败!"));
  228. }
  229. /// <summary>
  230. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  231. /// </summary>
  232. /// <param name="dto"></param>
  233. /// <returns></returns>
  234. [HttpPost]
  235. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  236. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  237. {
  238. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  239. _detail.IsDel = 1;
  240. _detail.DeleteUserId = dto.Duty;
  241. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  242. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  243. .SetColumns(it => it.IsDel == _detail.IsDel)
  244. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  245. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  246. .Where(it => it.Id == dto.Id)
  247. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  248. //.WhereColumns(s => s.Id == dto.Id)
  249. .ExecuteCommandAsync();
  250. if (result > 0)
  251. {
  252. return Ok(JsonView(true, "删除成功!"));
  253. }
  254. return Ok(JsonView(false, "删除失败!"));
  255. }
  256. /// <summary>
  257. /// 增加团组流程管控详细表数据
  258. /// </summary>
  259. /// <param name="dto"></param>
  260. /// <returns></returns>
  261. [HttpPost]
  262. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  263. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  264. {
  265. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  266. if (DateTime.Now < _detail.ExpectBeginDt)
  267. {
  268. _detail.StepStatus = 0;
  269. }
  270. else
  271. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  272. _detail.StepStatus = 1;
  273. }
  274. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  275. if (result > 0)
  276. {
  277. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  278. return Ok(JsonView(true, "添加成功!", _result));
  279. }
  280. return Ok(JsonView(false, "添加失败!"));
  281. }
  282. #endregion
  283. #region 团组基本信息
  284. /// <summary>
  285. /// 接团信息列表
  286. /// </summary>
  287. /// <param name="dto">团组列表请求dto</param>
  288. /// <returns></returns>
  289. [HttpPost]
  290. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  291. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  292. {
  293. var groupData = await _groupRepository.GetGroupList(dto);
  294. if (groupData.Code != 0)
  295. {
  296. return Ok(JsonView(false, groupData.Msg));
  297. }
  298. return Ok(JsonView(groupData.Data));
  299. }
  300. /// <summary>
  301. /// 接团信息列表 Page
  302. /// </summary>
  303. /// <param name="dto">团组列表请求dto</param>
  304. /// <returns></returns>
  305. [HttpPost]
  306. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  307. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  308. {
  309. #region 参数验证
  310. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  311. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  312. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  313. #region 页面操作权限验证
  314. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  315. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  316. #endregion
  317. #endregion
  318. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  319. {
  320. string sqlWhere = string.Empty;
  321. if (dto.IsSure == 0) //未完成
  322. {
  323. sqlWhere += string.Format(@" And IsSure = 0");
  324. }
  325. else if (dto.IsSure == 1) //已完成
  326. {
  327. sqlWhere += string.Format(@" And IsSure = 1");
  328. }
  329. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  330. {
  331. string tj = dto.SearchCriteria;
  332. 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}%')",
  333. tj, tj, tj, tj, tj);
  334. }
  335. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  336. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  337. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  338. JietuanOperator,IsSure,CreateTime
  339. From (
  340. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  341. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  342. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  343. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  344. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  345. From Grp_DelegationInfo gdi
  346. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  347. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  348. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  349. Where gdi.IsDel = 0 {0}
  350. ) temp", sqlWhere);
  351. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  352. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  353. #region 处理所属部门
  354. /*
  355. * 1.sq 和 gyy 等显示 市场部
  356. * 2.王鸽和主管及张总还有管理员号统一国交部
  357. * 2-1. 4 管理员 ,21 张海麟
  358. */
  359. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  360. List<int> userIds1 = new List<int>() { 4, 21 };
  361. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  362. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  363. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  364. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  365. .ToList();
  366. foreach (var item in _DelegationList)
  367. {
  368. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  369. }
  370. #endregion
  371. var _view = new
  372. {
  373. PageFuncAuth = pageFunAuthView,
  374. Data = _DelegationList
  375. };
  376. return Ok(JsonView(true, "查询成功!", _view, total));
  377. }
  378. else
  379. {
  380. return Ok(JsonView(false, "查询失败"));
  381. }
  382. }
  383. /// <summary>
  384. /// 团组列表
  385. /// </summary>
  386. /// <returns></returns>
  387. [HttpPost]
  388. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  389. {
  390. #region 参数验证
  391. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  392. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  393. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  394. #region 页面操作权限验证
  395. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  396. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  397. #endregion
  398. #endregion
  399. if (dto.PortType != 1 && dto.PortType != 2)
  400. {
  401. return Ok(JsonView(false, "查询失败!"));
  402. }
  403. string orderbyStr = "order by gdi.CreateTime Desc";
  404. string sqlWhere = string.Empty;
  405. if (dto.IsSure == 0) //未完成
  406. {
  407. sqlWhere += string.Format(@" And IsSure = 0");
  408. }
  409. else if (dto.IsSure == 1) //已完成
  410. {
  411. sqlWhere += string.Format(@" And IsSure = 1");
  412. }
  413. //团组类型
  414. if (dto.TeamDid > 0)
  415. {
  416. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  417. }
  418. //团组名称
  419. if (!string.IsNullOrEmpty(dto.TeamName))
  420. {
  421. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  422. }
  423. //客户名称
  424. if (!string.IsNullOrEmpty(dto.ClientName))
  425. {
  426. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  427. }
  428. //客户单位
  429. if (!string.IsNullOrEmpty(dto.ClientUnit))
  430. {
  431. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  432. }
  433. //出访时间
  434. if (!string.IsNullOrEmpty(dto.visitDataTime))
  435. {
  436. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  437. orderbyStr = "order by gdi.VisitDate";
  438. }
  439. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  440. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  441. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  442. JietuanOperator,IsSure,CreateTime
  443. From (
  444. Select row_number() over({0}) as Row_Number,
  445. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  446. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  447. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  448. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  449. From Grp_DelegationInfo gdi
  450. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  451. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  452. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  453. Where gdi.IsDel = 0 {1}
  454. ) temp ", orderbyStr, sqlWhere);
  455. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  456. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  457. #region 处理所属部门
  458. /*
  459. * 1.sq 和 gyy 等显示 市场部
  460. * 2.王鸽和主管及张总还有管理员号统一国交部
  461. * 2-1. 4 管理员 ,21 张海麟
  462. */
  463. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  464. List<int> userIds1 = new List<int>() { 4, 21 };
  465. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  466. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  467. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  468. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  469. .ToList();
  470. foreach (var item in _DelegationList)
  471. {
  472. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  473. }
  474. #endregion
  475. var _view = new
  476. {
  477. PageFuncAuth = pageFunAuthView,
  478. Data = _DelegationList
  479. };
  480. return Ok(JsonView(true, "查询成功!", _view, total));
  481. }
  482. /// <summary>
  483. /// 接团信息详情
  484. /// </summary>
  485. /// <param name="dto">团组info请求dto</param>
  486. /// <returns></returns>
  487. [HttpPost]
  488. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  489. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  490. {
  491. var groupData = await _groupRepository.GetGroupInfo(dto);
  492. if (groupData.Code != 0)
  493. {
  494. return Ok(JsonView(false, groupData.Msg));
  495. }
  496. return Ok(JsonView(groupData.Data));
  497. }
  498. /// <summary>
  499. /// 接团信息 编辑添加
  500. /// 基础信息数据源
  501. /// </summary>
  502. /// <param name="dto"></param>
  503. /// <returns></returns>
  504. [HttpPost]
  505. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  506. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  507. {
  508. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  509. if (groupData.Code != 0)
  510. {
  511. return Ok(JsonView(false, groupData.Msg));
  512. }
  513. return Ok(JsonView(groupData.Data));
  514. }
  515. /// <summary>
  516. /// 接团信息 操作(增改)
  517. /// </summary>
  518. /// <param name="dto"></param>
  519. /// <returns></returns>
  520. [HttpPost]
  521. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  522. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  523. {
  524. try
  525. {
  526. var groupData = await _groupRepository.GroupOperation(dto);
  527. if (groupData.Code != 0)
  528. {
  529. return Ok(JsonView(false, groupData.Msg));
  530. }
  531. int diId = 0;
  532. //添加时 默认加入团组汇率
  533. if (dto.Status == 1) //添加
  534. {
  535. diId = groupData.Data;
  536. //添加默认币种
  537. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  538. //默认分配权限
  539. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  540. //消息提示 王鸽 主管号
  541. List<int> _managerIds = new List<int>() { 22, 32 };
  542. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  543. if (userIds.Count > 0)
  544. {
  545. userIds.Add(208);
  546. //创建团组管控
  547. GroupStepForDelegation.CreateWorkStep(diId);
  548. //发送消息
  549. string groupName = dto.TeamName;
  550. string createGroupUser = string.Empty;
  551. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  552. if (userInfo != null) createGroupUser = userInfo.CnName;
  553. string title = $"系统通知";
  554. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  555. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  556. }
  557. //默认创建倒推表
  558. await _invertedListRep._Create(dto.UserId, diId);
  559. }
  560. else if (dto.Status == 2)
  561. {
  562. diId = dto.Id;
  563. }
  564. return Ok(JsonView(true, "操作成功!", diId));
  565. }
  566. catch (Exception ex)
  567. {
  568. Logs("[response]" + JsonConvert.SerializeObject(dto));
  569. Logs(ex.Message);
  570. return Ok(JsonView(false, ex.Message));
  571. }
  572. }
  573. /// <summary>
  574. /// 接团流程操作(增改)
  575. /// 安卓端使用 建团时添加客户名单
  576. /// </summary>
  577. /// <param name="dto"></param>
  578. /// <returns></returns>
  579. [HttpPost]
  580. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  581. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  582. {
  583. try
  584. {
  585. #region 参数验证
  586. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  587. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  588. #region 页面操作权限验证
  589. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  590. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  591. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  592. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  593. #endregion
  594. #endregion
  595. _sqlSugar.BeginTran();
  596. var _dto = new GroupOperationDto();
  597. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  598. var groupData = await _groupRepository.GroupOperation(_dto);
  599. if (groupData.Code != 0)
  600. {
  601. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  602. }
  603. int diId = 0;
  604. //添加时 默认加入团组汇率
  605. if (dto.Status == 1) //添加
  606. {
  607. diId = groupData.Data;
  608. //添加默认币种
  609. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  610. //默认分配权限
  611. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  612. //消息提示 王鸽 主管号
  613. List<int> _managerIds = new List<int>() { 22, 32 };
  614. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  615. if (userIds.Count > 0)
  616. {
  617. userIds.Add(208);
  618. //创建团组管控
  619. GroupStepForDelegation.CreateWorkStep(diId);
  620. //发送消息
  621. string groupName = dto.TeamName;
  622. string createGroupUser = string.Empty;
  623. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  624. if (userInfo != null) createGroupUser = userInfo.CnName;
  625. string title = $"系统通知";
  626. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  627. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  628. }
  629. }
  630. if (dto.Status == 2)
  631. {
  632. diId = dto.Id;
  633. if (diId == 0)
  634. {
  635. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  636. }
  637. }
  638. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  639. if (viewData.Code != 0)
  640. {
  641. _sqlSugar.RollbackTran();
  642. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  643. }
  644. _sqlSugar.CommitTran();
  645. return Ok(JsonView(true, "添加成功"));
  646. }
  647. catch (Exception ex)
  648. {
  649. _sqlSugar.RollbackTran();
  650. return Ok(JsonView(false, ex.Message));
  651. }
  652. }
  653. /// <summary>
  654. /// 接团信息 操作(删除)
  655. /// </summary>
  656. /// <param name="dto"></param>
  657. /// <returns></returns>
  658. [HttpPost]
  659. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  660. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  661. {
  662. try
  663. {
  664. var groupData = await _groupRepository.GroupDel(dto);
  665. if (groupData.Code != 0)
  666. {
  667. return Ok(JsonView(false, groupData.Msg));
  668. }
  669. return Ok(JsonView(true));
  670. }
  671. catch (Exception ex)
  672. {
  673. Logs("[response]" + JsonConvert.SerializeObject(dto));
  674. Logs(ex.Message);
  675. return Ok(JsonView(false, ex.Message));
  676. }
  677. }
  678. /// <summary>
  679. /// 获取团组销售报价号
  680. /// 团组添加时 使用
  681. /// </summary>
  682. /// <returns></returns>
  683. [HttpPost]
  684. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  685. public async Task<IActionResult> GetGroupSalesQuoteNo()
  686. {
  687. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  688. if (groupData.Code != 0)
  689. {
  690. return Ok(JsonView(false, groupData.Msg));
  691. }
  692. object salesQuoteNo = new
  693. {
  694. SalesQuoteNo = groupData.Data
  695. };
  696. return Ok(JsonView(salesQuoteNo));
  697. }
  698. /// <summary>
  699. /// 设置确认出团
  700. /// </summary>
  701. /// <param name="dto"></param>
  702. /// <returns></returns>
  703. [HttpPost]
  704. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  705. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  706. {
  707. var groupData = await _groupRepository.ConfirmationGroup(dto);
  708. if (groupData.Code != 0)
  709. {
  710. return Ok(JsonView(false, groupData.Msg));
  711. }
  712. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  713. #region OA消息推送
  714. try
  715. {
  716. string groupName = groupInfo.TeamName;
  717. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  718. List<int> userIds = new List<int>();
  719. listUser.ForEach(s => userIds.Add(s.Id));
  720. string title = $"系统通知";
  721. string content = $"团组[{groupName}]已确认出团!";
  722. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  723. }
  724. catch (Exception ex)
  725. {
  726. }
  727. #endregion
  728. #region 应用推送
  729. try
  730. {
  731. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  732. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  733. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  734. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  735. {
  736. List<string> userList = new List<string>() { users.QiyeChatUserId };
  737. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  738. }
  739. }
  740. catch (Exception ex)
  741. {
  742. }
  743. #endregion
  744. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  745. return Ok(JsonView(true, "操作成功!", groupData.Data));
  746. }
  747. /// <summary>
  748. /// 获取团组名称data And 签证国别Data
  749. /// </summary>
  750. /// <param name="dto"></param>
  751. /// <returns></returns>
  752. [HttpPost]
  753. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  754. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  755. {
  756. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  757. if (groupData.Code != 0)
  758. {
  759. return Ok(JsonView(false, groupData.Msg));
  760. }
  761. return Ok(JsonView(groupData.Data));
  762. }
  763. /// <summary>
  764. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  765. /// </summary>
  766. /// <returns></returns>
  767. [HttpPost]
  768. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  769. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  770. {
  771. try
  772. {
  773. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  774. if (groupData.Code != 0)
  775. {
  776. return Ok(JsonView(false, groupData.Msg));
  777. }
  778. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  779. }
  780. catch (Exception ex)
  781. {
  782. return Ok(JsonView(false, "程序错误!"));
  783. throw;
  784. }
  785. }
  786. #endregion
  787. #region 团组&签证
  788. /// <summary>
  789. /// 根据团组Id获取签证客户信息List
  790. /// </summary>
  791. /// <param name="dto">请求dto</param>
  792. /// <returns></returns>
  793. [HttpPost]
  794. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  795. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  796. {
  797. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  798. if (groupData.Code != 0)
  799. {
  800. return Ok(JsonView(false, groupData.Msg));
  801. }
  802. return Ok(JsonView(groupData.Data));
  803. }
  804. /// <summary>
  805. /// IOS获取团组签证拍照上传进度01(团组列表)
  806. /// </summary>
  807. /// <param name="dto">请求dto</param>
  808. /// <returns></returns>
  809. [HttpPost]
  810. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  811. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  812. {
  813. if (dto == null)
  814. {
  815. return Ok(JsonView(false, "参数为空"));
  816. }
  817. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  818. return Ok(JsonView(visaList));
  819. }
  820. /// <summary>
  821. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  822. /// </summary>
  823. /// <returns></returns>
  824. [HttpPost]
  825. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  826. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  827. {
  828. if (dto == null)
  829. {
  830. return Ok(JsonView(false, "请求错误:"));
  831. }
  832. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  833. return Ok(JsonView(list));
  834. }
  835. /// <summary>
  836. /// IOS获取团组签证拍照上传进度03(相册)
  837. /// </summary>
  838. /// <returns></returns>
  839. [HttpPost]
  840. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  841. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  842. {
  843. if (dto == null)
  844. {
  845. return Ok(JsonView(false, "请求错误:"));
  846. }
  847. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  848. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  849. list.ForEach(s => s.url = url);
  850. return Ok(JsonView(list));
  851. }
  852. /// <summary>
  853. /// IOS获取团组签证拍照上传进度04(图片上传)
  854. /// </summary>
  855. /// <param name="dto"></param>
  856. /// <returns></returns>
  857. [HttpPost]
  858. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  859. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  860. {
  861. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  862. //if (!string.IsNullOrEmpty(result))
  863. //{
  864. //}
  865. //else {
  866. // return Ok(JsonView(false, "上传失败"));
  867. //}
  868. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  869. int sucNum = 0;
  870. try
  871. {
  872. foreach (var item in dto.base64DataList)
  873. {
  874. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  875. string result = decodeBase64ToImage(item, imageName);
  876. if (!string.IsNullOrEmpty(result))
  877. {
  878. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  879. pic.CreateUserId = dto.CreateUserId;
  880. pic.PicName = imageName;
  881. pic.PicPath = result;
  882. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  883. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  884. if (insertResult > 0)
  885. {
  886. sucNum++;
  887. }
  888. }
  889. }
  890. }
  891. catch (Exception ex)
  892. {
  893. return Ok(JsonView(false, ex.Message));
  894. }
  895. string msg = string.Format(@"成功上传{0}张", sucNum);
  896. return Ok(JsonView(true, msg));
  897. }
  898. private string decodeBase64ToImage(string base64DataURL, string imgName)
  899. {
  900. string filename = "";//声明一个string类型的相对路径
  901. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  902. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  903. try//会有异常抛出,try,catch一下
  904. {
  905. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  906. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  907. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  908. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  909. //文件名称
  910. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  911. //上传的文件的路径
  912. string filePath = "";
  913. if (!Directory.Exists(fileDir))
  914. {
  915. Directory.CreateDirectory(fileDir);
  916. }
  917. //上传的文件的路径
  918. filePath = fileDir + filename;
  919. //string url = HttpRuntime.AppDomainAppPath.ToString();
  920. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  921. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  922. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  923. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  924. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  925. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  926. ms.Close();//关闭当前流,并释放所有与之关联的资源
  927. bitmap.Dispose();
  928. }
  929. catch (Exception e)
  930. {
  931. string massage = e.Message;
  932. Logs("IOS图片上传Error:" + massage);
  933. //filename = e.Message;
  934. }
  935. return filename;//返回相对路径
  936. }
  937. /// <summary>
  938. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  939. /// </summary>
  940. /// <param name="dto"></param>
  941. /// <returns></returns>
  942. [HttpPost]
  943. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  944. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  945. {
  946. if (dto == null)
  947. {
  948. return Ok(JsonView(false, "请求错误:"));
  949. }
  950. string msg = "参数错误";
  951. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  952. {
  953. try
  954. {
  955. //_delegationVisaRep.BeginTran();
  956. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  957. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  958. .Where(s => s.Id == dto.visaProgressCustomerId)
  959. .ExecuteCommandAsync();
  960. if (updCount > 0 && dto.publishCode == 1)
  961. {
  962. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  963. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  964. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  965. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  966. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  967. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  968. if (groupData == null)
  969. {
  970. _delegationVisaRep.RollbackTran();
  971. }
  972. string title = string.Format(@"[签证进度更新]");
  973. string content = string.Format(@"测试文本");
  974. bool rst = await _message.AddMsg(new MessageDto()
  975. {
  976. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  977. IssuerId = dto.publisher,
  978. Title = title,
  979. Content = content,
  980. ReleaseTime = DateTime.Now,
  981. UIdList = new List<int> {
  982. 234
  983. }
  984. });
  985. if (rst)
  986. {
  987. return Ok(JsonView(true, "发送通知成功"));
  988. }
  989. }
  990. //_delegationVisaRep.CommitTran();
  991. }
  992. catch (Exception)
  993. {
  994. //_delegationVisaRep.RollbackTran();
  995. }
  996. }
  997. return Ok(JsonView(true, msg));
  998. }
  999. #endregion
  1000. #region 团组任务分配
  1001. /// <summary>
  1002. /// 团组任务分配初始化
  1003. /// </summary>
  1004. /// <param name="dto"></param>
  1005. /// <returns></returns>
  1006. [HttpPost]
  1007. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1008. public async Task<IActionResult> GetTaskAssignmen()
  1009. {
  1010. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1011. if (groupData.Code != 0)
  1012. {
  1013. return Ok(JsonView(false, groupData.Msg));
  1014. }
  1015. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1016. }
  1017. /// <summary>
  1018. /// 团组任务分配查询
  1019. /// </summary>
  1020. /// <param name="dto"></param>
  1021. /// <returns></returns>
  1022. [HttpPost]
  1023. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1024. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1025. {
  1026. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1027. if (groupData.Code != 0)
  1028. {
  1029. return Ok(JsonView(false, groupData.Msg));
  1030. }
  1031. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1032. }
  1033. /// <summary>
  1034. /// 团组任务分配操作
  1035. /// </summary>
  1036. /// <param name="dto"></param>
  1037. /// <returns></returns>
  1038. [HttpPost]
  1039. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1040. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1041. {
  1042. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1043. if (groupData.Code != 0)
  1044. {
  1045. return Ok(JsonView(false, groupData.Msg));
  1046. }
  1047. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1048. }
  1049. #endregion
  1050. #region 团组费用审核
  1051. /// <summary>
  1052. /// 费用审核
  1053. /// 团组列表 Page
  1054. /// </summary>
  1055. /// <param name="_dto">团组列表请求dto</param>
  1056. /// <returns></returns>
  1057. [HttpPost]
  1058. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1059. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1060. {
  1061. #region 参数验证
  1062. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1063. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1064. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1065. #region 页面操作权限验证
  1066. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1067. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1068. #endregion
  1069. #endregion
  1070. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1071. {
  1072. string sqlWhere = string.Empty;
  1073. if (_dto.IsSure == 0) //未完成
  1074. {
  1075. sqlWhere += string.Format(@" And IsSure = 0");
  1076. }
  1077. else if (_dto.IsSure == 1) //已完成
  1078. {
  1079. sqlWhere += string.Format(@" And IsSure = 1");
  1080. }
  1081. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1082. {
  1083. string tj = _dto.SearchCriteria;
  1084. 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}%')",
  1085. tj, tj, tj, tj, tj);
  1086. }
  1087. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1088. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1089. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1090. From (
  1091. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1092. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1093. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1094. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1095. From Grp_DelegationInfo gdi
  1096. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1097. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1098. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1099. Where gdi.IsDel = 0 {0}
  1100. ) temp ", sqlWhere);
  1101. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1102. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1103. var _view = new
  1104. {
  1105. PageFuncAuth = pageFunAuthView,
  1106. Data = _DelegationList
  1107. };
  1108. return Ok(JsonView(true, "查询成功!", _view, total));
  1109. }
  1110. else
  1111. {
  1112. return Ok(JsonView(false, "查询失败"));
  1113. }
  1114. }
  1115. /// <summary>
  1116. /// 获取团组费用审核
  1117. /// </summary>
  1118. /// <param name="paras">参数Json字符串</param>
  1119. /// <returns></returns>
  1120. [HttpPost]
  1121. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1122. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1123. {
  1124. try
  1125. {
  1126. #region 参数验证
  1127. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1128. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1129. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1130. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1131. #region 页面操作权限验证
  1132. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1133. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1134. #endregion
  1135. #endregion
  1136. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1137. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1138. #region 费用清单
  1139. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1140. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1141. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1142. List<Grp_CreditCardPayment> entityList = _groupRepository
  1143. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1144. .Where(exp.ToExpression())
  1145. .ToList();
  1146. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1147. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1148. /*
  1149. * 76://酒店预订
  1150. */
  1151. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1152. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1153. .ToListAsync();
  1154. /*
  1155. * 79://车/导游地接
  1156. */
  1157. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1158. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1159. .ToListAsync();
  1160. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1161. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1162. .ToListAsync();
  1163. /*
  1164. * 80: //签证
  1165. */
  1166. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1167. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1168. .ToListAsync();
  1169. /*
  1170. *81: //邀请/公务活动
  1171. */
  1172. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1173. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1174. .ToListAsync();
  1175. /*
  1176. * 82: //团组客户保险
  1177. */
  1178. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1179. /*
  1180. * Lable = 85 机票预订
  1181. */
  1182. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1183. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1184. .ToListAsync();
  1185. /*
  1186. * 85 机票预定
  1187. */
  1188. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1189. /*
  1190. * 98 其他款项
  1191. */
  1192. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1193. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1194. .ToListAsync();
  1195. /*
  1196. * 285:收款退还
  1197. */
  1198. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1199. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1200. .ToListAsync();
  1201. /*
  1202. * 1015: //超支费用
  1203. */
  1204. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1205. /*
  1206. * 币种信息
  1207. */
  1208. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1209. /*
  1210. * 车/导游地接 费用类型
  1211. */
  1212. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1213. /*
  1214. * 车/导游地接 费用类型
  1215. */
  1216. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1217. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1218. /*
  1219. * 用户信息
  1220. */
  1221. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1222. /*
  1223. * 费用模块
  1224. */
  1225. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1226. string priceModule = string.Empty;
  1227. if (sdPriceName != null)
  1228. {
  1229. priceModule = sdPriceName.Name;
  1230. }
  1231. /*
  1232. * 处理详情数据
  1233. */
  1234. foreach (var entity in entityList)
  1235. {
  1236. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1237. _detail.Id = entity.Id;
  1238. _detail.PriceName = priceModule;
  1239. /*
  1240. * 应付款金额
  1241. */
  1242. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1243. string PaymentCurrency_WaitPay = "Unknown";
  1244. string hotelCurrncyCode = "Unknown";
  1245. string hotelCurrncyName = "Unknown";
  1246. if (sdPaymentCurrency_WaitPay != null)
  1247. {
  1248. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1249. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1250. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1251. if (hotelCurrncyCode.Equals("CNY"))
  1252. {
  1253. entity.DayRate = 1.0000M;
  1254. }
  1255. }
  1256. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1257. /*
  1258. * 此次付款金额
  1259. */
  1260. decimal CurrPayStr = 0;
  1261. if (entity.PayPercentage == 0)
  1262. {
  1263. if (entity.PayThenMoney != 0)
  1264. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1265. }
  1266. else
  1267. {
  1268. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1269. }
  1270. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1271. /*
  1272. * 剩余尾款
  1273. */
  1274. decimal BalanceStr = 0;
  1275. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1276. BalanceStr = 0;
  1277. else
  1278. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1279. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1280. /*
  1281. * Bus名称
  1282. */
  1283. _detail.BusName = "待增加";
  1284. /*
  1285. *费用所属
  1286. */
  1287. switch (entity.CTable)
  1288. {
  1289. case 76://酒店预订
  1290. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1291. if (hotelReservations != null)
  1292. {
  1293. string GovernmentRentCode = "", GovernmentRentName = "", CityTaxCode = "", CityTaxName = "", BreakfastCode = "", BreakfastName = "";
  1294. Sys_SetData sdPaymentCurrency_GovernmentRent = currencyItems.Where(s => s.Id == hotelReservations.GovernmentRentCurrency).FirstOrDefault();
  1295. if (sdPaymentCurrency_GovernmentRent != null)
  1296. {
  1297. GovernmentRentCode = sdPaymentCurrency_GovernmentRent.Name;
  1298. GovernmentRentName = sdPaymentCurrency_GovernmentRent.Remark;
  1299. }
  1300. Sys_SetData sdPaymentCurrency_CityTax = currencyItems.Where(s => s.Id == hotelReservations.CityTaxCurrency).FirstOrDefault();
  1301. if (sdPaymentCurrency_CityTax != null)
  1302. {
  1303. CityTaxCode = sdPaymentCurrency_CityTax.Name;
  1304. CityTaxName = sdPaymentCurrency_CityTax.Remark;
  1305. }
  1306. Sys_SetData sdPaymentCurrency_Breakfast = currencyItems.Where(s => s.Id == hotelReservations.BreakfastCurrency).FirstOrDefault();
  1307. if (sdPaymentCurrency_Breakfast != null)
  1308. {
  1309. BreakfastCode = sdPaymentCurrency_Breakfast.Name;
  1310. BreakfastName = sdPaymentCurrency_Breakfast.Remark;
  1311. }
  1312. string isoppayStr = hotelReservations.Isoppay == 0 ? "是" : "否";
  1313. _detail.PriceMsgContent = $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1314. $"房间说明: {hotelReservations.Remark} <br/>" +
  1315. $"地税: {hotelReservations.GovernmentRent.ToString("#0.00")} {GovernmentRentCode} ({GovernmentRentName})<br/>" +
  1316. $"城市税: {hotelReservations.CityTax.ToString("#0.00")} {CityTaxCode} ({CityTaxName})<br/>" +
  1317. $"酒店早餐: {hotelReservations.BreakfastPrice.ToString("#0.00")} {BreakfastCode} ({BreakfastName})<br/>" +
  1318. $"酒店早餐是否由地接代付: {isoppayStr}";
  1319. _detail.PriceNameContent = hotelReservations.HotelName;
  1320. }
  1321. break;
  1322. case 79://车/导游地接
  1323. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1324. if (touristGuideGroundReservations != null)
  1325. {
  1326. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1327. {
  1328. _detail.BusName = touristGuideGroundReservations.BusName;
  1329. }
  1330. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1331. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1332. //if (isInt)
  1333. //{
  1334. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1335. // if (cityInfo != null)
  1336. // {
  1337. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1338. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1339. // if (carFeeItem != null)
  1340. // {
  1341. // nameContent += $@"({carFeeItem.Name})";
  1342. // }
  1343. // _detail.PriceNameContent = nameContent;
  1344. // }
  1345. //}
  1346. //else
  1347. //{
  1348. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1349. //}
  1350. List<Grp_CarTouristGuideGroundReservationsContent> touristGuideGroundReservationsContents = _CarTouristGuideGroundReservationsContent
  1351. .Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1352. string priceMsg = string.Empty;
  1353. foreach (var item in touristGuideGroundReservationsContents)
  1354. {
  1355. string typeName = "Unknown";
  1356. string carCurrencyCode = "Unknown";
  1357. string carCurrencyName = "Unknown";
  1358. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1359. if (carTypeData != null) typeName = carTypeData.Name;
  1360. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1361. if (currencyData != null)
  1362. {
  1363. carCurrencyCode = currencyData.Name;
  1364. carCurrencyName = currencyData.Remark;
  1365. }
  1366. priceMsg += typeName + ":" + item.Price.ToString("#0.00") + " " + carCurrencyCode + "(" + carCurrencyName + ")<br/>" +
  1367. "明细:" + item.PriceContent + "<br/>" +
  1368. "备注:" + item.Remark + "<br/><br/>";
  1369. }
  1370. _detail.PriceMsgContent = priceMsg;
  1371. }
  1372. break;
  1373. case 80: //签证
  1374. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1375. if (visaInfo != null)
  1376. {
  1377. _detail.PriceNameContent = getClientNameStr(clientNameList, visaInfo.VisaClient);
  1378. _detail.PriceMsgContent = "备注:" + visaInfo.Remark;
  1379. }
  1380. break;
  1381. case 81: //邀请/公务活动
  1382. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1383. if (_ioa != null)
  1384. {
  1385. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1386. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1387. sendCurrName = "Unknown", //快递费用币种 Name
  1388. sendCurrCode = "Unknown", //快递费用币种 Code
  1389. eventsCurrName = "Unknown", //公务活动费币种 Name
  1390. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1391. translateCurrName = "Unknown", //公务翻译费 Name
  1392. translateCurrCode = "Unknown"; //公务翻译费 Code
  1393. #region 处理费用币种
  1394. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1395. if (inviteCurrData != null)
  1396. {
  1397. inviteCurrName = inviteCurrData.Remark;
  1398. inviteCurrCode = inviteCurrData.Name;
  1399. }
  1400. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1401. if (sendCurrData != null)
  1402. {
  1403. sendCurrName = sendCurrData.Remark;
  1404. sendCurrCode = sendCurrData.Name;
  1405. }
  1406. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1407. if (eventsCurrData != null)
  1408. {
  1409. eventsCurrName = eventsCurrData.Remark;
  1410. eventsCurrCode = eventsCurrData.Name;
  1411. }
  1412. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1413. if (translateCurrData != null)
  1414. {
  1415. translateCurrName = translateCurrData.Remark;
  1416. translateCurrCode = translateCurrData.Name;
  1417. }
  1418. #endregion
  1419. _detail.PriceNameContent = _ioa.InviterArea;
  1420. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1421. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1422. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1423. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1424. $@"备注:" + _ioa.Remark + "<br/>";
  1425. }
  1426. break;
  1427. case 82: //团组客户保险
  1428. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1429. if (customers != null)
  1430. {
  1431. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1432. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1433. }
  1434. break;
  1435. case 85: //机票预订
  1436. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1437. if (jpRes != null)
  1438. {
  1439. string FlightsDescription = jpRes.FlightsDescription;
  1440. string PriceDescription = jpRes.PriceDescription;
  1441. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1442. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1443. }
  1444. break;
  1445. case 98://其他款项
  1446. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1447. if (gdpRes != null)
  1448. {
  1449. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1450. _detail.PriceNameContent = gdpRes.PriceName;
  1451. }
  1452. break;
  1453. case 285://收款退还
  1454. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1455. if (refundAndOtherMoney != null)
  1456. {
  1457. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1458. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1459. }
  1460. break;
  1461. case 751://酒店早餐
  1462. break;
  1463. case 1015://超支费用
  1464. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1465. if (groupExtraCost != null)
  1466. {
  1467. _detail.PriceNameContent = groupExtraCost.PriceName;
  1468. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1469. }
  1470. break;
  1471. default:
  1472. break;
  1473. }
  1474. /*
  1475. * 申请人
  1476. */
  1477. string operatorName = " - ";
  1478. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1479. if (_opUser != null)
  1480. {
  1481. operatorName = _opUser.CnName;
  1482. }
  1483. _detail.OperatorName = operatorName;
  1484. /*
  1485. * 审核人
  1486. */
  1487. string auditOperatorName = "Unknown";
  1488. if (entity.AuditGMOperate == 0)
  1489. auditOperatorName = " - ";
  1490. else if (entity.AuditGMOperate == 4)
  1491. auditOperatorName = "自动审核";
  1492. else
  1493. {
  1494. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1495. if (_adUser != null)
  1496. {
  1497. auditOperatorName = _adUser.CnName;
  1498. }
  1499. }
  1500. _detail.AuditOperatorName = auditOperatorName;
  1501. /*
  1502. * 超预算比例
  1503. */
  1504. string overBudgetStr = "";
  1505. if (entity.ExceedBudget == -1)
  1506. overBudgetStr = sdPriceName.Name + "尚无预算";
  1507. else if (entity.ExceedBudget == 0)
  1508. overBudgetStr = "未超预算";
  1509. else
  1510. overBudgetStr = entity.ExceedBudget.ToString("P");
  1511. _detail.OverBudget = overBudgetStr;
  1512. /*
  1513. * 费用总计
  1514. */
  1515. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1516. {
  1517. CurrencyId = entity.PaymentCurrency,
  1518. CurrencyName = PaymentCurrency_WaitPay,
  1519. AmountPayable = entity.PayMoney,
  1520. ThisPayment = CurrPayStr,
  1521. BalancePayment = BalanceStr,
  1522. AuditedFunds = CurrPayStr
  1523. });
  1524. _detail.IsAuditGM = entity.IsAuditGM;
  1525. detailList.Add(_detail);
  1526. }
  1527. #endregion
  1528. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1529. /*
  1530. * 下方描述处理
  1531. */
  1532. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1533. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1534. if (ccpCurrencyPrice != null)
  1535. {
  1536. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1537. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1538. }
  1539. else
  1540. {
  1541. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1542. }
  1543. string amountPayableStr = string.Format(@"应付款总金额: ");
  1544. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1545. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1546. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1547. foreach (var item in nonDuplicat)
  1548. {
  1549. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1550. if (strs.Count > 0)
  1551. {
  1552. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1553. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1554. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1555. //单独处理此次付款金额
  1556. if (item.CurrencyId == 836) //人民币
  1557. {
  1558. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1559. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1560. }
  1561. else
  1562. {
  1563. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1564. }
  1565. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1566. //单独处理已审核费用
  1567. if (item.CurrencyId == 836) //人民币
  1568. {
  1569. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1570. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1571. }
  1572. else
  1573. {
  1574. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1575. }
  1576. }
  1577. }
  1578. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1579. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1580. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1581. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1582. var _view1 = new
  1583. {
  1584. PageFuncAuth = pageFunAuthView,
  1585. Data = _view
  1586. };
  1587. return Ok(JsonView(_view1));
  1588. }
  1589. catch (Exception ex)
  1590. {
  1591. return Ok(JsonView(false, ex.Message));
  1592. }
  1593. }
  1594. /// <summary>
  1595. /// 费用审核
  1596. /// 修改团组费用审核状态
  1597. /// </summary>
  1598. /// <param name="_dto">参数Json字符串</param>
  1599. /// <returns></returns>
  1600. [HttpPost]
  1601. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1602. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1603. {
  1604. #region 参数验证
  1605. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1606. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1607. #endregion
  1608. #region 页面操作权限验证
  1609. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1610. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1611. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1612. #endregion
  1613. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1614. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1615. DateTime dtNow = DateTime.Now;
  1616. _groupRepository.BeginTran();
  1617. int rst = 0;
  1618. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1619. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1620. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1621. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1622. List<dynamic> msgDatas = new List<dynamic>();
  1623. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1624. foreach (var item in idList)
  1625. {
  1626. int CreditId = int.Parse(item);
  1627. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1628. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1629. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1630. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1631. .Where(s => s.Id == CreditId)
  1632. .ExecuteCommandAsync();
  1633. if (result < 1)
  1634. {
  1635. rst = -1;
  1636. _groupRepository.RollbackTran();
  1637. return Ok(JsonView(false, "操作失败并回滚!"));
  1638. }
  1639. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1640. if (creditData != null)
  1641. {
  1642. #region 应用通知配置
  1643. try
  1644. {
  1645. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1646. }
  1647. catch (Exception ex)
  1648. {
  1649. }
  1650. #endregion
  1651. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1652. string groupNameStr = string.Empty;
  1653. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1654. if (groupData != null) groupNameStr = groupData.TeamName;
  1655. string creditTypeStr = string.Empty;
  1656. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1657. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1658. string creditCurrency = string.Empty;
  1659. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1660. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1661. if (creditCurrency.Equals("CNY"))
  1662. {
  1663. creditData.DayRate = 1.0000M;
  1664. }
  1665. if (creditData.PayPercentage == 0.00M)
  1666. {
  1667. creditData.PayPercentage = 100M;
  1668. }
  1669. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1670. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1671. string msgContent = "";
  1672. if (creditCurrency.Equals("CNY"))
  1673. {
  1674. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1675. }
  1676. else
  1677. {
  1678. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1679. }
  1680. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1681. }
  1682. }
  1683. if (rst == 0)
  1684. {
  1685. _groupRepository.CommitTran();
  1686. foreach (var item in msgDatas)
  1687. {
  1688. //发送消息
  1689. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1690. }
  1691. #region 应用推送
  1692. try
  1693. {
  1694. foreach (var ccpId in dic_ccp_user.Keys)
  1695. {
  1696. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1697. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1698. }
  1699. }
  1700. catch (Exception)
  1701. {
  1702. }
  1703. #endregion
  1704. return Ok(JsonView(true, "操作成功!"));
  1705. }
  1706. return Ok(JsonView(false, "操作失败!"));
  1707. }
  1708. #endregion
  1709. #region 机票费用录入
  1710. /// <summary>
  1711. /// 机票录入当前登录人可操作团组
  1712. /// </summary>
  1713. /// <param name="dto"></param>
  1714. /// <returns></returns>
  1715. [HttpPost]
  1716. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1717. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1718. {
  1719. try
  1720. {
  1721. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1722. if (groupData.Code != 0)
  1723. {
  1724. return Ok(JsonView(false, groupData.Msg));
  1725. }
  1726. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1727. }
  1728. catch (Exception ex)
  1729. {
  1730. return Ok(JsonView(false, "程序错误!"));
  1731. throw;
  1732. }
  1733. }
  1734. /// <summary>
  1735. /// 机票费用录入列表
  1736. /// </summary>
  1737. /// <param name="dto"></param>
  1738. /// <returns></returns>
  1739. [HttpPost]
  1740. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1741. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1742. {
  1743. try
  1744. {
  1745. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1746. if (groupData.Code != 0)
  1747. {
  1748. return Ok(JsonView(false, groupData.Msg));
  1749. }
  1750. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1751. }
  1752. catch (Exception ex)
  1753. {
  1754. return Ok(JsonView(false, ex.Message));
  1755. throw;
  1756. }
  1757. }
  1758. /// <summary>
  1759. /// 根据id查询费用录入信息
  1760. /// </summary>
  1761. /// <param name="dto"></param>
  1762. /// <returns></returns>
  1763. [HttpPost]
  1764. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1765. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1766. {
  1767. try
  1768. {
  1769. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1770. if (groupData.Code != 0)
  1771. {
  1772. return Ok(JsonView(false, groupData.Msg));
  1773. }
  1774. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1775. }
  1776. catch (Exception ex)
  1777. {
  1778. return Ok(JsonView(false, "程序错误!"));
  1779. throw;
  1780. }
  1781. }
  1782. /// <summary>
  1783. /// 机票费用录入操作(Status:1.新增,2.修改)
  1784. /// </summary>
  1785. /// <param name="dto"></param>
  1786. /// <returns></returns>
  1787. [HttpPost]
  1788. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1789. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1790. {
  1791. try
  1792. {
  1793. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1794. if (groupData.Code != 0)
  1795. {
  1796. return Ok(JsonView(false, groupData.Msg));
  1797. }
  1798. #region 应用推送
  1799. try
  1800. {
  1801. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  1802. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  1803. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  1804. }
  1805. catch (Exception ex)
  1806. {
  1807. }
  1808. #endregion
  1809. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1810. }
  1811. catch (Exception ex)
  1812. {
  1813. return Ok(JsonView(false, "程序错误!"));
  1814. throw;
  1815. }
  1816. }
  1817. /// <summary>
  1818. /// 根据舱位类型查询接团客户名单信息
  1819. /// </summary>
  1820. /// <param name="dto"></param>
  1821. /// <returns></returns>
  1822. [HttpPost]
  1823. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1824. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  1825. {
  1826. try
  1827. {
  1828. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  1829. if (crm_Groups.Count != 0)
  1830. {
  1831. List<dynamic> Customer = new List<dynamic>();
  1832. foreach (var item in crm_Groups)
  1833. {
  1834. var data = new
  1835. {
  1836. Id = item.Id,
  1837. Pinyin = item.Pinyin,
  1838. Name = item.LastName + item.FirstName
  1839. };
  1840. Customer.Add(data);
  1841. }
  1842. return Ok(JsonView(true, "查询成功!", Customer));
  1843. }
  1844. return Ok(JsonView(true, "暂无数据", crm_Groups));
  1845. }
  1846. catch (Exception ex)
  1847. {
  1848. return Ok(JsonView(false, "程序错误!"));
  1849. throw;
  1850. }
  1851. }
  1852. /// <summary>
  1853. /// 根据团号获取客户信息
  1854. /// </summary>
  1855. /// <param name="dto"></param>
  1856. /// <returns></returns>
  1857. [HttpPost]
  1858. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1859. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  1860. {
  1861. var jw = JsonView(false);
  1862. if (dto.DIID < 1)
  1863. {
  1864. jw.Msg += "请输入正确的diid";
  1865. return Ok(jw);
  1866. }
  1867. var arr = getSimplClientList(dto.DIID);
  1868. jw = JsonView(true, "获取成功!", arr);
  1869. return Ok(jw);
  1870. }
  1871. private List<SimplClientInfo> getSimplClientList(int diId)
  1872. {
  1873. 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);
  1874. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  1875. return arr;
  1876. }
  1877. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  1878. {
  1879. string result = origin;
  1880. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  1881. {
  1882. string[] temparr = origin.Split(',');
  1883. string fistrStr = temparr[0];
  1884. int count = temparr.Count();
  1885. int tempId;
  1886. bool success = int.TryParse(fistrStr, out tempId);
  1887. if (success)
  1888. {
  1889. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  1890. if (tempInfo != null)
  1891. {
  1892. if (count > 1)
  1893. {
  1894. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  1895. }
  1896. else
  1897. {
  1898. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  1899. }
  1900. }
  1901. }
  1902. }
  1903. return result;
  1904. }
  1905. /// <summary>
  1906. /// 机票费用录入,删除
  1907. /// </summary>
  1908. /// <param name="dto"></param>
  1909. /// <returns></returns>
  1910. [HttpPost]
  1911. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1912. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  1913. {
  1914. try
  1915. {
  1916. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  1917. if (res)
  1918. {
  1919. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  1920. {
  1921. IsDel = 1,
  1922. DeleteUserId = dto.DeleteUserId,
  1923. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  1924. }).ExecuteCommandAsync();
  1925. return Ok(JsonView(true, "删除成功!"));
  1926. }
  1927. return Ok(JsonView(false, "删除失败!"));
  1928. }
  1929. catch (Exception ex)
  1930. {
  1931. return Ok(JsonView(false, "程序错误!"));
  1932. throw;
  1933. }
  1934. }
  1935. /// <summary>
  1936. /// 导出机票录入报表
  1937. /// </summary>
  1938. /// <param name="dto"></param>
  1939. /// <returns></returns>
  1940. [HttpPost]
  1941. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1942. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  1943. {
  1944. try
  1945. {
  1946. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  1947. if (groupData.Code != 0)
  1948. {
  1949. return Ok(JsonView(false, groupData.Msg));
  1950. }
  1951. else
  1952. {
  1953. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  1954. if (AirTicketReservations.Count != 0)
  1955. {
  1956. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  1957. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  1958. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  1959. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  1960. WorkbookDesigner designer = new WorkbookDesigner();
  1961. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  1962. decimal countCost = 0;
  1963. foreach (var item in AirTicketReservations)
  1964. {
  1965. #region 处理客人姓名
  1966. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  1967. item.ClientName = clientNames;
  1968. #endregion
  1969. if (item.BankType == "其他")
  1970. {
  1971. item.BankNo = "--";
  1972. }
  1973. else
  1974. {
  1975. if (!string.IsNullOrEmpty(item.BankType))
  1976. {
  1977. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  1978. }
  1979. }
  1980. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  1981. item.Price = System.Decimal.Round(item.Price, 2);
  1982. countCost += Convert.ToDecimal(item.Price);
  1983. }
  1984. designer.SetDataSource("Export", AirTicketReservations);
  1985. designer.SetDataSource("ExportDiCode", diCode);
  1986. designer.SetDataSource("ExportDiName", diName);
  1987. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  1988. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  1989. designer.Process();
  1990. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  1991. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  1992. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  1993. return Ok(JsonView(true, "成功", url = rst));
  1994. }
  1995. else
  1996. {
  1997. return Ok(JsonView(false, "暂无数据!"));
  1998. }
  1999. }
  2000. }
  2001. catch (Exception ex)
  2002. {
  2003. return Ok(JsonView(false, ex.Message));
  2004. throw;
  2005. }
  2006. }
  2007. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2008. /// <summary>
  2009. /// 行程单导出
  2010. /// </summary>
  2011. /// <param name="dto"></param>
  2012. /// <returns></returns>
  2013. [HttpPost]
  2014. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2015. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2016. {
  2017. try
  2018. {
  2019. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2020. if (groupData.Code != 0)
  2021. {
  2022. return Ok(JsonView(false, groupData.Msg));
  2023. }
  2024. else
  2025. {
  2026. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2027. if (dto.Language == "CN")
  2028. {
  2029. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2030. DocumentBuilder builder = new DocumentBuilder(doc);
  2031. int tableIndex = 0;//表格索引
  2032. //得到文档中的第一个表格
  2033. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2034. foreach (var item in _AirTicketReservations)
  2035. {
  2036. #region 处理固定数据
  2037. string[] FlightsCode = item.FlightsCode.Split('/');
  2038. if (FlightsCode.Length != 0)
  2039. {
  2040. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2041. if (_AirCompany != null)
  2042. {
  2043. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2044. }
  2045. else
  2046. {
  2047. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2048. }
  2049. }
  2050. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2051. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2052. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2053. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2054. string name = "";
  2055. foreach (string clientName in nameArray)
  2056. {
  2057. if (!name.Contains(clientName))
  2058. {
  2059. name += clientName + ",";
  2060. }
  2061. }
  2062. if (!string.IsNullOrWhiteSpace(name))
  2063. {
  2064. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2065. }
  2066. else
  2067. {
  2068. table.Range.Bookmarks["ClientName"].Text = "--";
  2069. }
  2070. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2071. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2072. table.Range.Bookmarks["JointTicket"].Text = "--";
  2073. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2074. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2075. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2076. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2077. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2078. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2079. #endregion
  2080. #region 循环数据处理
  2081. List<AirInfo> airs = new List<AirInfo>();
  2082. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2083. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2084. for (int i = 0; i < FlightsCode.Length; i++)
  2085. {
  2086. AirInfo air = new AirInfo();
  2087. string[] tempstr = DayArray[i]
  2088. .Replace("\r\n", string.Empty)
  2089. .Replace("\\r\\n", string.Empty)
  2090. .TrimStart().TrimEnd()
  2091. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2092. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2093. string starCity = "";
  2094. if (star_Three != null)
  2095. {
  2096. starCity = star_Three.AirPort;
  2097. }
  2098. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2099. string EndCity = "";
  2100. if (End_Three != null)
  2101. {
  2102. EndCity = End_Three.AirPort;
  2103. }
  2104. air.Destination = starCity + "/" + EndCity;
  2105. air.Flight = FlightsCode[i];
  2106. air.SeatingClass = item.CTypeName;
  2107. string dateTime = tempstr[2];
  2108. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2109. air.FlightDate = DateTemp;
  2110. air.DepartureTime = tempstr[5];
  2111. air.LandingTime = tempstr[6];
  2112. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2113. air.TicketStatus = "--";
  2114. air.Luggage = "--";
  2115. air.DepartureTerminal = "--";
  2116. air.LandingTerminal = "--";
  2117. airs.Add(air);
  2118. }
  2119. int row = 13;
  2120. for (int i = 0; i < airs.Count; i++)
  2121. {
  2122. if (airs.Count > 2)
  2123. {
  2124. for (int j = 0; j < airs.Count - 2; j++)
  2125. {
  2126. var CopyRow = table.Rows[12].Clone(true);
  2127. table.Rows.Add(CopyRow);
  2128. }
  2129. }
  2130. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2131. int index = 0;
  2132. foreach (PropertyInfo property in properties)
  2133. {
  2134. string value = property.GetValue(airs[i]).ToString();
  2135. Cell ishcel0 = table.Rows[row].Cells[index];
  2136. Paragraph p = new Paragraph(doc);
  2137. string s = value;
  2138. p.AppendChild(new Run(doc, s));
  2139. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2140. ishcel0.AppendChild(p);
  2141. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2142. index++;
  2143. }
  2144. row++;
  2145. }
  2146. #endregion
  2147. Paragraph lastParagraph = new Paragraph(doc);
  2148. //第一个表格末尾加段落
  2149. table.ParentNode.InsertAfter(lastParagraph, table);
  2150. //复制第一个表格
  2151. Table cloneTable = (Table)table.Clone(true);
  2152. //在文档末尾段落后面加入复制的表格
  2153. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2154. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2155. {
  2156. int rownewsIndex = 13;
  2157. for (int i = 0; i < 2; i++)
  2158. {
  2159. var CopyRow = table.Rows[12].Clone(true);
  2160. table.Rows.RemoveAt(13);
  2161. table.Rows.Add(CopyRow);
  2162. rownewsIndex++;
  2163. }
  2164. }
  2165. else
  2166. {
  2167. table.Rows.RemoveAt(12);
  2168. }
  2169. cloneTable.Rows.RemoveAt(12);
  2170. }
  2171. if (_AirTicketReservations.Count != 0)
  2172. {
  2173. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2174. if (FlightsCode.Length != 0)
  2175. {
  2176. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2177. if (_AirCompany != null)
  2178. {
  2179. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2180. }
  2181. else
  2182. {
  2183. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2184. }
  2185. }
  2186. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2187. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2188. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2189. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2190. string name = "";
  2191. foreach (string clientName in nameArray)
  2192. {
  2193. if (!name.Contains(clientName))
  2194. {
  2195. name += clientName + ",";
  2196. }
  2197. }
  2198. if (!string.IsNullOrWhiteSpace(name))
  2199. {
  2200. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2201. }
  2202. else
  2203. {
  2204. table.Range.Bookmarks["ClientName"].Text = "--";
  2205. }
  2206. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2207. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2208. table.Range.Bookmarks["JointTicket"].Text = "--";
  2209. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2210. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2211. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2212. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2213. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2214. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2215. }
  2216. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2217. //保存合并后的文档
  2218. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2219. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2220. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2221. return Ok(JsonView(true, "成功!", rst));
  2222. }
  2223. else
  2224. {
  2225. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2226. DocumentBuilder builder = new DocumentBuilder(doc);
  2227. int tableIndex = 0;//表格索引
  2228. //得到文档中的第一个表格
  2229. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2230. List<string> texts = new List<string>();
  2231. foreach (var item in _AirTicketReservations)
  2232. {
  2233. string[] FlightsCode = item.FlightsCode.Split('/');
  2234. if (FlightsCode.Length != 0)
  2235. {
  2236. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2237. if (_AirCompany != null)
  2238. {
  2239. if (!transDic.ContainsKey(_AirCompany.CnName))
  2240. {
  2241. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2242. }
  2243. }
  2244. else
  2245. {
  2246. if (!transDic.ContainsKey("--"))
  2247. {
  2248. transDic.Add("--", "--");
  2249. }
  2250. }
  2251. }
  2252. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2253. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2254. string name = "";
  2255. foreach (string clientName in nameArray)
  2256. {
  2257. name += clientName + ",";
  2258. }
  2259. if (!texts.Contains(name))
  2260. {
  2261. texts.Add(name);
  2262. }
  2263. List<AirInfo> airs = new List<AirInfo>();
  2264. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2265. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2266. for (int i = 0; i < FlightsCode.Length; i++)
  2267. {
  2268. AirInfo air = new AirInfo();
  2269. string[] tempstr = DayArray[i]
  2270. .Replace("\r\n", string.Empty)
  2271. .Replace("\\r\\n", string.Empty)
  2272. .TrimStart().TrimEnd()
  2273. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2274. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2275. if (star_Three != null)
  2276. {
  2277. if (!transDic.ContainsKey(star_Three.AirPort))
  2278. {
  2279. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2280. }
  2281. }
  2282. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2283. if (End_Three != null)
  2284. {
  2285. if (!transDic.ContainsKey(End_Three.AirPort))
  2286. {
  2287. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2288. }
  2289. }
  2290. if (!texts.Contains(item.CTypeName))
  2291. {
  2292. texts.Add(item.CTypeName);
  2293. }
  2294. }
  2295. }
  2296. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2297. if (transData.Count > 0)
  2298. {
  2299. foreach (TranslateResult item in transData)
  2300. {
  2301. if (!transDic.ContainsKey(item.Query))
  2302. {
  2303. transDic.Add(item.Query, item.Translation);
  2304. }
  2305. }
  2306. }
  2307. foreach (var item in _AirTicketReservations)
  2308. {
  2309. #region 处理固定数据
  2310. string[] FlightsCode = item.FlightsCode.Split('/');
  2311. if (FlightsCode.Length != 0)
  2312. {
  2313. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2314. if (_AirCompany != null)
  2315. {
  2316. string str = "--";
  2317. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2318. if (!string.IsNullOrEmpty(translateResult))
  2319. {
  2320. str = translateResult;
  2321. str = _airTicketResRep.Processing(str);
  2322. }
  2323. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2324. }
  2325. else
  2326. {
  2327. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2328. }
  2329. }
  2330. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2331. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2332. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2333. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2334. string names = "";
  2335. foreach (string clientName in nameArray)
  2336. {
  2337. names += clientName + ",";
  2338. }
  2339. if (!string.IsNullOrWhiteSpace(names))
  2340. {
  2341. string str = "--";
  2342. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2343. if (!string.IsNullOrEmpty(translateResult))
  2344. {
  2345. str = translateResult;
  2346. str = _airTicketResRep.Processing(str);
  2347. }
  2348. table.Range.Bookmarks["ClientName"].Text = str;
  2349. }
  2350. else
  2351. {
  2352. table.Range.Bookmarks["ClientName"].Text = "--";
  2353. }
  2354. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2355. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2356. table.Range.Bookmarks["JointTicket"].Text = "--";
  2357. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2358. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2359. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2360. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2361. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2362. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2363. #endregion
  2364. #region 循环数据处理
  2365. List<AirInfo> airs = new List<AirInfo>();
  2366. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2367. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2368. for (int i = 0; i < FlightsCode.Length; i++)
  2369. {
  2370. AirInfo air = new AirInfo();
  2371. string[] tempstr = DayArray[i]
  2372. .Replace("\r\n", string.Empty)
  2373. .Replace("\\r\\n", string.Empty)
  2374. .TrimStart().TrimEnd()
  2375. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2376. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2377. string starCity = "";
  2378. if (star_Three != null)
  2379. {
  2380. string str2 = "--";
  2381. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2382. if (!string.IsNullOrEmpty(translateResult2))
  2383. {
  2384. str2 = translateResult2;
  2385. str2 = _airTicketResRep.Processing(str2);
  2386. }
  2387. starCity = str2;
  2388. }
  2389. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2390. string EndCity = "";
  2391. if (End_Three != null)
  2392. {
  2393. string str1 = "--";
  2394. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2395. if (!string.IsNullOrEmpty(translateResult1))
  2396. {
  2397. str1 = translateResult1;
  2398. str1 = _airTicketResRep.Processing(str1);
  2399. }
  2400. EndCity = str1;
  2401. }
  2402. air.Destination = starCity + "/" + EndCity;
  2403. air.Flight = FlightsCode[i];
  2404. string str = "--";
  2405. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2406. if (!string.IsNullOrEmpty(translateResult))
  2407. {
  2408. str = translateResult;
  2409. str = _airTicketResRep.Processing(str);
  2410. }
  2411. air.SeatingClass = str;
  2412. string dateTime = tempstr[2];
  2413. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2414. air.FlightDate = DateTemp;
  2415. air.DepartureTime = tempstr[5];
  2416. air.LandingTime = tempstr[6];
  2417. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2418. air.TicketStatus = "--";
  2419. air.Luggage = "--";
  2420. air.DepartureTerminal = "--";
  2421. air.LandingTerminal = "--";
  2422. airs.Add(air);
  2423. }
  2424. int row = 13;
  2425. for (int i = 0; i < airs.Count; i++)
  2426. {
  2427. if (airs.Count > 2)
  2428. {
  2429. for (int j = 0; j < airs.Count - 2; j++)
  2430. {
  2431. var CopyRow = table.Rows[12].Clone(true);
  2432. table.Rows.Add(CopyRow);
  2433. }
  2434. }
  2435. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2436. int index = 0;
  2437. foreach (PropertyInfo property in properties)
  2438. {
  2439. string value = property.GetValue(airs[i]).ToString();
  2440. Cell ishcel0 = table.Rows[row].Cells[index];
  2441. Paragraph p = new Paragraph(doc);
  2442. string s = value;
  2443. p.AppendChild(new Run(doc, s));
  2444. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2445. ishcel0.AppendChild(p);
  2446. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2447. //ishcel0.CellFormat.VerticalAlignment=
  2448. index++;
  2449. }
  2450. row++;
  2451. }
  2452. #endregion
  2453. Paragraph lastParagraph = new Paragraph(doc);
  2454. //第一个表格末尾加段落
  2455. table.ParentNode.InsertAfter(lastParagraph, table);
  2456. //复制第一个表格
  2457. Table cloneTable = (Table)table.Clone(true);
  2458. //在文档末尾段落后面加入复制的表格
  2459. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2460. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2461. {
  2462. int rownewsIndex = 13;
  2463. for (int i = 0; i < 2; i++)
  2464. {
  2465. var CopyRow = table.Rows[12].Clone(true);
  2466. table.Rows.RemoveAt(13);
  2467. table.Rows.Add(CopyRow);
  2468. rownewsIndex++;
  2469. }
  2470. }
  2471. else
  2472. {
  2473. table.Rows.RemoveAt(12);
  2474. }
  2475. cloneTable.Rows.RemoveAt(12);
  2476. }
  2477. if (_AirTicketReservations.Count != 0)
  2478. {
  2479. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2480. if (FlightsCode.Length != 0)
  2481. {
  2482. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2483. if (_AirCompany != null)
  2484. {
  2485. string str = "--";
  2486. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2487. if (!string.IsNullOrEmpty(translateResult))
  2488. {
  2489. str = translateResult;
  2490. str = _airTicketResRep.Processing(str);
  2491. }
  2492. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2493. }
  2494. else
  2495. {
  2496. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2497. }
  2498. }
  2499. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2500. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2501. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2502. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2503. string names = "";
  2504. foreach (string clientName in nameArray)
  2505. {
  2506. names += clientName + ",";
  2507. }
  2508. if (!string.IsNullOrWhiteSpace(names))
  2509. {
  2510. string str = "--";
  2511. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2512. if (!string.IsNullOrEmpty(translateResult))
  2513. {
  2514. str = translateResult;
  2515. str = _airTicketResRep.Processing(str);
  2516. }
  2517. table.Range.Bookmarks["ClientName"].Text = str;
  2518. }
  2519. else
  2520. {
  2521. table.Range.Bookmarks["ClientName"].Text = "--";
  2522. }
  2523. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2524. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2525. table.Range.Bookmarks["JointTicket"].Text = "--";
  2526. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2527. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2528. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2529. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2530. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2531. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2532. }
  2533. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2534. //保存合并后的文档
  2535. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2536. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2537. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2538. return Ok(JsonView(true, "成功!", rst));
  2539. }
  2540. }
  2541. }
  2542. catch (Exception ex)
  2543. {
  2544. return Ok(JsonView(false, "程序错误!"));
  2545. throw;
  2546. }
  2547. }
  2548. #endregion
  2549. #region 团组增减款项 --> 其他款项
  2550. /// <summary>
  2551. /// 团组增减款项下拉框绑定
  2552. /// </summary>
  2553. /// <param name="dto"></param>
  2554. /// <returns></returns>
  2555. [HttpPost]
  2556. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2557. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2558. {
  2559. #region 参数验证
  2560. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2561. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2562. #endregion
  2563. var res = await _decreasePaymentsRep.DecreasePaymentsSelect(dto);
  2564. if (res.Code != 0)
  2565. {
  2566. return Ok(JsonView(false, res.Msg));
  2567. }
  2568. return Ok(JsonView(true, "操作成功!", res.Data));
  2569. }
  2570. /// <summary>
  2571. /// 根据团组Id查询团组增减款项
  2572. /// </summary>
  2573. /// <param name="dto"></param>
  2574. /// <returns></returns>
  2575. [HttpPost]
  2576. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2577. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2578. {
  2579. try
  2580. {
  2581. #region 参数验证
  2582. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2583. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2584. #endregion
  2585. Result groupData = await _decreasePaymentsRep.DecreasePaymentsList(dto);
  2586. if (groupData.Code != 0)
  2587. {
  2588. return Ok(JsonView(false, groupData.Msg));
  2589. }
  2590. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2591. }
  2592. catch (Exception ex)
  2593. {
  2594. return Ok(JsonView(false, "程序错误!"));
  2595. }
  2596. }
  2597. /// <summary>
  2598. /// 团组增减款项操作(Status:1.新增,2.修改)
  2599. /// </summary>
  2600. /// <param name="dto"></param>
  2601. /// <returns></returns>
  2602. [HttpPost]
  2603. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2604. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2605. {
  2606. try
  2607. {
  2608. Result groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2609. if (groupData.Code != 0)
  2610. {
  2611. return Ok(JsonView(false, groupData.Msg));
  2612. }
  2613. #region 应用推送
  2614. try
  2615. {
  2616. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2617. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2618. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2619. }
  2620. catch (Exception ex)
  2621. {
  2622. }
  2623. #endregion
  2624. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2625. }
  2626. catch (Exception ex)
  2627. {
  2628. return Ok(JsonView(false, "程序错误!"));
  2629. throw;
  2630. }
  2631. }
  2632. /// <summary>
  2633. /// 团组增减款项操作 删除
  2634. /// </summary>
  2635. /// <param name="dto"></param>
  2636. /// <returns></returns>
  2637. [HttpPost]
  2638. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2639. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2640. {
  2641. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2642. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2643. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2644. if (res.Code == 0)
  2645. {
  2646. return Ok(JsonView(true, "删除成功!"));
  2647. }
  2648. return Ok(JsonView(false, "删除失败!"));
  2649. }
  2650. /// <summary>
  2651. /// 根据团组增减款项Id查询
  2652. /// </summary>
  2653. /// <param name="dto"></param>
  2654. /// <returns></returns>
  2655. [HttpPost]
  2656. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2657. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2658. {
  2659. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2660. Result groupData = await _decreasePaymentsRep.QueryDecreasePaymentsById(dto);
  2661. if (groupData.Code != 0)
  2662. {
  2663. return Ok(JsonView(false, groupData.Msg));
  2664. }
  2665. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2666. }
  2667. #endregion
  2668. #region 文件上传、删除
  2669. /// <summary>
  2670. /// region 文件上传 可以带参数
  2671. /// </summary>
  2672. /// <param name="file"></param>
  2673. /// <returns></returns>
  2674. [HttpPost]
  2675. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2676. public async Task<IActionResult> UploadProject(IFormFile file)
  2677. {
  2678. try
  2679. {
  2680. var TypeName = Request.Headers["TypeName"].ToString();
  2681. if (file != null)
  2682. {
  2683. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2684. //文件名称
  2685. string projectFileName = file.FileName;
  2686. //上传的文件的路径
  2687. string filePath = "";
  2688. if (TypeName == "A")//A代表团组增减款项
  2689. {
  2690. if (!Directory.Exists(fileDir))
  2691. {
  2692. Directory.CreateDirectory(fileDir);
  2693. }
  2694. //上传的文件的路径
  2695. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2696. }
  2697. else if (TypeName == "B")//B代表商邀相关文件
  2698. {
  2699. if (!Directory.Exists(fileDir))
  2700. {
  2701. Directory.CreateDirectory(fileDir);
  2702. }
  2703. //上传的文件的路径
  2704. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2705. }
  2706. using (FileStream fs = System.IO.File.Create(filePath))
  2707. {
  2708. file.CopyTo(fs);
  2709. fs.Flush();
  2710. }
  2711. return Ok(JsonView(true, "上传成功!", projectFileName));
  2712. }
  2713. else
  2714. {
  2715. return Ok(JsonView(false, "上传失败!"));
  2716. }
  2717. }
  2718. catch (Exception ex)
  2719. {
  2720. return Ok(JsonView(false, "程序错误!"));
  2721. throw;
  2722. }
  2723. }
  2724. /// <summary>
  2725. /// 删除指定文件
  2726. /// </summary>
  2727. /// <param name="dto"></param>
  2728. /// <returns></returns>
  2729. [HttpPost]
  2730. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2731. public async Task<IActionResult> DelFile(DelFileDto dto)
  2732. {
  2733. try
  2734. {
  2735. var TypeName = Request.Headers["TypeName"].ToString();
  2736. string filePath = "";
  2737. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2738. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2739. int id = 0;
  2740. if (TypeName == "A")
  2741. {
  2742. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2743. // 删除该文件
  2744. System.IO.File.Delete(filePath);
  2745. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2746. }
  2747. else if (TypeName == "B")
  2748. {
  2749. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2750. // 删除该文件
  2751. System.IO.File.Delete(filePath);
  2752. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2753. }
  2754. if (id != 0)
  2755. {
  2756. return Ok(JsonView(true, "成功!"));
  2757. }
  2758. else
  2759. {
  2760. return Ok(JsonView(false, "失败!"));
  2761. }
  2762. }
  2763. catch (Exception ex)
  2764. {
  2765. return Ok(JsonView(false, "程序错误!"));
  2766. throw;
  2767. }
  2768. }
  2769. #endregion
  2770. #region 商邀费用录入
  2771. /// <summary>
  2772. /// 根据团组Id查询商邀费用列表
  2773. /// </summary>
  2774. /// <param name="dto"></param>
  2775. /// <returns></returns>
  2776. [HttpPost]
  2777. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2778. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2779. {
  2780. try
  2781. {
  2782. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  2783. if (groupData.Code != 0)
  2784. {
  2785. return Ok(JsonView(false, groupData.Msg));
  2786. }
  2787. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2788. }
  2789. catch (Exception ex)
  2790. {
  2791. return Ok(JsonView(false, "程序错误!"));
  2792. throw;
  2793. }
  2794. }
  2795. //
  2796. /// <summary>
  2797. /// 商邀费用 Info Page 基础数据源
  2798. /// </summary>
  2799. /// <param name="dto"></param>
  2800. /// <returns></returns>
  2801. [HttpPost]
  2802. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2803. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  2804. {
  2805. try
  2806. {
  2807. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  2808. if (groupData.Code != 0)
  2809. {
  2810. return Ok(JsonView(false, groupData.Msg));
  2811. }
  2812. return Ok(JsonView(true, "操作成功", groupData.Data));
  2813. }
  2814. catch (Exception ex)
  2815. {
  2816. return Ok(JsonView(false, ex.Message));
  2817. throw;
  2818. }
  2819. }
  2820. /// <summary>
  2821. /// 根据商邀费用ID查询C表和商邀费用数据
  2822. /// </summary>
  2823. /// <param name="dto"></param>
  2824. /// <returns></returns>
  2825. [HttpPost]
  2826. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2827. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  2828. {
  2829. try
  2830. {
  2831. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  2832. if (groupData.Code != 0)
  2833. {
  2834. return Ok(JsonView(false, groupData.Msg));
  2835. }
  2836. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2837. }
  2838. catch (Exception ex)
  2839. {
  2840. return Ok(JsonView(false, ex.Message));
  2841. throw;
  2842. }
  2843. }
  2844. /// <summary>
  2845. /// 商邀费用录入操作(Status:1.新增,2.修改)
  2846. /// </summary>
  2847. /// <param name="dto"></param>
  2848. /// <returns></returns>
  2849. [HttpPost]
  2850. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2851. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  2852. {
  2853. try
  2854. {
  2855. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  2856. if (groupData.Code != 0)
  2857. {
  2858. return Ok(JsonView(false, groupData.Msg));
  2859. }
  2860. #region 应用推送
  2861. try
  2862. {
  2863. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2864. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2865. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2866. }
  2867. catch (Exception ex)
  2868. {
  2869. }
  2870. #endregion
  2871. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2872. }
  2873. catch (Exception ex)
  2874. {
  2875. return Ok(JsonView(false, "程序错误!"));
  2876. throw;
  2877. }
  2878. }
  2879. /// <summary>
  2880. /// 商邀删除
  2881. /// </summary>
  2882. /// <param name="dto"></param>
  2883. /// <returns></returns>
  2884. [HttpPost]
  2885. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2886. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  2887. {
  2888. try
  2889. {
  2890. _sqlSugar.BeginTran();
  2891. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  2892. .SetColumns(it => new Grp_InvitationOfficialActivities()
  2893. {
  2894. IsDel = 1,
  2895. DeleteUserId = dto.DeleteUserId,
  2896. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2897. })
  2898. .Where(it => it.Id == dto.Id)
  2899. .ExecuteCommand();
  2900. if (res1 > 0)
  2901. {
  2902. int _diId = 0;
  2903. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  2904. if (_ioaInfo != null)
  2905. {
  2906. _diId = _ioaInfo.DiId;
  2907. }
  2908. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  2909. .SetColumns(a => new Grp_CreditCardPayment()
  2910. {
  2911. IsDel = 1,
  2912. DeleteUserId = dto.DeleteUserId,
  2913. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2914. })
  2915. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  2916. .ExecuteCommand();
  2917. if (res2 > 0)
  2918. {
  2919. _sqlSugar.CommitTran();
  2920. return Ok(JsonView(true, "删除成功!"));
  2921. }
  2922. }
  2923. _sqlSugar.RollbackTran();
  2924. return Ok(JsonView(false, "删除失败"));
  2925. }
  2926. catch (Exception ex)
  2927. {
  2928. _sqlSugar.RollbackTran();
  2929. return Ok(JsonView(false, ex.Message));
  2930. }
  2931. }
  2932. #endregion
  2933. #region 团组英文资料
  2934. /// <summary>
  2935. /// 查询团组英文所有资料
  2936. /// </summary>
  2937. /// <param name="dto"></param>
  2938. /// <returns></returns>
  2939. [HttpPost]
  2940. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2941. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  2942. {
  2943. try
  2944. {
  2945. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  2946. if (groupData.Code != 0)
  2947. {
  2948. return Ok(JsonView(false, groupData.Msg));
  2949. }
  2950. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2951. }
  2952. catch (Exception ex)
  2953. {
  2954. return Ok(JsonView(false, "程序错误!"));
  2955. throw;
  2956. }
  2957. }
  2958. /// <summary>
  2959. /// 团组英文资料操作(Status:1.新增,2.修改)
  2960. /// </summary>
  2961. /// <param name="dto"></param>
  2962. /// <returns></returns>
  2963. [HttpPost]
  2964. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2965. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  2966. {
  2967. try
  2968. {
  2969. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  2970. if (groupData.Code != 0)
  2971. {
  2972. return Ok(JsonView(false, groupData.Msg));
  2973. }
  2974. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2975. }
  2976. catch (Exception ex)
  2977. {
  2978. return Ok(JsonView(false, "程序错误!"));
  2979. throw;
  2980. }
  2981. }
  2982. /// <summary>
  2983. /// 团组英文资料Id查询数据
  2984. /// </summary>
  2985. /// <param name="dto"></param>
  2986. /// <returns></returns>
  2987. [HttpPost]
  2988. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2989. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  2990. {
  2991. try
  2992. {
  2993. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  2994. if (_DelegationEnData != null)
  2995. {
  2996. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  2997. }
  2998. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  2999. }
  3000. catch (Exception ex)
  3001. {
  3002. return Ok(JsonView(false, "程序错误!"));
  3003. throw;
  3004. }
  3005. }
  3006. /// <summary>
  3007. /// 团组英文资料删除
  3008. /// </summary>
  3009. /// <param name="dto"></param>
  3010. /// <returns></returns>
  3011. [HttpPost]
  3012. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3013. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3014. {
  3015. try
  3016. {
  3017. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3018. if (!res)
  3019. {
  3020. return Ok(JsonView(false, "删除失败"));
  3021. }
  3022. return Ok(JsonView(true, "删除成功!"));
  3023. }
  3024. catch (Exception ex)
  3025. {
  3026. return Ok(JsonView(false, "程序错误!"));
  3027. throw;
  3028. }
  3029. }
  3030. #endregion
  3031. #region 导出邀请函
  3032. /// <summary>
  3033. /// 导出邀请函页面初始化
  3034. /// </summary>
  3035. /// <param name="dto"></param>
  3036. /// <returns></returns>
  3037. [HttpPost]
  3038. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3039. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3040. {
  3041. try
  3042. {
  3043. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3044. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3045. if (dto.DiId == 0)
  3046. {
  3047. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3048. }
  3049. else
  3050. {
  3051. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3052. }
  3053. return Ok(JsonView(true, "查询成功!", new
  3054. {
  3055. deleClient = crm_Deles,
  3056. delegations = grp_Delegations
  3057. }));
  3058. }
  3059. catch (Exception ex)
  3060. {
  3061. return Ok(JsonView(false, "程序错误!"));
  3062. throw;
  3063. }
  3064. }
  3065. /// <summary>
  3066. /// 导出邀请函
  3067. /// </summary>
  3068. /// <param name="dto"></param>
  3069. /// <returns></returns>
  3070. [HttpPost]
  3071. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3072. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3073. {
  3074. #region 参数验证
  3075. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3076. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3077. #endregion
  3078. try
  3079. {
  3080. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3081. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3082. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3083. From Grp_TourClientList tcl
  3084. Left Join
  3085. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3086. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3087. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3088. From Crm_DeleClient dc
  3089. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3090. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3091. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3092. Where dc.IsDel = 0) temp
  3093. On temp.DcId =tcl.ClientId
  3094. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3095. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3096. List<string> texts = new List<string>();
  3097. if (datas.Count != 0)
  3098. {
  3099. foreach (TourClientListDetailsView item in datas)
  3100. {
  3101. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3102. {
  3103. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3104. }
  3105. else
  3106. {
  3107. string name = item.LastName + item.FirstName;
  3108. texts.Add(name);
  3109. }
  3110. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3111. {
  3112. if (!transDic.ContainsKey(item.Job))
  3113. {
  3114. texts.Add(item.Job);
  3115. }
  3116. }
  3117. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3118. {
  3119. texts.Add(item.CompanyFullName);
  3120. }
  3121. }
  3122. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3123. if (transData.Count > 0)
  3124. {
  3125. foreach (TranslateResult item in transData)
  3126. {
  3127. if (!transDic.ContainsKey(item.Query))
  3128. {
  3129. transDic.Add(item.Query, item.Translation);
  3130. }
  3131. }
  3132. }
  3133. List<GuestList> list = new List<GuestList>();
  3134. foreach (TourClientListDetailsView dele in datas)
  3135. {
  3136. GuestList guestList = new GuestList();
  3137. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3138. {
  3139. guestList.Name = dele.Pinyin;
  3140. }
  3141. else
  3142. {
  3143. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3144. guestList.Name = Name;
  3145. }
  3146. if (dele.Sex == 0)
  3147. {
  3148. guestList.Sex = "Male";
  3149. }
  3150. else if (dele.Sex == 1)
  3151. {
  3152. guestList.Sex = "Female";
  3153. }
  3154. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3155. if (!string.IsNullOrEmpty(dele.Job))
  3156. {
  3157. guestList.Job = dele.Job;
  3158. }
  3159. list.Add(guestList);
  3160. }
  3161. //载入模板
  3162. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3163. DocumentBuilder builder = new DocumentBuilder(doc);
  3164. //获取word里所有表格
  3165. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3166. //获取所填表格的序数
  3167. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3168. var rowStart = tableOne.Rows[0]; //获取第1行
  3169. //循环赋值
  3170. for (int i = 0; i < list.Count; i++)
  3171. {
  3172. builder.MoveToCell(0, i + 1, 0, 0);
  3173. builder.Write(list[i].Name.ToString());
  3174. builder.MoveToCell(0, i + 1, 1, 0);
  3175. builder.Write(list[i].Sex.ToString());
  3176. builder.MoveToCell(0, i + 1, 2, 0);
  3177. builder.Write(list[i].DOB.ToString());
  3178. builder.MoveToCell(0, i + 1, 3, 0);
  3179. builder.Write(list[i].Job.ToString());
  3180. }
  3181. //删除多余行
  3182. while (tableOne.Rows.Count > list.Count + 1)
  3183. {
  3184. tableOne.Rows.RemoveAt(list.Count + 1);
  3185. }
  3186. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3187. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3188. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3189. doc.Save(filePath);
  3190. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3191. return Ok(JsonView(true, "操作成功!", Url));
  3192. }
  3193. else
  3194. {
  3195. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3196. }
  3197. }
  3198. catch (Exception ex)
  3199. {
  3200. return Ok(JsonView(false, ex.Message));
  3201. throw;
  3202. }
  3203. }
  3204. #endregion
  3205. #region 团组经理模块 出入境费用
  3206. ///// <summary>
  3207. ///// 团组模块 - 出入境费用
  3208. ///// </summary>
  3209. ///// <returns></returns>
  3210. //[HttpPost]
  3211. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3212. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3213. //{
  3214. // try
  3215. // {
  3216. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3217. // if (data.Code != 0)
  3218. // {
  3219. // return Ok(JsonView(false, data.Msg));
  3220. // }
  3221. // return Ok(JsonView(true, "查询成功!"));
  3222. // }
  3223. // catch (Exception ex)
  3224. // {
  3225. // return Ok(JsonView(false, ex.Message));
  3226. // throw;
  3227. // }
  3228. //}
  3229. /// <summary>
  3230. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3231. /// </summary>
  3232. /// <returns></returns>
  3233. [HttpPost]
  3234. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3235. public async Task<IActionResult> SetDayAndCostAreaChange()
  3236. {
  3237. try
  3238. {
  3239. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3240. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3241. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3242. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3243. foreach (var item in unite) //处理交集数据
  3244. {
  3245. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3246. }
  3247. foreach (var item in merge) //处理差集数据
  3248. {
  3249. int nationalTravelFeeId = 0;
  3250. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3251. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3252. else
  3253. {
  3254. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3255. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3256. }
  3257. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3258. }
  3259. //只更新dayAndCost 的 nationalTravelFeeId;
  3260. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3261. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3262. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3263. }
  3264. catch (Exception ex)
  3265. {
  3266. return Ok(JsonView(false, ex.Message));
  3267. throw;
  3268. }
  3269. }
  3270. /// <summary>
  3271. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3272. /// </summary>
  3273. /// <returns></returns>
  3274. [HttpPost]
  3275. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3276. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3277. {
  3278. try
  3279. {
  3280. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3281. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3282. //SetDataInfoView
  3283. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3284. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3285. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3286. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3287. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3288. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3289. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3290. //默认币种显示
  3291. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3292. {
  3293. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 0.0000M },
  3294. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 0.0000M },
  3295. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 0.0000M },
  3296. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0000M },
  3297. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.0000M },
  3298. };
  3299. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3300. if (_currencyRate.Count > 0)
  3301. {
  3302. foreach (var item in _currencyInfos)
  3303. {
  3304. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3305. if (rateInfo != null)
  3306. {
  3307. item.Rate = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3308. }
  3309. }
  3310. }
  3311. return Ok(JsonView(true, "查询成功!", new
  3312. {
  3313. GroupNameData = groupNameData.Data,
  3314. CurrencyData = _CurrencyData,
  3315. WordTypeData = _WordTypeData,
  3316. ExcelTypeData = _ExcelTypeData,
  3317. CurrencyInit = _currencyInfos
  3318. }));
  3319. }
  3320. catch (Exception ex)
  3321. {
  3322. return Ok(JsonView(false, ex.Message));
  3323. throw;
  3324. }
  3325. }
  3326. /// <summary>
  3327. /// 团组模块 - 出入境费用
  3328. /// 实时汇率 tips
  3329. /// 签证费用 tips
  3330. /// </summary>
  3331. /// <returns></returns>
  3332. [HttpPost]
  3333. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3334. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3335. {
  3336. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3337. //默认币种显示
  3338. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3339. {
  3340. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 0.0000M },
  3341. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 0.0000M },
  3342. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 0.0000M },
  3343. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0000M },
  3344. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.0000M },
  3345. };
  3346. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3347. List<dynamic> reteInfos = new List<dynamic>();
  3348. if (_currencyRate.Count > 0)
  3349. {
  3350. foreach (var item in _currencyInfos)
  3351. {
  3352. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3353. if (rateInfo != null)
  3354. {
  3355. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3356. reteInfos.Add(new
  3357. {
  3358. currCode = item.CurrencyCode,
  3359. currName = item.CurrencyName,
  3360. rate = item.Rate,
  3361. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3362. });
  3363. }
  3364. }
  3365. }
  3366. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3367. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3368. return Ok(JsonView(true, "查询成功!", new
  3369. {
  3370. //GroupNameData = groupNameData.Data,
  3371. visaData = visaData.Data,
  3372. airData = airData.Data,
  3373. reteInfos = reteInfos
  3374. }));
  3375. }
  3376. /// <summary>
  3377. /// 团组模块 - 出入境费用 - Info
  3378. /// </summary>
  3379. /// <returns></returns>
  3380. [HttpPost]
  3381. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3382. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3383. {
  3384. try
  3385. {
  3386. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3387. if (data.Code != 0)
  3388. {
  3389. return Ok(JsonView(false, data.Msg));
  3390. }
  3391. return Ok(JsonView(true, "查询成功!", data.Data));
  3392. }
  3393. catch (Exception ex)
  3394. {
  3395. return Ok(JsonView(false, ex.Message));
  3396. }
  3397. }
  3398. /// <summary>
  3399. /// 团组模块 - 出入境费用 - Add And Update
  3400. /// </summary>
  3401. /// <returns></returns>
  3402. [HttpPost]
  3403. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3404. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3405. {
  3406. try
  3407. {
  3408. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3409. if (data.Code != 0)
  3410. {
  3411. return Ok(JsonView(false, data.Msg));
  3412. }
  3413. return Ok(JsonView(true, data.Msg, data.Data));
  3414. }
  3415. catch (Exception ex)
  3416. {
  3417. return Ok(JsonView(false, ex.Message));
  3418. }
  3419. }
  3420. /// <summary>
  3421. /// 团组模块 - 出入境费用 - File downlaod
  3422. /// </summary>
  3423. /// <param name="dto"></param>
  3424. /// <returns></returns>
  3425. [HttpPost]
  3426. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3427. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3428. {
  3429. try
  3430. {
  3431. if (dto.DiId < 1)
  3432. {
  3433. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3434. }
  3435. if (dto.ExportType < 1)
  3436. {
  3437. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3438. }
  3439. if (dto.SubTypeId < 1)
  3440. {
  3441. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3442. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3443. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3444. 3 团组成员名单 1 团组成员名单"));
  3445. }
  3446. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3447. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3448. if (_EnterExitCosts == null)
  3449. {
  3450. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3451. }
  3452. //数据源
  3453. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3454. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3455. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3456. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3457. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3458. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3459. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3460. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3461. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3462. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3463. .Select((tcl, dc, cc) => new
  3464. {
  3465. Name = dc.LastName + dc.FirstName,
  3466. Sex = dc.Sex,
  3467. Birthday = dc.BirthDay,
  3468. Company = cc.CompanyFullName,
  3469. Job = dc.Job
  3470. })
  3471. .ToList();
  3472. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3473. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3474. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3475. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3476. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3477. if (dto.ExportType == 1) //明细表
  3478. {
  3479. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3480. {
  3481. //获取模板
  3482. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3483. //载入模板
  3484. Document doc = new Document(tempPath);
  3485. DocumentBuilder builder = new DocumentBuilder(doc);
  3486. //利用键值对存放数据
  3487. Dictionary<string, string> dic = new Dictionary<string, string>();
  3488. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3489. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3490. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3491. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3492. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3493. string row1_1 = "";
  3494. if (_EnterExitCosts.Visa > 0)
  3495. {
  3496. //insidePayTotal += _EnterExitCosts.Visa;
  3497. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3498. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3499. {
  3500. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3501. }
  3502. }
  3503. string row1_2 = "";
  3504. if (_EnterExitCosts.YiMiao > 0)
  3505. {
  3506. //insidePayTotal += _EnterExitCosts.YiMiao;
  3507. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3508. }
  3509. if (_EnterExitCosts.HeSuan > 0)
  3510. {
  3511. //insidePayTotal += _EnterExitCosts.HeSuan;
  3512. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  3513. }
  3514. if (_EnterExitCosts.Service > 0)
  3515. {
  3516. //insidePayTotal += _EnterExitCosts.Service;
  3517. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  3518. }
  3519. string row1_3 = "";
  3520. if (_EnterExitCosts.Safe > 0)
  3521. {
  3522. //insidePayTotal += _EnterExitCosts.Safe;
  3523. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  3524. }
  3525. if (_EnterExitCosts.Ticket > 0)
  3526. {
  3527. //insidePayTotal += _EnterExitCosts.Ticket;
  3528. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  3529. }
  3530. string row1 = "";
  3531. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  3532. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  3533. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  3534. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  3535. dic.Add("Row1Str", row1);
  3536. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  3537. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  3538. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3539. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  3540. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3541. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  3542. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  3543. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  3544. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  3545. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  3546. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  3547. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  3548. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  3549. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  3550. #region 填充word模板书签内容
  3551. foreach (var key in dic.Keys)
  3552. {
  3553. builder.MoveToBookmark(key);
  3554. builder.Write(dic[key]);
  3555. }
  3556. #endregion
  3557. #region 填充word表格内容
  3558. ////获读取指定表格方法二
  3559. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3560. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3561. for (int i = 0; i < dac1.Count; i++)
  3562. {
  3563. Grp_DayAndCost dac = dac1[i];
  3564. if (dac == null) continue;
  3565. builder.MoveToCell(0, i, 0, 0);
  3566. builder.Write("第" + dac.Days.ToString() + "晚:");
  3567. builder.MoveToCell(0, i, 1, 0);
  3568. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  3569. //builder.Write(dac.Place == null ? "" : dac.Place);
  3570. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3571. builder.MoveToCell(0, i, 2, 0);
  3572. builder.Write("费用标准:");
  3573. string curr = "";
  3574. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3575. if (currData != null)
  3576. {
  3577. curr = currData.Name;
  3578. }
  3579. builder.MoveToCell(0, i, 3, 0);
  3580. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3581. builder.MoveToCell(0, i, 4, 0);
  3582. builder.Write("费用小计:");
  3583. builder.MoveToCell(0, i, 5, 0);
  3584. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3585. }
  3586. //删除多余行
  3587. while (table1.Rows.Count > dac1.Count)
  3588. {
  3589. table1.Rows.RemoveAt(dac1.Count);
  3590. }
  3591. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  3592. for (int i = 0; i < dac2.Count; i++)
  3593. {
  3594. Grp_DayAndCost dac = dac2[i];
  3595. if (dac == null) continue;
  3596. builder.MoveToCell(1, i, 0, 0);
  3597. builder.Write("第" + dac.Days.ToString() + "天:");
  3598. builder.MoveToCell(1, i, 1, 0);
  3599. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3600. builder.MoveToCell(1, i, 2, 0);
  3601. builder.Write("费用标准:");
  3602. string curr = "";
  3603. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3604. if (currData != null)
  3605. {
  3606. curr = currData.Name;
  3607. }
  3608. builder.MoveToCell(1, i, 3, 0);
  3609. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3610. builder.MoveToCell(1, i, 4, 0);
  3611. builder.Write("费用小计:");
  3612. builder.MoveToCell(1, i, 5, 0);
  3613. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3614. }
  3615. //删除多余行
  3616. while (table2.Rows.Count > dac2.Count)
  3617. {
  3618. table2.Rows.RemoveAt(dac2.Count);
  3619. }
  3620. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  3621. for (int i = 0; i < dac3.Count; i++)
  3622. {
  3623. Grp_DayAndCost dac = dac3[i];
  3624. if (dac == null) continue;
  3625. builder.MoveToCell(2, i, 0, 0);
  3626. builder.Write("第" + dac.Days.ToString() + "天:");
  3627. builder.MoveToCell(2, i, 1, 0);
  3628. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3629. builder.MoveToCell(2, i, 2, 0);
  3630. builder.Write("费用标准:");
  3631. string curr = "";
  3632. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3633. if (currData != null)
  3634. {
  3635. curr = currData.Name;
  3636. }
  3637. builder.MoveToCell(2, i, 3, 0);
  3638. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3639. builder.MoveToCell(2, i, 4, 0);
  3640. builder.Write("费用小计:");
  3641. builder.MoveToCell(2, i, 5, 0);
  3642. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3643. }
  3644. //删除多余行
  3645. while (table3.Rows.Count > dac3.Count)
  3646. {
  3647. table3.Rows.RemoveAt(dac3.Count);
  3648. }
  3649. #endregion
  3650. //文件名
  3651. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  3652. AsposeHelper.removewatermark_v2180();
  3653. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3654. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3655. return Ok(JsonView(true, "成功", new { Url = url }));
  3656. }
  3657. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  3658. {
  3659. //获取模板
  3660. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  3661. //载入模板
  3662. Document doc = new Document(tempPath);
  3663. DocumentBuilder builder = new DocumentBuilder(doc);
  3664. Dictionary<string, string> dic = new Dictionary<string, string>();
  3665. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3666. {
  3667. List<string> list = new List<string>();
  3668. try
  3669. {
  3670. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3671. foreach (var item in spilitArr)
  3672. {
  3673. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3674. var depCode = spDotandEmpty[2].Substring(0, 3);
  3675. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3676. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  3677. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  3678. list.Add(depName);
  3679. list.Add(arrName);
  3680. }
  3681. list = list.Distinct().ToList();
  3682. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3683. }
  3684. catch (Exception)
  3685. {
  3686. dic.Add("ReturnCode", "行程录入不正确!");
  3687. }
  3688. }
  3689. else
  3690. {
  3691. dic.Add("ReturnCode", "未录入行程!");
  3692. }
  3693. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3694. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3695. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3696. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3697. {
  3698. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3699. dic.Add("Day", sp.Days.ToString());
  3700. }
  3701. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3702. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3703. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3704. //dic.Add("Names", Names);
  3705. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3706. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3707. decimal dac1totalPrice = 0.00M;
  3708. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  3709. foreach (var dac in dac1)
  3710. {
  3711. if (dac.SubTotal == 0.00M)
  3712. {
  3713. continue;
  3714. }
  3715. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  3716. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  3717. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  3718. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3719. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  3720. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3721. builder.Write(currency);//币种
  3722. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  3723. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3724. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  3725. builder.Write("");//人数
  3726. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  3727. builder.Write("");//天数
  3728. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  3729. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3730. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  3731. decimal rate = 0.00M;
  3732. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3733. builder.Write(rate.ToString("#0.0000"));//汇率
  3734. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  3735. decimal rbmPrice = dac.SubTotal;
  3736. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3737. accommodationStartIndex++;
  3738. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3739. }
  3740. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  3741. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  3742. {
  3743. table1.Rows.RemoveAt(i - 1);
  3744. foodandotherStartIndex--;
  3745. }
  3746. if (dac2.Count == dac3.Count)//国家 币种 金额
  3747. {
  3748. for (int i = 0; i < dac2.Count; i++)
  3749. {
  3750. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  3751. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  3752. }
  3753. }
  3754. decimal dac2totalPrice = 0.00M;
  3755. foreach (var dac in dac2)
  3756. {
  3757. if (dac.SubTotal == 0)
  3758. {
  3759. continue;
  3760. }
  3761. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  3762. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3763. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  3764. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3765. builder.Write(currency);//币种
  3766. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  3767. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3768. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  3769. builder.Write("");//人数
  3770. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  3771. builder.Write("");//天数
  3772. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  3773. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3774. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  3775. decimal rate = 0.00M;
  3776. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3777. builder.Write(rate.ToString("#0.0000"));//汇率
  3778. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  3779. decimal rbmPrice = dac.SubTotal;
  3780. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3781. foodandotherStartIndex++;
  3782. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3783. }
  3784. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  3785. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  3786. {
  3787. table1.Rows.RemoveAt(i - 1);
  3788. }
  3789. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3790. string otherFeeStr = "";
  3791. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  3792. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  3793. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  3794. if (otherFeeStr.Length > 0)
  3795. {
  3796. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  3797. otherFeeStr = $"({otherFeeStr})";
  3798. dic.Add("OtherFeeStr", otherFeeStr);
  3799. }
  3800. //总计
  3801. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  3802. //国际旅费
  3803. string outsideJJ = "";
  3804. string allPriceJJ = "";
  3805. if (_EnterExitCosts.SumJJC == 1)
  3806. {
  3807. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3808. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  3809. }
  3810. string outsideGW = "";
  3811. string allPriceGW = "";
  3812. if (_EnterExitCosts.SumGWC == 1)
  3813. {
  3814. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  3815. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  3816. }
  3817. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  3818. {
  3819. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  3820. dic.Add("InTravelPrice", InTravelPriceStr);
  3821. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  3822. dic.Add("FinalSumPrice", FinalSumPriceStr);
  3823. }
  3824. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  3825. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  3826. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  3827. foreach (var key in dic.Keys)
  3828. {
  3829. builder.MoveToBookmark(key);
  3830. builder.Write(dic[key]);
  3831. }
  3832. //模板文件名
  3833. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  3834. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3835. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3836. return Ok(JsonView(true, "成功", new { Url = url }));
  3837. }
  3838. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  3839. {
  3840. //获取模板
  3841. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  3842. //载入模板
  3843. WorkbookDesigner designer = new WorkbookDesigner();
  3844. designer.Workbook = new Workbook(tempPath);
  3845. Dictionary<string, string> dic = new Dictionary<string, string>();
  3846. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3847. {
  3848. List<string> list = new List<string>();
  3849. try
  3850. {
  3851. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3852. foreach (var item in spilitArr)
  3853. {
  3854. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3855. var depCode = spDotandEmpty[2].Substring(0, 3);
  3856. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3857. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  3858. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  3859. list.Add(depName);
  3860. list.Add(arrName);
  3861. }
  3862. list = list.Distinct().ToList();
  3863. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3864. }
  3865. catch (Exception)
  3866. {
  3867. dic.Add("ReturnCode", "行程录入不正确!");
  3868. }
  3869. }
  3870. else
  3871. {
  3872. dic.Add("ReturnCode", "未录入行程!");
  3873. }
  3874. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3875. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3876. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3877. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3878. {
  3879. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3880. dic.Add("Day", sp.Days.ToString());
  3881. }
  3882. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3883. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3884. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3885. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  3886. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  3887. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  3888. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  3889. designer.SetDataSource("Name", Names);
  3890. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  3891. designer.SetDataSource("Day", dic["Day"] + "天");
  3892. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  3893. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  3894. int startIndex = 10;
  3895. const int startIndexcopy = 10;
  3896. if (dac2.Count == dac3.Count)//国家 币种 金额
  3897. {
  3898. for (int i = 0; i < dac2.Count; i++)
  3899. {
  3900. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  3901. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  3902. }
  3903. }
  3904. DataTable dtdac1 = new DataTable();
  3905. List<string> place = new List<string>();
  3906. dtdac1.Columns.AddRange(new DataColumn[] {
  3907. new DataColumn(){ ColumnName = "city"},
  3908. new DataColumn(){ ColumnName = "curr"},
  3909. new DataColumn(){ ColumnName = "criterion"},
  3910. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  3911. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  3912. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  3913. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  3914. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  3915. });
  3916. DataTable dtdac2 = new DataTable();
  3917. dtdac2.Columns.AddRange(new DataColumn[] {
  3918. new DataColumn(){ ColumnName = "city"},
  3919. new DataColumn(){ ColumnName = "curr"},
  3920. new DataColumn(){ ColumnName = "criterion"},
  3921. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  3922. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  3923. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  3924. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  3925. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  3926. });
  3927. dtdac1.TableName = "tb1";
  3928. dtdac2.TableName = "tb2";
  3929. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  3930. foreach (var item in dac1)
  3931. {
  3932. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  3933. if (place.Contains(item.Place))
  3934. {
  3935. continue;
  3936. }
  3937. DataRow row = dtdac1.NewRow();
  3938. row["city"] = item.Place;
  3939. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  3940. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  3941. row["curr"] = currency;
  3942. row["rate"] = rate.ToString("#0.0000");
  3943. row["criterion"] = item.Cost.ToString("#0.00");
  3944. row["number"] = 1;
  3945. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  3946. //row["costRMB"] = rbmPrice;
  3947. dtdac1.Rows.Add(row);
  3948. place.Add(item.Place);
  3949. }
  3950. place = new List<string>();
  3951. foreach (var item in dac2)
  3952. {
  3953. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  3954. if (place.Contains(item.Place))
  3955. {
  3956. continue;
  3957. }
  3958. DataRow row = dtdac2.NewRow();
  3959. row["city"] = item.Place;
  3960. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  3961. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  3962. row["curr"] = currency;
  3963. row["rate"] = rate.ToString("#0.0000");
  3964. row["criterion"] = item.Cost.ToString("#0.00");
  3965. row["number"] = 1;
  3966. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  3967. //row["cost"] = item.SubTotal;
  3968. //row["costRMB"] = rbmPrice;
  3969. dtdac2.Rows.Add(row);
  3970. place.Add(item.Place);
  3971. //dac2totalPrice += rbmPrice;
  3972. }
  3973. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  3974. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  3975. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  3976. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  3977. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  3978. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  3979. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  3980. string cellStr = $" 5.其他费用(";
  3981. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  3982. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  3983. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  3984. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  3985. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  3986. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  3987. if (cellStr.Length > 8)
  3988. {
  3989. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  3990. }
  3991. cellStr += ")";
  3992. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  3993. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  3994. decimal pxFee = dac4.Sum(it => it.Cost);
  3995. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  3996. string celllastStr1 = "";
  3997. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  3998. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  3999. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4000. celllastStr1 += $",国际旅费 元";
  4001. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4002. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4003. designer.SetDataSource("cell4Str", cell4Str);
  4004. designer.SetDataSource("cellStr", cellStr);
  4005. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4006. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4007. designer.SetDataSource("celllastStr", celllastStr);
  4008. Workbook wb = designer.Workbook;
  4009. var sheet = wb.Worksheets[0];
  4010. //绑定datatable数据集
  4011. designer.SetDataSource(dtdac1);
  4012. designer.SetDataSource(dtdac2);
  4013. designer.Process();
  4014. var rowStart = dtdac1.Rows.Count;
  4015. while (rowStart > 0)
  4016. {
  4017. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4018. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4019. startIndex++;
  4020. rowStart--;
  4021. }
  4022. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4023. startIndex += 1; //总计行
  4024. rowStart = dtdac2.Rows.Count;
  4025. while (rowStart > 0)
  4026. {
  4027. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4028. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4029. startIndex++;
  4030. rowStart--;
  4031. }
  4032. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4033. wb.CalculateFormula(true);
  4034. //模板文件名
  4035. string strFileName = $"四川省商务厅出国经费财政先行审核表.xls";
  4036. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4037. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4038. return Ok(JsonView(true, "成功", new { Url = url }));
  4039. }
  4040. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4041. {
  4042. //获取模板
  4043. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4044. //载入模板
  4045. Document doc = new Document(tempPath);
  4046. DocumentBuilder builder = new DocumentBuilder(doc);
  4047. Dictionary<string, string> dic = new Dictionary<string, string>();
  4048. dic.Add("GroupName", _DelegationInfo.TeamName);
  4049. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4050. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4051. string missionLeaderJob = "";//负责人job
  4052. int groupNumber = 0; //团人数
  4053. if (DeleClientList.Count > 0)
  4054. {
  4055. missionLeader = DeleClientList[0]?.Name ?? "";
  4056. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4057. }
  4058. dic.Add("MissionLeader", missionLeader); //团负责人
  4059. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4060. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4061. #region MyRegion
  4062. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4063. //{
  4064. // List<string> list = new List<string>();
  4065. // try
  4066. // {
  4067. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4068. // foreach (var item in spilitArr)
  4069. // {
  4070. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4071. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4072. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4073. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4074. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4075. // list.Add(depName);
  4076. // list.Add(arrName);
  4077. // }
  4078. // list = list.Distinct().ToList();
  4079. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4080. // }
  4081. // catch (Exception)
  4082. // {
  4083. // dic.Add("ReturnCode", "行程录入不正确!");
  4084. // }
  4085. //}
  4086. //else
  4087. //{
  4088. // dic.Add("ReturnCode", "未录入行程!");
  4089. //}
  4090. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4091. dic.Add("ReturnCode", string.Join("、", countrys));
  4092. #endregion
  4093. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4094. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4095. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4096. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4097. //{
  4098. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4099. // dic.Add("Day", sp.Days.ToString());
  4100. //}
  4101. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4102. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4103. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4104. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4105. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4106. //培训人员名单
  4107. int cultivateRowIndex = 7;
  4108. foreach (var item in DeleClientList)
  4109. {
  4110. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4111. builder.Write(item.Name);
  4112. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4113. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4114. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4115. string birthDay = "";
  4116. if (item.Birthday != null)
  4117. {
  4118. DateTime dt = Convert.ToDateTime(item.Birthday);
  4119. birthDay = $"{dt.Year}.{dt.Month}";
  4120. }
  4121. builder.Write(birthDay);
  4122. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4123. builder.Write(item.Company);
  4124. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4125. builder.Write(item.Job);
  4126. cultivateRowIndex++;
  4127. }
  4128. //删除多余行
  4129. //cultivateRowIndex -= 2;
  4130. int delRows = 10 + 7 - cultivateRowIndex;
  4131. if (delRows > 0)
  4132. {
  4133. for (int i = 0; i < delRows; i++)
  4134. {
  4135. table1.Rows.RemoveAt(cultivateRowIndex);
  4136. //cultivateRowIndex++;
  4137. }
  4138. }
  4139. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4140. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4141. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4142. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4143. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4144. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4145. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4146. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4147. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4148. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4149. //其他费用
  4150. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4151. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4152. //其他费用合计
  4153. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4154. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4155. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4156. //公务舱合计
  4157. //国际旅费
  4158. string outsideJJ = "";
  4159. string allPriceJJ = "";
  4160. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4161. {
  4162. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4163. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4164. }
  4165. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4166. {
  4167. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4168. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4169. }
  4170. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4171. {
  4172. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4173. dic.Add("AirFeeTotal", airFeeTotalStr);
  4174. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4175. dic.Add("FeeTotal", feeTotalStr);
  4176. }
  4177. foreach (var key in dic.Keys)
  4178. {
  4179. builder.MoveToBookmark(key);
  4180. builder.Write(dic[key]);
  4181. }
  4182. //模板文件名
  4183. string strFileName = $"{_DelegationInfo.TeamName}成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4184. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4185. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4186. return Ok(JsonView(true, "成功", new { Url = url }));
  4187. }
  4188. }
  4189. else if (dto.ExportType == 2) //表格
  4190. {
  4191. //利用键值对存放数据
  4192. Dictionary<string, string> dic = new Dictionary<string, string>();
  4193. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4194. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4195. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4196. dic.Add("Day", sp.Days.ToString());
  4197. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4198. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4199. {
  4200. //获取模板
  4201. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4202. //载入模板
  4203. Document doc = new Document(tempPath);
  4204. DocumentBuilder builder = new DocumentBuilder(doc);
  4205. dic.Add("TeamName", _DelegationInfo.TeamName);
  4206. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4207. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4208. string missionLeaderName = "",
  4209. missionLeaderJob = "";
  4210. if (DeleClientList.Count > 0)
  4211. {
  4212. missionLeaderName = DeleClientList[0].Name;
  4213. missionLeaderJob = DeleClientList[0].Job;
  4214. }
  4215. dic.Add("MissionLeaderName", missionLeaderName);
  4216. dic.Add("MissionLeaderJob", missionLeaderJob);
  4217. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4218. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4219. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4220. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4221. int rowCount = 10;//总人数行
  4222. int startRowIndex = 7; //起始行
  4223. for (int i = 0; i < DeleClientList.Count; i++)
  4224. {
  4225. builder.MoveToCell(0, startRowIndex, 0, 0);
  4226. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4227. builder.MoveToCell(0, startRowIndex, 1, 0);
  4228. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4229. builder.Write(sex);//性别
  4230. builder.MoveToCell(0, startRowIndex, 2, 0);
  4231. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4232. builder.MoveToCell(0, startRowIndex, 3, 0);
  4233. builder.Write(DeleClientList[i].Company);//工作单位
  4234. builder.MoveToCell(0, startRowIndex, 4, 0);
  4235. builder.Write(DeleClientList[i].Job);//职务及级别
  4236. builder.MoveToCell(0, startRowIndex, 5, 0);
  4237. builder.Write("");//人员属性
  4238. builder.MoveToCell(0, startRowIndex, 6, 0);
  4239. builder.Write("");//上次出国时间
  4240. startRowIndex++;
  4241. }
  4242. int nullRow = rowCount - DeleClientList.Count;//空行
  4243. for (int i = 0; i < nullRow; i++)
  4244. {
  4245. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4246. }
  4247. foreach (var key in dic.Keys)
  4248. {
  4249. builder.MoveToBookmark(key);
  4250. builder.Write(dic[key]);
  4251. }
  4252. //模板文件名
  4253. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4254. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4255. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4256. return Ok(JsonView(true, "成功", new { Url = url }));
  4257. }
  4258. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4259. {
  4260. //获取模板
  4261. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4262. //载入模板
  4263. Document doc = new Document(tempPath);
  4264. DocumentBuilder builder = new DocumentBuilder(doc);
  4265. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4266. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4267. dic.Add("Names", Names);
  4268. int accommodationRows = 12, foodandotherRows = 12;
  4269. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4270. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4271. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4272. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4273. int accommodationStartIndex = 6;
  4274. decimal dac1totalPrice = 0.00M;
  4275. foreach (var dac in dac1)
  4276. {
  4277. if (dac.SubTotal == 0)
  4278. {
  4279. continue;
  4280. }
  4281. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4282. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4283. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4284. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4285. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4286. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4287. builder.Write(currency);//币种
  4288. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4289. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4290. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4291. builder.Write("");//人数
  4292. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4293. builder.Write("");//天数
  4294. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4295. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4296. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4297. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4298. builder.Write(rate.ToString("#0.0000"));//汇率
  4299. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4300. decimal rbmPrice = rate * dac.SubTotal;
  4301. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4302. accommodationStartIndex++;
  4303. dac1totalPrice += rbmPrice;
  4304. }
  4305. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4306. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4307. builder.Write("小计");
  4308. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4309. builder.Write(dac1totalPrice.ToString("#0.00"));
  4310. accommodationStartIndex++;
  4311. int nullRow = accommodationRows - dac1.Count;
  4312. //删除空行
  4313. //if (nullRow > 0)
  4314. //{
  4315. // int rowIndex = accommodationStartIndex;
  4316. // for (int i = 0; i < nullRow; i++)
  4317. // {
  4318. // Row row = table1.Rows[rowIndex];
  4319. // row.Remove();
  4320. // rowIndex++;
  4321. // }
  4322. //}
  4323. if (dac2.Count == dac3.Count)//国家 币种 金额
  4324. {
  4325. for (int i = 0; i < dac2.Count; i++)
  4326. {
  4327. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4328. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4329. }
  4330. }
  4331. int foodandotherStartIndex = 19;//
  4332. decimal dac2totalPrice = 0.00M;
  4333. foreach (var dac in dac2)
  4334. {
  4335. if (dac.SubTotal == 0)
  4336. {
  4337. continue;
  4338. }
  4339. //foodandotherStartIndex = 12;
  4340. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4341. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4342. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4343. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4344. builder.Write(currency);//币种
  4345. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4346. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4347. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4348. builder.Write("");//人数
  4349. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4350. builder.Write("");//天数
  4351. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4352. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4353. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4354. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4355. builder.Write(rate.ToString("#0.0000"));//汇率
  4356. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4357. decimal rbmPrice = rate * dac.SubTotal;
  4358. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4359. foodandotherStartIndex++;
  4360. dac2totalPrice += rbmPrice;
  4361. }
  4362. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4363. //删除空行
  4364. if (dac2.Count < foodandotherRows)
  4365. {
  4366. //int nullRow = accommodationRows - dac2.Count;
  4367. //while (table2.Rows.Count > dac2.Count)
  4368. //{
  4369. // table2.Rows.RemoveAt(dac2.Count);
  4370. //}
  4371. }
  4372. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4373. string otherFeeStr = "";
  4374. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4375. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4376. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4377. if (otherFeeStr.Length > 0)
  4378. {
  4379. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4380. otherFeeStr = $"({otherFeeStr})";
  4381. dic.Add("OtherFeeStr", otherFeeStr);
  4382. }
  4383. foreach (var key in dic.Keys)
  4384. {
  4385. builder.MoveToBookmark(key);
  4386. builder.Write(dic[key]);
  4387. }
  4388. //模板文件名
  4389. string strFileName = $"省级单位出(境)经费报销单.docx";
  4390. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4391. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4392. return Ok(JsonView(true, "成功", new { Url = url }));
  4393. }
  4394. }
  4395. else if (dto.ExportType == 3)
  4396. {
  4397. if (dto.SubTypeId == 1) //团组成员名单
  4398. {
  4399. if (DeleClientList.Count < 1)
  4400. {
  4401. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4402. }
  4403. //获取模板
  4404. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4405. //载入模板
  4406. Document doc = new Document(tempPath);
  4407. DocumentBuilder builder = new DocumentBuilder(doc);
  4408. //获取word里所有表格
  4409. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4410. //获取所填表格的序数
  4411. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4412. var rowStart = tableOne.Rows[0]; //获取第1行
  4413. //循环赋值
  4414. for (int i = 0; i < DeleClientList.Count; i++)
  4415. {
  4416. builder.MoveToCell(0, i + 1, 0, 0);
  4417. builder.Write(DeleClientList[i].Name);
  4418. builder.MoveToCell(0, i + 1, 1, 0);
  4419. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4420. builder.Write(sex);
  4421. builder.MoveToCell(0, i + 1, 2, 0);
  4422. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4423. builder.MoveToCell(0, i + 1, 3, 0);
  4424. builder.Write(DeleClientList[i].Company);
  4425. builder.MoveToCell(0, i + 1, 4, 0);
  4426. builder.Write(DeleClientList[i].Job);
  4427. }
  4428. //删除多余行
  4429. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4430. {
  4431. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4432. }
  4433. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4434. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4435. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4436. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4437. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4438. return Ok(JsonView(true, "成功", new { Url = url }));
  4439. }
  4440. }
  4441. return Ok(JsonView(false, "操作失败!"));
  4442. }
  4443. catch (Exception ex)
  4444. {
  4445. return Ok(JsonView(false, ex.Message));
  4446. }
  4447. }
  4448. /// <summary>
  4449. /// 获取三公费用标准city
  4450. /// </summary>
  4451. /// <param name="placeData"></param>
  4452. /// <param name="nationalTravelFeeId"></param>
  4453. /// <returns></returns>
  4454. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4455. {
  4456. string _city = string.Empty;
  4457. if (placeData.Count < 1) return _city;
  4458. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4459. if (data == null) return _city;
  4460. string country = data.Country;
  4461. string city = data.City;
  4462. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4463. else _city = city;
  4464. return _city;
  4465. }
  4466. /// <summary>
  4467. /// 团组模块 - 出入境费用 - 明细表导出
  4468. /// </summary>
  4469. /// <returns></returns>
  4470. [HttpPost]
  4471. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4472. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4473. {
  4474. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4475. if (data.Code != 0)
  4476. {
  4477. return Ok(JsonView(false, data.Msg));
  4478. }
  4479. return Ok(JsonView(true, data.Msg, data.Data));
  4480. }
  4481. /// <summary>
  4482. /// 团组模块 - 出入境费用 - 一键清空
  4483. /// </summary>
  4484. /// <returns></returns>
  4485. [HttpPost]
  4486. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4487. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4488. {
  4489. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4490. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4491. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4492. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4493. if (_view.Code == 0)
  4494. {
  4495. return Ok(JsonView(true, "操作成功"));
  4496. }
  4497. return Ok(JsonView(false, "操作失败"));
  4498. }
  4499. /// <summary>
  4500. /// 团组模块 - 出入境费用 - 子项删除
  4501. /// </summary>
  4502. /// <returns></returns>
  4503. [HttpPost]
  4504. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4505. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4506. {
  4507. try
  4508. {
  4509. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4510. if (data.Code != 0)
  4511. {
  4512. return Ok(JsonView(false, data.Msg));
  4513. }
  4514. return Ok(JsonView(true, "操作成功!", data.Data));
  4515. }
  4516. catch (Exception ex)
  4517. {
  4518. return Ok(JsonView(false, ex.Message));
  4519. }
  4520. }
  4521. /// <summary>
  4522. /// 团组模块 - 出入境国家费用标准 List
  4523. /// </summary>
  4524. /// <returns></returns>
  4525. [HttpPost]
  4526. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4527. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  4528. {
  4529. try
  4530. {
  4531. Stopwatch sw = new Stopwatch();
  4532. sw.Start();
  4533. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  4534. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4535. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4536. Where gntf.Isdel = 0");
  4537. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  4538. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  4539. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  4540. //foreach (var item in nationalTravel)
  4541. //{
  4542. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  4543. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  4544. // if (otherData != null)
  4545. // {
  4546. // cityData.Remove(otherData);
  4547. // cityData.Add(otherData);
  4548. // }
  4549. // nationalTravelFeeData1.Add(new
  4550. // {
  4551. // Country = item.Country,
  4552. // CityData = cityData
  4553. // });
  4554. //}
  4555. sw.Stop();
  4556. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  4557. }
  4558. catch (Exception ex)
  4559. {
  4560. return Ok(JsonView(false, ex.Message));
  4561. throw;
  4562. }
  4563. }
  4564. /// <summary>
  4565. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  4566. /// </summary>
  4567. /// <returns></returns>
  4568. [HttpPost]
  4569. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4570. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  4571. {
  4572. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  4573. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  4574. List<string> countryData = new List<string>();
  4575. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  4576. countryData = countryData.Distinct().ToList();
  4577. List<dynamic> dataSource = new List<dynamic>();
  4578. foreach (var item in countryData)
  4579. {
  4580. List<string> cityData1 = new List<string>();
  4581. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  4582. var countryData2 = new
  4583. {
  4584. CountryName = item,
  4585. CityData = cityData1
  4586. };
  4587. dataSource.Add(countryData2);
  4588. }
  4589. return Ok(JsonView(true, "查询成功!", dataSource));
  4590. }
  4591. /// <summary>
  4592. /// 团组模块 - 出入境国家费用标准 Page List
  4593. /// </summary>
  4594. /// <returns></returns>
  4595. [HttpPost]
  4596. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4597. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  4598. {
  4599. int portId = dto.PortType;
  4600. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4601. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  4602. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  4603. string whereSql = string.Empty;
  4604. if (!string.IsNullOrEmpty(dto.Country))
  4605. {
  4606. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  4607. }
  4608. if (!string.IsNullOrEmpty(dto.City))
  4609. {
  4610. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  4611. }
  4612. string pageSql = string.Format(@"Select * From (
  4613. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  4614. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  4615. From Grp_NationalTravelFee gntf
  4616. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4617. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4618. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  4619. RefAsync<int> total = 0;
  4620. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  4621. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  4622. }
  4623. /// <summary>
  4624. /// 团组模块 - 出入境国家费用标准 根据城市查询
  4625. /// </summary>
  4626. /// <returns></returns>
  4627. [HttpPost]
  4628. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4629. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  4630. {
  4631. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  4632. int portId = dto.PortType;
  4633. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4634. string whereSql = string.Empty;
  4635. if (!string.IsNullOrEmpty(dto.Country))
  4636. {
  4637. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  4638. }
  4639. if (!string.IsNullOrEmpty(dto.City))
  4640. {
  4641. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  4642. }
  4643. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  4644. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  4645. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  4646. From Grp_NationalTravelFee gntf
  4647. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4648. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4649. Where gntf.Isdel = 0 {0} ", whereSql);
  4650. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  4651. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  4652. }
  4653. /// <summary>
  4654. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  4655. /// </summary>
  4656. /// <returns></returns>
  4657. [HttpPost]
  4658. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4659. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  4660. {
  4661. try
  4662. {
  4663. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  4664. if (data.Code != 0)
  4665. {
  4666. return Ok(JsonView(false, data.Msg));
  4667. }
  4668. return Ok(JsonView(true, "操作成功!", data.Data));
  4669. }
  4670. catch (Exception ex)
  4671. {
  4672. return Ok(JsonView(false, ex.Message));
  4673. }
  4674. }
  4675. /// <summary>
  4676. /// 团组模块 - 出入境国家费用标准 - Del
  4677. /// </summary>
  4678. /// <returns></returns>
  4679. [HttpPost]
  4680. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4681. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  4682. {
  4683. try
  4684. {
  4685. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  4686. {
  4687. Id = dto.Id,
  4688. DeleteUserId = dto.DeleteUserId,
  4689. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  4690. IsDel = 1
  4691. };
  4692. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  4693. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  4694. .WhereColumns(it => new { it.Id })
  4695. .ExecuteCommandAsync();
  4696. if (delStatus <= 0)
  4697. {
  4698. return Ok(JsonView(false, "删除失败!"));
  4699. }
  4700. return Ok(JsonView(true, "操作成功!"));
  4701. }
  4702. catch (Exception ex)
  4703. {
  4704. return Ok(JsonView(false, ex.Message));
  4705. }
  4706. }
  4707. #endregion
  4708. #region 签证费用录入
  4709. /// <summary>
  4710. /// 根据diid查询签证费用列表
  4711. /// </summary>
  4712. /// <param name="dto"></param>
  4713. /// <returns></returns>
  4714. [HttpPost]
  4715. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4716. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  4717. {
  4718. try
  4719. {
  4720. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  4721. if (groupData.Code != 0)
  4722. {
  4723. return Ok(JsonView(false, groupData.Msg));
  4724. }
  4725. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4726. }
  4727. catch (Exception ex)
  4728. {
  4729. return Ok(JsonView(false, ex.Message));
  4730. }
  4731. }
  4732. /// <summary>
  4733. /// 根据签证费用Id查询单条数据及c表数据
  4734. /// </summary>
  4735. /// <param name="dto"></param>
  4736. /// <returns></returns>
  4737. [HttpPost]
  4738. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4739. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  4740. {
  4741. try
  4742. {
  4743. Result groupData = await _visaPriceRep.PostVisaById(dto);
  4744. if (groupData.Code != 0)
  4745. {
  4746. return Ok(JsonView(false, groupData.Msg));
  4747. }
  4748. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4749. }
  4750. catch (Exception ex)
  4751. {
  4752. return Ok(JsonView(false, ex.Message));
  4753. }
  4754. }
  4755. /// <summary>
  4756. /// 签证费用删除
  4757. /// </summary>
  4758. /// <param name="dto"></param>
  4759. /// <returns></returns>
  4760. [HttpPost]
  4761. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4762. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  4763. {
  4764. _sqlSugar.BeginTran();
  4765. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  4766. if (!res)
  4767. {
  4768. _sqlSugar.RollbackTran();
  4769. return Ok(JsonView(false, "删除失败"));
  4770. }
  4771. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  4772. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  4773. .SetColumns(a => new Grp_CreditCardPayment()
  4774. {
  4775. IsDel = 1,
  4776. DeleteUserId = dto.DeleteUserId,
  4777. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4778. }).ExecuteCommand();
  4779. if (resSub < 1)
  4780. {
  4781. _sqlSugar.RollbackTran();
  4782. return Ok(JsonView(false, "删除失败"));
  4783. }
  4784. _sqlSugar.CommitTran();
  4785. return Ok(JsonView(true, "删除成功!"));
  4786. }
  4787. /// <summary>
  4788. /// 签证费用录入下拉框初始化
  4789. /// </summary>
  4790. /// <returns></returns>
  4791. [HttpPost]
  4792. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4793. public async Task<IActionResult> VisaPriceAddSelect()
  4794. {
  4795. try
  4796. {
  4797. //支付方式
  4798. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  4799. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  4800. //币种
  4801. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  4802. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  4803. //乘客类型
  4804. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  4805. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  4806. //卡类型
  4807. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  4808. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  4809. var data = new
  4810. {
  4811. Payment = _Payment,
  4812. CurrencyList = _CurrencyList,
  4813. PassengerType = _PassengerType,
  4814. BankCard = _BankCard
  4815. };
  4816. return Ok(JsonView(true, "查询成功!", data));
  4817. }
  4818. catch (Exception ex)
  4819. {
  4820. return Ok(JsonView(false, "程序错误!"));
  4821. throw;
  4822. }
  4823. }
  4824. /// <summary>
  4825. /// 签证费用录入操作(Status:1.新增,2.修改)
  4826. /// </summary>
  4827. /// <param name="dto"></param>
  4828. /// <returns></returns>
  4829. [HttpPost]
  4830. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4831. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  4832. {
  4833. try
  4834. {
  4835. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  4836. if (groupData.Code != 0)
  4837. {
  4838. return Ok(JsonView(false, groupData.Msg));
  4839. }
  4840. #region 应用推送
  4841. try
  4842. {
  4843. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  4844. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  4845. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  4846. }
  4847. catch (Exception ex)
  4848. {
  4849. }
  4850. #endregion
  4851. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4852. }
  4853. catch (Exception ex)
  4854. {
  4855. return Ok(JsonView(false, ex.Message));
  4856. }
  4857. }
  4858. #endregion
  4859. #region op费用录入
  4860. /// <summary>
  4861. /// 根据diid查询op费用列表
  4862. /// </summary>
  4863. /// <param name="dto"></param>
  4864. /// <returns></returns>
  4865. [HttpPost]
  4866. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4867. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  4868. {
  4869. try
  4870. {
  4871. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  4872. if (groupData.Code != 0)
  4873. {
  4874. return Ok(JsonView(false, groupData.Msg));
  4875. }
  4876. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4877. }
  4878. catch (Exception ex)
  4879. {
  4880. return Ok(JsonView(false, ex.Message));
  4881. }
  4882. }
  4883. /// <summary>
  4884. /// 根据op费用Id查询单条数据及c表数据
  4885. /// </summary>
  4886. /// <param name="dto"></param>
  4887. /// <returns></returns>
  4888. [HttpPost]
  4889. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4890. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  4891. {
  4892. try
  4893. {
  4894. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  4895. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  4896. var data = new
  4897. {
  4898. CarTouristGuideGround = _groupData,
  4899. CreditCardPayment = _creditCardPayment
  4900. };
  4901. return Ok(JsonView(true, "查询成功!", data));
  4902. }
  4903. catch (Exception ex)
  4904. {
  4905. return Ok(JsonView(false, "程序错误!"));
  4906. }
  4907. }
  4908. /// <summary>
  4909. /// op费用删除
  4910. /// </summary>
  4911. /// <param name="dto"></param>
  4912. /// <returns></returns>
  4913. [HttpPost]
  4914. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4915. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  4916. {
  4917. try
  4918. {
  4919. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  4920. if (!res)
  4921. {
  4922. return Ok(JsonView(false, "删除失败"));
  4923. }
  4924. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  4925. {
  4926. IsDel = 1,
  4927. DeleteUserId = dto.DeleteUserId,
  4928. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4929. }).ExecuteCommandAsync();
  4930. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  4931. {
  4932. IsDel = 1,
  4933. DeleteUserId = dto.DeleteUserId,
  4934. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4935. }).ExecuteCommandAsync();
  4936. return Ok(JsonView(true, "删除成功!"));
  4937. }
  4938. catch (Exception ex)
  4939. {
  4940. return Ok(JsonView(false, "程序错误!"));
  4941. throw;
  4942. }
  4943. }
  4944. /// <summary>
  4945. /// op费用录入操作(Status:1.新增,2.修改)
  4946. /// </summary>
  4947. /// <param name="dto"></param>
  4948. /// <returns></returns>
  4949. [HttpPost]
  4950. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4951. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  4952. {
  4953. try
  4954. {
  4955. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  4956. if (groupData.Code != 0)
  4957. {
  4958. return Ok(JsonView(false, groupData.Msg));
  4959. }
  4960. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4961. }
  4962. catch (Exception ex)
  4963. {
  4964. return Ok(JsonView(false, ex.Message));
  4965. }
  4966. }
  4967. /// <summary>
  4968. /// 填写费用详细页面初始化绑定
  4969. /// </summary>
  4970. /// <param name="dto"></param>
  4971. /// <returns></returns>
  4972. [HttpPost]
  4973. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4974. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  4975. {
  4976. try
  4977. {
  4978. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  4979. if (groupData.Code != 0)
  4980. {
  4981. return Ok(JsonView(false, groupData.Msg));
  4982. }
  4983. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4984. }
  4985. catch (Exception ex)
  4986. {
  4987. return Ok(JsonView(false, ex.Message));
  4988. }
  4989. }
  4990. /// <summary>
  4991. /// 根据op费用Id查询详细数据
  4992. /// </summary>
  4993. /// <param name="dto"></param>
  4994. /// <returns></returns>
  4995. [HttpPost]
  4996. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4997. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  4998. {
  4999. try
  5000. {
  5001. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5002. if (groupData.Code != 0)
  5003. {
  5004. return Ok(JsonView(false, groupData.Msg));
  5005. }
  5006. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5007. }
  5008. catch (Exception ex)
  5009. {
  5010. return Ok(JsonView(false, ex.Message));
  5011. }
  5012. }
  5013. /// <summary>
  5014. /// OP费用录入填写详情
  5015. /// </summary>
  5016. /// <param name="dto"></param>
  5017. /// <returns></returns>
  5018. [HttpPost]
  5019. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5020. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5021. {
  5022. try
  5023. {
  5024. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5025. if (groupData.Code != 0)
  5026. {
  5027. return Ok(JsonView(false, groupData.Msg));
  5028. }
  5029. #region 应用推送
  5030. try
  5031. {
  5032. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5033. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5034. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5035. }
  5036. catch (Exception ex)
  5037. {
  5038. }
  5039. #endregion
  5040. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5041. }
  5042. catch (Exception ex)
  5043. {
  5044. return Ok(JsonView(false, ex.Message));
  5045. }
  5046. }
  5047. /// <summary>
  5048. /// 获取三公详细所有城市
  5049. /// </summary>
  5050. /// <returns></returns>
  5051. [HttpGet]
  5052. public IActionResult OpCarCityResult()
  5053. {
  5054. var jw = JsonView(false);
  5055. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5056. {
  5057. x.Id,
  5058. x.Country,
  5059. x.City,
  5060. }).ToList();
  5061. if (data.Count > 0)
  5062. {
  5063. jw = JsonView(true, "获取成功!", data);
  5064. }
  5065. else
  5066. {
  5067. jw.Msg = "城市数据为空!";
  5068. jw.Data = new string[0];
  5069. }
  5070. return Ok(jw);
  5071. }
  5072. #region OP行程单
  5073. /// <summary>
  5074. /// OP行程单初始化
  5075. /// </summary>
  5076. /// <param name="dto"></param>
  5077. /// <returns></returns>
  5078. [HttpPost]
  5079. public IActionResult InitOpTravel(InitOpTravelDto dto)
  5080. {
  5081. var jw = JsonView(false);
  5082. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  5083. var group = groupList.First();
  5084. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  5085. if (group == null)
  5086. {
  5087. jw.Msg = "暂无团组!";
  5088. return Ok(jw);
  5089. }
  5090. group = groupList.Find(x => x.Id == diid);
  5091. if (group == null)
  5092. {
  5093. jw.Msg = "请输入正确的团组ID!";
  5094. return Ok(jw);
  5095. }
  5096. string city = string.Empty;
  5097. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  5098. if (blackCode.Count > 0)
  5099. {
  5100. var black = blackCode.First();
  5101. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  5102. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  5103. if (blackSp.Length > 0)
  5104. {
  5105. try
  5106. {
  5107. var cityArrCode = new List<string>(20);
  5108. foreach (var item in blackSp)
  5109. {
  5110. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  5111. var IndexSelect = itemSp[2];
  5112. var cityArrCodeLength = cityArrCode.Count - 1;
  5113. var startCity = IndexSelect.Substring(0, 3);
  5114. if (cityArrCodeLength > 0)
  5115. {
  5116. var arrEndCity = cityArrCode[cityArrCodeLength];
  5117. if (arrEndCity != startCity)
  5118. {
  5119. cityArrCode.Add(startCity.ToUpper());
  5120. }
  5121. }
  5122. else
  5123. {
  5124. cityArrCode.Add(startCity.ToUpper());
  5125. }
  5126. var endCity = IndexSelect.Substring(3, 3);
  5127. cityArrCode.Add(endCity.ToUpper());
  5128. }
  5129. var cityThree = string.Empty;
  5130. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  5131. cityThree = cityThree.TrimEnd(',');
  5132. if (string.IsNullOrWhiteSpace(cityThree))
  5133. {
  5134. throw new
  5135. Exception("error");
  5136. }
  5137. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  5138. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  5139. foreach (var item in cityArrCode)
  5140. {
  5141. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  5142. if (find != null)
  5143. {
  5144. city += find.City + "/";
  5145. }
  5146. else
  5147. {
  5148. city += item + "三字码未收入/";
  5149. }
  5150. }
  5151. city = city.TrimEnd('/');
  5152. }
  5153. catch (Exception e)
  5154. {
  5155. city = "黑屏代码格式不正确!";
  5156. }
  5157. }
  5158. }
  5159. else
  5160. {
  5161. city = "未录入黑屏代码";
  5162. }
  5163. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  5164. {
  5165. Date = x.Date,
  5166. Days = x.Days,
  5167. Diffgroup = x.Diffgroup,
  5168. Diid = x.Diid,
  5169. Traffic_First = x.Traffic_First,
  5170. Traffic_Second = x.Traffic_Second,
  5171. Trip = x.Trip,
  5172. WeekDay = x.WeekDay,
  5173. Id = x.Id
  5174. }).ToList();
  5175. jw.Data = new
  5176. {
  5177. groupList = groupList.Select(x => new
  5178. {
  5179. x.Id,
  5180. x.TeamName,
  5181. x.TourCode
  5182. }).ToList(),
  5183. groupInfo = new
  5184. {
  5185. group.VisitDays,
  5186. group.TourCode,
  5187. group.VisitPNumber,
  5188. group.TeamName,
  5189. city
  5190. },
  5191. OpTravelList
  5192. };
  5193. jw.Code = 200;
  5194. jw.Msg = "操作成功!";
  5195. return Ok(jw);
  5196. }
  5197. /// <summary>
  5198. /// 删除团组行程单
  5199. /// </summary>
  5200. /// <returns></returns>
  5201. [HttpPost]
  5202. public IActionResult DelTravel(DelOpTravelDto dto)
  5203. {
  5204. var jw = JsonView(false);
  5205. if (dto.UserId <= 0 || dto.Diid <= 0)
  5206. {
  5207. jw.Msg = "请输入正确的参数!";
  5208. return Ok(jw);
  5209. }
  5210. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  5211. .SetColumns(x => new Grp_TravelList
  5212. {
  5213. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5214. DeleteUserId = dto.UserId,
  5215. IsDel = 1,
  5216. }).ExecuteCommand();
  5217. jw = JsonView(true);
  5218. return Ok(jw);
  5219. }
  5220. /// <summary>
  5221. /// 行程单保存
  5222. /// </summary>
  5223. /// <returns></returns>
  5224. [HttpPost]
  5225. public IActionResult TravelSave(TravelSaveDto dto)
  5226. {
  5227. var jw = JsonView(false);
  5228. if (dto.Arr.Count > 0)
  5229. {
  5230. try
  5231. {
  5232. _sqlSugar.BeginTran();
  5233. foreach (var item in dto.Arr)
  5234. {
  5235. if (item.Id == 0)
  5236. {
  5237. throw new Exception("请传入正确的Id");
  5238. }
  5239. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  5240. .SetColumns(x => new Grp_TravelList
  5241. {
  5242. Trip = item.Trip
  5243. }).ExecuteCommand();
  5244. }
  5245. _sqlSugar.CommitTran();
  5246. jw = JsonView(true);
  5247. }
  5248. catch (Exception ex)
  5249. {
  5250. _sqlSugar.RollbackTran();
  5251. jw.Msg = "程序异常!" + ex.Message;
  5252. }
  5253. }
  5254. else
  5255. {
  5256. jw.Msg = "请传入正确的参数!";
  5257. }
  5258. return Ok(jw);
  5259. }
  5260. /// <summary>
  5261. /// 导出行程单
  5262. /// </summary>
  5263. /// <param name="dto"></param>
  5264. /// <returns></returns>
  5265. [HttpPost]
  5266. public IActionResult ExportTravel(InitOpTravelDto dto)
  5267. {
  5268. var jw = JsonView(false);
  5269. //数据源
  5270. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  5271. int diid = 0;
  5272. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  5273. if (Find == null)
  5274. {
  5275. jw.Msg = "请选择正确的团组!";
  5276. return Ok(jw);
  5277. }
  5278. else
  5279. {
  5280. diid = Find.Id;
  5281. }
  5282. DataTable dtBlack = null;
  5283. try
  5284. {
  5285. dtBlack = GetTableByBlackCode(diid);
  5286. }
  5287. catch (Exception)
  5288. {
  5289. jw.Msg = "机票黑屏代码有误!";
  5290. return Ok(jw);
  5291. }
  5292. string CityStr1 = "";
  5293. List<string> countriesList = new List<string>();
  5294. List<string> cityList = new List<string>();
  5295. string countriesIntroduction = "";
  5296. string cityIntroduction = "";
  5297. string timeDifference = "";
  5298. string currExchangeRate = "";
  5299. string txt_itemPrepare = "";
  5300. string txt_specialReminder = "";
  5301. string txt_cGPrecautions = "";
  5302. string txt_yGCG = "";
  5303. string txt_conduct = "";
  5304. string txt_commonEnglish = "";
  5305. if (dtBlack == null && (dtBlack.Rows[0]["Day"] == null || dtBlack.Rows[0]["Day"].ToString() == ""))
  5306. {
  5307. //提示
  5308. //PublicCode.GetAlertMsg(this, GetType(), dt.Rows[dt.Rows.Count - 1]["Error"].ToString());
  5309. }
  5310. else
  5311. {
  5312. //创建三字码示例
  5313. Res_ThreeCode t = new Res_ThreeCode();
  5314. //城市缓存
  5315. string city = "";
  5316. //出访城市
  5317. for (int i = 0; i < dtBlack.Rows.Count; i++)
  5318. {
  5319. if ((i + 1) < dtBlack.Rows.Count && dtBlack.Rows[i]["Three"].ToString() == dtBlack.Rows[i + 1]["Three"].ToString())
  5320. {
  5321. continue;
  5322. }
  5323. if (dtBlack.Rows.Count > 0 && (dtBlack.Rows[i]["Three"].ToString() != null && dtBlack.Rows[i]["Three"].ToString() != ""))
  5324. {
  5325. //出发城市
  5326. string cityTemp = dtBlack.Rows[i]["Three"].ToString().Replace("/", string.Empty).Substring(0, 3);
  5327. t = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three == cityTemp && x.IsDel == 0);
  5328. if (t != null)
  5329. {
  5330. city = city + "/" + t.City;
  5331. }
  5332. else
  5333. {
  5334. city = city + "/【" + cityTemp + "未收录,请联系机票同事录入】";
  5335. }
  5336. if (i == dtBlack.Rows.Count - 1)
  5337. {
  5338. //抵达城市
  5339. cityTemp = dtBlack.Rows[i]["Three"].ToString().Replace("/", string.Empty).Substring(3, 3);
  5340. t = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three == cityTemp && x.IsDel == 0);
  5341. if (t != null)
  5342. {
  5343. city = city + "/" + t.City;
  5344. }
  5345. else
  5346. {
  5347. city = city + "/【" + cityTemp + "未收录,请联系机票同事录入】";
  5348. }
  5349. }
  5350. }
  5351. }
  5352. if (city != "" && city != null)
  5353. {
  5354. string[] cityStr2 = city.Split('/');
  5355. string[] strs = cityStr2.Distinct().ToArray(); ;
  5356. string str = "";
  5357. foreach (var s in strs)
  5358. {
  5359. str += s + "/";
  5360. }
  5361. str = str.TrimStart('/');
  5362. str = str.TrimEnd('/');
  5363. //lblTourCity.Text = "去重前:" + city.TrimStart('/') + "\n 去重后:" + str;
  5364. CityStr1 = city.TrimStart('/');
  5365. }
  5366. // 行程repeater
  5367. if (GetByDiid(diid).Count > 0)
  5368. {
  5369. _travelList = GetByDiid(diid).Where(x => x.Issel == 1 && x.IsDel == 0).ToList();
  5370. }
  5371. else
  5372. {
  5373. //生成该时间段日期
  5374. List<string> timeList = GetTimeListByDataTable(dtBlack);
  5375. if (timeList != null)
  5376. {
  5377. string[] str = new string[timeList.Count];
  5378. //rpData.DataSource = str;
  5379. //rpData.DataBind();
  5380. }
  5381. }
  5382. }
  5383. //创建数据源Table
  5384. DataTable dtSource = new DataTable();
  5385. dtSource.Columns.Add("Days", typeof(string));
  5386. dtSource.Columns.Add("Date", typeof(string));
  5387. dtSource.Columns.Add("Week", typeof(string));
  5388. dtSource.Columns.Add("Traffic", typeof(string));
  5389. dtSource.Columns.Add("Trip", typeof(string));
  5390. //获取数据,放到datatable
  5391. foreach (var item in _travelList)
  5392. {
  5393. DataRow dr = dtSource.NewRow();
  5394. dr["Days"] = item.Days;
  5395. dr["Date"] = item.Date;
  5396. dr["Week"] = item.WeekDay;
  5397. dr["Traffic"] = item.Traffic_First
  5398. + "\r\n"
  5399. + item.Traffic_Second;
  5400. if (item.Trip.Replace("(此地区为黄热病地区,请注意打疫苗)", "").Length < 15)
  5401. {
  5402. item.Trip += @"
  5403. 08:00 早餐于酒店;
  5404. 09:00 公务活动;
  5405. 10:30 公务活动;
  5406. 12:00 午餐于当地餐厅;
  5407. 14:00 公务活动;
  5408. 16:00 公务活动;
  5409. 18:00 晚餐于当地餐厅;
  5410. 19:00 入住酒店休息;";
  5411. }
  5412. dr["Trip"] = item.Trip;
  5413. dtSource.Rows.Add(dr);
  5414. }
  5415. //lblTeamName.Text = di.TourCode;
  5416. //lblVisitDays.Text = di.VisitDays.ToString();
  5417. //lblVisitDays2.Text = di.VisitDays.ToString();
  5418. //lblPNumber.Text = di.VisitPNumber.ToString();
  5419. //lblGroup.Text = di.TeamName.ToString();
  5420. Dictionary<string, string> dic = new Dictionary<string, string>();
  5421. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  5422. dic.Add("City", CityStr1);
  5423. dic.Add("Days", Find.VisitDays.ToString());
  5424. dic.Add("DeleCode", Find.TourCode);
  5425. dic.Add("Pnum", Find.VisitPNumber.ToString());
  5426. dic.Add("Pnum2", Find.VisitPNumber.ToString());
  5427. List<Crm_DeleClient> leader = GetByDiidClient(Find.Id);
  5428. if (leader != null && leader.Count > 0)
  5429. {
  5430. dic.Add("Leader", GetByDiidClient(Find.Id)[0].LastName + GetByDiidClient(Find.Id)[0].FirstName);
  5431. }
  5432. else
  5433. {
  5434. dic.Add("Leader", "");
  5435. }
  5436. dic.Add("Pnum3", Find.VisitPNumber.ToString());
  5437. int UserId = 253;
  5438. dic.Add("OP", "");
  5439. dic.Add("OPTel", "");
  5440. //dic.Add("OP", "OP姓名");
  5441. //dic.Add("OPTel", "OP手机号码");
  5442. string countriesStr = "";
  5443. countriesList.ForEach(s => countriesStr += s + "、");
  5444. countriesStr = countriesStr.TrimEnd('、');
  5445. string cityStr = "";
  5446. cityList.ForEach(s => cityStr += s + "、");
  5447. cityStr = cityStr.TrimEnd('、');
  5448. //下方数据
  5449. dic.Add("selCountries", countriesStr == null ? "" : countriesStr);
  5450. dic.Add("selCity", cityStr == null ? "" : cityStr);
  5451. dic.Add("countriesIntroduction", countriesIntroduction == null ? "" : countriesIntroduction);
  5452. dic.Add("CityIntroduction", cityIntroduction == null ? "" : cityIntroduction);
  5453. dic.Add("timeDifference", timeDifference == null ? "" : timeDifference);
  5454. dic.Add("currExchangeRate", currExchangeRate == null ? "" : currExchangeRate);
  5455. dic.Add("temperature", "");
  5456. dic.Add("txt_itemPrepare", txt_itemPrepare == null ? "" : txt_itemPrepare);
  5457. dic.Add("txt_specialReminder", txt_specialReminder == null ? "" : txt_specialReminder);
  5458. dic.Add("txt_cGPrecautions", txt_cGPrecautions == null ? "" : txt_cGPrecautions);
  5459. dic.Add("txt_yGCG", txt_yGCG == null ? "" : txt_yGCG);
  5460. dic.Add("txt_conduct", txt_conduct == null ? "" : txt_conduct);
  5461. dic.Add("txt_commonEnglish", txt_commonEnglish == null ? "" : txt_commonEnglish);
  5462. //模板路径
  5463. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  5464. //载入模板
  5465. Document doc = null;
  5466. DocumentBuilder builder = null;
  5467. try
  5468. {
  5469. //载入模板
  5470. doc = new Document(tempPath);
  5471. builder = new DocumentBuilder(doc);
  5472. }
  5473. catch (Exception)
  5474. {
  5475. jw.Msg = "模板位置不存在!";
  5476. return Ok(jw);
  5477. }
  5478. foreach (var key in dic.Keys)
  5479. {
  5480. Bookmark bookmark = doc.Range.Bookmarks[key];
  5481. if (bookmark != null)
  5482. {
  5483. builder.MoveToBookmark(key);
  5484. builder.Write(dic[key]);
  5485. }
  5486. }
  5487. //获取word里所有表格
  5488. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5489. //获取所填表格的序数
  5490. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5491. try
  5492. {
  5493. //循环赋值
  5494. for (int i = 0; i < dtSource.Rows.Count; i++)
  5495. {
  5496. builder.MoveToCell(0, i + 1, 0, 0);
  5497. builder.Write(dtSource.Rows[i]["Days"].ToString());
  5498. builder.MoveToCell(0, i + 1, 1, 0);
  5499. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  5500. builder.MoveToCell(0, i + 1, 2, 0);
  5501. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  5502. var trip = dtSource.Rows[i]["Trip"].ToString();
  5503. builder.MoveToCell(0, i + 1, 3, 0);
  5504. builder.Write(trip);
  5505. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  5506. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  5507. // 获取特定索引的段落
  5508. Paragraph paragraph = (Paragraph)paragraphs[0];
  5509. Run run = paragraph.Runs[0];
  5510. Aspose.Words.Font font = run.Font;
  5511. font.Name = "黑体";
  5512. //设置双休红色
  5513. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  5514. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  5515. paragraph = (Paragraph)paragraphs[1];
  5516. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  5517. {
  5518. run = paragraph.Runs[0];
  5519. font = run.Font;
  5520. font.Color = Color.Red;
  5521. }
  5522. }
  5523. }
  5524. catch (Exception ex)
  5525. {
  5526. }
  5527. //删除多余行
  5528. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  5529. {
  5530. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  5531. }
  5532. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  5533. if (!Directory.Exists(savePath))
  5534. {
  5535. try
  5536. {
  5537. Directory.CreateDirectory(savePath);
  5538. }
  5539. catch
  5540. {
  5541. }
  5542. }
  5543. string path = savePath + Find.TeamName + "出访日程.docx";
  5544. try
  5545. {
  5546. doc.Save(path, Aspose.Words.SaveFormat.Doc);
  5547. jw = JsonView(true, "导出成功", path);
  5548. }
  5549. catch (Exception)
  5550. {
  5551. jw = JsonView(false);
  5552. }
  5553. return Ok(jw);
  5554. }
  5555. /// <summary>
  5556. ///根据机票黑屏代码整理DataTable
  5557. /// </summary>
  5558. /// <param name="diid"></param>
  5559. /// <returns></returns>
  5560. DataTable GetTableByBlackCode(int diid)
  5561. {
  5562. //黑屏代码信息
  5563. List<Air_TicketBlackCode> listcode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.DiId == diid && x.IsDel == 0).ToList();
  5564. //测试数据为序号,航班号,起飞日期,三字码,起飞时刻,到达时刻,出发航站楼,到达航站楼,机型,飞行时间
  5565. //1.3U8391 TU17NOV CTUCAI 0220 0715 T1 T2 330 10H55M
  5566. DataTable dt = new DataTable();
  5567. dt.Columns.Add("Fliagtcode", typeof(string)); //航班号
  5568. dt.Columns.Add("Date", typeof(string));//起飞日期
  5569. dt.Columns.Add("Three", typeof(string));//三字码
  5570. dt.Columns.Add("StartTime", typeof(string));//起飞时刻
  5571. dt.Columns.Add("EndTime", typeof(string));//到达时刻
  5572. dt.Columns.Add("StartBuilding", typeof(string));//出发航站楼
  5573. dt.Columns.Add("EndBuilding", typeof(string));//到达航站楼
  5574. dt.Columns.Add("AirModel", typeof(string)); //机型
  5575. dt.Columns.Add("FlightTime", typeof(string));//飞行时间
  5576. dt.Columns.Add("Day", typeof(string));//整理的起飞日期;作为排序依据
  5577. dt.Columns.Add("ArrivedDate", typeof(string));//整理的到达日期
  5578. dt.Columns.Add("Error", typeof(string));//整理的到达日期
  5579. dt.Columns.Add("Sign", typeof(string));//标识:0表示为原生黑屏代码、1表示“+1”新增的黑屏代码
  5580. //判断是否录入黑屏代码
  5581. if (listcode.Count() == 0 || listcode == null)
  5582. {
  5583. dt.Rows.Add(null, null, null, null, null, null, null, null, null, null, null, "黑屏代码未录入!", null);
  5584. }
  5585. else
  5586. {
  5587. //读取单段黑屏代码
  5588. for (int i = 0; i < listcode.Count; i++)
  5589. {
  5590. //去除序号
  5591. string[] CodeList = Regex.Split(listcode[i].BlackCode, "\\d+\\.", RegexOptions.IgnoreCase);
  5592. //去除多余空格,方法一Linq扩展方法
  5593. CodeList = CodeList.Where(str => str != "").ToArray();
  5594. CodeList = CodeList.Where(str => str != " ").ToArray();
  5595. //年
  5596. int year = Convert.ToInt32(DateTime.Now.Year.ToString());
  5597. //读取单条黑屏代码
  5598. for (int j = 0; j < CodeList.Count(); j++)
  5599. {
  5600. //去除多余空格,方法二使用Split()方法进行分割,分割有一个选项是RemoveEmptyEntries
  5601. CodeList[j] = CodeList[j].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty).TrimStart().TrimEnd();
  5602. string[] Info = CodeList[j].Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5603. //string[] Info = CodeList[j].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty)
  5604. // .TrimStart().TrimEnd().Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5605. //去除多余空格
  5606. Info = Info.Where(str => str != "").ToArray();
  5607. Info = Info.Where(str => str != " ").ToArray();
  5608. //判断黑屏代码是否正确拆分; 理应拆成9段
  5609. if (Info.Count() < 9)
  5610. {
  5611. dt.Rows.Add(null, null, null, null, null, null, null, null, null, null, null, "本团组第" + (i + 1) + "段黑屏代码中第" + (j + 1) + " 条有误,请联系机票同事核对", null);
  5612. }
  5613. else
  5614. {
  5615. try
  5616. {
  5617. //月
  5618. int month = Convert.ToInt32(GetLonger(Info[1].Substring(4, 3)));
  5619. //日
  5620. int day = Convert.ToInt32(Info[1].Substring(2, 2));
  5621. #region 逐一比较月份,判断是否翻年;逐一比较三字码顶真,判断是否跑错机场
  5622. if (j > 0)
  5623. {
  5624. string[] Temp = CodeList[j - 1].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty)
  5625. .TrimStart().TrimEnd().Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5626. Temp = Temp.Where(str => str != "").ToArray();
  5627. Temp = Temp.Where(str => str != " ").ToArray();
  5628. int monthTemp = Convert.ToInt32(GetLonger(Temp[1].Substring(4, 3)));
  5629. // 如果相邻月份之差小于0,则证明次一条年份需+1
  5630. if (month - monthTemp < 0)
  5631. {
  5632. year = year + 1;
  5633. }
  5634. //如果相邻代码三字码不顶真,提醒
  5635. string FootThree = Temp[2].Substring(3, 3);
  5636. string HeadThree = Info[2].Substring(0, 3);
  5637. if (FootThree != HeadThree)
  5638. {
  5639. //DelegationInfoService s = new DelegationInfoService();
  5640. //UsersService us = new UsersService();
  5641. //GroupsTaskAssignmentService gts = new GroupsTaskAssignmentService();
  5642. //77 行程
  5643. List<Grp_GroupsTaskAssignment> list2 = _sqlSugar.Queryable<Grp_GroupsTaskAssignment>().Where(x => x.CTId == 77 && x.DIId == diid && x.IsDel == 0).ToList();
  5644. foreach (var temp in list2)
  5645. {
  5646. //if (temp.UId != 21)
  5647. //SendAndReturn(us.GetUsersByID(temp.UId).Email,
  5648. // "黑屏代码提醒",
  5649. // s.GetDelegationInfoByID(diid).TeamName + "的机票黑屏代码中,相邻航段的三字码不连续,请查看!");
  5650. }
  5651. //85 机票预订
  5652. List<Grp_GroupsTaskAssignment> list6 = _sqlSugar.Queryable<Grp_GroupsTaskAssignment>().Where(x => x.CTId == 85 && x.DIId == diid && x.IsDel == 0).ToList();
  5653. foreach (var temp in list6)
  5654. {
  5655. //if (temp.UId != 21)
  5656. //SendAndReturn(us.GetUsersByID(temp.UId).Email,
  5657. // "黑屏代码提醒",
  5658. // s.GetDelegationInfoByID(diid).TeamName + "的机票黑屏代码中,相邻航段的三字码不连续,请查看!");
  5659. }
  5660. }
  5661. }
  5662. #endregion
  5663. #region 判断到达日期是否需要加1
  5664. if (Info[4].Contains("+"))
  5665. {
  5666. //日期+1
  5667. day = day + 1;
  5668. //判断是否进入下一月
  5669. if (day > Convert.ToInt32(GetDaysByMonth(Info[1].Substring(4, 3), year)))
  5670. {
  5671. day = day - Convert.ToInt32(GetDaysByMonth(Info[1].Substring(4, 3), year));
  5672. month = month + 1;
  5673. //判断是否进入下一年
  5674. if (month > 12)
  5675. {
  5676. month = month - 12;
  5677. year = year + 1;
  5678. }
  5679. }
  5680. //月份整理格式
  5681. string monthTemp = month.ToString();
  5682. if (month < 10)
  5683. {
  5684. monthTemp = "0" + monthTemp;
  5685. }
  5686. //日期整理格式
  5687. string daytemp = day.ToString();
  5688. if (day < 10)
  5689. {
  5690. daytemp = "0" + daytemp;
  5691. }
  5692. string temp = Info[4].Split('+')[0];
  5693. //添加起飞数据
  5694. dt.Rows.Add(Info[0],
  5695. Info[1],
  5696. Info[2],
  5697. Info[3],
  5698. temp,
  5699. Info[5],
  5700. Info[6],
  5701. Info[7],
  5702. Info[8],
  5703. year + "-" + GetLonger(Info[1].Substring(4, 3)) + "-" + Info[1].Substring(2, 2),
  5704. year + "-" + monthTemp + "-" + daytemp,
  5705. "",
  5706. "0");
  5707. //加1天,添加到达数据
  5708. dt.Rows.Add(Info[0],
  5709. Info[1].Replace(Info[1].Substring(2, 2), daytemp),
  5710. Info[2],
  5711. Info[3],
  5712. temp,
  5713. Info[5],
  5714. Info[6],
  5715. Info[7],
  5716. Info[8],
  5717. year + "-" + monthTemp + "-" + daytemp,
  5718. year + "-" + monthTemp + "-" + daytemp,
  5719. "",
  5720. "1");
  5721. }
  5722. else
  5723. {
  5724. //月份整理格式
  5725. string monthTemp = month.ToString();
  5726. if (month < 10)
  5727. {
  5728. monthTemp = "0" + monthTemp;
  5729. }
  5730. //日期整理格式
  5731. string daytemp = day.ToString();
  5732. if (day < 10)
  5733. {
  5734. daytemp = "0" + daytemp;
  5735. }
  5736. dt.Rows.Add(Info[0],
  5737. Info[1],
  5738. Info[2],
  5739. Info[3],
  5740. Info[4],
  5741. Info[5],
  5742. Info[6],
  5743. Info[7],
  5744. Info[8],
  5745. year + "-" + monthTemp + "-" + daytemp,
  5746. year + "-" + monthTemp + "-" + daytemp,
  5747. "",
  5748. "0");
  5749. }
  5750. #endregion
  5751. }
  5752. catch (Exception ex)
  5753. {
  5754. string exstr = ex.Message.ToString();
  5755. }
  5756. }
  5757. }
  5758. //排序
  5759. dt.DefaultView.Sort = "Day asc";
  5760. dt = dt.DefaultView.ToTable();
  5761. }
  5762. }
  5763. return dt;
  5764. }
  5765. /// <summary>
  5766. /// 根据团组编号查询信息
  5767. /// </summary>
  5768. /// <returns>返回空或者对象信息</returns>
  5769. List<Grp_TravelList> GetByDiid(int Diid)
  5770. {
  5771. //调用获取单个对象的方法
  5772. return _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == Diid && x.IsDel == 0).ToList();
  5773. }
  5774. /// <summary>
  5775. /// 20210816
  5776. /// 根据datatable生成某一时间段的日期
  5777. /// </summary>
  5778. /// <param name="dt">黑屏代码生成的datatable</param>
  5779. /// <returns></returns>
  5780. List<string> GetTimeListByDataTable(DataTable dt)
  5781. {
  5782. if (dt.Rows[0]["Day"].ToString() != "")
  5783. {
  5784. DateTime datestart = Convert.ToDateTime(dt.Rows[0]["Day"].ToString());
  5785. DateTime dateend = Convert.ToDateTime(dt.Rows[dt.Rows.Count - 1]["ArrivedDate"].ToString());
  5786. List<string> timeList = new List<string>();
  5787. while (datestart <= dateend)
  5788. {
  5789. timeList.Add(datestart.ToString("yyyy-MM-dd"));
  5790. datestart = datestart.AddDays(1);
  5791. }
  5792. return timeList;
  5793. }
  5794. return null;
  5795. }
  5796. /// <summary>
  5797. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  5798. /// </summary>
  5799. /// <param name="num"></param>
  5800. /// <returns></returns>
  5801. string GetNum(string num)
  5802. {
  5803. string str = "";
  5804. switch (num)
  5805. {
  5806. case "1":
  5807. str = "一";
  5808. break;
  5809. case "2":
  5810. str = "二";
  5811. break;
  5812. case "3":
  5813. str = "三";
  5814. break;
  5815. case "4":
  5816. str = "四";
  5817. break;
  5818. case "5":
  5819. str = "五";
  5820. break;
  5821. case "6":
  5822. str = "六";
  5823. break;
  5824. case "7":
  5825. str = "七";
  5826. break;
  5827. case "8":
  5828. str = "八";
  5829. break;
  5830. case "9":
  5831. str = "九";
  5832. break;
  5833. case "10":
  5834. str = "十";
  5835. break;
  5836. case "11":
  5837. str = "十一";
  5838. break;
  5839. case "12":
  5840. str = "十二";
  5841. break;
  5842. case "一":
  5843. str = "1";
  5844. break;
  5845. case "二":
  5846. str = "2";
  5847. break;
  5848. case "三":
  5849. str = "3";
  5850. break;
  5851. case "四":
  5852. str = "4";
  5853. break;
  5854. case "五":
  5855. str = "5";
  5856. break;
  5857. case "六":
  5858. str = "6";
  5859. break;
  5860. case "七":
  5861. str = "7";
  5862. break;
  5863. case "八":
  5864. str = "8";
  5865. break;
  5866. case "九":
  5867. str = "9";
  5868. break;
  5869. case "十":
  5870. str = "10";
  5871. break;
  5872. case "十一":
  5873. str = "11";
  5874. break;
  5875. case "十二":
  5876. str = "12";
  5877. break;
  5878. }
  5879. return str;
  5880. }
  5881. List<Crm_DeleClient> GetByDiidClient(int DIID)
  5882. {
  5883. return _sqlSugar.Queryable<Crm_DeleClient>().Where(x => x.DiId == DIID && x.IsDel == 0).ToList();
  5884. }
  5885. /// <summary>
  5886. /// 根据星期,月份的缩写,转换成数字或者全称
  5887. /// 根据币种中文名称返回币种代码
  5888. /// 根据数字返回机型型号【2、3开头的就是空客,比如空客320,7开头的就是波音,比如波音777】
  5889. /// 20210903贾文滔
  5890. /// </summary>
  5891. /// <param name="startDate"></param>
  5892. /// <param name="endDate"></param>
  5893. /// <returns></returns>
  5894. string GetLonger(string temp)
  5895. {
  5896. string str = "";
  5897. switch (temp.ToUpper())
  5898. {
  5899. case "美元":
  5900. str = "USD";
  5901. break;
  5902. case "日元":
  5903. str = "JPY";
  5904. break;
  5905. case "英镑":
  5906. str = "GBP";
  5907. break;
  5908. case "欧元":
  5909. str = "EUR";
  5910. break;
  5911. case "港币":
  5912. str = "HKD";
  5913. break;
  5914. case "MO":
  5915. str = "星期一";
  5916. break;
  5917. case "TU":
  5918. str = "星期二";
  5919. break;
  5920. case "WE":
  5921. str = "星期三";
  5922. break;
  5923. case "TH":
  5924. str = "星期四";
  5925. break;
  5926. case "FR":
  5927. str = "星期五";
  5928. break;
  5929. case "SA":
  5930. str = "星期六";
  5931. break;
  5932. case "SU":
  5933. str = "星期天";
  5934. break;
  5935. case "JAN":
  5936. str = "01";
  5937. break;
  5938. case "FEB":
  5939. str = "02";
  5940. break;
  5941. case "MAR":
  5942. str = "03";
  5943. break;
  5944. case "APR":
  5945. str = "04";
  5946. break;
  5947. case "MAY":
  5948. str = "05";
  5949. break;
  5950. case "JUN":
  5951. str = "06";
  5952. break;
  5953. case "JUL":
  5954. str = "07";
  5955. break;
  5956. case "AUG":
  5957. str = "08";
  5958. break;
  5959. case "SEP":
  5960. str = "09";
  5961. break;
  5962. case "OCT":
  5963. str = "10";
  5964. break;
  5965. case "NOV":
  5966. str = "11";
  5967. break;
  5968. case "DEC":
  5969. str = "12";
  5970. break;
  5971. case "MONDAY":
  5972. str = "星期一";
  5973. break;
  5974. case "TUESDAY":
  5975. str = "星期二";
  5976. break;
  5977. case "WEDNESDAY":
  5978. str = "星期三";
  5979. break;
  5980. case "THURSDAY":
  5981. str = "星期四";
  5982. break;
  5983. case "FRIDAY":
  5984. str = "星期五";
  5985. break;
  5986. case "SATURDAY":
  5987. str = "星期六";
  5988. break;
  5989. case "SUNDAY":
  5990. str = "星期日";
  5991. break;
  5992. case "01":
  5993. str = "JAN";
  5994. break;
  5995. case "02":
  5996. str = "FEB";
  5997. break;
  5998. case "03":
  5999. str = "MAR";
  6000. break;
  6001. case "04":
  6002. str = "APR";
  6003. break;
  6004. case "05":
  6005. str = "MAY";
  6006. break;
  6007. case "06":
  6008. str = "JUN";
  6009. break;
  6010. case "07":
  6011. str = "JUL";
  6012. break;
  6013. case "08":
  6014. str = "AUG";
  6015. break;
  6016. case "09":
  6017. str = "SEP";
  6018. break;
  6019. case "10":
  6020. str = "OCT";
  6021. break;
  6022. case "11":
  6023. str = "NOV";
  6024. break;
  6025. case "12":
  6026. str = "DEC";
  6027. break;
  6028. case "2":
  6029. str = "空客A";
  6030. break;
  6031. case "3":
  6032. str = "空客A";
  6033. break;
  6034. case "7":
  6035. str = "波音";
  6036. break;
  6037. }
  6038. return str;
  6039. }
  6040. /// <summary>
  6041. /// 根据月份返回天数
  6042. /// </summary>
  6043. /// <param name="temp"></param>
  6044. /// <returns></returns>
  6045. string GetDaysByMonth(string Month, int year)
  6046. {
  6047. string str = "";
  6048. //判断是否是闰年
  6049. if (DateTime.IsLeapYear(year) == false)
  6050. {
  6051. switch (Month.ToUpper())
  6052. {
  6053. case "JAN":
  6054. str = "31";
  6055. break;
  6056. case "FEB":
  6057. str = "28";
  6058. break;
  6059. case "MAR":
  6060. str = "31";
  6061. break;
  6062. case "APR":
  6063. str = "30";
  6064. break;
  6065. case "MAY":
  6066. str = "31";
  6067. break;
  6068. case "JUN":
  6069. str = "30";
  6070. break;
  6071. case "JUL":
  6072. str = "31";
  6073. break;
  6074. case "AUG":
  6075. str = "31";
  6076. break;
  6077. case "SEP":
  6078. str = "30";
  6079. break;
  6080. case "OCT":
  6081. str = "31";
  6082. break;
  6083. case "NOV":
  6084. str = "30";
  6085. break;
  6086. case "DEC":
  6087. str = "31";
  6088. break;
  6089. case "01":
  6090. str = "31";
  6091. break;
  6092. case "02":
  6093. str = "28";
  6094. break;
  6095. case "03":
  6096. str = "31";
  6097. break;
  6098. case "04":
  6099. str = "30";
  6100. break;
  6101. case "05":
  6102. str = "31";
  6103. break;
  6104. case "06":
  6105. str = "30";
  6106. break;
  6107. case "07":
  6108. str = "31";
  6109. break;
  6110. case "08":
  6111. str = "31";
  6112. break;
  6113. case "09":
  6114. str = "30";
  6115. break;
  6116. case "10":
  6117. str = "31";
  6118. break;
  6119. case "11":
  6120. str = "30";
  6121. break;
  6122. case "12":
  6123. str = "31";
  6124. break;
  6125. }
  6126. }
  6127. else
  6128. {
  6129. switch (Month.ToUpper())
  6130. {
  6131. case "JAN":
  6132. str = "31";
  6133. break;
  6134. case "FEB":
  6135. str = "29";
  6136. break;
  6137. case "MAR":
  6138. str = "31";
  6139. break;
  6140. case "APR":
  6141. str = "30";
  6142. break;
  6143. case "MAY":
  6144. str = "31";
  6145. break;
  6146. case "JUN":
  6147. str = "30";
  6148. break;
  6149. case "JUL":
  6150. str = "31";
  6151. break;
  6152. case "AUG":
  6153. str = "31";
  6154. break;
  6155. case "SEP":
  6156. str = "30";
  6157. break;
  6158. case "OCT":
  6159. str = "31";
  6160. break;
  6161. case "NOV":
  6162. str = "30";
  6163. break;
  6164. case "DEC":
  6165. str = "31";
  6166. break;
  6167. case "01":
  6168. str = "31";
  6169. break;
  6170. case "02":
  6171. str = "29";
  6172. break;
  6173. case "03":
  6174. str = "31";
  6175. break;
  6176. case "04":
  6177. str = "30";
  6178. break;
  6179. case "05":
  6180. str = "31";
  6181. break;
  6182. case "06":
  6183. str = "30";
  6184. break;
  6185. case "07":
  6186. str = "31";
  6187. break;
  6188. case "08":
  6189. str = "31";
  6190. break;
  6191. case "09":
  6192. str = "30";
  6193. break;
  6194. case "10":
  6195. str = "31";
  6196. break;
  6197. case "11":
  6198. str = "30";
  6199. break;
  6200. case "12":
  6201. str = "31";
  6202. break;
  6203. }
  6204. }
  6205. return str;
  6206. }
  6207. #endregion
  6208. #endregion
  6209. #region 团组成本
  6210. /// <summary>
  6211. /// 团组成本数据初始化
  6212. /// </summary>
  6213. /// <param name="dto"></param>
  6214. /// <returns></returns>
  6215. [HttpPost]
  6216. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6217. {
  6218. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6219. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6220. WHEN COUNT(*) >= 0 THEN 'True'
  6221. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6222. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6223. ").ToList(); //团组列表
  6224. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6225. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6226. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6227. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6228. if (groupinfoValue != null)
  6229. {
  6230. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6231. var spArr = new string[1] { countryArr };
  6232. if (countryArr.Contains("|"))
  6233. {
  6234. spArr = countryArr.Split("|");
  6235. }
  6236. else if (countryArr.Contains("、"))
  6237. {
  6238. spArr = countryArr.Split("、");
  6239. }
  6240. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6241. {
  6242. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6243. if (dbQueryCountry != null)
  6244. {
  6245. visaCountryInfoArr.Add(dbQueryCountry);
  6246. }
  6247. }
  6248. }
  6249. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6250. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6251. var create = _GroupCostRepository.
  6252. CreateGroupCostByBlackCode(dto.Diid);
  6253. if (groupCost.Count == 0 && create.Code == 0)
  6254. {
  6255. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6256. }
  6257. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6258. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6259. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6260. groupCostMap = groupCostMap.Select(x =>
  6261. {
  6262. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6263. {
  6264. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6265. }
  6266. return x;
  6267. }).ToList();
  6268. //GroupCostParameter.Add(new
  6269. // Grp_GroupCostParameter());
  6270. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6271. return Ok(JsonView(new
  6272. {
  6273. groupList,
  6274. groupInfo,
  6275. groupChecks,
  6276. groupCost = groupCostMap,
  6277. hotelNumber,
  6278. GroupCostParameter = GroupCostParameterMap,
  6279. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6280. {
  6281. x.VisaCountry,
  6282. x.VisaPrice,
  6283. x.Id,
  6284. }).ToList(),
  6285. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6286. blackCodeIsTrue = create.Code == 0 ? true : false
  6287. })) ;
  6288. }
  6289. /// <summary>
  6290. /// 团组成本信息保存
  6291. /// </summary>
  6292. /// <param name="dto"></param>
  6293. /// <returns></returns>
  6294. [HttpPost]
  6295. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6296. {
  6297. if (dto.Diid <= 0 || dto.Userid <= 0)
  6298. {
  6299. return Ok(JsonView(false));
  6300. }
  6301. JsonView jw = null;
  6302. bool isTrue = false;
  6303. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6304. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6305. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6306. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6307. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6308. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6309. try
  6310. {
  6311. _sqlSugar.BeginTran();
  6312. isTrue = await _GroupCostRepository.
  6313. SaveGroupCostList(Grp_groups, dto.Diid,dto.Userid); //列表
  6314. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6315. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6316. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6317. _sqlSugar.CommitTran();
  6318. jw = JsonView(true, "保存成功!", isTrue);
  6319. }
  6320. catch (Exception)
  6321. {
  6322. _sqlSugar.RollbackTran();
  6323. jw = JsonView(false);
  6324. }
  6325. return Ok(jw);
  6326. }
  6327. /// <summary>
  6328. /// 司兼导数据
  6329. /// </summary>
  6330. /// <param name="dto"></param>
  6331. /// <returns></returns>
  6332. [HttpPost]
  6333. public IActionResult GetCarGuides(CarGuidesDto dto)
  6334. {
  6335. JsonView jw = null;
  6336. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6337. jw = JsonView(true, "获取成功!", Data);
  6338. return Ok(jw);
  6339. }
  6340. /// <summary>
  6341. /// 导游数据
  6342. /// </summary>
  6343. /// <param name="dto"></param>
  6344. /// <returns></returns>
  6345. [HttpPost]
  6346. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6347. {
  6348. JsonView jw = null;
  6349. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6350. // 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
  6351. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6352. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6353. jw = JsonView(true, "获取成功!", Data);
  6354. return Ok(jw);
  6355. }
  6356. /// <summary>
  6357. /// 成本车数据
  6358. /// </summary>
  6359. /// <param name="dto"></param>
  6360. /// <returns></returns>
  6361. [HttpPost]
  6362. public IActionResult GetCarInfo(CarGuidesDto dto)
  6363. {
  6364. JsonView jw = null;
  6365. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6366. jw = JsonView(true, "获取成功!", Data);
  6367. return Ok(jw);
  6368. }
  6369. /// <summary>
  6370. /// 景点数据
  6371. /// </summary>
  6372. /// <param name="dto"></param>
  6373. /// <returns></returns>
  6374. [HttpPost]
  6375. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6376. {
  6377. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6378. return Ok(JsonView(true, "获取成功!", Data));
  6379. }
  6380. /// <summary>
  6381. /// 成本通知
  6382. /// </summary>
  6383. /// <param name="dto"></param>
  6384. /// <returns></returns>
  6385. [HttpPost]
  6386. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6387. {
  6388. if (dto.Diid < 0)
  6389. {
  6390. return Ok(JsonView(false));
  6391. }
  6392. JsonView jw = null;
  6393. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6394. if (GroupCostParameter != null)
  6395. {
  6396. int IsShare = 0;
  6397. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6398. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6399. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6400. string msg = string.Empty;
  6401. if (isTrue)
  6402. {
  6403. if (IsShare == 0)
  6404. {
  6405. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6406. }
  6407. else
  6408. {
  6409. #region 企微通知对应岗位用户
  6410. try
  6411. {
  6412. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6413. }
  6414. catch (Exception ex)
  6415. {
  6416. }
  6417. #endregion
  6418. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6419. }
  6420. jw = JsonView(isTrue, msg, new { IsShare });
  6421. }
  6422. else
  6423. {
  6424. msg = "修改失败!";
  6425. jw = JsonView(isTrue, msg);
  6426. }
  6427. }
  6428. else
  6429. {
  6430. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6431. }
  6432. return Ok(jw);
  6433. }
  6434. /// <summary>
  6435. /// 导出收款账单
  6436. /// </summary>
  6437. /// <param name="dto"></param>
  6438. /// <returns></returns>
  6439. [HttpPost]
  6440. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6441. {
  6442. if (dto.Diid == 0)
  6443. {
  6444. return Ok(JsonView(false, "请传递团组id"));
  6445. }
  6446. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6447. if (deleInfo.Code != 0)
  6448. {
  6449. return Ok(JsonView(false, "团组信息查询失败!"));
  6450. }
  6451. var di = deleInfo.Data as DelegationInfoWebView;
  6452. if (di != null)
  6453. {
  6454. //文件名
  6455. string strFileName = di.TeamName + "-收款账单.doc";
  6456. //获取模板
  6457. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6458. //载入模板
  6459. Document doc = new Document(tmppath);
  6460. decimal TotalPrice = 0.00M;
  6461. string itemStr = string.Empty;
  6462. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6463. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6464. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6465. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6466. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6467. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6468. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6469. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6470. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6471. foreach (var cost in groupCostType)
  6472. {
  6473. var List = cost.ToList();
  6474. if (cost.Key == "A")
  6475. {
  6476. foreach (var ListItem in List)
  6477. {
  6478. if (ListItem.number > 0)
  6479. {
  6480. if (ListItem.code.Contains("TBR"))
  6481. {
  6482. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6483. }
  6484. else
  6485. {
  6486. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6487. }
  6488. TotalPrice += (ListItem.number * ListItem.price);
  6489. }
  6490. }
  6491. }
  6492. else
  6493. {
  6494. itemStr = itemStr.Insert(0, "A段\r\n");
  6495. itemStr += "B段\r\n";
  6496. foreach (var ListItem in List)
  6497. {
  6498. if (ListItem.number > 0)
  6499. {
  6500. if (ListItem.code.Contains("TBR"))
  6501. {
  6502. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6503. }
  6504. else
  6505. {
  6506. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6507. }
  6508. TotalPrice += (ListItem.number * ListItem.price);
  6509. }
  6510. }
  6511. }
  6512. }
  6513. #region 替换Word模板书签内容
  6514. Dictionary<string, string> marks = new Dictionary<string, string>();
  6515. marks.Add("To", di.ClientUnit);//付款方
  6516. marks.Add("ToTel", di.TellPhone);//付款方电话
  6517. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6518. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6519. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6520. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6521. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6522. marks.Add("WeChat", "WeChat");//微信号 di.WeChat;
  6523. marks.Add("PayItemContent", itemStr);//详细信息
  6524. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6525. #endregion
  6526. ////注
  6527. //if (doc.Range.Bookmarks["Attention"] != null)
  6528. //{
  6529. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6530. // mark.Text = frList[0].Attention;
  6531. //}
  6532. foreach (var item in marks.Keys)
  6533. {
  6534. if (doc.Range.Bookmarks[item] != null)
  6535. {
  6536. Bookmark mark = doc.Range.Bookmarks[item];
  6537. mark.Text = marks[item];
  6538. }
  6539. }
  6540. byte[] bytes = null;
  6541. using (MemoryStream stream = new MemoryStream())
  6542. {
  6543. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6544. bytes = stream.ToArray();
  6545. }
  6546. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6547. return Ok(JsonView(true, "", new
  6548. {
  6549. Data = bytes,
  6550. strFileName,
  6551. }));
  6552. }
  6553. else
  6554. {
  6555. return Ok(JsonView(false, "团组信息不存在!"));
  6556. }
  6557. }
  6558. /// <summary>
  6559. /// 导出团组成本
  6560. /// </summary>
  6561. /// <param name="dto"></param>
  6562. /// <returns></returns>
  6563. [HttpPost]
  6564. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6565. {
  6566. var jw = JsonView(false);
  6567. if (dto.Diid == 0)
  6568. {
  6569. return Ok(JsonView(false, "请传递团组id"));
  6570. }
  6571. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6572. if (deleInfo.Code != 0)
  6573. {
  6574. return Ok(JsonView(false, "团组信息查询失败!"));
  6575. }
  6576. var di = deleInfo.Data as DelegationInfoWebView;
  6577. if (di == null)
  6578. {
  6579. return Ok(JsonView(false, "团组信息查询失败!"));
  6580. }
  6581. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6582. WorkbookDesigner designer = new WorkbookDesigner();
  6583. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6584. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6585. for (int i = 0; i < List_GC.Count; i++)
  6586. {
  6587. GroupCost_Excel gc = new GroupCost_Excel();
  6588. gc.Id = List_GC[i].Id;
  6589. gc.Diid = List_GC[i].Diid.ToString();
  6590. gc.DAY = List_GC[i].DAY;
  6591. string week = "";
  6592. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6593. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6594. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6595. gc.ITIN = List_GC[i].ITIN;
  6596. gc.CarType = List_GC[i].CarType;
  6597. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6598. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6599. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6600. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6601. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6602. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6603. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6604. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6605. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6606. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6607. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6608. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6609. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6610. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6611. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6612. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6613. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6614. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6615. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6616. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6617. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6618. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6619. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6620. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6621. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6622. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6623. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6624. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6625. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6626. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6627. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6628. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6629. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6630. List_GC1.Add(gc);
  6631. }
  6632. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6633. dt.TableName = "TB";
  6634. //报表标题等不用dt的值
  6635. designer.SetDataSource("TeamName", dto.title.TeamName);
  6636. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6637. designer.SetDataSource("Tax", dto.title.Tax);
  6638. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6639. designer.SetDataSource("Currency", dto.title.Currency);
  6640. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6641. designer.SetDataSource("Rate", dto.title.Rate);
  6642. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6643. var Aparams = hotels.Find(x => x.Type == "Default");
  6644. if (Aparams == null)
  6645. {
  6646. return Ok(jw);
  6647. }
  6648. //酒店数量
  6649. var txtSGRNumber = Aparams.SGR.ToString();
  6650. var txtTBRNumber = Aparams.TBR.ToString();
  6651. var txtJSESNumber = Aparams.JSES.ToString();
  6652. var txtSUITENumbe = Aparams.SUITE.ToString();
  6653. if (dto.costType == "B")
  6654. {
  6655. Aparams = hotels.Find(x => x.Type == "A");
  6656. var Bparams = hotels.Find(x => x.Type == "B");
  6657. if (Aparams == null || Bparams == null)
  6658. {
  6659. return Ok(jw);
  6660. }
  6661. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6662. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6663. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6664. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6665. }
  6666. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6667. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6668. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6669. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6670. var ws = designer.Workbook.Worksheets[0];
  6671. int Row = List_GC.Count;
  6672. int startIndex = 11;
  6673. int HideRows = 0;
  6674. List<int> hideRowsList = new List<int>();
  6675. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6676. #region A段left数据
  6677. var left = dto.leftInfo.Find(x => x.Type == "A");
  6678. if (left == null)
  6679. {
  6680. return Ok(jw);
  6681. }
  6682. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6683. if (leftBindData != null)
  6684. {
  6685. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6686. designer.SetDataSource("VisaRS", leftBindData.rs);
  6687. designer.SetDataSource("VisaXS", leftBindData.xs);
  6688. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6689. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6690. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6691. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6692. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6693. }
  6694. else
  6695. {
  6696. hideRowsList.Add(Row + startIndex + HideRows);
  6697. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6698. }
  6699. HideRows += 2;
  6700. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6701. if (leftBindData != null)
  6702. {
  6703. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6704. designer.SetDataSource("BXRS", leftBindData.rs);
  6705. designer.SetDataSource("BXXS", leftBindData.xs);
  6706. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6707. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6708. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6709. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6710. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6711. }
  6712. else
  6713. {
  6714. hideRowsList.Add(Row + startIndex + HideRows);
  6715. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6716. }
  6717. HideRows += 2;
  6718. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6719. if (leftBindData != null)
  6720. {
  6721. designer.SetDataSource("HSDRCB", leftBindData.cb);
  6722. designer.SetDataSource("HSRS", leftBindData.rs);
  6723. designer.SetDataSource("HSXS", leftBindData.xs);
  6724. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6725. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6726. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6727. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6728. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6729. }
  6730. else
  6731. {
  6732. hideRowsList.Add(Row + startIndex + HideRows);
  6733. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6734. }
  6735. HideRows += 2;
  6736. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  6737. if (leftBindData != null)
  6738. {
  6739. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  6740. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  6741. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  6742. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6743. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6744. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6745. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6746. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6747. }
  6748. else
  6749. {
  6750. hideRowsList.Add(Row + startIndex + HideRows);
  6751. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6752. }
  6753. HideRows += 2;
  6754. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  6755. if (leftBindData != null)
  6756. {
  6757. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  6758. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  6759. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  6760. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6761. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6762. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6763. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6764. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6765. }
  6766. else
  6767. {
  6768. hideRowsList.Add(Row + startIndex + HideRows);
  6769. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6770. }
  6771. HideRows += 2;
  6772. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  6773. if (leftBindData != null)
  6774. {
  6775. ////TBR
  6776. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  6777. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  6778. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  6779. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6780. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6781. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6782. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6783. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6784. }
  6785. else
  6786. {
  6787. hideRowsList.Add(Row + startIndex + HideRows);
  6788. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6789. }
  6790. HideRows += 2;
  6791. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  6792. if (leftBindData != null)
  6793. {
  6794. ////SGR
  6795. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  6796. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  6797. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  6798. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6799. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6800. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6801. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6802. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6803. }
  6804. else
  6805. {
  6806. hideRowsList.Add(Row + startIndex + HideRows);
  6807. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6808. }
  6809. HideRows += 2;
  6810. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  6811. if (leftBindData != null)
  6812. {
  6813. ////JS/ES
  6814. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  6815. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  6816. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  6817. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6818. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6819. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6820. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6821. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6822. }
  6823. else
  6824. {
  6825. hideRowsList.Add(Row + startIndex + HideRows);
  6826. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6827. }
  6828. HideRows += 2;
  6829. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  6830. if (leftBindData != null)
  6831. {
  6832. ////SUITE
  6833. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  6834. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  6835. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  6836. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6837. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6838. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6839. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6840. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6841. }
  6842. else
  6843. {
  6844. hideRowsList.Add(Row + startIndex + HideRows);
  6845. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6846. }
  6847. HideRows += 2;
  6848. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  6849. if (leftBindData != null)
  6850. {
  6851. designer.SetDataSource("DJDRCB", leftBindData.cb);
  6852. designer.SetDataSource("DJRS", leftBindData.rs);
  6853. designer.SetDataSource("DJXS", leftBindData.xs);
  6854. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6855. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6856. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6857. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6858. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6859. }
  6860. else
  6861. {
  6862. hideRowsList.Add(Row + startIndex + HideRows);
  6863. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6864. }
  6865. HideRows += 2;
  6866. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  6867. if (leftBindData != null)
  6868. {
  6869. designer.SetDataSource("HCPCB", leftBindData.cb);
  6870. designer.SetDataSource("HCPRS", leftBindData.rs);
  6871. designer.SetDataSource("HCPXS", leftBindData.xs);
  6872. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6873. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6874. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6875. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6876. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6877. }
  6878. else
  6879. {
  6880. hideRowsList.Add(Row + startIndex + HideRows);
  6881. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6882. }
  6883. HideRows += 2;
  6884. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  6885. if (leftBindData != null)
  6886. {
  6887. designer.SetDataSource("CPCB", leftBindData.cb);
  6888. designer.SetDataSource("CPRS", leftBindData.rs);
  6889. designer.SetDataSource("CPXS", leftBindData.xs);
  6890. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6891. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6892. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6893. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6894. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6895. }
  6896. else
  6897. {
  6898. hideRowsList.Add(Row + startIndex + HideRows);
  6899. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6900. }
  6901. HideRows += 2;
  6902. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  6903. if (leftBindData != null)
  6904. {
  6905. designer.SetDataSource("GWDRCD", leftBindData.cb);
  6906. designer.SetDataSource("GWRS", leftBindData.rs);
  6907. designer.SetDataSource("GWXS", leftBindData.xs);
  6908. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6909. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6910. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6911. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6912. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6913. }
  6914. else
  6915. {
  6916. hideRowsList.Add(Row + startIndex + HideRows);
  6917. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6918. }
  6919. HideRows += 2;
  6920. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  6921. if (leftBindData != null)
  6922. {
  6923. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  6924. designer.SetDataSource("LYJRS", leftBindData.rs);
  6925. designer.SetDataSource("LYJXS", leftBindData.xs);
  6926. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6927. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6928. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6929. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6930. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6931. }
  6932. else
  6933. {
  6934. hideRowsList.Add(Row + startIndex + HideRows);
  6935. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6936. }
  6937. #endregion
  6938. #region A段Right信息
  6939. var right = dto.rightInfo.Find(x => x.Type == "A");
  6940. if (right == null)
  6941. {
  6942. return Ok(jw);
  6943. }
  6944. HideRows += 4;
  6945. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  6946. if (rightBindData != null)
  6947. {
  6948. //经济舱 + 双人间 TBR
  6949. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  6950. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  6951. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6952. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  6953. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6954. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6955. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6956. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6957. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6958. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6959. }
  6960. else
  6961. {
  6962. hideRowsList.Add(Row + startIndex + HideRows);
  6963. }
  6964. HideRows += 2;
  6965. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  6966. if (rightBindData != null)
  6967. {
  6968. //经济舱 + 单人间 SGR
  6969. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  6970. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  6971. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6972. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  6973. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6974. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6975. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6976. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6977. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6978. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6979. }
  6980. else
  6981. {
  6982. hideRowsList.Add(Row + startIndex + HideRows);
  6983. }
  6984. HideRows += 2;
  6985. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  6986. if (rightBindData != null)
  6987. {
  6988. //公务舱 + 单人间 SGR
  6989. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  6990. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  6991. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6992. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  6993. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6994. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6995. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6996. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6997. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6998. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6999. }
  7000. else
  7001. {
  7002. hideRowsList.Add(Row + startIndex + HideRows);
  7003. }
  7004. HideRows += 2;
  7005. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7006. if (rightBindData != null)
  7007. {
  7008. //公务舱 + 小套房 JSES
  7009. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7010. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7011. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7012. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7013. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7014. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7015. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7016. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7017. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7018. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7019. }
  7020. else
  7021. {
  7022. hideRowsList.Add(Row + startIndex + HideRows);
  7023. }
  7024. HideRows += 2;
  7025. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7026. if (rightBindData != null)
  7027. {
  7028. //公务舱 + 小套房 JSES
  7029. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7030. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7031. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7032. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7033. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7034. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7035. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7036. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7037. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7038. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7039. }
  7040. else
  7041. {
  7042. hideRowsList.Add(Row + startIndex + HideRows);
  7043. }
  7044. HideRows += 2;
  7045. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7046. if (rightBindData != null)
  7047. {
  7048. //经济舱 + 大套房
  7049. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7050. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7051. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7052. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7053. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7054. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7055. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7056. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7057. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7058. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7059. }
  7060. else
  7061. {
  7062. hideRowsList.Add(Row + startIndex + HideRows);
  7063. }
  7064. #endregion
  7065. #region B段标题清空
  7066. designer.SetDataSource("CostBDRCB", "");
  7067. designer.SetDataSource("CostBRS", "");
  7068. designer.SetDataSource("CostBXS", "");
  7069. designer.SetDataSource("CostBZCB", "");
  7070. designer.SetDataSource("CostBDRBJ", "");
  7071. designer.SetDataSource("CostBZBJ", "");
  7072. designer.SetDataSource("CostBDRLR", "");
  7073. designer.SetDataSource("CostBZLR", "");
  7074. designer.SetDataSource("CostBDRCBOM", "");
  7075. designer.SetDataSource("CostBRSOM", "");
  7076. designer.SetDataSource("CostBZCBOM", "");
  7077. designer.SetDataSource("CostBDRBJOM", "");
  7078. designer.SetDataSource("CostBZBJOM", "");
  7079. designer.SetDataSource("CostBDRLROM", "");
  7080. designer.SetDataSource("CostBZLROM", "");
  7081. #endregion
  7082. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7083. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7084. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7085. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7086. designer.SetDataSource("DJName", "地接(CNY)");
  7087. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7088. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7089. designer.SetDataSource("GWName", "公务(CNY)");
  7090. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7091. designer.SetDataSource("LYJName", "零用金(CNY)");
  7092. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7093. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7094. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7095. designer.SetDataSource("BXName", "保险(CNY)");
  7096. designer.SetDataSource("VisaName", "签证(CNY)");
  7097. #region B段基本数据
  7098. if (dto.costType == "B")
  7099. {
  7100. left = dto.leftInfo.Find(x => x.Type == "B");
  7101. if (left == null)
  7102. {
  7103. return Ok(jw);
  7104. }
  7105. #region B段left数据
  7106. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7107. if (leftBindData != null)
  7108. {
  7109. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7110. designer.SetDataSource("BHSRS", leftBindData.rs);
  7111. designer.SetDataSource("BHSXS", leftBindData.xs);
  7112. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7113. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7114. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7115. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7116. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7117. }
  7118. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7119. if (leftBindData != null)
  7120. {
  7121. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7122. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7123. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7124. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7125. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7126. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7127. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7128. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7129. }
  7130. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7131. if (leftBindData != null)
  7132. {
  7133. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7134. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7135. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7136. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7137. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7138. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7139. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7140. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7141. }
  7142. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7143. if (leftBindData != null)
  7144. {
  7145. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7146. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7147. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7148. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7149. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7150. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7151. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7152. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7153. }
  7154. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7155. if (leftBindData != null)
  7156. {
  7157. designer.SetDataSource("BCPCB", leftBindData.cb);
  7158. designer.SetDataSource("BCPRS", leftBindData.rs);
  7159. designer.SetDataSource("BCPXS", leftBindData.xs);
  7160. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7161. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7162. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7163. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7164. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7165. }
  7166. //TBR
  7167. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7168. if (leftBindData != null)
  7169. {
  7170. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7171. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7172. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7173. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7174. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7175. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7176. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7177. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7178. }
  7179. //SGR
  7180. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7181. if (leftBindData != null)
  7182. {
  7183. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7184. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7185. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7186. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7187. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7188. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7189. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7190. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7191. }
  7192. //JS/ES
  7193. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7194. if (leftBindData != null)
  7195. {
  7196. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7197. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7198. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7199. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7200. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7201. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7202. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7203. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7204. }
  7205. //SUITE
  7206. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7207. if (leftBindData != null)
  7208. {
  7209. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7210. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7211. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7212. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7213. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7214. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7215. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7216. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7217. }
  7218. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7219. if (leftBindData != null)
  7220. {
  7221. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7222. designer.SetDataSource("BDJRS", leftBindData.rs);
  7223. designer.SetDataSource("BDJXS", leftBindData.xs);
  7224. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7225. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7226. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7227. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7228. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7229. }
  7230. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7231. if (leftBindData != null)
  7232. {
  7233. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7234. designer.SetDataSource("BGWRS", leftBindData.rs);
  7235. designer.SetDataSource("BGWXS", leftBindData.xs);
  7236. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7237. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7238. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7239. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7240. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7241. }
  7242. #region 优化方案
  7243. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7244. //excelBind.Add("零用金", new {
  7245. //cb="",
  7246. //rs="",
  7247. //xs ="",
  7248. //zcb = "",
  7249. //});
  7250. #endregion
  7251. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7252. if (leftBindData != null)
  7253. {
  7254. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7255. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7256. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7257. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7258. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7259. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7260. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7261. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7262. }
  7263. #endregion
  7264. #region B段Right信息
  7265. right = dto.rightInfo.Find(x => x.Type == "B");
  7266. if (right == null)
  7267. {
  7268. return Ok(jw);
  7269. }
  7270. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7271. if (rightBindData != null)
  7272. {
  7273. //经济舱 + 双人间 TBR
  7274. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7275. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7276. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7277. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7278. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7279. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7280. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7281. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7282. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7283. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7284. }
  7285. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7286. if (rightBindData != null)
  7287. {
  7288. //经济舱 + 单人间 SGR
  7289. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7290. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7291. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7292. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7293. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7294. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7295. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7296. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7297. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7298. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7299. }
  7300. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7301. if (rightBindData != null)
  7302. {
  7303. //公务舱 + 单人间 SGR
  7304. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7305. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7306. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7307. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7308. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7309. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7310. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7311. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7312. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7313. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7314. }
  7315. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7316. if (rightBindData != null)
  7317. {
  7318. //公务舱 + 小套房 JSES
  7319. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7320. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7321. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7322. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7323. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7324. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7325. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7326. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7327. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7328. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7329. }
  7330. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7331. if (rightBindData != null)
  7332. {
  7333. //公务舱 + 小套房 JSES
  7334. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7335. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7336. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7337. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7338. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7339. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7340. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7341. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7342. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7343. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7344. }
  7345. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7346. if (rightBindData != null)
  7347. {
  7348. //经济舱 + 大套房
  7349. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7350. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7351. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7352. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7353. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7354. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7355. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7356. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7357. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7358. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7359. }
  7360. #endregion
  7361. #region 标题
  7362. designer.SetDataSource("CostBDRCB", "单人成本");
  7363. designer.SetDataSource("CostBRS", "人数");
  7364. designer.SetDataSource("CostBXS", "系数");
  7365. designer.SetDataSource("CostBZCB", "总成本");
  7366. designer.SetDataSource("CostBDRBJ", "单人报价");
  7367. designer.SetDataSource("CostBZBJ", "总报价");
  7368. designer.SetDataSource("CostBDRLR", "单人利润");
  7369. designer.SetDataSource("CostBZLR", "总利润");
  7370. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7371. designer.SetDataSource("CostBRSOM", "人数");
  7372. designer.SetDataSource("CostBZCBOM", "总成本");
  7373. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7374. designer.SetDataSource("CostBZBJOM", "总报价");
  7375. designer.SetDataSource("CostBDRLROM", "单人利润");
  7376. designer.SetDataSource("CostBZLROM", "总利润");
  7377. #endregion
  7378. }
  7379. #endregion
  7380. designer.SetDataSource("TzZCB2", TzZCB2);
  7381. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7382. designer.SetDataSource("TzZLR2", TzZLR2);
  7383. string[] dataSourceKeys = new string[]
  7384. {
  7385. "VF",
  7386. "TGS",
  7387. "TGOF",
  7388. "TGM",
  7389. "TGA",
  7390. "TGTF",
  7391. "TGEF",
  7392. "CFM",
  7393. "CFOF",
  7394. "B",
  7395. "L",
  7396. "D",
  7397. "TBR",
  7398. "SGR",
  7399. "JSES",
  7400. "Suite",
  7401. "TV",
  7402. "1L",
  7403. "IF",
  7404. "EF",
  7405. "BRF",
  7406. "TE",
  7407. "TGT",
  7408. "DRVT",
  7409. "PC",
  7410. "TLF",
  7411. "ECT"
  7412. };
  7413. foreach (var item in dataSourceKeys)
  7414. {
  7415. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7416. if (find != null)
  7417. {
  7418. designer.SetDataSource(item, find.text);
  7419. }
  7420. else
  7421. {
  7422. designer.SetDataSource(item, 0);
  7423. }
  7424. }
  7425. designer.SetDataSource(dt);
  7426. //根据数据源处理生成报表内容
  7427. designer.Process();
  7428. designer.Workbook.Worksheets[0].Name = "清单";
  7429. Worksheet sheet = designer.Workbook.Worksheets[0];
  7430. foreach (var Rowindex in hideRowsList)
  7431. {
  7432. ws.Cells.HideRows(Rowindex, 2);
  7433. }
  7434. byte[] bytes = null;
  7435. string strFileName = di.TeamName + "-团组-成本.xls";
  7436. using (MemoryStream stream = new MemoryStream())
  7437. {
  7438. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7439. bytes = stream.ToArray();
  7440. }
  7441. return Ok(JsonView(true, "", new
  7442. {
  7443. Data = bytes,
  7444. strFileName,
  7445. }));
  7446. }
  7447. /// <summary>
  7448. /// 导出客户报表
  7449. /// </summary>
  7450. /// <returns></returns>
  7451. [HttpPost]
  7452. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7453. {
  7454. var jw = JsonView(false);
  7455. if (dto.Diid == 0)
  7456. {
  7457. return Ok(JsonView(false, "请传递团组id"));
  7458. }
  7459. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7460. if (deleInfo.Code != 0)
  7461. {
  7462. return Ok(JsonView(false, "团组信息查询失败!"));
  7463. }
  7464. var di = deleInfo.Data as DelegationInfoWebView;
  7465. if (di == null)
  7466. {
  7467. return Ok(JsonView(false, "团组信息查询失败!"));
  7468. }
  7469. //文件名
  7470. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7471. //获取模板
  7472. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7473. //载入模板
  7474. Document doc = new Document(tmppath);
  7475. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7476. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7477. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7478. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7479. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7480. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7481. if (AParameter == null)
  7482. {
  7483. return Ok(JsonView(false, "系数不存在!"));
  7484. }
  7485. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7486. , TzAirDesc, TzZCost;
  7487. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7488. = TzAirDesc = TzZCost = string.Empty;
  7489. TzNumber = AParameter.CostTypenumber.ToString();
  7490. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7491. CarGuides1 = dto.CarGuides1;
  7492. Meal = dto.Meal;
  7493. SubsidizedMeals = dto.SubsidizedMeals;
  7494. NightRepair = dto.NightRepair;
  7495. AttractionsTickets = dto.AttractionsTickets;
  7496. MiscellaneousFees = dto.MiscellaneousFees;
  7497. ATip = dto.ATip;
  7498. TzHotelDesc = "";
  7499. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7500. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7501. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7502. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7503. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7504. TzAirDesc = "";
  7505. TzZCost = dto.TzZCost;
  7506. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7507. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7508. var index = 1;
  7509. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7510. foreach (var item in TzHotelDescArr)
  7511. {
  7512. if (AinfoArr != null)
  7513. {
  7514. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7515. if (Ainfo != null)
  7516. {
  7517. if (int.Parse(Ainfo.rs) <= 0)
  7518. {
  7519. continue;
  7520. }
  7521. var hotelText = string.Empty;
  7522. switch (item)
  7523. {
  7524. case "SGR":
  7525. hotelText = "单人间";
  7526. break;
  7527. case "JSES":
  7528. hotelText = "小套房";
  7529. break;
  7530. case "SUITE":
  7531. hotelText = "套房";
  7532. break;
  7533. case "TBR":
  7534. hotelText = "双人间";
  7535. break;
  7536. }
  7537. if (item != "TBR")
  7538. {
  7539. 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";
  7540. }
  7541. else
  7542. {
  7543. 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";
  7544. }
  7545. index++;
  7546. }
  7547. }
  7548. }
  7549. index = 1;
  7550. foreach (var item in TzAirDescArr)
  7551. {
  7552. if (AinfoArr != null)
  7553. {
  7554. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7555. if (Ainfo != null)
  7556. {
  7557. if (int.Parse(Ainfo.rs) <= 0)
  7558. {
  7559. continue;
  7560. }
  7561. 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";
  7562. index++;
  7563. }
  7564. }
  7565. }
  7566. if (dto.costType == "B")
  7567. {
  7568. if (BParameter == null)
  7569. {
  7570. return Ok(JsonView(false, "B段系数不存在!"));
  7571. }
  7572. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7573. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7574. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7575. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7576. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7577. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7578. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7579. foreach (var item in TzHotelDescArr)
  7580. {
  7581. if (AinfoArr != null)
  7582. {
  7583. TzHotelDesc += "B段信息 \r\n";
  7584. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7585. if (Ainfo != null)
  7586. {
  7587. if (int.Parse(Ainfo.rs) <= 0)
  7588. {
  7589. continue;
  7590. }
  7591. var hotelText = string.Empty;
  7592. switch (item)
  7593. {
  7594. case "SGR":
  7595. hotelText = "单人间";
  7596. break;
  7597. case "JSES":
  7598. hotelText = "小套房";
  7599. break;
  7600. case "SUITE":
  7601. hotelText = "套房";
  7602. break;
  7603. case "TBR":
  7604. hotelText = "双人间";
  7605. break;
  7606. }
  7607. if (item != "TBR")
  7608. {
  7609. 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";
  7610. }
  7611. else
  7612. {
  7613. 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";
  7614. }
  7615. index++;
  7616. }
  7617. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7618. }
  7619. }
  7620. index = 1;
  7621. foreach (var item in TzAirDescArr)
  7622. {
  7623. if (AinfoArr != null)
  7624. {
  7625. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7626. if (Ainfo != null)
  7627. {
  7628. if (int.Parse(Ainfo.rs) <= 0)
  7629. {
  7630. continue;
  7631. }
  7632. 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";
  7633. index++;
  7634. }
  7635. }
  7636. }
  7637. }
  7638. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7639. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7640. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7641. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7642. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7643. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7644. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7645. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7646. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7647. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7648. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7649. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7650. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7651. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7652. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7653. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7654. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7655. DickeyValue.Add("TzZCost", TzZCost);
  7656. foreach (var key in DickeyValue.Keys)
  7657. {
  7658. if (doc.Range.Bookmarks[key] != null)
  7659. {
  7660. Bookmark mark = doc.Range.Bookmarks[key];
  7661. mark.Text = DickeyValue[key];
  7662. }
  7663. }
  7664. byte[] bytes = null;
  7665. string strFileName = di.TeamName + "-客户报价.doc";
  7666. using (MemoryStream stream = new MemoryStream())
  7667. {
  7668. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7669. bytes = stream.ToArray();
  7670. }
  7671. return Ok(JsonView(true, "", new
  7672. {
  7673. Data = bytes,
  7674. strFileName,
  7675. }));
  7676. }
  7677. /// <summary>
  7678. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7679. /// </summary>
  7680. /// <param name="dto"></param>
  7681. /// <returns></returns>
  7682. [HttpPost]
  7683. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7684. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7685. {
  7686. try
  7687. {
  7688. #region 参数验证
  7689. if (dto.DiId < 0)
  7690. {
  7691. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7692. }
  7693. List<int> cTableIds = new List<int>() {
  7694. 76 ,//酒店预订
  7695. 77 ,//行程
  7696. 79 ,//车/导游地接
  7697. 80 ,//签证
  7698. 81 ,//邀请/公务活
  7699. 82 ,//团组客户保险
  7700. 85 ,//机票预订
  7701. 98 ,//其他款项
  7702. 285 ,//收款退还
  7703. 751 ,//酒店早餐
  7704. 1015 // 超支费用
  7705. };
  7706. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7707. {
  7708. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7709. }
  7710. #endregion
  7711. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7712. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7713. if (_GroupCostParameters.Count <= 0)
  7714. {
  7715. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7716. }
  7717. if (_GroupCostParameters[0].IsShare == 0)
  7718. {
  7719. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7720. }
  7721. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7722. //处理date为空问题
  7723. if (_GroupCosts.Count > 0)
  7724. {
  7725. for (int i = 0; i < _GroupCosts.Count; i++)
  7726. {
  7727. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  7728. {
  7729. if (i > 0)
  7730. {
  7731. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  7732. }
  7733. }
  7734. }
  7735. }
  7736. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  7737. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  7738. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  7739. string currCode = "";
  7740. #region currCode 验证
  7741. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  7742. if (isInt)
  7743. {
  7744. var currData = currDatas.Find(it => it.Id == intCurrency);
  7745. if (currData != null)
  7746. {
  7747. currCode = currData.Name;
  7748. }
  7749. }
  7750. else
  7751. {
  7752. currCode = _GroupCostParameters[0].Currency.Trim();
  7753. }
  7754. #endregion
  7755. //op,酒店单段模式存储
  7756. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  7757. {
  7758. CurrencyCode = currCode,
  7759. Rate = _GroupCostParameters[0].Rate,
  7760. CostType = _GroupCostParameters[0].CostType,
  7761. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  7762. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  7763. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  7764. };
  7765. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  7766. if (_GroupCostParameters.Count == 2)
  7767. {
  7768. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  7769. }
  7770. foreach (var item in _GroupCostParameters)
  7771. {
  7772. decimal _rate = 1;
  7773. decimal _rate1 = item.Rate;
  7774. decimal _scale = 1;
  7775. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  7776. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  7777. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  7778. //if (userInfo != null)
  7779. //{
  7780. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  7781. // {
  7782. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  7783. // {
  7784. // _scale = 1.00M;
  7785. // }
  7786. // }
  7787. //}
  7788. #endregion
  7789. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  7790. {
  7791. CurrencyCode = currCode,
  7792. Rate = _rate1,
  7793. CostType = item.CostType,
  7794. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  7795. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  7796. CostTypeNumber = item.CostTypenumber
  7797. };
  7798. if (_GroupCostParameters.Count > 1)
  7799. {
  7800. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  7801. }
  7802. else
  7803. {
  7804. modulePromptInfo.CostTypeNumber = item.LYJRS;
  7805. }
  7806. if (dto.CTable == 79)//
  7807. {
  7808. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  7809. modulePromptInfo.TotalCost = item.DJCB;
  7810. }
  7811. List<string> costTypes = new List<string>() { "A", "B" };
  7812. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  7813. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  7814. if (_GroupCostsDuplicates.Count() == 1)
  7815. {
  7816. _GroupCostsTypeData = _GroupCosts;
  7817. }
  7818. else
  7819. {
  7820. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  7821. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  7822. }
  7823. /*
  7824. * 76 酒店预订
  7825. * 77 行程
  7826. * 79 车/导游地接
  7827. * 80 签证
  7828. * 81 邀请/公务活动
  7829. * 82 团组客户保险
  7830. * 85 机票预订
  7831. * 98 其他款项
  7832. * 285 收款退还
  7833. * 751 酒店早餐
  7834. * 1015 超支费用
  7835. */
  7836. switch (dto.CTable)
  7837. {
  7838. case 76: // 酒店预订
  7839. _ModuleSubPromptInfo.AddRange(
  7840. _GroupCostsTypeData.Select(it => new
  7841. {
  7842. it.DAY,
  7843. it.Date,
  7844. it.ACCON,
  7845. it.ITIN,
  7846. it.SGR,
  7847. it.TBR,
  7848. it.JS_ES,
  7849. it.Suite
  7850. })
  7851. );
  7852. break;
  7853. case 79: // 车/导游地接
  7854. _ModuleSubPromptInfo.AddRange(
  7855. _GroupCostsTypeData.Select(it => new
  7856. {
  7857. Date = it.Date, //日期
  7858. CarFee = (it.CarCost + it.CFM + it.CFOF) * _rate * _scale, //车费用
  7859. GuideFee = (it.TGS + it.TGOF + it.TGM + it.TGA + it.TGTF + it.TGEF) * _rate * _scale, //导游费用
  7860. MealFee = (it.B + it.L + it.D) * _rate * _scale, //餐食费
  7861. TicketFee = it.EF * _rate * _scale, //门票费
  7862. TipFee = (it.TGTips + it.DRVTips) * _rate * _scale, //小费
  7863. AirportTransferFee = 0.00M,
  7864. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  7865. TravelSupplies = it.TE * _rate * _scale, //出行物资
  7866. LeadersFee = it.TLF * _rate * _scale, //领队费
  7867. CarFee1 = it.CarCost * _rate * _scale,
  7868. CarType = it.CarType, //车型
  7869. SpentCash = it.PC * _rate * _scale, //零用金
  7870. })
  7871. );
  7872. break;
  7873. case 85: // 机票
  7874. List<dynamic> datas = new List<dynamic>();
  7875. datas.Add(
  7876. new
  7877. {
  7878. AirType = "经济舱",
  7879. AirNum = item.JJCRS,
  7880. AirDRCB = item.JJCCB,
  7881. AirZCB = (item.JJCRS * item.JJCCB)
  7882. }
  7883. );
  7884. datas.Add(
  7885. new
  7886. {
  7887. AirType = "公务舱",
  7888. AirNum = item.GWCRS,
  7889. AirDRCB = item.GWCCB,
  7890. AirZCB = (item.GWCRS * item.GWCCB)
  7891. }
  7892. );
  7893. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7894. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  7895. modulePromptInfo.Data = new {
  7896. airFeeData = datas,
  7897. airInitData = initDatas
  7898. };
  7899. _ModulePromptInfos.Add(modulePromptInfo);
  7900. break;
  7901. default:
  7902. break;
  7903. }
  7904. }
  7905. if (dto.CTable != 85)
  7906. {
  7907. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  7908. _ModulePromptInfos.Add(_ModulePromptInfo);
  7909. }
  7910. _view.ModulePromptInfos = _ModulePromptInfos;
  7911. return Ok(JsonView(true, "操作成功!", _view));
  7912. }
  7913. catch (Exception ex)
  7914. {
  7915. return Ok(JsonView(false, ex.Message));
  7916. }
  7917. }
  7918. /// <summary>
  7919. /// 根据黑屏代码重新生成行程
  7920. /// </summary>
  7921. /// <param name="dto"></param>
  7922. /// <returns></returns>
  7923. [HttpPost]
  7924. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  7925. {
  7926. var jw = JsonView(false);
  7927. var Create =_GroupCostRepository.
  7928. CreateGroupCostByBlackCode(dto.Diid);
  7929. jw.Msg = Create.Msg;
  7930. if (Create.Code == 0)
  7931. {
  7932. jw.Code = 200;
  7933. jw.Data = new
  7934. {
  7935. groupCost = Create.Data,
  7936. blackCodeIsTrue = true
  7937. };
  7938. }
  7939. else
  7940. {
  7941. jw.Code = 400;
  7942. jw.Data = new
  7943. {
  7944. groupCost = Create.Data,
  7945. blackCodeIsTrue = false,
  7946. };
  7947. }
  7948. return Ok(jw);
  7949. }
  7950. /// <summary>
  7951. /// 成本获取OP历史车费用
  7952. /// </summary>
  7953. /// <param name="dto"></param>
  7954. /// <returns></returns>
  7955. [HttpPost]
  7956. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  7957. {
  7958. var jw = JsonView(false);
  7959. try
  7960. {
  7961. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  7962. //获取现有所有车的数据
  7963. if (!dto.Param.IsNullOrWhiteSpace())
  7964. {
  7965. string sql = $@"
  7966. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  7967. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  7968. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  7969. 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
  7970. AND gctggr.ServiceEndTime is not NULL
  7971. ORDER by gctggrc.id DESC
  7972. ";
  7973. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  7974. var numeberResult = await Task.Run(() =>
  7975. {
  7976. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  7977. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  7978. return numberArr;
  7979. });
  7980. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  7981. foreach (var item in numeberResult)
  7982. {
  7983. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  7984. {
  7985. Country = "数据异常!",
  7986. City = string.Empty,
  7987. };
  7988. item.Area = find.Country + " " + find.City;
  7989. }
  7990. dbResult.AddRange(numeberResult);
  7991. if (dto.Param.Contains("、"))
  7992. {
  7993. var sp = dto.Param.Split("、");
  7994. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  7995. .Where(x =>
  7996. {
  7997. return System.Array.Exists(sp, e =>
  7998. {
  7999. bool where = false;
  8000. if (x.Area != null)
  8001. {
  8002. where = x.Area.Contains(e);
  8003. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8004. {
  8005. return false;
  8006. }
  8007. }
  8008. if (x.PriceName != null && !where)
  8009. {
  8010. where = x.PriceName.Contains(e);
  8011. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8012. {
  8013. return false;
  8014. }
  8015. }
  8016. return where;
  8017. });
  8018. }).ToList();
  8019. }
  8020. else
  8021. {
  8022. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8023. .Where(x =>
  8024. {
  8025. bool where = false;
  8026. if (x.Area != null)
  8027. {
  8028. where = x.Area.Contains(dto.Param);
  8029. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8030. {
  8031. return false;
  8032. }
  8033. }
  8034. if (x.PriceName != null && !where)
  8035. {
  8036. where = x.PriceName.Contains(dto.Param);
  8037. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8038. {
  8039. return false;
  8040. }
  8041. }
  8042. return where;
  8043. }
  8044. )
  8045. .ToList();
  8046. }
  8047. }
  8048. var view = dbResult.Select(x => {
  8049. decimal dp = 0.00M;
  8050. var startB = DateTime.TryParse(x.Start.ToString(),out DateTime startD);
  8051. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8052. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8053. {
  8054. if (startB && endB)
  8055. {
  8056. var timesp = endD.Subtract(startD);
  8057. if ((timesp.Days + 1) != 0 )
  8058. {
  8059. dp = x.Price / (timesp.Days + 1);
  8060. }
  8061. }
  8062. }
  8063. else
  8064. {
  8065. dp = x.Price;
  8066. }
  8067. return new
  8068. {
  8069. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8070. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8071. x.Area,
  8072. x.id,
  8073. price = x.Price.ToString("F2"),
  8074. x.PriceName,
  8075. x.PriceContent,
  8076. x.TeamName,
  8077. x.DatePrice,
  8078. dayPrice = dp.ToString("F2"),
  8079. };
  8080. }).OrderByDescending(x=>x.id).ToList();
  8081. jw = JsonView(true, "获取成功!", view);
  8082. }
  8083. catch (Exception e)
  8084. {
  8085. jw = JsonView(false,e.Message);
  8086. }
  8087. return Ok(jw);
  8088. }
  8089. #endregion
  8090. #region 酒店预定 保留
  8091. /// <summary>
  8092. /// 酒店预订页面初始化绑定
  8093. /// </summary>
  8094. /// <param name="dto"></param>
  8095. /// <returns></returns>
  8096. [HttpPost]
  8097. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8098. public async Task<IActionResult> HotelReservationsInitialize(HotelReservationsDto dto)
  8099. {
  8100. try
  8101. {
  8102. Result groupData = await _hotelPriceRep.HotelReservationsInitialize(dto);
  8103. if (groupData.Code != 0)
  8104. {
  8105. return Ok(JsonView(false, groupData.Msg));
  8106. }
  8107. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8108. }
  8109. catch (Exception ex)
  8110. {
  8111. return Ok(JsonView(false, ex.Message));
  8112. }
  8113. }
  8114. /// <summary>
  8115. /// 根据团组Id查询酒店费用列表
  8116. /// </summary>
  8117. /// <param name="dto"></param>
  8118. /// <returns></returns>
  8119. [HttpPost]
  8120. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8121. public async Task<IActionResult> HotelReservationsByDiId(HotelReservationsByDiIdDto dto)
  8122. {
  8123. try
  8124. {
  8125. Result groupData = await _hotelPriceRep.HotelReservationsByDiId(dto);
  8126. if (groupData.Code != 0)
  8127. {
  8128. return Ok(JsonView(false, groupData.Msg));
  8129. }
  8130. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8131. }
  8132. catch (Exception ex)
  8133. {
  8134. return Ok(JsonView(false, ex.Message));
  8135. }
  8136. }
  8137. /// <summary>
  8138. /// 根据酒店费用Id查询酒店费用详细
  8139. /// </summary>
  8140. /// <param name="dto"></param>
  8141. /// <returns></returns>
  8142. [HttpPost]
  8143. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8144. public async Task<IActionResult> HotelReservationsById(HotelReservationsByIdDto dto)
  8145. {
  8146. try
  8147. {
  8148. Result groupData = await _hotelPriceRep.HotelReservationsById(dto);
  8149. if (groupData.Code != 0)
  8150. {
  8151. return Ok(JsonView(false, groupData.Msg));
  8152. }
  8153. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8154. }
  8155. catch (Exception ex)
  8156. {
  8157. return Ok(JsonView(false, ex.Message));
  8158. }
  8159. }
  8160. /// <summary>
  8161. /// 计算酒店付款总金额
  8162. /// </summary>
  8163. /// <param name="dto"></param>
  8164. /// <returns></returns>
  8165. [HttpPost]
  8166. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8167. public async Task<IActionResult> HotelConversionAmounts(HotelReservationsCNYDto dto)
  8168. {
  8169. try
  8170. {
  8171. Result groupData = await _hotelPriceRep.HotelConversionAmounts(dto);
  8172. if (groupData.Code != 0)
  8173. {
  8174. return Ok(JsonView(false, groupData.Msg));
  8175. }
  8176. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8177. }
  8178. catch (Exception ex)
  8179. {
  8180. return Ok(JsonView(false, ex.Message));
  8181. }
  8182. }
  8183. /// <summary>
  8184. /// 酒店费用操作(Status:1.新增,2.修改)
  8185. /// </summary>
  8186. /// <param name="dto"></param>
  8187. /// <returns></returns>
  8188. [HttpPost]
  8189. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8190. public async Task<IActionResult> OpHotelReservations(OpHotelReservationsData dto)
  8191. {
  8192. try
  8193. {
  8194. Result groupData = await _hotelPriceRep.OpHotelReservations(dto);
  8195. if (groupData.Code != 0)
  8196. {
  8197. return Ok(JsonView(false, groupData.Msg));
  8198. }
  8199. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8200. }
  8201. catch (Exception ex)
  8202. {
  8203. return Ok(JsonView(false, ex.Message));
  8204. }
  8205. }
  8206. /// <summary>
  8207. /// 文件上传
  8208. /// </summary>
  8209. /// <param name="file"></param>
  8210. /// <returns></returns>
  8211. [HttpPost]
  8212. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8213. public async Task<IActionResult> UploadHotel(IFormFile file)
  8214. {
  8215. try
  8216. {
  8217. if (file != null)
  8218. {
  8219. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  8220. //文件名称
  8221. string projectFileName = file.FileName;
  8222. //上传的文件的路径
  8223. string filePath = "";
  8224. if (!Directory.Exists(fileDir))
  8225. {
  8226. Directory.CreateDirectory(fileDir);
  8227. }
  8228. //上传的文件的路径
  8229. filePath = fileDir + $@"\酒店费用录入相关文件\{projectFileName}";
  8230. using (FileStream fs = System.IO.File.Create(filePath))
  8231. {
  8232. file.CopyTo(fs);
  8233. fs.Flush();
  8234. }
  8235. return Ok(JsonView(true, "上传成功!", projectFileName));
  8236. }
  8237. else
  8238. {
  8239. return Ok(JsonView(false, "上传失败!"));
  8240. }
  8241. }
  8242. catch (Exception ex)
  8243. {
  8244. return Ok(JsonView(false, "程序错误!"));
  8245. throw;
  8246. }
  8247. }
  8248. /// <summary>
  8249. /// 删除指定文件
  8250. /// </summary>
  8251. /// <param name="dto"></param>
  8252. /// <returns></returns>
  8253. [HttpPost]
  8254. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8255. public async Task<IActionResult> DelFileHotel(DelFileDto dto)
  8256. {
  8257. try
  8258. {
  8259. string filePath = "";
  8260. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  8261. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  8262. //int id = 0;
  8263. filePath = fileDir + "/酒店费用录入相关文件/" + dto.fileName;
  8264. // 删除该文件
  8265. try
  8266. {
  8267. System.IO.File.Delete(filePath);
  8268. var result = await _sqlSugar.Updateable<Grp_HotelReservations>().Where(a => a.Id == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_HotelReservations()
  8269. {
  8270. Attachment = "",
  8271. }).ExecuteCommandAsync();
  8272. if (result != 0)
  8273. {
  8274. return Ok(JsonView(true, "成功!"));
  8275. }
  8276. else
  8277. {
  8278. return Ok(JsonView(false, "失败!"));
  8279. }
  8280. }
  8281. catch (Exception)
  8282. {
  8283. var result = await _sqlSugar.Updateable<Grp_HotelReservations>().Where(a => a.Id == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_HotelReservations()
  8284. {
  8285. Attachment = "",
  8286. }).ExecuteCommandAsync();
  8287. if (result != 0)
  8288. {
  8289. return Ok(JsonView(true, "成功!"));
  8290. }
  8291. else
  8292. {
  8293. return Ok(JsonView(false, "失败!"));
  8294. }
  8295. throw;
  8296. }
  8297. }
  8298. catch (Exception ex)
  8299. {
  8300. return Ok(JsonView(false, "程序错误!"));
  8301. throw;
  8302. }
  8303. }
  8304. /// <summary>
  8305. /// 生成VOUCHER
  8306. /// </summary>
  8307. /// <param name="dto"></param>
  8308. /// <returns></returns>
  8309. [HttpPost]
  8310. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8311. public async Task<IActionResult> HotelGenerate(HotelReservationsByIdDto dto)
  8312. {
  8313. Grp_HotelReservations h = _sqlSugar.Queryable<Grp_HotelReservations>().First(a => a.Id == dto.Id && a.IsDel == 0);
  8314. //判断数据是否完整
  8315. if (h != null)
  8316. {
  8317. if (!string.IsNullOrEmpty(h.DetermineNo))
  8318. {
  8319. string strFileName = "HotelStatement/";
  8320. Grp_DelegationInfo dele = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == h.DiId && a.IsDel == 0);
  8321. if (dele != null)
  8322. strFileName += dele.TourCode;
  8323. //载入模板
  8324. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8325. Document doc = new Document(sss);
  8326. DocumentBuilder builder = new DocumentBuilder(doc);
  8327. try
  8328. {
  8329. #region 替换Word模板书签内容
  8330. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8331. //入住卷预定号码
  8332. if (doc.Range.Bookmarks["VNO"] != null)
  8333. {
  8334. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8335. mark.Text = h.CheckNumber;
  8336. }
  8337. //酒店时间
  8338. if (doc.Range.Bookmarks["Date"] != null)
  8339. {
  8340. Bookmark mark = doc.Range.Bookmarks["Date"];
  8341. mark.Text = Convert.ToDateTime(h.CreateTime).ToString("yyyy-MM-dd");
  8342. }
  8343. //团号
  8344. if (doc.Range.Bookmarks["TNo"] != null)
  8345. {
  8346. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8347. mark.Text = dele.TourCode;
  8348. }
  8349. //预定号码
  8350. if (doc.Range.Bookmarks["BookingId"] != null)
  8351. {
  8352. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8353. mark.Text = h.ReservationsNo;
  8354. }
  8355. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8356. {
  8357. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8358. mark.Text = h.DetermineNo;
  8359. }
  8360. //酒店城市
  8361. if (doc.Range.Bookmarks["City"] != null)
  8362. {
  8363. Bookmark mark = doc.Range.Bookmarks["City"];
  8364. mark.Text = h.City;
  8365. }
  8366. //酒店名称
  8367. if (doc.Range.Bookmarks["HName"] != null)
  8368. {
  8369. Bookmark mark = doc.Range.Bookmarks["HName"];
  8370. mark.Text = h.HotelName;
  8371. }
  8372. //酒店地址
  8373. if (doc.Range.Bookmarks["Address"] != null)
  8374. {
  8375. Bookmark mark = doc.Range.Bookmarks["Address"];
  8376. mark.Text = h.HotelAddress;
  8377. }
  8378. //酒店电话
  8379. if (doc.Range.Bookmarks["Tel"] != null)
  8380. {
  8381. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8382. mark.Text = h.HotelTel;
  8383. }
  8384. //酒店传真
  8385. if (doc.Range.Bookmarks["Fax"] != null)
  8386. {
  8387. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8388. if (!string.IsNullOrWhiteSpace(h.HotelFax))
  8389. {
  8390. mark.Text = h.HotelFax;
  8391. }
  8392. }
  8393. //入住时间
  8394. if (doc.Range.Bookmarks["CIn"] != null)
  8395. {
  8396. DateTime dtCheckIn = Convert.ToDateTime(h.CheckInDate);
  8397. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8398. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8399. }
  8400. //退房时间
  8401. if (doc.Range.Bookmarks["COut"] != null)
  8402. {
  8403. DateTime dtCheckOut = Convert.ToDateTime(h.CheckOutDate);
  8404. Bookmark mark = doc.Range.Bookmarks["COut"];
  8405. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8406. }
  8407. //客户名称
  8408. if (doc.Range.Bookmarks["GName"] != null)
  8409. {
  8410. Bookmark mark = doc.Range.Bookmarks["GName"];
  8411. mark.Text = h.GuestName;
  8412. }
  8413. //房间介绍
  8414. if (doc.Range.Bookmarks["ROOM"] != null)
  8415. {
  8416. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8417. mark.Text = h.RoomExplanation;
  8418. }
  8419. //报价描述
  8420. if (doc.Range.Bookmarks["NOTE"] != null)
  8421. {
  8422. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8423. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == h.ReservationsWebsite);
  8424. if (ss != null)
  8425. mark.Text = ss.Name;
  8426. }
  8427. //入住时间
  8428. if (doc.Range.Bookmarks["CheckIn"] != null)
  8429. {
  8430. DateTime dtCheckIn = Convert.ToDateTime(h.CheckInDate);
  8431. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8432. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8433. }
  8434. //退房时间
  8435. if (doc.Range.Bookmarks["CheckOut"] != null)
  8436. {
  8437. DateTime dtCheckOut = Convert.ToDateTime(h.CheckOutDate);
  8438. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8439. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8440. }
  8441. //日期
  8442. if (doc.Range.Bookmarks["DT"] != null)
  8443. {
  8444. Bookmark mark = doc.Range.Bookmarks["DT"];
  8445. mark.Text = Convert.ToDateTime(h.CreateTime).ToString("yyyy-MM-dd");
  8446. }
  8447. //名称
  8448. if (doc.Range.Bookmarks["VName"] != null)
  8449. {
  8450. Bookmark mark = doc.Range.Bookmarks["VName"];
  8451. mark.Text = h.HotelName;
  8452. }
  8453. //号码
  8454. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8455. {
  8456. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8457. mark.Text = h.CheckNumber;
  8458. }
  8459. #endregion
  8460. //string fileName = "HotelStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx";
  8461. strFileName += "VOUCHER.doc";
  8462. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8463. doc.Save(fileDir);
  8464. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8465. return Ok(JsonView(true, "成功!", Url));
  8466. }
  8467. catch (Exception ex)
  8468. {
  8469. throw;
  8470. }
  8471. }
  8472. else
  8473. {
  8474. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8475. }
  8476. }
  8477. else
  8478. {
  8479. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8480. }
  8481. }
  8482. /// <summary>
  8483. /// 导出确认单
  8484. /// </summary>
  8485. /// <param name=""></param>
  8486. /// <returns></returns>
  8487. [HttpPost]
  8488. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8489. public async Task<IActionResult> ConfirmWord(HotelReservationsByIdDto dto)
  8490. {
  8491. //团组信息
  8492. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == dto.Id);
  8493. //酒店数据
  8494. List<Grp_HotelReservations> listhoteldata = _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == dto.Id && a.IsDel == 0).ToList();
  8495. //利datatable存储
  8496. DataTable dt = new DataTable();
  8497. dt.Columns.Add("CheckInDate", typeof(string));
  8498. dt.Columns.Add("City", typeof(string));
  8499. dt.Columns.Add("Hotel", typeof(string));
  8500. dt.Columns.Add("Room", typeof(string));
  8501. for (int i = 0; i < listhoteldata.Count; i++)
  8502. {
  8503. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  8504. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  8505. while (dayStart < dayEnd)
  8506. {
  8507. string temp = "";
  8508. DataRow row = dt.NewRow();
  8509. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  8510. row["City"] = listhoteldata[i].City;
  8511. row["Hotel"] = listhoteldata[i].HotelName;
  8512. if (listhoteldata[i].SingleRoomCount > 0)
  8513. {
  8514. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  8515. }
  8516. if (listhoteldata[i].DoubleRoomCount > 0)
  8517. {
  8518. temp = temp + listhoteldata[i].DoubleRoomCount + "个表间" + "\r\n";
  8519. }
  8520. if (listhoteldata[i].SuiteRoomCount > 0)
  8521. {
  8522. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  8523. }
  8524. if (listhoteldata[i].OtherRoomCount > 0)
  8525. {
  8526. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  8527. }
  8528. row["Room"] = temp;
  8529. dt.Rows.Add(row);
  8530. dayStart = dayStart.AddDays(1);
  8531. }
  8532. }
  8533. Dictionary<string, string> dic = new Dictionary<string, string>();
  8534. dic.Add("Dele", di.TeamName);
  8535. dic.Add("City", di.VisitCountry);
  8536. //模板路径
  8537. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  8538. //载入模板
  8539. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  8540. DocumentBuilder builder = new DocumentBuilder(doc);
  8541. foreach (var key in dic.Keys)
  8542. {
  8543. builder.MoveToBookmark(key);
  8544. builder.Write(dic[key]);
  8545. }
  8546. //获取word里所有表格
  8547. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8548. //获取所填表格的序数
  8549. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  8550. var rowStart = tableOne.Rows[0]; //获取第1行
  8551. try
  8552. {
  8553. //循环赋值
  8554. for (int i = 0; i < dt.Rows.Count; i++)
  8555. {
  8556. builder.MoveToCell(0, i + 1, 0, 0);
  8557. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  8558. builder.MoveToCell(0, i + 1, 1, 0);
  8559. builder.Write(dt.Rows[i]["City"].ToString());
  8560. builder.MoveToCell(0, i + 1, 2, 0);
  8561. builder.Write(dt.Rows[i]["Hotel"].ToString());
  8562. builder.MoveToCell(0, i + 1, 3, 0);
  8563. builder.Write(dt.Rows[i]["Room"].ToString());
  8564. }
  8565. }
  8566. catch
  8567. {
  8568. }
  8569. //删除多余行
  8570. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  8571. {
  8572. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  8573. }
  8574. string strFileName = di.TeamName + "酒店确认单.doc";
  8575. try
  8576. {
  8577. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  8578. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  8579. return Ok(JsonView(true, "成功", Url));
  8580. }
  8581. catch (Exception)
  8582. {
  8583. return Ok(JsonView(false, "当前文档已打开,请先关闭!"));
  8584. throw;
  8585. }
  8586. }
  8587. /// <summary>
  8588. /// 酒店费用删除
  8589. /// </summary>
  8590. /// <param name="dto"></param>
  8591. /// <returns></returns>
  8592. [HttpPost]
  8593. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8594. public async Task<IActionResult> DelHotelPrice(DelBaseDto dto)
  8595. {
  8596. try
  8597. {
  8598. var res = await _hotelPriceRep.SoftDeleteByIdAsync<Grp_HotelReservations>(dto.Id.ToString(), dto.DeleteUserId);
  8599. if (!res)
  8600. {
  8601. return Ok(JsonView(false, "删除失败"));
  8602. }
  8603. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 76).SetColumns(a => new Grp_CreditCardPayment()
  8604. {
  8605. IsDel = 1,
  8606. DeleteUserId = dto.DeleteUserId,
  8607. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  8608. }).ExecuteCommandAsync();
  8609. return Ok(JsonView(true, "删除成功!"));
  8610. }
  8611. catch (Exception ex)
  8612. {
  8613. return Ok(JsonView(false, "程序错误!"));
  8614. throw;
  8615. }
  8616. }
  8617. #endregion
  8618. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8619. /// <summary>
  8620. /// 酒店预订
  8621. /// 酒店费用列表 根据团组Id查询
  8622. /// </summary>
  8623. /// <param name="_dto"></param>
  8624. /// <returns></returns>
  8625. [HttpPost]
  8626. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8627. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8628. {
  8629. try
  8630. {
  8631. #region 参数验证
  8632. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8633. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8634. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8635. #region 团组操作权限验证 76 酒店预定模块
  8636. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8637. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8638. #endregion
  8639. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8640. #region 页面操作权限验证
  8641. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8642. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8643. #endregion
  8644. #endregion
  8645. Result _view = await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId);
  8646. if (_view.Code != 0)
  8647. {
  8648. return Ok(JsonView(false, _view.Msg));
  8649. }
  8650. return Ok(JsonView(true, _view.Msg, _view.Data));
  8651. }
  8652. catch (Exception ex)
  8653. {
  8654. return Ok(JsonView(false, ex.Message));
  8655. }
  8656. }
  8657. /// <summary>
  8658. /// 酒店预订
  8659. /// 基础数据
  8660. /// </summary>
  8661. /// <param name="_dto"></param>
  8662. /// <returns></returns>
  8663. [HttpPost]
  8664. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8665. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8666. {
  8667. try
  8668. {
  8669. #region 参数验证
  8670. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8671. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8672. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8673. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8674. #region 页面操作权限验证
  8675. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8676. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8677. #endregion
  8678. #region 团组操作权限验证 76 酒店预定模块
  8679. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8680. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8681. #endregion
  8682. #endregion
  8683. Result data = await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId);
  8684. if (data.Code != 0)
  8685. {
  8686. return Ok(JsonView(false, data.Msg));
  8687. }
  8688. return Ok(JsonView(true, data.Msg, data.Data));
  8689. }
  8690. catch (Exception ex)
  8691. {
  8692. return Ok(JsonView(false, "Catch:" + ex.Message));
  8693. }
  8694. }
  8695. /// <summary>
  8696. /// 酒店预订
  8697. /// 创建 入住卷号码
  8698. /// </summary>
  8699. /// <param name="_dto"></param>
  8700. /// <returns></returns>
  8701. [HttpPost]
  8702. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8703. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8704. {
  8705. try
  8706. {
  8707. #region 参数验证
  8708. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8709. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8710. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8711. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8712. #region 页面操作权限验证
  8713. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8714. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8715. #endregion
  8716. #region 团组操作权限验证 76 酒店预定模块
  8717. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8718. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8719. #endregion
  8720. #endregion
  8721. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8722. if (data.Code != 0)
  8723. {
  8724. return Ok(JsonView(false, data.Msg));
  8725. }
  8726. return Ok(JsonView(true, data.Msg, data.Data));
  8727. }
  8728. catch (Exception ex)
  8729. {
  8730. return Ok(JsonView(false, ex.Message));
  8731. }
  8732. }
  8733. /// <summary>
  8734. /// 酒店预订
  8735. /// 详情
  8736. /// </summary>
  8737. /// <param name="_dto"></param>
  8738. /// <returns></returns>
  8739. [HttpPost]
  8740. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8741. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8742. {
  8743. try
  8744. {
  8745. #region 参数验证
  8746. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8747. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8748. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8749. #region 团组操作权限验证 76 酒店预定模块
  8750. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8751. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8752. #endregion
  8753. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8754. #region 页面操作权限验证
  8755. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8756. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8757. #endregion
  8758. #endregion
  8759. Result data = await _hotelPriceRep._Details(_dto.PortType, _dto.Id);
  8760. if (data.Code != 0)
  8761. {
  8762. return Ok(JsonView(false, data.Msg));
  8763. }
  8764. return Ok(JsonView(true, data.Msg, data.Data));
  8765. }
  8766. catch (Exception ex)
  8767. {
  8768. return Ok(JsonView(false, ex.Message));
  8769. }
  8770. }
  8771. /// <summary>
  8772. /// 酒店预订
  8773. /// Add Or Edit
  8774. /// </summary>
  8775. /// <param name="_dto"></param>
  8776. /// <returns></returns>
  8777. [HttpPost]
  8778. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8779. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8780. {
  8781. try
  8782. {
  8783. #region 参数验证
  8784. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8785. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8786. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8787. #region 团组操作权限验证 76 酒店预定模块
  8788. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8789. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8790. #endregion
  8791. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8792. #region 页面操作权限验证
  8793. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8794. if (_dto.Id == 0) // Add
  8795. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8796. else if (_dto.Id > 0) // Edit
  8797. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8798. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8799. #endregion
  8800. #endregion
  8801. Result data = await _hotelPriceRep._AddOrEdit(_dto);
  8802. if (data.Code != 0)
  8803. {
  8804. return Ok(JsonView(false, data.Msg));
  8805. }
  8806. #region 应用推送
  8807. try
  8808. {
  8809. int ccpId = data.Data.GetType().GetProperty("ccpId").GetValue(data.Data, null);
  8810. int sign = data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  8811. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8812. }
  8813. catch (Exception ex)
  8814. {
  8815. }
  8816. #endregion
  8817. return Ok(JsonView(true, data.Msg, data.Data));
  8818. }
  8819. catch (Exception ex)
  8820. {
  8821. return Ok(JsonView(false, ex.Message));
  8822. }
  8823. }
  8824. /// <summary>
  8825. /// 酒店预订
  8826. /// Del
  8827. /// </summary>
  8828. /// <param name="_dto"></param>
  8829. /// <returns></returns>
  8830. [HttpPost]
  8831. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8832. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8833. {
  8834. try
  8835. {
  8836. #region 参数验证
  8837. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8838. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8839. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8840. #region 团组操作权限验证 76 酒店预定模块
  8841. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8842. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8843. #endregion
  8844. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8845. #region 页面操作权限验证
  8846. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8847. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8848. #endregion
  8849. #endregion
  8850. Result data = await _hotelPriceRep._Del(_dto.Id, _dto.UserId);
  8851. if (data.Code != 0)
  8852. {
  8853. return Ok(JsonView(false, data.Msg));
  8854. }
  8855. return Ok(JsonView(true, data.Msg, data.Data));
  8856. }
  8857. catch (Exception ex)
  8858. {
  8859. return Ok(JsonView(false, ex.Message));
  8860. }
  8861. }
  8862. /// <summary>
  8863. /// 酒店预订
  8864. /// 生成VOUCHER
  8865. /// 2024.05.06 之前版本
  8866. /// </summary>
  8867. /// <param name="_dto"></param>
  8868. /// <returns></returns>
  8869. [HttpPost]
  8870. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8871. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8872. {
  8873. try
  8874. {
  8875. #region 参数验证
  8876. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8877. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8878. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8879. #region 团组操作权限验证 76 酒店预定模块
  8880. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8881. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8882. #endregion
  8883. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8884. #region 页面操作权限验证
  8885. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8886. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8887. #endregion
  8888. #endregion
  8889. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8890. //判断数据是否完整
  8891. if (hr != null)
  8892. {
  8893. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8894. {
  8895. string strFileName = "HotelStatement/";
  8896. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8897. if (dele != null)
  8898. strFileName += dele.TourCode;
  8899. //载入模板
  8900. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8901. Document doc = new Document(sss);
  8902. DocumentBuilder builder = new DocumentBuilder(doc);
  8903. #region 替换Word模板书签内容
  8904. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8905. //入住卷预定号码
  8906. if (doc.Range.Bookmarks["VNO"] != null)
  8907. {
  8908. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8909. mark.Text = hr.CheckNumber;
  8910. }
  8911. //酒店时间
  8912. if (doc.Range.Bookmarks["Date"] != null)
  8913. {
  8914. Bookmark mark = doc.Range.Bookmarks["Date"];
  8915. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8916. }
  8917. //团号
  8918. if (doc.Range.Bookmarks["TNo"] != null)
  8919. {
  8920. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8921. mark.Text = dele.TourCode;
  8922. }
  8923. //预定号码
  8924. if (doc.Range.Bookmarks["BookingId"] != null)
  8925. {
  8926. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8927. mark.Text = hr.ReservationsNo;
  8928. }
  8929. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8930. {
  8931. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8932. mark.Text = hr.DetermineNo;
  8933. }
  8934. //酒店城市
  8935. if (doc.Range.Bookmarks["City"] != null)
  8936. {
  8937. Bookmark mark = doc.Range.Bookmarks["City"];
  8938. mark.Text = hr.City;
  8939. }
  8940. //酒店名称
  8941. if (doc.Range.Bookmarks["HName"] != null)
  8942. {
  8943. Bookmark mark = doc.Range.Bookmarks["HName"];
  8944. mark.Text = hr.HotelName;
  8945. }
  8946. //酒店地址
  8947. if (doc.Range.Bookmarks["Address"] != null)
  8948. {
  8949. Bookmark mark = doc.Range.Bookmarks["Address"];
  8950. mark.Text = hr.HotelAddress;
  8951. }
  8952. //酒店电话
  8953. if (doc.Range.Bookmarks["Tel"] != null)
  8954. {
  8955. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8956. mark.Text = hr.HotelTel;
  8957. }
  8958. //酒店传真
  8959. if (doc.Range.Bookmarks["Fax"] != null)
  8960. {
  8961. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8962. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8963. {
  8964. mark.Text = hr.HotelFax;
  8965. }
  8966. }
  8967. //入住时间
  8968. if (doc.Range.Bookmarks["CIn"] != null)
  8969. {
  8970. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8971. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8972. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8973. }
  8974. //退房时间
  8975. if (doc.Range.Bookmarks["COut"] != null)
  8976. {
  8977. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8978. Bookmark mark = doc.Range.Bookmarks["COut"];
  8979. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8980. }
  8981. //客户名称
  8982. if (doc.Range.Bookmarks["GName"] != null)
  8983. {
  8984. string guestName = "";
  8985. string[] clients = new string[] { };
  8986. if (hr.GuestName.Contains(","))
  8987. {
  8988. clients = hr.GuestName.Split(",");
  8989. }
  8990. else
  8991. {
  8992. clients = new string[] { hr.GuestName };
  8993. }
  8994. List<int> clientIds_int = new List<int>();
  8995. if (clients.Length > 0)
  8996. {
  8997. foreach (var item in clients)
  8998. {
  8999. if (item.IsNumeric())
  9000. {
  9001. clientIds_int.Add(int.Parse(item));
  9002. }
  9003. }
  9004. }
  9005. if (clientIds_int.Count > 0)
  9006. {
  9007. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  9008. foreach (var client in _clientDatas)
  9009. {
  9010. //男
  9011. if (client.Sex == 0) guestName += $"Mr.";
  9012. //女
  9013. else if (client.Sex == 1) guestName += $"Ms.";
  9014. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  9015. {
  9016. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  9017. }
  9018. //guestName += $"{client.Pinyin},";
  9019. }
  9020. if (guestName.Length > 0)
  9021. {
  9022. guestName = guestName.Substring(0, guestName.Length - 1);
  9023. }
  9024. }
  9025. else
  9026. {
  9027. guestName = hr.GuestName;
  9028. }
  9029. Bookmark mark = doc.Range.Bookmarks["GName"];
  9030. mark.Text = guestName;
  9031. }
  9032. //房间介绍
  9033. if (doc.Range.Bookmarks["ROOM"] != null)
  9034. {
  9035. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  9036. mark.Text = hr.RoomExplanation;
  9037. }
  9038. //报价描述
  9039. if (doc.Range.Bookmarks["NOTE"] != null)
  9040. {
  9041. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  9042. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  9043. if (ss != null)
  9044. mark.Text = ss.Name;
  9045. }
  9046. //入住时间
  9047. if (doc.Range.Bookmarks["CheckIn"] != null)
  9048. {
  9049. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  9050. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  9051. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  9052. }
  9053. //退房时间
  9054. if (doc.Range.Bookmarks["CheckOut"] != null)
  9055. {
  9056. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  9057. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  9058. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  9059. }
  9060. //日期
  9061. if (doc.Range.Bookmarks["DT"] != null)
  9062. {
  9063. Bookmark mark = doc.Range.Bookmarks["DT"];
  9064. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  9065. }
  9066. //名称
  9067. if (doc.Range.Bookmarks["VName"] != null)
  9068. {
  9069. Bookmark mark = doc.Range.Bookmarks["VName"];
  9070. mark.Text = hr.HotelName;
  9071. }
  9072. //号码
  9073. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  9074. {
  9075. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  9076. mark.Text = hr.CheckNumber;
  9077. }
  9078. #endregion
  9079. strFileName += "VOUCHER.doc";
  9080. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9081. doc.Save(fileDir);
  9082. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9083. return Ok(JsonView(true, "操作成功!", Url));
  9084. }
  9085. else
  9086. {
  9087. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  9088. }
  9089. }
  9090. else
  9091. {
  9092. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  9093. }
  9094. }
  9095. catch (Exception ex)
  9096. {
  9097. return Ok(JsonView(false, ex.Message));
  9098. }
  9099. }
  9100. /// <summary>
  9101. /// 酒店预订
  9102. /// 生成VOUCHER
  9103. /// 2024.05.06 之后版本
  9104. /// </summary>
  9105. /// <param name="_dto"></param>
  9106. /// <returns></returns>
  9107. [HttpPost]
  9108. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9109. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  9110. {
  9111. #region 参数验证
  9112. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9113. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9114. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9115. #region 团组操作权限验证 76 酒店预定模块
  9116. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9117. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9118. #endregion
  9119. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9120. #region 页面操作权限验证
  9121. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9122. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9123. #endregion
  9124. #endregion
  9125. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9126. //判断数据是否完整
  9127. if (hrDtas.Count < 1) return Ok(JsonView(false, "请先录入酒店预订信息!"));
  9128. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9129. string strFileName = "HotelStatement/";
  9130. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9131. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  9132. #region 数据处理
  9133. List<int> guestIds = new List<int>();
  9134. int index = 0;
  9135. foreach (var item in hrDtas)
  9136. {
  9137. if (item.GuestName.Contains(","))
  9138. {
  9139. string[] guestIdArr = item.GuestName.Split(',');
  9140. foreach (var guestIdStr in guestIdArr)
  9141. {
  9142. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  9143. if (guestBool)
  9144. {
  9145. guestIds.Add(guestId);
  9146. }
  9147. }
  9148. }
  9149. else guestNames += item.GuestName;
  9150. var voucherInfo = new HotelVoucherInfoView()
  9151. {
  9152. HotelName = item.HotelName,
  9153. CheckInDate = item.CheckInDate,
  9154. CheckOutDate = item.CheckOutDate,
  9155. ConfirmationNumber = item.DetermineNo.Trim(),
  9156. RoomType = item.RoomExplanation
  9157. };
  9158. vouchers.Add(voucherInfo);
  9159. }
  9160. if (guestIds.Count > 0)
  9161. {
  9162. guestIds = guestIds.Distinct().ToList();
  9163. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  9164. if (guestDatas.Count > 0)
  9165. {
  9166. guestNames = "";
  9167. foreach (var guest in guestDatas)
  9168. {
  9169. string guestName = "";
  9170. if (guest.Sex == 0) guestName += @"MR.";
  9171. else if (guest.Sex == 1) guestName += @"MS.";
  9172. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9173. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9174. guestNames += @$"{guestName.Trim()}、";
  9175. }
  9176. if (guestNames.Length > 0)
  9177. {
  9178. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9179. }
  9180. }
  9181. }
  9182. #endregion
  9183. //载入模板
  9184. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  9185. Document doc = new Document(sss);
  9186. DocumentBuilder builder = new DocumentBuilder(doc);
  9187. if (doc.Range.Bookmarks["GuestName"] != null)
  9188. {
  9189. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9190. mark.Text = guestNames;
  9191. }
  9192. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9193. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9194. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9195. for (int i = 1; i <= vouchers.Count; i++)
  9196. {
  9197. HotelVoucherInfoView hviv = vouchers[i - 1];
  9198. builder.MoveToCell(0, i, 0, 0);
  9199. builder.Write(hviv.HotelName);
  9200. builder.MoveToCell(0, i, 1, 0);
  9201. builder.Write(hviv.CheckInDate);
  9202. builder.MoveToCell(0, i, 2, 0);
  9203. builder.Write(hviv.CheckOutDate);
  9204. builder.MoveToCell(0, i, 3, 0);
  9205. builder.Write(hviv.RoomType);
  9206. builder.MoveToCell(0, i, 4, 0);
  9207. builder.Write(hviv.ConfirmationNumber);
  9208. }
  9209. //删除多余行
  9210. int currRowIndex = vouchers.Count + 1;
  9211. int delRows = 21 - currRowIndex;
  9212. if (delRows > 0)
  9213. {
  9214. for (int i = 0; i < delRows; i++)
  9215. {
  9216. table.Rows.RemoveAt(currRowIndex);
  9217. //cultivateRowIndex++;
  9218. }
  9219. }
  9220. strFileName += "VOUCHER.docx";
  9221. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9222. doc.Save(fileDir);
  9223. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9224. return Ok(JsonView(true, "操作成功!", Url));
  9225. }
  9226. /// <summary>
  9227. /// 酒店预订
  9228. /// 生成 预定成本 Excel
  9229. /// </summary>
  9230. /// <param name="_dto"></param>
  9231. /// <returns></returns>
  9232. [HttpPost]
  9233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9234. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9235. {
  9236. #region 参数验证
  9237. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9238. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9239. if (!vadalitorRes.IsValid)
  9240. {
  9241. var errors = new StringBuilder();
  9242. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9243. return Ok(JsonView(false, errors.ToString()));
  9244. }
  9245. #region 团组操作权限验证 76 酒店预定模块
  9246. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9247. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9248. #endregion
  9249. //PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9250. //#region 页面操作权限验证
  9251. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9252. //if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9253. //#endregion
  9254. #endregion
  9255. decimal _rate = 1.00M;
  9256. string _currency = "";
  9257. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9258. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9259. if (hrDtas.Count < 1) return Ok(JsonView(false, "酒店预订费用未录入,不支持预定成本Excel导出"));
  9260. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9261. if (_GroupCostParameter == null) return Ok(JsonView(false, "团组成本费用未录入,不支持预定成本Excel导出"));
  9262. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9263. {
  9264. return Ok(JsonView(false, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出"));
  9265. }
  9266. _currency = _GroupCostParameter.Currency;
  9267. bool isIntType = int.TryParse(_currency, out int currId);
  9268. if (isIntType)
  9269. {
  9270. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9271. }
  9272. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9273. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9274. if (currInfo == null)
  9275. {
  9276. return Ok(JsonView(false, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出"));
  9277. }
  9278. if (!_currency.ToUpper().Equals("CNY"))
  9279. {
  9280. _rate = _GroupCostParameter.Rate;
  9281. }
  9282. _rate = currInfo.Rate;
  9283. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9284. string strFileName = "HotelStatement/";
  9285. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9286. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9287. #region 数据处理
  9288. foreach (var item in hrDtas)
  9289. {
  9290. var ccpInfo = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9291. string roomCurr = currDatas.Find(it => it.Id == ccpInfo.PaymentCurrency)?.Name ?? "";
  9292. string singleRoomFeeStr = string.Empty,
  9293. doubleRoomFeeStr = string.Empty,
  9294. suiteRoomFeeStr = string.Empty,
  9295. otherRoomFeeStr = string.Empty,
  9296. payMoneyStr = string.Empty,
  9297. cardPriceStr = string.Empty;
  9298. if (roomCurr.Equals(_currency))
  9299. {
  9300. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9301. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9302. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9303. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9304. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9305. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9306. }
  9307. else
  9308. {
  9309. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9310. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9311. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9312. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9313. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9314. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9315. }
  9316. string breakfastPriceStr = string.Empty,
  9317. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9318. governmentRentStr = string.Empty,
  9319. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9320. cityTaxStrStr = string.Empty,
  9321. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9322. //if (breakfastCurrency.Equals(_currency))
  9323. //{
  9324. // breakfastPriceStr = $"{item.BreakfastPrice.ToString("#0.00")} ({_currency})";
  9325. //}
  9326. //if (governmentRentCurrency.Equals(_currency))
  9327. //{
  9328. // governmentRentStr = $"{item.GovernmentRent.ToString("#0.00")} ({_currency})";
  9329. //}
  9330. //if (cityTaxStrCurrency.Equals(_currency))
  9331. //{
  9332. // cityTaxStrStr = $"{item.CityTax.ToString("#0.00")} ({_currency})";
  9333. //}
  9334. breakfastPriceStr = $"{item.BreakfastPrice.ToString("#0.00")} {_currency}";
  9335. governmentRentStr = $"{item.GovernmentRent.ToString("#0.00")} {_currency}";
  9336. cityTaxStrStr = $"{item.CityTax.ToString("#0.00")} {_currency}";
  9337. pcfds.Add(new HotelReservations_PCFD_View()
  9338. {
  9339. City = item.City,
  9340. HotelName = item.HotelName,
  9341. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9342. // SingleRoomCount = item.SingleRoomCount,
  9343. SingleRoomPrice = singleRoomFeeStr,
  9344. // DoubleRoomCount = item.DoubleRoomCount,
  9345. DoubleRoomPrice = doubleRoomFeeStr,
  9346. //SuiteRoomCount = item.SuiteRoomCount,
  9347. SuiteRoomPrice = suiteRoomFeeStr,
  9348. OtherRoomPrice = otherRoomFeeStr,
  9349. //OtherRoomCount = item.OtherRoomCount,
  9350. BreakfastPrice = breakfastPriceStr,
  9351. GovernmentRent = governmentRentStr,
  9352. CityTax = cityTaxStrStr,
  9353. RoomExplanation = item.RoomExplanation,
  9354. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == ccpInfo.PayDId).First()?.Name ?? "",
  9355. PayTime = ccpInfo.ConsumptionDate,
  9356. BankNo = ccpInfo.BankNo,
  9357. PayMoney = payMoneyStr,
  9358. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9359. ConsumptionPatterns = ccpInfo.ConsumptionPatterns,
  9360. CardPrice = cardPriceStr,
  9361. Remark = ccpInfo.Remark
  9362. });
  9363. }
  9364. #endregion
  9365. //载入模板
  9366. WorkbookDesigner designer = new WorkbookDesigner();
  9367. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9368. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9369. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9370. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9371. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9372. designer.SetDataSource("Opertor", userInfo.CnName);
  9373. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9374. dt.TableName = "ViewMyHotelReservations";
  9375. designer.SetDataSource(dt);
  9376. designer.Process();
  9377. string fileName = ($"HotelReservation/{groupInfo.TeamName}_酒店预订成本_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls").Replace(":", "");
  9378. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9379. designer.Workbook.Save(serverPath);
  9380. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9381. #region 删除指定行
  9382. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true,cpDel=true, remarkDel = true;
  9383. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9384. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9385. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9386. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9387. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9388. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9389. cssIndex = dt.Columns["CityTax"].Ordinal,
  9390. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9391. remarkIndex = dt.Columns["Remark"].Ordinal;
  9392. //删除指定列
  9393. foreach (DataRow item in dt.Rows)
  9394. {
  9395. string singleStr = item["SingleRoomPrice"].ToString();
  9396. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9397. if (containsDigitButNotZero1) singleDel = false;
  9398. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9399. string doubleStr = item["DoubleRoomPrice"].ToString();
  9400. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9401. if (containsDigitButNotZero2) doubleDel = false;
  9402. string suiteStr = item["SuiteRoomPrice"].ToString();
  9403. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9404. if (containsDigitButNotZero3) suiteDel = false;
  9405. string otherStr = item["OtherRoomPrice"].ToString();
  9406. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9407. if (containsDigitButNotZero4) otherDel = false;
  9408. string zcStr = item["BreakfastPrice"].ToString();
  9409. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9410. if (containsDigitButNotZero5) zcDel = false;
  9411. string dsStr = item["GovernmentRent"].ToString();
  9412. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9413. if (containsDigitButNotZero6) dsDel = false;
  9414. string cssStr = item["CityTax"].ToString();
  9415. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9416. if (containsDigitButNotZero7) cssDel = false;
  9417. string cpStr = item["ConsumptionPatterns"].ToString();
  9418. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9419. string remarkStr = item["Remark"].ToString();
  9420. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9421. }
  9422. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9423. DeleteColumn(serverPath, cpIndex, cpDel);
  9424. DeleteColumn(serverPath, dsIndex, dsDel);
  9425. DeleteColumn(serverPath, cssIndex, cssDel);
  9426. DeleteColumn(serverPath, zcIndex, zcDel);
  9427. DeleteColumn(serverPath, otherIndex, otherDel);
  9428. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9429. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9430. DeleteColumn(serverPath, singleIndex, singleDel);
  9431. #endregion
  9432. //只保留第一个表格
  9433. DeleteSheet(serverPath);
  9434. return Ok(JsonView(true, "操作成功", url = rst));
  9435. }
  9436. /// <summary>
  9437. /// 删除指定列
  9438. /// </summary>
  9439. /// <param name="file"></param>
  9440. /// <param name="columnIndex"></param>
  9441. /// <param name="isDel"></param>
  9442. private void DeleteColumn(string file, int columnIndex,bool isDel)
  9443. {
  9444. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9445. //wb.Save(file);
  9446. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9447. if (sheet1 != null)
  9448. {
  9449. if (isDel)
  9450. {
  9451. Cells cells = sheet1.Cells;
  9452. cells.DeleteColumn(columnIndex);
  9453. }
  9454. }
  9455. wb.Save(file);
  9456. }
  9457. /// <summary>
  9458. /// 删除sheet
  9459. /// </summary>
  9460. /// <param name="file"></param>
  9461. /// <param name="sheetName"></param>
  9462. private void DeleteSheet(string file, string sheetName="")
  9463. {
  9464. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9465. //wb.Save(file);
  9466. List<string> sheets = new List<string>();
  9467. foreach (var item in wb.Worksheets)
  9468. {
  9469. sheets.Add(item.Name);
  9470. }
  9471. if (sheets.Count > 0)
  9472. {
  9473. sheets.RemoveAt(0);//不删除第一个sheet
  9474. foreach (var item in sheets)
  9475. {
  9476. wb.Worksheets.RemoveAt(item);
  9477. }
  9478. }
  9479. wb.Save(file);
  9480. }
  9481. /// <summary>
  9482. /// 酒店预订
  9483. /// 确认单
  9484. /// </summary>
  9485. /// <param name="_dto"></param>
  9486. /// <returns></returns>
  9487. [HttpPost]
  9488. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9489. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9490. {
  9491. try
  9492. {
  9493. #region 参数验证
  9494. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9495. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9496. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9497. #region 团组操作权限验证 76 酒店预定模块
  9498. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9499. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9500. #endregion
  9501. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9502. #region 页面操作权限验证
  9503. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9504. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9505. #endregion
  9506. #endregion
  9507. //团组信息
  9508. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9509. //酒店数据
  9510. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9511. if (listhoteldata.Count < 0)
  9512. {
  9513. return Ok(JsonView(false, "当前团组暂无酒店预订信息!"));
  9514. }
  9515. //利datatable存储
  9516. DataTable dt = new DataTable();
  9517. dt.Columns.Add("CheckInDate", typeof(string));
  9518. dt.Columns.Add("City", typeof(string));
  9519. dt.Columns.Add("Hotel", typeof(string));
  9520. dt.Columns.Add("Room", typeof(string));
  9521. for (int i = 0; i < listhoteldata.Count; i++)
  9522. {
  9523. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9524. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9525. while (dayStart < dayEnd)
  9526. {
  9527. string temp = "";
  9528. DataRow row = dt.NewRow();
  9529. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9530. row["City"] = listhoteldata[i].City;
  9531. row["Hotel"] = listhoteldata[i].HotelName;
  9532. if (listhoteldata[i].SingleRoomCount > 0)
  9533. {
  9534. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9535. }
  9536. if (listhoteldata[i].DoubleRoomCount > 0)
  9537. {
  9538. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9539. }
  9540. if (listhoteldata[i].SuiteRoomCount > 0)
  9541. {
  9542. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9543. }
  9544. if (listhoteldata[i].OtherRoomCount > 0)
  9545. {
  9546. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9547. }
  9548. row["Room"] = temp;
  9549. dt.Rows.Add(row);
  9550. dayStart = dayStart.AddDays(1);
  9551. }
  9552. }
  9553. Dictionary<string, string> dic = new Dictionary<string, string>();
  9554. dic.Add("Dele", di.TeamName);
  9555. dic.Add("City", di.VisitCountry);
  9556. //模板路径
  9557. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9558. //载入模板
  9559. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9560. DocumentBuilder builder = new DocumentBuilder(doc);
  9561. foreach (var key in dic.Keys)
  9562. {
  9563. builder.MoveToBookmark(key);
  9564. builder.Write(dic[key]);
  9565. }
  9566. //获取word里所有表格
  9567. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9568. //获取所填表格的序数
  9569. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9570. var rowStart = tableOne.Rows[0]; //获取第1行
  9571. //循环赋值
  9572. for (int i = 0; i < dt.Rows.Count; i++)
  9573. {
  9574. builder.MoveToCell(0, i + 1, 0, 0);
  9575. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9576. builder.MoveToCell(0, i + 1, 1, 0);
  9577. builder.Write(dt.Rows[i]["City"].ToString());
  9578. builder.MoveToCell(0, i + 1, 2, 0);
  9579. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9580. builder.MoveToCell(0, i + 1, 3, 0);
  9581. builder.Write(dt.Rows[i]["Room"].ToString());
  9582. }
  9583. //删除多余行
  9584. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9585. {
  9586. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9587. }
  9588. string strFileName = di.TeamName + "酒店确认单.doc";
  9589. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9590. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9591. return Ok(JsonView(true, "成功", url));
  9592. }
  9593. catch (Exception ex)
  9594. {
  9595. return Ok(JsonView(false, ex.Message));
  9596. }
  9597. }
  9598. #endregion
  9599. #region 团组状态
  9600. /// <summary>
  9601. /// 团组状态列表 Page
  9602. /// </summary>
  9603. /// <param name="dto">团组列表请求dto</param>
  9604. /// <returns></returns>
  9605. [HttpPost]
  9606. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9607. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9608. {
  9609. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9610. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9611. {
  9612. string sqlWhere = string.Empty;
  9613. if (dto.IsSure == 0) //未完成
  9614. {
  9615. sqlWhere += string.Format(@" And IsSure = 0");
  9616. }
  9617. else if (dto.IsSure == 1) //已完成
  9618. {
  9619. sqlWhere += string.Format(@" And IsSure = 1");
  9620. }
  9621. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9622. {
  9623. string tj = dto.SearchCriteria;
  9624. 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}%')",
  9625. tj, tj, tj, tj, tj);
  9626. }
  9627. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9628. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9629. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9630. From (
  9631. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9632. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9633. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9634. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9635. From Grp_DelegationInfo gdi
  9636. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9637. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9638. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9639. Where gdi.IsDel = 0 {0}
  9640. ) temp ", sqlWhere);
  9641. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9642. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9643. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9644. }
  9645. else
  9646. {
  9647. return Ok(JsonView(false, "查询失败"));
  9648. }
  9649. }
  9650. /// <summary>
  9651. /// 团组状态
  9652. /// 设置操作完成
  9653. /// </summary>
  9654. /// <param name="dto">团组列表请求dto</param>
  9655. /// <returns></returns>
  9656. [HttpPost]
  9657. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9658. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9659. {
  9660. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9661. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9662. {
  9663. Id = dto.Id,
  9664. IsSure = 1
  9665. };
  9666. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9667. .UpdateColumns(it => new { it.IsSure })
  9668. .WhereColumns(it => new { it.Id })
  9669. .ExecuteCommandAsync();
  9670. if (result > 0)
  9671. {
  9672. return Ok(JsonView(true, "操作完成!"));
  9673. }
  9674. return Ok(JsonView(false, "操作失败!"));
  9675. }
  9676. #endregion
  9677. #region 保险费用录入
  9678. /// <summary>
  9679. /// 根据团组Id查询保险费用列表
  9680. /// </summary>
  9681. /// <param name="dto"></param>
  9682. /// <returns></returns>
  9683. [HttpPost]
  9684. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9685. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9686. {
  9687. try
  9688. {
  9689. Result groupData = await _customersRep.CustomersByDiId(dto);
  9690. if (groupData.Code != 0)
  9691. {
  9692. return Ok(JsonView(false, groupData.Msg));
  9693. }
  9694. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9695. }
  9696. catch (Exception ex)
  9697. {
  9698. return Ok(JsonView(false, ex.Message));
  9699. }
  9700. }
  9701. /// <summary>
  9702. /// 根据保险费用Id查询保险费用详细
  9703. /// </summary>
  9704. /// <param name="dto"></param>
  9705. /// <returns></returns>
  9706. [HttpPost]
  9707. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9708. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9709. {
  9710. try
  9711. {
  9712. Result groupData = await _customersRep.CustomersById(dto);
  9713. if (groupData.Code != 0)
  9714. {
  9715. return Ok(JsonView(false, groupData.Msg));
  9716. }
  9717. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9718. }
  9719. catch (Exception ex)
  9720. {
  9721. return Ok(JsonView(false, ex.Message));
  9722. }
  9723. }
  9724. /// <summary>
  9725. /// 保险费用录入页面初始化绑定
  9726. /// </summary>
  9727. /// <param name="dto"></param>
  9728. /// <returns></returns>
  9729. [HttpPost]
  9730. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9731. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9732. {
  9733. try
  9734. {
  9735. Result groupData = await _customersRep.CustomersInitialize(dto);
  9736. if (groupData.Code != 0)
  9737. {
  9738. return Ok(JsonView(false, groupData.Msg));
  9739. }
  9740. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9741. }
  9742. catch (Exception ex)
  9743. {
  9744. return Ok(JsonView(false, ex.Message));
  9745. }
  9746. }
  9747. /// <summary>
  9748. /// 保险费用操作(Status:1.新增,2.修改)
  9749. /// </summary>
  9750. /// <param name="dto"></param>
  9751. /// <returns></returns>
  9752. [HttpPost]
  9753. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9754. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9755. {
  9756. try
  9757. {
  9758. Result groupData = await _customersRep.OpCustomers(dto);
  9759. if (groupData.Code != 0)
  9760. {
  9761. return Ok(JsonView(false, groupData.Msg));
  9762. }
  9763. #region 应用推送
  9764. try
  9765. {
  9766. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9767. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9768. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9769. }
  9770. catch (Exception ex)
  9771. {
  9772. }
  9773. #endregion
  9774. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9775. }
  9776. catch (Exception ex)
  9777. {
  9778. return Ok(JsonView(false, ex.Message));
  9779. }
  9780. }
  9781. /// <summary>
  9782. /// 保险文件上传
  9783. /// </summary>
  9784. /// <param name="file"></param>
  9785. /// <returns></returns>
  9786. [HttpPost]
  9787. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9788. public async Task<IActionResult> UploadCus(IFormFile file)
  9789. {
  9790. try
  9791. {
  9792. if (file != null)
  9793. {
  9794. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9795. //文件名称
  9796. string projectFileName = file.FileName;
  9797. //上传的文件的路径
  9798. string filePath = "";
  9799. if (!Directory.Exists(fileDir))
  9800. {
  9801. Directory.CreateDirectory(fileDir);
  9802. }
  9803. //上传的文件的路径
  9804. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9805. using (FileStream fs = System.IO.File.Create(filePath))
  9806. {
  9807. file.CopyTo(fs);
  9808. fs.Flush();
  9809. }
  9810. return Ok(JsonView(true, "上传成功!", projectFileName));
  9811. }
  9812. else
  9813. {
  9814. return Ok(JsonView(false, "上传失败!"));
  9815. }
  9816. }
  9817. catch (Exception ex)
  9818. {
  9819. return Ok(JsonView(false, "程序错误!"));
  9820. throw;
  9821. }
  9822. }
  9823. /// <summary>
  9824. /// 保险删除指定文件
  9825. /// </summary>
  9826. /// <param name="dto"></param>
  9827. /// <returns></returns>
  9828. [HttpPost]
  9829. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9830. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9831. {
  9832. try
  9833. {
  9834. string filePath = "";
  9835. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9836. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9837. //int id = 0;
  9838. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9839. // 删除该文件
  9840. try
  9841. {
  9842. System.IO.File.Delete(filePath);
  9843. 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()
  9844. {
  9845. Attachment = "",
  9846. }).ExecuteCommandAsync();
  9847. if (result != 0)
  9848. {
  9849. return Ok(JsonView(true, "成功!"));
  9850. }
  9851. else
  9852. {
  9853. return Ok(JsonView(false, "失败!"));
  9854. }
  9855. }
  9856. catch (Exception)
  9857. {
  9858. 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()
  9859. {
  9860. Attachment = "",
  9861. }).ExecuteCommandAsync();
  9862. if (result != 0)
  9863. {
  9864. return Ok(JsonView(true, "成功!"));
  9865. }
  9866. else
  9867. {
  9868. return Ok(JsonView(false, "失败!"));
  9869. }
  9870. }
  9871. }
  9872. catch (Exception ex)
  9873. {
  9874. return Ok(JsonView(false, "程序错误!"));
  9875. throw;
  9876. }
  9877. }
  9878. /// <summary>
  9879. /// 保险费用操作(删除)
  9880. /// </summary>
  9881. /// <param name="dto"></param>
  9882. /// <returns></returns>
  9883. [HttpPost]
  9884. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9885. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9886. {
  9887. try
  9888. {
  9889. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9890. if (!res)
  9891. {
  9892. return Ok(JsonView(false, "删除失败"));
  9893. }
  9894. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9895. {
  9896. IsDel = 1,
  9897. DeleteUserId = dto.DeleteUserId,
  9898. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9899. }).ExecuteCommandAsync();
  9900. return Ok(JsonView(true, "删除成功!"));
  9901. }
  9902. catch (Exception ex)
  9903. {
  9904. return Ok(JsonView(false, "程序错误!"));
  9905. throw;
  9906. }
  9907. }
  9908. #endregion
  9909. #region 接团客户名单 PageId 104
  9910. /// <summary>
  9911. /// 接团客户名单
  9912. /// 迁移数据(慎用!)
  9913. /// </summary>
  9914. /// <param name="dto"></param>
  9915. /// <returns></returns>
  9916. [HttpPost]
  9917. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9918. public async Task<IActionResult> PostTourClientListChange()
  9919. {
  9920. try
  9921. {
  9922. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9923. //var groupClinetData1
  9924. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9925. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9926. int updateCount = 0;
  9927. if (oldOAClientList.Count > 0)
  9928. {
  9929. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9930. _sqlSugar.BeginTran();
  9931. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9932. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9933. foreach (var item in oldOAClientList)
  9934. {
  9935. int comId = 0;
  9936. string format = "yyyy-MM-dd HH:mm:ss";
  9937. string data11 = "1990-01-01 00:00";
  9938. var data1 = IsValidDate(item.OPdate, format);
  9939. if (data1) data11 = item.OPdate;
  9940. //客户公司验证
  9941. if (!string.IsNullOrEmpty(item.Company))
  9942. {
  9943. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9944. if (clientComInfo == null) // add
  9945. {
  9946. var addInfo = new Crm_CustomerCompany()
  9947. {
  9948. CompanyAbbreviation = "",
  9949. CompanyFullName = item.Company,
  9950. Address = "",
  9951. PostCodes = "",
  9952. LastedOpUserId = item.OPer,
  9953. LastedOpDt = Convert.ToDateTime(data11),
  9954. CreateUserId = item.OPer,
  9955. CreateTime = Convert.ToDateTime(data11),
  9956. IsDel = 0
  9957. };
  9958. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9959. if (comId1 > 0) comId = comId1;
  9960. }
  9961. else comId = clientComInfo.Id;
  9962. }
  9963. //客户人员验证
  9964. int clientId = 0;
  9965. string name = item.LastName + item.Name;
  9966. if (!string.IsNullOrEmpty(name))
  9967. {
  9968. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9969. if (clientInfo == null)
  9970. {
  9971. DateTime? dateTime = null;
  9972. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9973. if (isDt) dateTime = birthDayDt;
  9974. var addInfo1 = new Crm_DeleClient()
  9975. {
  9976. CrmCompanyId = comId,
  9977. DiId = -1,
  9978. LastName = item.LastName,
  9979. FirstName = item.Name,
  9980. OldName = "",
  9981. Pinyin = item.Pinyin,
  9982. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9983. Marriage = 0,
  9984. Phone = item.Phone,
  9985. Job = item.Job,
  9986. BirthDay = dateTime
  9987. };
  9988. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9989. if (clientId1 > 0) clientId = clientId1;
  9990. }
  9991. else clientId = clientInfo.Id;
  9992. }
  9993. if (clientId < 1)
  9994. {
  9995. continue;
  9996. }
  9997. int airType = 0;
  9998. if (item.AirType == "超经舱") airType = 459;
  9999. else if (item.AirType == "公务舱") airType = 458;
  10000. else if (item.AirType == "经济舱") airType = 460;
  10001. else if (item.AirType == "其他") airType = 565;
  10002. else if (item.AirType == "头等舱") airType = 457;
  10003. var _TourClientListEntity = new Grp_TourClientList()
  10004. {
  10005. DiId = item.Diid,
  10006. ClientId = clientId,
  10007. CreateUserId = item.OPer,
  10008. CreateTime = Convert.ToDateTime(data11),
  10009. Remark = item.Remark,
  10010. IsDel = item.Isdel,
  10011. ShippingSpaceTypeId = airType,
  10012. ShippingSpaceSpecialNeeds = item.AirRemark,
  10013. HotelSpecialNeeds = item.RoomType
  10014. };
  10015. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  10016. if (_TourClientList > 0)
  10017. {
  10018. updateCount++;
  10019. }
  10020. }
  10021. _sqlSugar.CommitTran();
  10022. }
  10023. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  10024. }
  10025. catch (Exception ex)
  10026. {
  10027. _sqlSugar.RollbackTran();
  10028. return Ok(JsonView(false, ex.Message));
  10029. }
  10030. return Ok(JsonView(true));
  10031. }
  10032. private bool IsValidDate(string dateString, string format)
  10033. {
  10034. DateTime dateValue;
  10035. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  10036. return valid;
  10037. }
  10038. /// <summary>
  10039. /// 接团客户名单
  10040. /// 根据团组Id查询List
  10041. /// </summary>
  10042. /// <param name="dto"></param>
  10043. /// <returns></returns>
  10044. [HttpPost]
  10045. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10046. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  10047. {
  10048. #region 参数验证
  10049. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  10050. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10051. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  10052. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10053. #region 页面操作权限验证
  10054. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10055. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10056. #endregion
  10057. #endregion
  10058. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  10059. if (viewData.Code != 0)
  10060. {
  10061. return Ok(JsonView(false, viewData.Msg));
  10062. }
  10063. return Ok(JsonView(viewData.Data));
  10064. }
  10065. /// <summary>
  10066. /// 接团客户名单
  10067. /// 基础数据 Init
  10068. /// </summary>
  10069. /// <param name="_dto"></param>
  10070. /// <returns></returns>
  10071. [HttpPost]
  10072. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10073. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  10074. {
  10075. #region 参数验证
  10076. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10077. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10078. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10079. #region 页面操作权限验证
  10080. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10081. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10082. #endregion
  10083. #endregion
  10084. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  10085. if (viewData.Code != 0)
  10086. {
  10087. return Ok(JsonView(false, viewData.Msg));
  10088. }
  10089. return Ok(JsonView(viewData.Data));
  10090. }
  10091. /// <summary>
  10092. /// 接团客户名单
  10093. /// 根据 Id查询 Details
  10094. /// </summary>
  10095. /// <param name="_dto"></param>
  10096. /// <returns></returns>
  10097. [HttpPost]
  10098. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10099. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  10100. {
  10101. #region 参数验证
  10102. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10103. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10104. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10105. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10106. #region 页面操作权限验证
  10107. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10108. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10109. #endregion
  10110. #endregion
  10111. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  10112. if (viewData.Code != 0)
  10113. {
  10114. return Ok(JsonView(false, viewData.Msg));
  10115. }
  10116. return Ok(JsonView(viewData.Data));
  10117. }
  10118. /// <summary>
  10119. /// 接团客户名单
  10120. /// Add Or Edit
  10121. /// </summary>
  10122. /// <param name="_dto"></param>
  10123. /// <returns></returns>
  10124. [HttpPost]
  10125. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10126. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  10127. {
  10128. #region 参数验证
  10129. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10130. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10131. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10132. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10133. #region 页面操作权限验证
  10134. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10135. if (_dto.Id == 0) //添加
  10136. {
  10137. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10138. }
  10139. else if (_dto.Id >= 0) //修改
  10140. {
  10141. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  10142. }
  10143. #endregion
  10144. #endregion
  10145. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  10146. if (viewData.Code != 0)
  10147. {
  10148. return Ok(JsonView(false, viewData.Msg));
  10149. }
  10150. return Ok(JsonView(true));
  10151. }
  10152. /// <summary>
  10153. /// 接团客户名单
  10154. /// AddMultiple(添加多个)
  10155. /// </summary>
  10156. /// <param name="_dto"></param>
  10157. /// <returns></returns>
  10158. [HttpPost]
  10159. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10160. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  10161. {
  10162. #region 参数验证
  10163. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10164. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10165. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10166. #region 页面操作权限验证
  10167. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10168. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10169. #endregion
  10170. #endregion
  10171. var viewData = await _tourClientListRep._AddMultiple(_dto);
  10172. if (viewData.Code != 0)
  10173. {
  10174. return Ok(JsonView(false, viewData.Msg));
  10175. }
  10176. return Ok(JsonView(true));
  10177. }
  10178. /// <summary>
  10179. /// 接团客户名单
  10180. /// Del
  10181. /// </summary>
  10182. /// <param name="_dto"></param>
  10183. /// <returns></returns>
  10184. [HttpPost]
  10185. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10186. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  10187. {
  10188. #region 参数验证
  10189. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10190. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10191. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10192. #region 页面操作权限验证
  10193. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10194. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  10195. #endregion
  10196. #endregion
  10197. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  10198. if (viewData.Code != 0)
  10199. {
  10200. return Ok(JsonView(false, viewData.Msg));
  10201. }
  10202. return Ok(JsonView(true));
  10203. }
  10204. /// <summary>
  10205. /// 接团客户名单
  10206. /// 文件下载 客户名单
  10207. /// </summary>
  10208. /// <param name="_dto"></param>
  10209. /// <returns></returns>
  10210. [HttpPost]
  10211. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10212. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  10213. {
  10214. #region 参数验证
  10215. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10216. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10217. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10218. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10219. #region 页面操作权限验证
  10220. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10221. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10222. #endregion
  10223. #endregion
  10224. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10225. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10226. From Grp_TourClientList tcl
  10227. Left Join
  10228. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10229. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10230. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10231. From Crm_DeleClient dc
  10232. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10233. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10234. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10235. Where dc.IsDel = 0) temp
  10236. On temp.DcId =tcl.ClientId
  10237. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10238. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10239. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10240. //载入模板
  10241. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10242. if (_dto.Language == 1)
  10243. {
  10244. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10245. }
  10246. //载入模板
  10247. var doc = new Document(tempPath);
  10248. DocumentBuilder builder = new DocumentBuilder(doc);
  10249. //获取word里所有表格
  10250. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10251. //获取所填表格的序数
  10252. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10253. var rowStart = tableOne.Rows[0]; //获取第1行
  10254. if (_dto.Language == 0)
  10255. {
  10256. //循环赋值
  10257. for (int i = 0; i < DcList.Count; i++)
  10258. {
  10259. builder.MoveToCell(0, i + 1, 0, 0);
  10260. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10261. builder.MoveToCell(0, i + 1, 1, 0);
  10262. int sex = DcList[i].Sex;
  10263. string sexStr = string.Empty;
  10264. if (sex == 0) sexStr = "男";
  10265. else if (sex == 1) sexStr = "女";
  10266. else sexStr = "未设置";
  10267. builder.Write(sexStr);
  10268. builder.MoveToCell(0, i + 1, 2, 0);
  10269. string birthDay = DcList[i].BirthDay;
  10270. string birthDayStr = string.Empty;
  10271. if (!string.IsNullOrEmpty(birthDay))
  10272. {
  10273. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10274. }
  10275. builder.Write(birthDayStr);
  10276. builder.MoveToCell(0, i + 1, 3, 0);
  10277. string company = "";
  10278. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10279. {
  10280. company = DcList[i].CompanyFullName.ToString();
  10281. }
  10282. builder.Write(company);
  10283. builder.MoveToCell(0, i + 1, 4, 0);
  10284. builder.Write(DcList[i].Job);
  10285. }
  10286. }
  10287. else if (_dto.Language == 1)
  10288. {
  10289. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10290. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10291. //循环赋值
  10292. for (int i = 0; i < DcList.Count; i++)
  10293. {
  10294. string PYName = "";
  10295. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10296. {
  10297. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10298. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10299. PYName = PY_First + " " + PY_Last;
  10300. }
  10301. else
  10302. {
  10303. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10304. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10305. PYName = PY_First + " " + PY_Last;
  10306. }
  10307. builder.MoveToCell(0, i + 1, 0, 0);
  10308. builder.Write(PYName);
  10309. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10310. builder.MoveToCell(0, i + 1, 1, 0);
  10311. builder.Write(sex);
  10312. DateTime birthDt;
  10313. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10314. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : "";
  10315. builder.MoveToCell(0, i + 1, 2, 0);
  10316. builder.Write(birthday);
  10317. string company = "";
  10318. try
  10319. {
  10320. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10321. {
  10322. //查询对照表
  10323. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10324. if (tempCec != null)
  10325. {
  10326. company = tempCec.enName;
  10327. }
  10328. //翻译
  10329. else
  10330. {
  10331. company = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].CompanyFullName.ToString().Trim());
  10332. }
  10333. }
  10334. }
  10335. catch (Exception)
  10336. {
  10337. }
  10338. builder.MoveToCell(0, i + 1, 3, 0);
  10339. builder.Write(company);
  10340. string job = "";
  10341. try
  10342. {
  10343. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10344. {
  10345. //查询对照表
  10346. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10347. if (tempPec != null)
  10348. {
  10349. job = tempPec.enName;
  10350. }
  10351. //翻译
  10352. else
  10353. {
  10354. job = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].Job.ToString().Trim());
  10355. }
  10356. }
  10357. }
  10358. catch (Exception ex)
  10359. {
  10360. }
  10361. builder.MoveToCell(0, i + 1, 4, 0);
  10362. builder.Write(job);
  10363. }
  10364. }
  10365. //删除多余行
  10366. while (tableOne.Rows.Count > DcList.Count + 1)
  10367. {
  10368. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10369. }
  10370. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10371. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10372. doc.Save(fileDir);
  10373. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10374. return Ok(JsonView(true, "操作成功!", Url));
  10375. }
  10376. #endregion
  10377. #region 团组倒推表
  10378. /// <summary>
  10379. /// 倒推表基础数据
  10380. /// Init
  10381. /// </summary>
  10382. /// <param name="dto"></param>
  10383. /// <returns></returns>
  10384. [HttpPost]
  10385. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10386. public async Task<IActionResult> PostInvertedListInit()
  10387. {
  10388. var viewData = await _invertedListRep._Init();
  10389. if (viewData.Code != 0)
  10390. {
  10391. return Ok(JsonView(false, viewData.Msg));
  10392. }
  10393. return Ok(JsonView(viewData.Data));
  10394. }
  10395. /// <summary>
  10396. /// 倒推表
  10397. /// Info
  10398. /// </summary>
  10399. /// <param name="dto"></param>
  10400. /// <returns></returns>
  10401. [HttpPost]
  10402. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10403. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10404. {
  10405. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10406. if (viewData.Code != 0)
  10407. {
  10408. return Ok(JsonView(false, viewData.Msg));
  10409. }
  10410. return Ok(JsonView(viewData.Data));
  10411. }
  10412. /// <summary>
  10413. /// 倒推表
  10414. /// Create
  10415. /// </summary>
  10416. /// <param name="dto"></param>
  10417. /// <returns></returns>
  10418. [HttpPost]
  10419. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10420. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10421. {
  10422. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10423. if (viewData.Code != 0)
  10424. {
  10425. return Ok(JsonView(false, viewData.Msg));
  10426. }
  10427. return Ok(JsonView(viewData.Data));
  10428. }
  10429. /// <summary>
  10430. /// 倒推表
  10431. /// Update
  10432. /// </summary>
  10433. /// <param name="dto"></param>
  10434. /// <returns></returns>
  10435. [HttpPost]
  10436. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10437. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10438. {
  10439. var viewData = await _invertedListRep._Update(dto);
  10440. if (viewData.Code != 0)
  10441. {
  10442. return Ok(JsonView(false, viewData.Msg));
  10443. }
  10444. return Ok(JsonView(viewData.Data));
  10445. }
  10446. /// <summary>
  10447. /// 倒推表
  10448. /// File Download
  10449. /// </summary>
  10450. /// <param name="dto"></param>
  10451. /// <returns></returns>
  10452. [HttpPost]
  10453. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10454. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10455. {
  10456. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10457. if (info2.Code != 0)
  10458. {
  10459. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10460. }
  10461. var info1 = info2.Data as InvertedListInfoView;
  10462. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10463. string teamName = "";
  10464. if (info != null) teamName = info.TeamName;
  10465. //载入模板
  10466. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10467. DocumentBuilder builder = new DocumentBuilder(doc);
  10468. //利用键值对存放数据
  10469. Dictionary<string, string> dic = new Dictionary<string, string>();
  10470. dic.Add("TeamName", teamName);
  10471. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10472. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10473. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10474. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10475. dic.Add("SQRemark", info1.ApprovalRemark);
  10476. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10477. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10478. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10479. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10480. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10481. dic.Add("QZRemark", info1.VisaInformationRemark);
  10482. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10483. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10484. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10485. dic.Add("CQRemark", info1.IssueVisaRemark);
  10486. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10487. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10488. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10489. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10490. #region 填充word模板书签内容
  10491. foreach (var key in dic.Keys)
  10492. {
  10493. builder.MoveToBookmark(key);
  10494. builder.Write(dic[key]);
  10495. }
  10496. #endregion
  10497. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10498. string fileName = $"{teamName}团出行准备流程表.doc";
  10499. string filePath = fileDir + $@"InvertedList/{fileName}";
  10500. doc.Save(filePath);
  10501. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10502. return Ok(JsonView(true, "操作成功!", Url));
  10503. }
  10504. #endregion
  10505. #region 三公签证费用(签证费、代办费)
  10506. /// <summary>
  10507. /// 三公签证费用(签证费、代办费)
  10508. /// List
  10509. /// </summary>
  10510. /// <returns></returns>
  10511. [HttpPost]
  10512. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10513. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10514. {
  10515. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10516. if (_view.Code != 0)
  10517. {
  10518. return Ok(JsonView(false, _view.Msg));
  10519. }
  10520. return Ok(JsonView(true, "操作成功!", _view.Data));
  10521. }
  10522. /// <summary>
  10523. /// 三公签证费用(签证费、代办费)
  10524. /// Add Or Update
  10525. /// </summary>
  10526. /// <returns></returns>
  10527. [HttpPost]
  10528. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10529. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10530. {
  10531. var _view = await _visaFeeInfoRep._Update(_dto);
  10532. if (_view.Code != 0)
  10533. {
  10534. return Ok(JsonView(false, _view.Msg));
  10535. }
  10536. return Ok(JsonView(true, _view.Msg));
  10537. }
  10538. #endregion
  10539. #region 酒店询价
  10540. /// <summary>
  10541. /// 酒店询价
  10542. /// Init
  10543. /// </summary>
  10544. /// <param name="dto"></param>
  10545. /// <returns></returns>
  10546. [HttpPost]
  10547. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10548. public async Task<IActionResult> PostHotelInquiryInit()
  10549. {
  10550. var res = await _hotelInquiryRep._Init();
  10551. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10552. return Ok(JsonView(true, res.Msg, res.Data));
  10553. }
  10554. /// <summary>
  10555. /// 酒店询价
  10556. /// page Item
  10557. /// </summary>
  10558. /// <param name="_dto"></param>
  10559. /// <returns></returns>
  10560. [HttpPost]
  10561. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10562. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10563. {
  10564. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex,_dto.PageSize,_dto.PortType,_dto.DiId);
  10565. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10566. var view = res.Data as PageDataViewBase;
  10567. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10568. }
  10569. /// <summary>
  10570. /// 酒店询价
  10571. /// info
  10572. /// </summary>
  10573. /// <param name="_dto"></param>
  10574. /// <returns></returns>
  10575. [HttpPost]
  10576. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10577. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10578. {
  10579. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10580. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10581. return Ok(JsonView(true, res.Msg, res.Data));
  10582. }
  10583. /// <summary>
  10584. /// 酒店询价
  10585. /// Add Or Edit
  10586. /// </summary>
  10587. /// <param name="_dto"></param>
  10588. /// <returns></returns>
  10589. [HttpPost]
  10590. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10591. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10592. {
  10593. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10594. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10595. return Ok(JsonView(true, res.Msg, res.Data));
  10596. }
  10597. /// <summary>
  10598. /// 酒店询价
  10599. /// Del
  10600. /// </summary>
  10601. /// <param name="_dto"></param>
  10602. /// <returns></returns>
  10603. [HttpPost]
  10604. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10605. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10606. {
  10607. var res = await _hotelInquiryRep._Del(_dto.Id,_dto.DeleteUserId);
  10608. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10609. return Ok(JsonView(true, res.Msg, res.Data));
  10610. }
  10611. #endregion
  10612. // /// <summary>
  10613. // ///
  10614. // /// </summary>
  10615. // /// <param name="_dto"></param>
  10616. // /// <returns></returns>
  10617. // [HttpPost]
  10618. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10619. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  10620. // {
  10621. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  10622. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  10623. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  10624. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  10625. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  10626. // dic_psg.Add("客人", 974);
  10627. // dic_psg.Add("司机", 975);
  10628. // dic_psg.Add("导游", 976);
  10629. // dic_psg.Add("公司内部人员", 977);
  10630. // dic_psg.Add("司机/导游/公司内部人员", 978);
  10631. // foreach (var item in list_visa)
  10632. // {
  10633. // Grp_VisaInfo temp = new Grp_VisaInfo();
  10634. // temp.Id = item.Id;
  10635. // temp.DIId = item.DIId;
  10636. // temp.VisaClient = item.VisaClient;
  10637. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  10638. // temp.VisaCurrency = item.VisaCurrency;
  10639. // temp.IsThird = item.IsThird;
  10640. // if (dic_psg.ContainsKey(item.PassengerType))
  10641. // {
  10642. // temp.PassengerType = dic_psg[item.PassengerType];
  10643. // }
  10644. // else {
  10645. // temp.PassengerType = -1;
  10646. // }
  10647. // temp.VisaNumber = item.VisaNumber;
  10648. // temp.VisaFreeNumber = item.VisaFreeNumber;
  10649. // temp.CreateUserId = item.Operators;
  10650. // DateTime dt_ct;
  10651. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  10652. // if (b_ct)
  10653. // {
  10654. // temp.CreateTime = dt_ct;
  10655. // }
  10656. // else
  10657. // {
  10658. // temp.CreateTime = DateTime.Now;
  10659. // }
  10660. // temp.DeleteTime = "";
  10661. // temp.DeleteUserId = 0;
  10662. // temp.Remark = item.Remark;
  10663. // if (string.IsNullOrEmpty(temp.Remark)) {
  10664. // temp.Remark = "";
  10665. // }
  10666. // temp.IsDel = item.IsDel;
  10667. // temp.VisaDescription = item.VisaAttachment;
  10668. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  10669. //([Id]
  10670. // ,[DIId]
  10671. // ,[VisaClient]
  10672. // ,[VisaPrice]
  10673. // ,[VisaCurrency]
  10674. // ,[IsThird]
  10675. // ,[PassengerType]
  10676. // ,[VisaNumber]
  10677. // ,[VisaFreeNumber]
  10678. // ,[CreateUserId]
  10679. // ,[CreateTime]
  10680. // ,[DeleteTime]
  10681. // ,[DeleteUserId]
  10682. // ,[Remark]
  10683. // ,[IsDel]
  10684. // ,[visaDescription])
  10685. // VALUES
  10686. // ({0},{1},'{2}',{3},{4}
  10687. //,{5},{6},{7},{8},{9}
  10688. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  10689. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  10690. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  10691. //);
  10692. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  10693. // }
  10694. // return Ok(JsonView(true, "操作成功!"));
  10695. // }
  10696. /// <summary>
  10697. /// 123132123
  10698. /// </summary>
  10699. /// <param name="_dto"></param>
  10700. /// <returns></returns>
  10701. [HttpPost]
  10702. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10703. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  10704. {
  10705. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  10706. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  10707. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  10708. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  10709. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  10710. dicDetail.Add(789, 1034);
  10711. dicDetail.Add(790, 1035);
  10712. dicDetail.Add(791, 1036);
  10713. dicDetail.Add(792, 1037);
  10714. dicDetail.Add(793, 1038);
  10715. dicDetail.Add(794, 1039);
  10716. dicDetail.Add(795, 1040);
  10717. dicDetail.Add(796, 1041);
  10718. dicDetail.Add(797, 1042);
  10719. dicDetail.Add(798, 1043);
  10720. dicDetail.Add(801, 1044);
  10721. dicDetail.Add(802, 1045);
  10722. dicDetail.Add(803, 1046);
  10723. Dictionary<int, int> dic = new Dictionary<int, int>();
  10724. dic.Add(806, 1027);
  10725. dic.Add(807, 1028);
  10726. dic.Add(808, 1029);
  10727. dic.Add(809, 1030);
  10728. dic.Add(810, 1031);
  10729. dic.Add(811, 1032);
  10730. dic.Add(812, 1033);
  10731. foreach (var item in list_visa)
  10732. {
  10733. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  10734. temp.Coefficient = item.coefficient;
  10735. DateTime dtCrt;
  10736. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  10737. if (b1)
  10738. {
  10739. temp.CreateTime = dtCrt;
  10740. }
  10741. else
  10742. {
  10743. temp.CreateTime = DateTime.Now;
  10744. }
  10745. temp.CreateUserId = item.Operators;
  10746. temp.DeleteTime = "";
  10747. temp.DeleteUserId = 0;
  10748. temp.DiId = int.Parse(item.DIID);
  10749. temp.FilePath = item.FilePath;
  10750. temp.IsDel = item.IsDel;
  10751. temp.Price = item.Price;
  10752. temp.PriceCount = 1;
  10753. temp.PriceCurrency = item.Currency;
  10754. int detailId = 0;
  10755. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  10756. {
  10757. detailId = dicDetail[item.PriceTypeDetail];
  10758. }
  10759. temp.PriceDetailType = detailId;
  10760. temp.PriceDt = DateTime.Now;
  10761. temp.PriceName = item.PriceName;
  10762. temp.PriceSum = item.Price;
  10763. int tid = 0;
  10764. if (dic.ContainsKey(item.PriceType))
  10765. {
  10766. tid = dic[item.PriceType];
  10767. }
  10768. temp.PriceType = tid;
  10769. temp.Remark = item.Remark;
  10770. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  10771. }
  10772. return Ok(JsonView(true, "操作成功!"));
  10773. }
  10774. }
  10775. }