GroupsController.cs 546 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149
  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. namespace OASystem.API.Controllers
  77. {
  78. /// <summary>
  79. /// 团组相关
  80. /// </summary>
  81. //[Authorize]
  82. [Route("api/[controller]/[action]")]
  83. public class GroupsController : ControllerBase
  84. {
  85. private readonly GrpScheduleRepository _grpScheduleRep;
  86. private readonly IMapper _mapper;
  87. private readonly DelegationInfoRepository _groupRepository;
  88. private readonly TaskAssignmentRepository _taskAssignmentRep;
  89. private readonly AirTicketResRepository _airTicketResRep;
  90. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  91. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  92. private readonly DelegationEnDataRepository _delegationEnDataRep;
  93. private readonly DelegationVisaRepository _delegationVisaRep;
  94. private readonly VisaPriceRepository _visaPriceRep;
  95. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  96. private readonly HotelPriceRepository _hotelPriceRep;
  97. private readonly CustomersRepository _customersRep;
  98. private readonly MessageRepository _message;
  99. private readonly SqlSugarClient _sqlSugar;
  100. private readonly TourClientListRepository _tourClientListRep;
  101. private readonly TeamRateRepository _teamRateRep;
  102. #region 成本相关
  103. private readonly CheckBoxsRepository _checkBoxs;
  104. private readonly GroupCostRepository _GroupCostRepository;
  105. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  106. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  107. #endregion
  108. private readonly SetDataRepository _setDataRep;
  109. private string url;
  110. private string path;
  111. private readonly EnterExitCostRepository _enterExitCostRep;
  112. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  113. private readonly UsersRepository _usersRep;
  114. private readonly IJuHeApiService _juHeApi;
  115. private readonly InvertedListRepository _invertedListRep;
  116. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  117. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  118. private readonly HotelInquiryRepository _hotelInquiryRep;
  119. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  120. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  121. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  122. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  123. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  124. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  125. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  126. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep)
  127. {
  128. _mapper = mapper;
  129. _grpScheduleRep = grpScheduleRep;
  130. _groupRepository = groupRepository;
  131. _taskAssignmentRep = taskAssignmentRep;
  132. _airTicketResRep = airTicketResRep;
  133. _sqlSugar = sqlSugar;
  134. url = AppSettingsHelper.Get("ExcelBaseUrl");
  135. path = AppSettingsHelper.Get("ExcelBasePath");
  136. if (!System.IO.Directory.Exists(path))
  137. {
  138. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  139. }
  140. _decreasePaymentsRep = decreasePaymentsRep;
  141. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  142. _delegationEnDataRep = delegationEnDataRep;
  143. _enterExitCostRep = enterExitCostRep;
  144. _delegationVisaRep = delegationVisaRep;
  145. _message = message;
  146. _visaPriceRep = visaPriceRep;
  147. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  148. _checkBoxs = checkBoxs;
  149. _GroupCostRepository = GroupCostRepository;
  150. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  151. _GroupCostParameterRepository = GroupCostParameterRepository;
  152. _hotelPriceRep = hotelPriceRep;
  153. _customersRep = customersRep;
  154. _setDataRep = setDataRep;
  155. _tourClientListRep = tourClientListRep;
  156. _teamRateRep = teamRateRep;
  157. _hubContext = hubContext;
  158. _usersRep = usersRep;
  159. _juHeApi = juHeApi;
  160. _invertedListRep = invertedListRep;
  161. _visaFeeInfoRep = visaFeeInfoRep;
  162. _ticketBlackCodeRep = ticketBlackCodeRep;
  163. _hotelInquiryRep = hotelInquiryRep;
  164. }
  165. #region 流程管控
  166. /// <summary>
  167. /// 获取团组流程管控信息
  168. /// </summary>
  169. /// <param name="paras">参数Json字符串</param>
  170. /// <returns></returns>
  171. [HttpPost]
  172. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  173. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  174. {
  175. if (string.IsNullOrEmpty(_jsonDto.Paras))
  176. {
  177. return Ok(JsonView(false, "参数为空"));
  178. }
  179. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  180. if (_ScheduleDto != null)
  181. {
  182. if (_ScheduleDto.SearchType == 2)//获取列表
  183. {
  184. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  185. return Ok(JsonView(_grpScheduleViewList));
  186. }
  187. else//获取对象
  188. {
  189. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  190. if (_grpScheduleView != null)
  191. {
  192. return Ok(JsonView(_grpScheduleView));
  193. }
  194. }
  195. }
  196. else
  197. {
  198. return Ok(JsonView(false, "参数反序列化失败"));
  199. }
  200. return Ok(JsonView(false, "暂无数据!"));
  201. }
  202. /// <summary>
  203. /// 修改团组流程管控详细表数据
  204. /// </summary>
  205. /// <param name="paras"></param>
  206. /// <returns></returns>
  207. [HttpPost]
  208. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  209. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  210. {
  211. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  212. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  213. .SetColumns(it => it.Duty == _detail.Duty)
  214. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  215. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  216. .SetColumns(it => it.JobContent == _detail.JobContent)
  217. .SetColumns(it => it.Remark == _detail.Remark)
  218. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  219. .Where(s => s.Id == dto.Id)
  220. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  221. .ExecuteCommandAsync();
  222. if (result > 0)
  223. {
  224. return Ok(JsonView(true, "保存成功!"));
  225. }
  226. return Ok(JsonView(false, "保存失败!"));
  227. }
  228. /// <summary>
  229. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  230. /// </summary>
  231. /// <param name="dto"></param>
  232. /// <returns></returns>
  233. [HttpPost]
  234. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  235. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  236. {
  237. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  238. _detail.IsDel = 1;
  239. _detail.DeleteUserId = dto.Duty;
  240. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  241. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  242. .SetColumns(it => it.IsDel == _detail.IsDel)
  243. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  244. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  245. .Where(it => it.Id == dto.Id)
  246. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  247. //.WhereColumns(s => s.Id == dto.Id)
  248. .ExecuteCommandAsync();
  249. if (result > 0)
  250. {
  251. return Ok(JsonView(true, "删除成功!"));
  252. }
  253. return Ok(JsonView(false, "删除失败!"));
  254. }
  255. /// <summary>
  256. /// 增加团组流程管控详细表数据
  257. /// </summary>
  258. /// <param name="dto"></param>
  259. /// <returns></returns>
  260. [HttpPost]
  261. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  262. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  263. {
  264. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  265. if (DateTime.Now < _detail.ExpectBeginDt)
  266. {
  267. _detail.StepStatus = 0;
  268. }
  269. else
  270. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  271. _detail.StepStatus = 1;
  272. }
  273. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  274. if (result > 0)
  275. {
  276. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  277. return Ok(JsonView(true, "添加成功!", _result));
  278. }
  279. return Ok(JsonView(false, "添加失败!"));
  280. }
  281. #endregion
  282. #region 团组基本信息
  283. /// <summary>
  284. /// 接团信息列表
  285. /// </summary>
  286. /// <param name="dto">团组列表请求dto</param>
  287. /// <returns></returns>
  288. [HttpPost]
  289. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  290. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  291. {
  292. var groupData = await _groupRepository.GetGroupList(dto);
  293. if (groupData.Code != 0)
  294. {
  295. return Ok(JsonView(false, groupData.Msg));
  296. }
  297. return Ok(JsonView(groupData.Data));
  298. }
  299. /// <summary>
  300. /// 接团信息列表 Page
  301. /// </summary>
  302. /// <param name="dto">团组列表请求dto</param>
  303. /// <returns></returns>
  304. [HttpPost]
  305. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  306. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  307. {
  308. #region 参数验证
  309. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  310. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  311. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  312. #region 页面操作权限验证
  313. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  314. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  315. #endregion
  316. #endregion
  317. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  318. {
  319. string sqlWhere = string.Empty;
  320. if (dto.IsSure == 0) //未完成
  321. {
  322. sqlWhere += string.Format(@" And IsSure = 0");
  323. }
  324. else if (dto.IsSure == 1) //已完成
  325. {
  326. sqlWhere += string.Format(@" And IsSure = 1");
  327. }
  328. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  329. {
  330. string tj = dto.SearchCriteria;
  331. 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}%')",
  332. tj, tj, tj, tj, tj);
  333. }
  334. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  335. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  336. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  337. JietuanOperator,IsSure,CreateTime
  338. From (
  339. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  340. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  341. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  342. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  343. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  344. From Grp_DelegationInfo gdi
  345. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  346. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  347. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  348. Where gdi.IsDel = 0 {0}
  349. ) temp", sqlWhere);
  350. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  351. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  352. #region 处理所属部门
  353. /*
  354. * 1.sq 和 gyy 等显示 市场部
  355. * 2.王鸽和主管及张总还有管理员号统一国交部
  356. * 2-1. 4 管理员 ,21 张海麟
  357. */
  358. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  359. List<int> userIds1 = new List<int>() { 4, 21 };
  360. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  361. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  362. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  363. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  364. .ToList();
  365. foreach (var item in _DelegationList)
  366. {
  367. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  368. }
  369. #endregion
  370. var _view = new
  371. {
  372. PageFuncAuth = pageFunAuthView,
  373. Data = _DelegationList
  374. };
  375. return Ok(JsonView(true, "查询成功!", _view, total));
  376. }
  377. else
  378. {
  379. return Ok(JsonView(false, "查询失败"));
  380. }
  381. }
  382. /// <summary>
  383. /// 团组列表
  384. /// </summary>
  385. /// <returns></returns>
  386. [HttpPost]
  387. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  388. {
  389. #region 参数验证
  390. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  391. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  392. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  393. #region 页面操作权限验证
  394. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  395. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  396. #endregion
  397. #endregion
  398. if (dto.PortType != 1 && dto.PortType != 2)
  399. {
  400. return Ok(JsonView(false, "查询失败!"));
  401. }
  402. string orderbyStr = "order by gdi.CreateTime Desc";
  403. string sqlWhere = string.Empty;
  404. if (dto.IsSure == 0) //未完成
  405. {
  406. sqlWhere += string.Format(@" And IsSure = 0");
  407. }
  408. else if (dto.IsSure == 1) //已完成
  409. {
  410. sqlWhere += string.Format(@" And IsSure = 1");
  411. }
  412. //团组类型
  413. if (dto.TeamDid > 0)
  414. {
  415. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  416. }
  417. //团组名称
  418. if (!string.IsNullOrEmpty(dto.TeamName))
  419. {
  420. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  421. }
  422. //客户名称
  423. if (!string.IsNullOrEmpty(dto.ClientName))
  424. {
  425. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  426. }
  427. //客户单位
  428. if (!string.IsNullOrEmpty(dto.ClientUnit))
  429. {
  430. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  431. }
  432. //出访时间
  433. if (!string.IsNullOrEmpty(dto.visitDataTime))
  434. {
  435. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  436. orderbyStr = "order by gdi.VisitDate";
  437. }
  438. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  439. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  440. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  441. JietuanOperator,IsSure,CreateTime
  442. From (
  443. Select row_number() over({0}) as Row_Number,
  444. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  445. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  446. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  447. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  448. From Grp_DelegationInfo gdi
  449. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  450. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  451. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  452. Where gdi.IsDel = 0 {1}
  453. ) temp ", orderbyStr, sqlWhere);
  454. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  455. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  456. #region 处理所属部门
  457. /*
  458. * 1.sq 和 gyy 等显示 市场部
  459. * 2.王鸽和主管及张总还有管理员号统一国交部
  460. * 2-1. 4 管理员 ,21 张海麟
  461. */
  462. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  463. List<int> userIds1 = new List<int>() { 4, 21 };
  464. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  465. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  466. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  467. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  468. .ToList();
  469. foreach (var item in _DelegationList)
  470. {
  471. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  472. }
  473. #endregion
  474. var _view = new
  475. {
  476. PageFuncAuth = pageFunAuthView,
  477. Data = _DelegationList
  478. };
  479. return Ok(JsonView(true, "查询成功!", _view, total));
  480. }
  481. /// <summary>
  482. /// 接团信息详情
  483. /// </summary>
  484. /// <param name="dto">团组info请求dto</param>
  485. /// <returns></returns>
  486. [HttpPost]
  487. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  488. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  489. {
  490. var groupData = await _groupRepository.GetGroupInfo(dto);
  491. if (groupData.Code != 0)
  492. {
  493. return Ok(JsonView(false, groupData.Msg));
  494. }
  495. return Ok(JsonView(groupData.Data));
  496. }
  497. /// <summary>
  498. /// 接团信息 编辑添加
  499. /// 基础信息数据源
  500. /// </summary>
  501. /// <param name="dto"></param>
  502. /// <returns></returns>
  503. [HttpPost]
  504. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  505. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  506. {
  507. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  508. if (groupData.Code != 0)
  509. {
  510. return Ok(JsonView(false, groupData.Msg));
  511. }
  512. return Ok(JsonView(groupData.Data));
  513. }
  514. /// <summary>
  515. /// 接团信息 操作(增改)
  516. /// </summary>
  517. /// <param name="dto"></param>
  518. /// <returns></returns>
  519. [HttpPost]
  520. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  521. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  522. {
  523. try
  524. {
  525. var groupData = await _groupRepository.GroupOperation(dto);
  526. if (groupData.Code != 0)
  527. {
  528. return Ok(JsonView(false, groupData.Msg));
  529. }
  530. int diId = 0;
  531. //添加时 默认加入团组汇率
  532. if (dto.Status == 1) //添加
  533. {
  534. diId = groupData.Data;
  535. //添加默认币种
  536. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  537. //默认分配权限
  538. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  539. //消息提示 王鸽 主管号
  540. List<int> _managerIds = new List<int>() { 22, 32 };
  541. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  542. if (userIds.Count > 0)
  543. {
  544. userIds.Add(208);
  545. //创建团组管控
  546. GroupStepForDelegation.CreateWorkStep(diId);
  547. //发送消息
  548. string groupName = dto.TeamName;
  549. string createGroupUser = string.Empty;
  550. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  551. if (userInfo != null) createGroupUser = userInfo.CnName;
  552. string title = $"系统通知";
  553. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  554. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  555. }
  556. //默认创建倒推表
  557. await _invertedListRep._Create(dto.UserId, diId);
  558. }
  559. else if (dto.Status == 2)
  560. {
  561. diId = dto.Id;
  562. }
  563. return Ok(JsonView(true, "操作成功!", diId));
  564. }
  565. catch (Exception ex)
  566. {
  567. Logs("[response]" + JsonConvert.SerializeObject(dto));
  568. Logs(ex.Message);
  569. return Ok(JsonView(false, ex.Message));
  570. }
  571. }
  572. /// <summary>
  573. /// 接团流程操作(增改)
  574. /// 安卓端使用 建团时添加客户名单
  575. /// </summary>
  576. /// <param name="dto"></param>
  577. /// <returns></returns>
  578. [HttpPost]
  579. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  580. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  581. {
  582. try
  583. {
  584. #region 参数验证
  585. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  586. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  587. #region 页面操作权限验证
  588. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  589. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  590. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  591. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  592. #endregion
  593. #endregion
  594. _sqlSugar.BeginTran();
  595. var _dto = new GroupOperationDto();
  596. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  597. var groupData = await _groupRepository.GroupOperation(_dto);
  598. if (groupData.Code != 0)
  599. {
  600. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  601. }
  602. int diId = 0;
  603. //添加时 默认加入团组汇率
  604. if (dto.Status == 1) //添加
  605. {
  606. diId = groupData.Data;
  607. //添加默认币种
  608. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  609. //默认分配权限
  610. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  611. //消息提示 王鸽 主管号
  612. List<int> _managerIds = new List<int>() { 22, 32 };
  613. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  614. if (userIds.Count > 0)
  615. {
  616. userIds.Add(208);
  617. //创建团组管控
  618. GroupStepForDelegation.CreateWorkStep(diId);
  619. //发送消息
  620. string groupName = dto.TeamName;
  621. string createGroupUser = string.Empty;
  622. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  623. if (userInfo != null) createGroupUser = userInfo.CnName;
  624. string title = $"系统通知";
  625. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  626. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  627. }
  628. }
  629. if (dto.Status == 2)
  630. {
  631. diId = dto.Id;
  632. if (diId == 0)
  633. {
  634. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  635. }
  636. }
  637. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  638. if (viewData.Code != 0)
  639. {
  640. _sqlSugar.RollbackTran();
  641. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  642. }
  643. _sqlSugar.CommitTran();
  644. return Ok(JsonView(true, "添加成功"));
  645. }
  646. catch (Exception ex)
  647. {
  648. _sqlSugar.RollbackTran();
  649. return Ok(JsonView(false, ex.Message));
  650. }
  651. }
  652. /// <summary>
  653. /// 接团信息 操作(删除)
  654. /// </summary>
  655. /// <param name="dto"></param>
  656. /// <returns></returns>
  657. [HttpPost]
  658. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  659. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  660. {
  661. try
  662. {
  663. var groupData = await _groupRepository.GroupDel(dto);
  664. if (groupData.Code != 0)
  665. {
  666. return Ok(JsonView(false, groupData.Msg));
  667. }
  668. return Ok(JsonView(true));
  669. }
  670. catch (Exception ex)
  671. {
  672. Logs("[response]" + JsonConvert.SerializeObject(dto));
  673. Logs(ex.Message);
  674. return Ok(JsonView(false, ex.Message));
  675. }
  676. }
  677. /// <summary>
  678. /// 获取团组销售报价号
  679. /// 团组添加时 使用
  680. /// </summary>
  681. /// <returns></returns>
  682. [HttpPost]
  683. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  684. public async Task<IActionResult> GetGroupSalesQuoteNo()
  685. {
  686. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  687. if (groupData.Code != 0)
  688. {
  689. return Ok(JsonView(false, groupData.Msg));
  690. }
  691. object salesQuoteNo = new
  692. {
  693. SalesQuoteNo = groupData.Data
  694. };
  695. return Ok(JsonView(salesQuoteNo));
  696. }
  697. /// <summary>
  698. /// 设置确认出团
  699. /// </summary>
  700. /// <param name="dto"></param>
  701. /// <returns></returns>
  702. [HttpPost]
  703. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  704. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  705. {
  706. var groupData = await _groupRepository.ConfirmationGroup(dto);
  707. if (groupData.Code != 0)
  708. {
  709. return Ok(JsonView(false, groupData.Msg));
  710. }
  711. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  712. #region OA消息推送
  713. try
  714. {
  715. string groupName = groupInfo.TeamName;
  716. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  717. List<int> userIds = new List<int>();
  718. listUser.ForEach(s => userIds.Add(s.Id));
  719. string title = $"系统通知";
  720. string content = $"团组[{groupName}]已确认出团!";
  721. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  722. }
  723. catch (Exception ex)
  724. {
  725. }
  726. #endregion
  727. #region 应用推送
  728. try
  729. {
  730. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  731. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  732. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  733. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  734. {
  735. List<string> userList = new List<string>() { users.QiyeChatUserId };
  736. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  737. }
  738. }
  739. catch (Exception ex)
  740. {
  741. }
  742. #endregion
  743. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  744. return Ok(JsonView(true, "操作成功!", groupData.Data));
  745. }
  746. /// <summary>
  747. /// 获取团组名称data And 签证国别Data
  748. /// </summary>
  749. /// <param name="dto"></param>
  750. /// <returns></returns>
  751. [HttpPost]
  752. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  753. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  754. {
  755. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  756. if (groupData.Code != 0)
  757. {
  758. return Ok(JsonView(false, groupData.Msg));
  759. }
  760. return Ok(JsonView(groupData.Data));
  761. }
  762. /// <summary>
  763. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  764. /// </summary>
  765. /// <returns></returns>
  766. [HttpPost]
  767. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  768. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  769. {
  770. try
  771. {
  772. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  773. if (groupData.Code != 0)
  774. {
  775. return Ok(JsonView(false, groupData.Msg));
  776. }
  777. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  778. }
  779. catch (Exception ex)
  780. {
  781. return Ok(JsonView(false, "程序错误!"));
  782. throw;
  783. }
  784. }
  785. #endregion
  786. #region 团组&签证
  787. /// <summary>
  788. /// 根据团组Id获取签证客户信息List
  789. /// </summary>
  790. /// <param name="dto">请求dto</param>
  791. /// <returns></returns>
  792. [HttpPost]
  793. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  794. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  795. {
  796. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  797. if (groupData.Code != 0)
  798. {
  799. return Ok(JsonView(false, groupData.Msg));
  800. }
  801. return Ok(JsonView(groupData.Data));
  802. }
  803. /// <summary>
  804. /// IOS获取团组签证拍照上传进度01(团组列表)
  805. /// </summary>
  806. /// <param name="dto">请求dto</param>
  807. /// <returns></returns>
  808. [HttpPost]
  809. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  810. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  811. {
  812. if (dto == null)
  813. {
  814. return Ok(JsonView(false, "参数为空"));
  815. }
  816. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  817. return Ok(JsonView(visaList));
  818. }
  819. /// <summary>
  820. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  821. /// </summary>
  822. /// <returns></returns>
  823. [HttpPost]
  824. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  825. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  826. {
  827. if (dto == null)
  828. {
  829. return Ok(JsonView(false, "请求错误:"));
  830. }
  831. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  832. return Ok(JsonView(list));
  833. }
  834. /// <summary>
  835. /// IOS获取团组签证拍照上传进度03(相册)
  836. /// </summary>
  837. /// <returns></returns>
  838. [HttpPost]
  839. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  840. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  841. {
  842. if (dto == null)
  843. {
  844. return Ok(JsonView(false, "请求错误:"));
  845. }
  846. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  847. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  848. list.ForEach(s => s.url = url);
  849. return Ok(JsonView(list));
  850. }
  851. /// <summary>
  852. /// IOS获取团组签证拍照上传进度04(图片上传)
  853. /// </summary>
  854. /// <param name="dto"></param>
  855. /// <returns></returns>
  856. [HttpPost]
  857. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  858. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  859. {
  860. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  861. //if (!string.IsNullOrEmpty(result))
  862. //{
  863. //}
  864. //else {
  865. // return Ok(JsonView(false, "上传失败"));
  866. //}
  867. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  868. int sucNum = 0;
  869. try
  870. {
  871. foreach (var item in dto.base64DataList)
  872. {
  873. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  874. string result = decodeBase64ToImage(item, imageName);
  875. if (!string.IsNullOrEmpty(result))
  876. {
  877. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  878. pic.CreateUserId = dto.CreateUserId;
  879. pic.PicName = imageName;
  880. pic.PicPath = result;
  881. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  882. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  883. if (insertResult > 0)
  884. {
  885. sucNum++;
  886. }
  887. }
  888. }
  889. }
  890. catch (Exception ex)
  891. {
  892. return Ok(JsonView(false, ex.Message));
  893. }
  894. string msg = string.Format(@"成功上传{0}张", sucNum);
  895. return Ok(JsonView(true, msg));
  896. }
  897. private string decodeBase64ToImage(string base64DataURL, string imgName)
  898. {
  899. string filename = "";//声明一个string类型的相对路径
  900. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  901. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  902. try//会有异常抛出,try,catch一下
  903. {
  904. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  905. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  906. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  907. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  908. //文件名称
  909. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  910. //上传的文件的路径
  911. string filePath = "";
  912. if (!Directory.Exists(fileDir))
  913. {
  914. Directory.CreateDirectory(fileDir);
  915. }
  916. //上传的文件的路径
  917. filePath = fileDir + filename;
  918. //string url = HttpRuntime.AppDomainAppPath.ToString();
  919. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  920. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  921. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  922. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  923. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  924. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  925. ms.Close();//关闭当前流,并释放所有与之关联的资源
  926. bitmap.Dispose();
  927. }
  928. catch (Exception e)
  929. {
  930. string massage = e.Message;
  931. Logs("IOS图片上传Error:" + massage);
  932. //filename = e.Message;
  933. }
  934. return filename;//返回相对路径
  935. }
  936. /// <summary>
  937. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  938. /// </summary>
  939. /// <param name="dto"></param>
  940. /// <returns></returns>
  941. [HttpPost]
  942. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  943. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  944. {
  945. if (dto == null)
  946. {
  947. return Ok(JsonView(false, "请求错误:"));
  948. }
  949. string msg = "参数错误";
  950. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  951. {
  952. try
  953. {
  954. //_delegationVisaRep.BeginTran();
  955. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  956. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  957. .Where(s => s.Id == dto.visaProgressCustomerId)
  958. .ExecuteCommandAsync();
  959. if (updCount > 0 && dto.publishCode == 1)
  960. {
  961. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  962. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  963. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  964. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  965. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  966. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  967. if (groupData == null)
  968. {
  969. _delegationVisaRep.RollbackTran();
  970. }
  971. string title = string.Format(@"[签证进度更新]");
  972. string content = string.Format(@"测试文本");
  973. bool rst = await _message.AddMsg(new MessageDto()
  974. {
  975. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  976. IssuerId = dto.publisher,
  977. Title = title,
  978. Content = content,
  979. ReleaseTime = DateTime.Now,
  980. UIdList = new List<int> {
  981. 234
  982. }
  983. });
  984. if (rst)
  985. {
  986. return Ok(JsonView(true, "发送通知成功"));
  987. }
  988. }
  989. //_delegationVisaRep.CommitTran();
  990. }
  991. catch (Exception)
  992. {
  993. //_delegationVisaRep.RollbackTran();
  994. }
  995. }
  996. return Ok(JsonView(true, msg));
  997. }
  998. #endregion
  999. #region 团组任务分配
  1000. /// <summary>
  1001. /// 团组任务分配初始化
  1002. /// </summary>
  1003. /// <param name="dto"></param>
  1004. /// <returns></returns>
  1005. [HttpPost]
  1006. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1007. public async Task<IActionResult> GetTaskAssignmen()
  1008. {
  1009. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1010. if (groupData.Code != 0)
  1011. {
  1012. return Ok(JsonView(false, groupData.Msg));
  1013. }
  1014. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1015. }
  1016. /// <summary>
  1017. /// 团组任务分配查询
  1018. /// </summary>
  1019. /// <param name="dto"></param>
  1020. /// <returns></returns>
  1021. [HttpPost]
  1022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1023. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1024. {
  1025. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1026. if (groupData.Code != 0)
  1027. {
  1028. return Ok(JsonView(false, groupData.Msg));
  1029. }
  1030. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1031. }
  1032. /// <summary>
  1033. /// 团组任务分配操作
  1034. /// </summary>
  1035. /// <param name="dto"></param>
  1036. /// <returns></returns>
  1037. [HttpPost]
  1038. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1039. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1040. {
  1041. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1042. if (groupData.Code != 0)
  1043. {
  1044. return Ok(JsonView(false, groupData.Msg));
  1045. }
  1046. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1047. }
  1048. #endregion
  1049. #region 团组费用审核
  1050. /// <summary>
  1051. /// 费用审核
  1052. /// 团组列表 Page
  1053. /// </summary>
  1054. /// <param name="_dto">团组列表请求dto</param>
  1055. /// <returns></returns>
  1056. [HttpPost]
  1057. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1058. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1059. {
  1060. #region 参数验证
  1061. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1062. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1063. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1064. #region 页面操作权限验证
  1065. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1066. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1067. #endregion
  1068. #endregion
  1069. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1070. {
  1071. string sqlWhere = string.Empty;
  1072. if (_dto.IsSure == 0) //未完成
  1073. {
  1074. sqlWhere += string.Format(@" And IsSure = 0");
  1075. }
  1076. else if (_dto.IsSure == 1) //已完成
  1077. {
  1078. sqlWhere += string.Format(@" And IsSure = 1");
  1079. }
  1080. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1081. {
  1082. string tj = _dto.SearchCriteria;
  1083. 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}%')",
  1084. tj, tj, tj, tj, tj);
  1085. }
  1086. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1087. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1088. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1089. From (
  1090. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1091. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1092. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1093. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1094. From Grp_DelegationInfo gdi
  1095. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1096. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1097. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1098. Where gdi.IsDel = 0 {0}
  1099. ) temp ", sqlWhere);
  1100. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1101. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1102. var _view = new
  1103. {
  1104. PageFuncAuth = pageFunAuthView,
  1105. Data = _DelegationList
  1106. };
  1107. return Ok(JsonView(true, "查询成功!", _view, total));
  1108. }
  1109. else
  1110. {
  1111. return Ok(JsonView(false, "查询失败"));
  1112. }
  1113. }
  1114. /// <summary>
  1115. /// 获取团组费用审核
  1116. /// </summary>
  1117. /// <param name="paras">参数Json字符串</param>
  1118. /// <returns></returns>
  1119. [HttpPost]
  1120. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1121. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1122. {
  1123. try
  1124. {
  1125. #region 参数验证
  1126. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1127. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1128. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1129. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1130. #region 页面操作权限验证
  1131. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1132. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1133. #endregion
  1134. #endregion
  1135. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1136. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1137. #region 费用清单
  1138. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1139. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1140. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1141. List<Grp_CreditCardPayment> entityList = _groupRepository
  1142. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1143. .Where(exp.ToExpression())
  1144. .ToList();
  1145. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1146. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1147. /*
  1148. * 76://酒店预订
  1149. */
  1150. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1151. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1152. .ToListAsync();
  1153. /*
  1154. * 79://车/导游地接
  1155. */
  1156. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1157. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1158. .ToListAsync();
  1159. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1160. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1161. .ToListAsync();
  1162. /*
  1163. * 80: //签证
  1164. */
  1165. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1166. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1167. .ToListAsync();
  1168. /*
  1169. *81: //邀请/公务活动
  1170. */
  1171. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1172. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1173. .ToListAsync();
  1174. /*
  1175. * 82: //团组客户保险
  1176. */
  1177. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1178. /*
  1179. * Lable = 85 机票预订
  1180. */
  1181. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1182. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1183. .ToListAsync();
  1184. /*
  1185. * 85 机票预定
  1186. */
  1187. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1188. /*
  1189. * 98 其他款项
  1190. */
  1191. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1192. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1193. .ToListAsync();
  1194. /*
  1195. * 285:收款退还
  1196. */
  1197. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1198. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1199. .ToListAsync();
  1200. /*
  1201. * 1015: //超支费用
  1202. */
  1203. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1204. /*
  1205. * 币种信息
  1206. */
  1207. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1208. /*
  1209. * 车/导游地接 费用类型
  1210. */
  1211. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1212. /*
  1213. * 车/导游地接 费用类型
  1214. */
  1215. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1216. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1217. /*
  1218. * 用户信息
  1219. */
  1220. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1221. /*
  1222. * 费用模块
  1223. */
  1224. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1225. string priceModule = string.Empty;
  1226. if (sdPriceName != null)
  1227. {
  1228. priceModule = sdPriceName.Name;
  1229. }
  1230. /*
  1231. * 处理详情数据
  1232. */
  1233. foreach (var entity in entityList)
  1234. {
  1235. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1236. _detail.Id = entity.Id;
  1237. _detail.PriceName = priceModule;
  1238. /*
  1239. * 应付款金额
  1240. */
  1241. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1242. string PaymentCurrency_WaitPay = "Unknown";
  1243. string hotelCurrncyCode = "Unknown";
  1244. string hotelCurrncyName = "Unknown";
  1245. if (sdPaymentCurrency_WaitPay != null)
  1246. {
  1247. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1248. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1249. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1250. if (hotelCurrncyCode.Equals("CNY"))
  1251. {
  1252. entity.DayRate = 1.0000M;
  1253. }
  1254. }
  1255. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1256. /*
  1257. * 此次付款金额
  1258. */
  1259. decimal CurrPayStr = 0;
  1260. if (entity.PayPercentage == 0)
  1261. {
  1262. if (entity.PayThenMoney != 0)
  1263. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1264. }
  1265. else
  1266. {
  1267. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1268. }
  1269. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1270. /*
  1271. * 剩余尾款
  1272. */
  1273. decimal BalanceStr = 0;
  1274. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1275. BalanceStr = 0;
  1276. else
  1277. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1278. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1279. /*
  1280. * Bus名称
  1281. */
  1282. _detail.BusName = "待增加";
  1283. /*
  1284. *费用所属
  1285. */
  1286. switch (entity.CTable)
  1287. {
  1288. case 76://酒店预订
  1289. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1290. if (hotelReservations != null)
  1291. {
  1292. string GovernmentRentCode = "", GovernmentRentName = "", CityTaxCode = "", CityTaxName = "", BreakfastCode = "", BreakfastName = "";
  1293. Sys_SetData sdPaymentCurrency_GovernmentRent = currencyItems.Where(s => s.Id == hotelReservations.GovernmentRentCurrency).FirstOrDefault();
  1294. if (sdPaymentCurrency_GovernmentRent != null)
  1295. {
  1296. GovernmentRentCode = sdPaymentCurrency_GovernmentRent.Name;
  1297. GovernmentRentName = sdPaymentCurrency_GovernmentRent.Remark;
  1298. }
  1299. Sys_SetData sdPaymentCurrency_CityTax = currencyItems.Where(s => s.Id == hotelReservations.CityTaxCurrency).FirstOrDefault();
  1300. if (sdPaymentCurrency_CityTax != null)
  1301. {
  1302. CityTaxCode = sdPaymentCurrency_CityTax.Name;
  1303. CityTaxName = sdPaymentCurrency_CityTax.Remark;
  1304. }
  1305. Sys_SetData sdPaymentCurrency_Breakfast = currencyItems.Where(s => s.Id == hotelReservations.BreakfastCurrency).FirstOrDefault();
  1306. if (sdPaymentCurrency_Breakfast != null)
  1307. {
  1308. BreakfastCode = sdPaymentCurrency_Breakfast.Name;
  1309. BreakfastName = sdPaymentCurrency_Breakfast.Remark;
  1310. }
  1311. string isoppayStr = hotelReservations.Isoppay == 0 ? "是" : "否";
  1312. _detail.PriceMsgContent = $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1313. $"房间说明: {hotelReservations.Remark} <br/>" +
  1314. $"地税: {hotelReservations.GovernmentRent.ToString("#0.00")} {GovernmentRentCode} ({GovernmentRentName})<br/>" +
  1315. $"城市税: {hotelReservations.CityTax.ToString("#0.00")} {CityTaxCode} ({CityTaxName})<br/>" +
  1316. $"酒店早餐: {hotelReservations.BreakfastPrice.ToString("#0.00")} {BreakfastCode} ({BreakfastName})<br/>" +
  1317. $"酒店早餐是否由地接代付: {isoppayStr}";
  1318. _detail.PriceNameContent = hotelReservations.HotelName;
  1319. }
  1320. break;
  1321. case 79://车/导游地接
  1322. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1323. if (touristGuideGroundReservations != null)
  1324. {
  1325. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1326. {
  1327. _detail.BusName = touristGuideGroundReservations.BusName;
  1328. }
  1329. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1330. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1331. //if (isInt)
  1332. //{
  1333. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1334. // if (cityInfo != null)
  1335. // {
  1336. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1337. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1338. // if (carFeeItem != null)
  1339. // {
  1340. // nameContent += $@"({carFeeItem.Name})";
  1341. // }
  1342. // _detail.PriceNameContent = nameContent;
  1343. // }
  1344. //}
  1345. //else
  1346. //{
  1347. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1348. //}
  1349. List<Grp_CarTouristGuideGroundReservationsContent> touristGuideGroundReservationsContents = _CarTouristGuideGroundReservationsContent
  1350. .Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1351. string priceMsg = string.Empty;
  1352. foreach (var item in touristGuideGroundReservationsContents)
  1353. {
  1354. string typeName = "Unknown";
  1355. string carCurrencyCode = "Unknown";
  1356. string carCurrencyName = "Unknown";
  1357. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1358. if (carTypeData != null) typeName = carTypeData.Name;
  1359. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1360. if (currencyData != null)
  1361. {
  1362. carCurrencyCode = currencyData.Name;
  1363. carCurrencyName = currencyData.Remark;
  1364. }
  1365. priceMsg += typeName + ":" + item.Price.ToString("#0.00") + " " + carCurrencyCode + "(" + carCurrencyName + ")<br/>" +
  1366. "明细:" + item.PriceContent + "<br/>" +
  1367. "备注:" + item.Remark + "<br/><br/>";
  1368. }
  1369. _detail.PriceMsgContent = priceMsg;
  1370. }
  1371. break;
  1372. case 80: //签证
  1373. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1374. if (visaInfo != null)
  1375. {
  1376. _detail.PriceNameContent = getClientNameStr(clientNameList, visaInfo.VisaClient);
  1377. _detail.PriceMsgContent = "备注:" + visaInfo.Remark;
  1378. }
  1379. break;
  1380. case 81: //邀请/公务活动
  1381. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1382. if (_ioa != null)
  1383. {
  1384. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1385. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1386. sendCurrName = "Unknown", //快递费用币种 Name
  1387. sendCurrCode = "Unknown", //快递费用币种 Code
  1388. eventsCurrName = "Unknown", //公务活动费币种 Name
  1389. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1390. translateCurrName = "Unknown", //公务翻译费 Name
  1391. translateCurrCode = "Unknown"; //公务翻译费 Code
  1392. #region 处理费用币种
  1393. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1394. if (inviteCurrData != null)
  1395. {
  1396. inviteCurrName = inviteCurrData.Remark;
  1397. inviteCurrCode = inviteCurrData.Name;
  1398. }
  1399. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1400. if (sendCurrData != null)
  1401. {
  1402. sendCurrName = sendCurrData.Remark;
  1403. sendCurrCode = sendCurrData.Name;
  1404. }
  1405. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1406. if (eventsCurrData != null)
  1407. {
  1408. eventsCurrName = eventsCurrData.Remark;
  1409. eventsCurrCode = eventsCurrData.Name;
  1410. }
  1411. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1412. if (translateCurrData != null)
  1413. {
  1414. translateCurrName = translateCurrData.Remark;
  1415. translateCurrCode = translateCurrData.Name;
  1416. }
  1417. #endregion
  1418. _detail.PriceNameContent = _ioa.InviterArea;
  1419. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1420. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1421. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1422. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1423. $@"备注:" + _ioa.Remark + "<br/>";
  1424. }
  1425. break;
  1426. case 82: //团组客户保险
  1427. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1428. if (customers != null)
  1429. {
  1430. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1431. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1432. }
  1433. break;
  1434. case 85: //机票预订
  1435. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1436. if (jpRes != null)
  1437. {
  1438. string FlightsDescription = jpRes.FlightsDescription;
  1439. string PriceDescription = jpRes.PriceDescription;
  1440. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1441. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1442. }
  1443. break;
  1444. case 98://其他款项
  1445. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1446. if (gdpRes != null)
  1447. {
  1448. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1449. _detail.PriceNameContent = gdpRes.PriceName;
  1450. }
  1451. break;
  1452. case 285://收款退还
  1453. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1454. if (refundAndOtherMoney != null)
  1455. {
  1456. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1457. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1458. }
  1459. break;
  1460. case 751://酒店早餐
  1461. break;
  1462. case 1015://超支费用
  1463. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1464. if (groupExtraCost != null)
  1465. {
  1466. _detail.PriceNameContent = groupExtraCost.PriceName;
  1467. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1468. }
  1469. break;
  1470. default:
  1471. break;
  1472. }
  1473. /*
  1474. * 申请人
  1475. */
  1476. string operatorName = " - ";
  1477. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1478. if (_opUser != null)
  1479. {
  1480. operatorName = _opUser.CnName;
  1481. }
  1482. _detail.OperatorName = operatorName;
  1483. /*
  1484. * 审核人
  1485. */
  1486. string auditOperatorName = "Unknown";
  1487. if (entity.AuditGMOperate == 0)
  1488. auditOperatorName = " - ";
  1489. else if (entity.AuditGMOperate == 4)
  1490. auditOperatorName = "自动审核";
  1491. else
  1492. {
  1493. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1494. if (_adUser != null)
  1495. {
  1496. auditOperatorName = _adUser.CnName;
  1497. }
  1498. }
  1499. _detail.AuditOperatorName = auditOperatorName;
  1500. /*
  1501. * 超预算比例
  1502. */
  1503. string overBudgetStr = "";
  1504. if (entity.ExceedBudget == -1)
  1505. overBudgetStr = sdPriceName.Name + "尚无预算";
  1506. else if (entity.ExceedBudget == 0)
  1507. overBudgetStr = "未超预算";
  1508. else
  1509. overBudgetStr = entity.ExceedBudget.ToString("P");
  1510. _detail.OverBudget = overBudgetStr;
  1511. /*
  1512. * 费用总计
  1513. */
  1514. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1515. {
  1516. CurrencyId = entity.PaymentCurrency,
  1517. CurrencyName = PaymentCurrency_WaitPay,
  1518. AmountPayable = entity.PayMoney,
  1519. ThisPayment = CurrPayStr,
  1520. BalancePayment = BalanceStr,
  1521. AuditedFunds = CurrPayStr
  1522. });
  1523. _detail.IsAuditGM = entity.IsAuditGM;
  1524. detailList.Add(_detail);
  1525. }
  1526. #endregion
  1527. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1528. /*
  1529. * 下方描述处理
  1530. */
  1531. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1532. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1533. if (ccpCurrencyPrice != null)
  1534. {
  1535. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1536. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1537. }
  1538. else
  1539. {
  1540. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1541. }
  1542. string amountPayableStr = string.Format(@"应付款总金额: ");
  1543. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1544. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1545. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1546. foreach (var item in nonDuplicat)
  1547. {
  1548. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1549. if (strs.Count > 0)
  1550. {
  1551. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1552. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1553. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1554. //单独处理此次付款金额
  1555. if (item.CurrencyId == 836) //人民币
  1556. {
  1557. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1558. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1559. }
  1560. else
  1561. {
  1562. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1563. }
  1564. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1565. //单独处理已审核费用
  1566. if (item.CurrencyId == 836) //人民币
  1567. {
  1568. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1569. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1570. }
  1571. else
  1572. {
  1573. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1574. }
  1575. }
  1576. }
  1577. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1578. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1579. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1580. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1581. var _view1 = new
  1582. {
  1583. PageFuncAuth = pageFunAuthView,
  1584. Data = _view
  1585. };
  1586. return Ok(JsonView(_view1));
  1587. }
  1588. catch (Exception ex)
  1589. {
  1590. return Ok(JsonView(false, ex.Message));
  1591. }
  1592. }
  1593. /// <summary>
  1594. /// 费用审核
  1595. /// 修改团组费用审核状态
  1596. /// </summary>
  1597. /// <param name="_dto">参数Json字符串</param>
  1598. /// <returns></returns>
  1599. [HttpPost]
  1600. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1601. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1602. {
  1603. #region 参数验证
  1604. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1605. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1606. #endregion
  1607. #region 页面操作权限验证
  1608. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1609. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1610. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1611. #endregion
  1612. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1613. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1614. DateTime dtNow = DateTime.Now;
  1615. _groupRepository.BeginTran();
  1616. int rst = 0;
  1617. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1618. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1619. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1620. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1621. List<dynamic> msgDatas = new List<dynamic>();
  1622. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1623. foreach (var item in idList)
  1624. {
  1625. int CreditId = int.Parse(item);
  1626. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1627. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1628. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1629. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1630. .Where(s => s.Id == CreditId)
  1631. .ExecuteCommandAsync();
  1632. if (result < 1)
  1633. {
  1634. rst = -1;
  1635. _groupRepository.RollbackTran();
  1636. return Ok(JsonView(false, "操作失败并回滚!"));
  1637. }
  1638. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1639. if (creditData != null)
  1640. {
  1641. #region 应用通知配置
  1642. try
  1643. {
  1644. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1645. }
  1646. catch (Exception ex)
  1647. {
  1648. }
  1649. #endregion
  1650. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1651. string groupNameStr = string.Empty;
  1652. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1653. if (groupData != null) groupNameStr = groupData.TeamName;
  1654. string creditTypeStr = string.Empty;
  1655. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1656. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1657. string creditCurrency = string.Empty;
  1658. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1659. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1660. if (creditCurrency.Equals("CNY"))
  1661. {
  1662. creditData.DayRate = 1.0000M;
  1663. }
  1664. if (creditData.PayPercentage == 0.00M)
  1665. {
  1666. creditData.PayPercentage = 100M;
  1667. }
  1668. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1669. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1670. string msgContent = "";
  1671. if (creditCurrency.Equals("CNY"))
  1672. {
  1673. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1674. }
  1675. else
  1676. {
  1677. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1678. }
  1679. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1680. }
  1681. }
  1682. if (rst == 0)
  1683. {
  1684. _groupRepository.CommitTran();
  1685. foreach (var item in msgDatas)
  1686. {
  1687. //发送消息
  1688. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1689. }
  1690. #region 应用推送
  1691. try
  1692. {
  1693. foreach (var ccpId in dic_ccp_user.Keys)
  1694. {
  1695. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1696. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1697. }
  1698. }
  1699. catch (Exception)
  1700. {
  1701. }
  1702. #endregion
  1703. return Ok(JsonView(true, "操作成功!"));
  1704. }
  1705. return Ok(JsonView(false, "操作失败!"));
  1706. }
  1707. #endregion
  1708. #region 机票费用录入
  1709. /// <summary>
  1710. /// 机票录入当前登录人可操作团组
  1711. /// </summary>
  1712. /// <param name="dto"></param>
  1713. /// <returns></returns>
  1714. [HttpPost]
  1715. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1716. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1717. {
  1718. try
  1719. {
  1720. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1721. if (groupData.Code != 0)
  1722. {
  1723. return Ok(JsonView(false, groupData.Msg));
  1724. }
  1725. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1726. }
  1727. catch (Exception ex)
  1728. {
  1729. return Ok(JsonView(false, "程序错误!"));
  1730. throw;
  1731. }
  1732. }
  1733. /// <summary>
  1734. /// 机票费用录入列表
  1735. /// </summary>
  1736. /// <param name="dto"></param>
  1737. /// <returns></returns>
  1738. [HttpPost]
  1739. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1740. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1741. {
  1742. try
  1743. {
  1744. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1745. if (groupData.Code != 0)
  1746. {
  1747. return Ok(JsonView(false, groupData.Msg));
  1748. }
  1749. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1750. }
  1751. catch (Exception ex)
  1752. {
  1753. return Ok(JsonView(false, ex.Message));
  1754. throw;
  1755. }
  1756. }
  1757. /// <summary>
  1758. /// 根据id查询费用录入信息
  1759. /// </summary>
  1760. /// <param name="dto"></param>
  1761. /// <returns></returns>
  1762. [HttpPost]
  1763. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1764. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1765. {
  1766. try
  1767. {
  1768. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1769. if (groupData.Code != 0)
  1770. {
  1771. return Ok(JsonView(false, groupData.Msg));
  1772. }
  1773. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1774. }
  1775. catch (Exception ex)
  1776. {
  1777. return Ok(JsonView(false, "程序错误!"));
  1778. throw;
  1779. }
  1780. }
  1781. /// <summary>
  1782. /// 机票费用录入操作(Status:1.新增,2.修改)
  1783. /// </summary>
  1784. /// <param name="dto"></param>
  1785. /// <returns></returns>
  1786. [HttpPost]
  1787. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1788. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1789. {
  1790. try
  1791. {
  1792. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1793. if (groupData.Code != 0)
  1794. {
  1795. return Ok(JsonView(false, groupData.Msg));
  1796. }
  1797. #region 应用推送
  1798. try
  1799. {
  1800. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  1801. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  1802. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  1803. }
  1804. catch (Exception ex)
  1805. {
  1806. }
  1807. #endregion
  1808. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1809. }
  1810. catch (Exception ex)
  1811. {
  1812. return Ok(JsonView(false, "程序错误!"));
  1813. throw;
  1814. }
  1815. }
  1816. /// <summary>
  1817. /// 根据舱位类型查询接团客户名单信息
  1818. /// </summary>
  1819. /// <param name="dto"></param>
  1820. /// <returns></returns>
  1821. [HttpPost]
  1822. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1823. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  1824. {
  1825. try
  1826. {
  1827. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  1828. if (crm_Groups.Count != 0)
  1829. {
  1830. List<dynamic> Customer = new List<dynamic>();
  1831. foreach (var item in crm_Groups)
  1832. {
  1833. var data = new
  1834. {
  1835. Id = item.Id,
  1836. Pinyin = item.Pinyin,
  1837. Name = item.LastName + item.FirstName
  1838. };
  1839. Customer.Add(data);
  1840. }
  1841. return Ok(JsonView(true, "查询成功!", Customer));
  1842. }
  1843. return Ok(JsonView(true, "暂无数据", crm_Groups));
  1844. }
  1845. catch (Exception ex)
  1846. {
  1847. return Ok(JsonView(false, "程序错误!"));
  1848. throw;
  1849. }
  1850. }
  1851. /// <summary>
  1852. /// 根据团号获取客户信息
  1853. /// </summary>
  1854. /// <param name="dto"></param>
  1855. /// <returns></returns>
  1856. [HttpPost]
  1857. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1858. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  1859. {
  1860. var jw = JsonView(false);
  1861. if (dto.DIID < 1)
  1862. {
  1863. jw.Msg += "请输入正确的diid";
  1864. return Ok(jw);
  1865. }
  1866. var arr = getSimplClientList(dto.DIID);
  1867. jw = JsonView(true, "获取成功!", arr);
  1868. return Ok(jw);
  1869. }
  1870. private List<SimplClientInfo> getSimplClientList(int diId)
  1871. {
  1872. 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);
  1873. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  1874. return arr;
  1875. }
  1876. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  1877. {
  1878. string result = origin;
  1879. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  1880. {
  1881. string[] temparr = origin.Split(',');
  1882. string fistrStr = temparr[0];
  1883. int count = temparr.Count();
  1884. int tempId;
  1885. bool success = int.TryParse(fistrStr, out tempId);
  1886. if (success)
  1887. {
  1888. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  1889. if (tempInfo != null)
  1890. {
  1891. if (count > 1)
  1892. {
  1893. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  1894. }
  1895. else
  1896. {
  1897. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  1898. }
  1899. }
  1900. }
  1901. }
  1902. return result;
  1903. }
  1904. /// <summary>
  1905. /// 机票费用录入,删除
  1906. /// </summary>
  1907. /// <param name="dto"></param>
  1908. /// <returns></returns>
  1909. [HttpPost]
  1910. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1911. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  1912. {
  1913. try
  1914. {
  1915. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  1916. if (res)
  1917. {
  1918. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  1919. {
  1920. IsDel = 1,
  1921. DeleteUserId = dto.DeleteUserId,
  1922. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  1923. }).ExecuteCommandAsync();
  1924. return Ok(JsonView(true, "删除成功!"));
  1925. }
  1926. return Ok(JsonView(false, "删除失败!"));
  1927. }
  1928. catch (Exception ex)
  1929. {
  1930. return Ok(JsonView(false, "程序错误!"));
  1931. throw;
  1932. }
  1933. }
  1934. /// <summary>
  1935. /// 导出机票录入报表
  1936. /// </summary>
  1937. /// <param name="dto"></param>
  1938. /// <returns></returns>
  1939. [HttpPost]
  1940. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1941. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  1942. {
  1943. try
  1944. {
  1945. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  1946. if (groupData.Code != 0)
  1947. {
  1948. return Ok(JsonView(false, groupData.Msg));
  1949. }
  1950. else
  1951. {
  1952. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  1953. if (AirTicketReservations.Count != 0)
  1954. {
  1955. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  1956. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  1957. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  1958. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  1959. WorkbookDesigner designer = new WorkbookDesigner();
  1960. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  1961. decimal countCost = 0;
  1962. foreach (var item in AirTicketReservations)
  1963. {
  1964. #region 处理客人姓名
  1965. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  1966. item.ClientName = clientNames;
  1967. #endregion
  1968. if (item.BankType == "其他")
  1969. {
  1970. item.BankNo = "--";
  1971. }
  1972. else
  1973. {
  1974. if (!string.IsNullOrEmpty(item.BankType))
  1975. {
  1976. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  1977. }
  1978. }
  1979. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  1980. item.Price = System.Decimal.Round(item.Price, 2);
  1981. countCost += Convert.ToDecimal(item.Price);
  1982. }
  1983. designer.SetDataSource("Export", AirTicketReservations);
  1984. designer.SetDataSource("ExportDiCode", diCode);
  1985. designer.SetDataSource("ExportDiName", diName);
  1986. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  1987. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  1988. designer.Process();
  1989. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  1990. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  1991. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  1992. return Ok(JsonView(true, "成功", url = rst));
  1993. }
  1994. else
  1995. {
  1996. return Ok(JsonView(false, "暂无数据!"));
  1997. }
  1998. }
  1999. }
  2000. catch (Exception ex)
  2001. {
  2002. return Ok(JsonView(false, ex.Message));
  2003. throw;
  2004. }
  2005. }
  2006. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2007. /// <summary>
  2008. /// 行程单导出
  2009. /// </summary>
  2010. /// <param name="dto"></param>
  2011. /// <returns></returns>
  2012. [HttpPost]
  2013. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2014. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2015. {
  2016. try
  2017. {
  2018. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2019. if (groupData.Code != 0)
  2020. {
  2021. return Ok(JsonView(false, groupData.Msg));
  2022. }
  2023. else
  2024. {
  2025. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2026. if (dto.Language == "CN")
  2027. {
  2028. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2029. DocumentBuilder builder = new DocumentBuilder(doc);
  2030. int tableIndex = 0;//表格索引
  2031. //得到文档中的第一个表格
  2032. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2033. foreach (var item in _AirTicketReservations)
  2034. {
  2035. #region 处理固定数据
  2036. string[] FlightsCode = item.FlightsCode.Split('/');
  2037. if (FlightsCode.Length != 0)
  2038. {
  2039. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2040. if (_AirCompany != null)
  2041. {
  2042. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2043. }
  2044. else
  2045. {
  2046. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2047. }
  2048. }
  2049. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2050. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2051. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2052. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2053. string name = "";
  2054. foreach (string clientName in nameArray)
  2055. {
  2056. if (!name.Contains(clientName))
  2057. {
  2058. name += clientName + ",";
  2059. }
  2060. }
  2061. if (!string.IsNullOrWhiteSpace(name))
  2062. {
  2063. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2064. }
  2065. else
  2066. {
  2067. table.Range.Bookmarks["ClientName"].Text = "--";
  2068. }
  2069. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2070. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2071. table.Range.Bookmarks["JointTicket"].Text = "--";
  2072. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2073. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2074. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2075. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2076. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2077. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2078. #endregion
  2079. #region 循环数据处理
  2080. List<AirInfo> airs = new List<AirInfo>();
  2081. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2082. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2083. for (int i = 0; i < FlightsCode.Length; i++)
  2084. {
  2085. AirInfo air = new AirInfo();
  2086. string[] tempstr = DayArray[i]
  2087. .Replace("\r\n", string.Empty)
  2088. .Replace("\\r\\n", string.Empty)
  2089. .TrimStart().TrimEnd()
  2090. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2091. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2092. string starCity = "";
  2093. if (star_Three != null)
  2094. {
  2095. starCity = star_Three.AirPort;
  2096. }
  2097. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2098. string EndCity = "";
  2099. if (End_Three != null)
  2100. {
  2101. EndCity = End_Three.AirPort;
  2102. }
  2103. air.Destination = starCity + "/" + EndCity;
  2104. air.Flight = FlightsCode[i];
  2105. air.SeatingClass = item.CTypeName;
  2106. string dateTime = tempstr[2];
  2107. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2108. air.FlightDate = DateTemp;
  2109. air.DepartureTime = tempstr[5];
  2110. air.LandingTime = tempstr[6];
  2111. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2112. air.TicketStatus = "--";
  2113. air.Luggage = "--";
  2114. air.DepartureTerminal = "--";
  2115. air.LandingTerminal = "--";
  2116. airs.Add(air);
  2117. }
  2118. int row = 13;
  2119. for (int i = 0; i < airs.Count; i++)
  2120. {
  2121. if (airs.Count > 2)
  2122. {
  2123. for (int j = 0; j < airs.Count - 2; j++)
  2124. {
  2125. var CopyRow = table.Rows[12].Clone(true);
  2126. table.Rows.Add(CopyRow);
  2127. }
  2128. }
  2129. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2130. int index = 0;
  2131. foreach (PropertyInfo property in properties)
  2132. {
  2133. string value = property.GetValue(airs[i]).ToString();
  2134. Cell ishcel0 = table.Rows[row].Cells[index];
  2135. Paragraph p = new Paragraph(doc);
  2136. string s = value;
  2137. p.AppendChild(new Run(doc, s));
  2138. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2139. ishcel0.AppendChild(p);
  2140. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2141. index++;
  2142. }
  2143. row++;
  2144. }
  2145. #endregion
  2146. Paragraph lastParagraph = new Paragraph(doc);
  2147. //第一个表格末尾加段落
  2148. table.ParentNode.InsertAfter(lastParagraph, table);
  2149. //复制第一个表格
  2150. Table cloneTable = (Table)table.Clone(true);
  2151. //在文档末尾段落后面加入复制的表格
  2152. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2153. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2154. {
  2155. int rownewsIndex = 13;
  2156. for (int i = 0; i < 2; i++)
  2157. {
  2158. var CopyRow = table.Rows[12].Clone(true);
  2159. table.Rows.RemoveAt(13);
  2160. table.Rows.Add(CopyRow);
  2161. rownewsIndex++;
  2162. }
  2163. }
  2164. else
  2165. {
  2166. table.Rows.RemoveAt(12);
  2167. }
  2168. cloneTable.Rows.RemoveAt(12);
  2169. }
  2170. if (_AirTicketReservations.Count != 0)
  2171. {
  2172. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2173. if (FlightsCode.Length != 0)
  2174. {
  2175. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2176. if (_AirCompany != null)
  2177. {
  2178. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2179. }
  2180. else
  2181. {
  2182. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2183. }
  2184. }
  2185. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2186. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2187. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2188. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2189. string name = "";
  2190. foreach (string clientName in nameArray)
  2191. {
  2192. if (!name.Contains(clientName))
  2193. {
  2194. name += clientName + ",";
  2195. }
  2196. }
  2197. if (!string.IsNullOrWhiteSpace(name))
  2198. {
  2199. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2200. }
  2201. else
  2202. {
  2203. table.Range.Bookmarks["ClientName"].Text = "--";
  2204. }
  2205. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2206. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2207. table.Range.Bookmarks["JointTicket"].Text = "--";
  2208. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2209. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2210. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2211. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2212. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2213. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2214. }
  2215. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2216. //保存合并后的文档
  2217. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2218. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2219. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2220. return Ok(JsonView(true, "成功!", rst));
  2221. }
  2222. else
  2223. {
  2224. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2225. DocumentBuilder builder = new DocumentBuilder(doc);
  2226. int tableIndex = 0;//表格索引
  2227. //得到文档中的第一个表格
  2228. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2229. List<string> texts = new List<string>();
  2230. foreach (var item in _AirTicketReservations)
  2231. {
  2232. string[] FlightsCode = item.FlightsCode.Split('/');
  2233. if (FlightsCode.Length != 0)
  2234. {
  2235. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2236. if (_AirCompany != null)
  2237. {
  2238. if (!transDic.ContainsKey(_AirCompany.CnName))
  2239. {
  2240. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2241. }
  2242. }
  2243. else
  2244. {
  2245. if (!transDic.ContainsKey("--"))
  2246. {
  2247. transDic.Add("--", "--");
  2248. }
  2249. }
  2250. }
  2251. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2252. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2253. string name = "";
  2254. foreach (string clientName in nameArray)
  2255. {
  2256. name += clientName + ",";
  2257. }
  2258. if (!texts.Contains(name))
  2259. {
  2260. texts.Add(name);
  2261. }
  2262. List<AirInfo> airs = new List<AirInfo>();
  2263. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2264. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2265. for (int i = 0; i < FlightsCode.Length; i++)
  2266. {
  2267. AirInfo air = new AirInfo();
  2268. string[] tempstr = DayArray[i]
  2269. .Replace("\r\n", string.Empty)
  2270. .Replace("\\r\\n", string.Empty)
  2271. .TrimStart().TrimEnd()
  2272. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2273. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2274. if (star_Three != null)
  2275. {
  2276. if (!transDic.ContainsKey(star_Three.AirPort))
  2277. {
  2278. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2279. }
  2280. }
  2281. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2282. if (End_Three != null)
  2283. {
  2284. if (!transDic.ContainsKey(End_Three.AirPort))
  2285. {
  2286. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2287. }
  2288. }
  2289. if (!texts.Contains(item.CTypeName))
  2290. {
  2291. texts.Add(item.CTypeName);
  2292. }
  2293. }
  2294. }
  2295. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2296. if (transData.Count > 0)
  2297. {
  2298. foreach (TranslateResult item in transData)
  2299. {
  2300. if (!transDic.ContainsKey(item.Query))
  2301. {
  2302. transDic.Add(item.Query, item.Translation);
  2303. }
  2304. }
  2305. }
  2306. foreach (var item in _AirTicketReservations)
  2307. {
  2308. #region 处理固定数据
  2309. string[] FlightsCode = item.FlightsCode.Split('/');
  2310. if (FlightsCode.Length != 0)
  2311. {
  2312. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2313. if (_AirCompany != null)
  2314. {
  2315. string str = "--";
  2316. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2317. if (!string.IsNullOrEmpty(translateResult))
  2318. {
  2319. str = translateResult;
  2320. str = _airTicketResRep.Processing(str);
  2321. }
  2322. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2323. }
  2324. else
  2325. {
  2326. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2327. }
  2328. }
  2329. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2330. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2331. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2332. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2333. string names = "";
  2334. foreach (string clientName in nameArray)
  2335. {
  2336. names += clientName + ",";
  2337. }
  2338. if (!string.IsNullOrWhiteSpace(names))
  2339. {
  2340. string str = "--";
  2341. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2342. if (!string.IsNullOrEmpty(translateResult))
  2343. {
  2344. str = translateResult;
  2345. str = _airTicketResRep.Processing(str);
  2346. }
  2347. table.Range.Bookmarks["ClientName"].Text = str;
  2348. }
  2349. else
  2350. {
  2351. table.Range.Bookmarks["ClientName"].Text = "--";
  2352. }
  2353. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2354. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2355. table.Range.Bookmarks["JointTicket"].Text = "--";
  2356. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2357. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2358. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2359. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2360. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2361. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2362. #endregion
  2363. #region 循环数据处理
  2364. List<AirInfo> airs = new List<AirInfo>();
  2365. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2366. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2367. for (int i = 0; i < FlightsCode.Length; i++)
  2368. {
  2369. AirInfo air = new AirInfo();
  2370. string[] tempstr = DayArray[i]
  2371. .Replace("\r\n", string.Empty)
  2372. .Replace("\\r\\n", string.Empty)
  2373. .TrimStart().TrimEnd()
  2374. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2375. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2376. string starCity = "";
  2377. if (star_Three != null)
  2378. {
  2379. string str2 = "--";
  2380. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2381. if (!string.IsNullOrEmpty(translateResult2))
  2382. {
  2383. str2 = translateResult2;
  2384. str2 = _airTicketResRep.Processing(str2);
  2385. }
  2386. starCity = str2;
  2387. }
  2388. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2389. string EndCity = "";
  2390. if (End_Three != null)
  2391. {
  2392. string str1 = "--";
  2393. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2394. if (!string.IsNullOrEmpty(translateResult1))
  2395. {
  2396. str1 = translateResult1;
  2397. str1 = _airTicketResRep.Processing(str1);
  2398. }
  2399. EndCity = str1;
  2400. }
  2401. air.Destination = starCity + "/" + EndCity;
  2402. air.Flight = FlightsCode[i];
  2403. string str = "--";
  2404. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2405. if (!string.IsNullOrEmpty(translateResult))
  2406. {
  2407. str = translateResult;
  2408. str = _airTicketResRep.Processing(str);
  2409. }
  2410. air.SeatingClass = str;
  2411. string dateTime = tempstr[2];
  2412. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2413. air.FlightDate = DateTemp;
  2414. air.DepartureTime = tempstr[5];
  2415. air.LandingTime = tempstr[6];
  2416. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2417. air.TicketStatus = "--";
  2418. air.Luggage = "--";
  2419. air.DepartureTerminal = "--";
  2420. air.LandingTerminal = "--";
  2421. airs.Add(air);
  2422. }
  2423. int row = 13;
  2424. for (int i = 0; i < airs.Count; i++)
  2425. {
  2426. if (airs.Count > 2)
  2427. {
  2428. for (int j = 0; j < airs.Count - 2; j++)
  2429. {
  2430. var CopyRow = table.Rows[12].Clone(true);
  2431. table.Rows.Add(CopyRow);
  2432. }
  2433. }
  2434. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2435. int index = 0;
  2436. foreach (PropertyInfo property in properties)
  2437. {
  2438. string value = property.GetValue(airs[i]).ToString();
  2439. Cell ishcel0 = table.Rows[row].Cells[index];
  2440. Paragraph p = new Paragraph(doc);
  2441. string s = value;
  2442. p.AppendChild(new Run(doc, s));
  2443. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2444. ishcel0.AppendChild(p);
  2445. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2446. //ishcel0.CellFormat.VerticalAlignment=
  2447. index++;
  2448. }
  2449. row++;
  2450. }
  2451. #endregion
  2452. Paragraph lastParagraph = new Paragraph(doc);
  2453. //第一个表格末尾加段落
  2454. table.ParentNode.InsertAfter(lastParagraph, table);
  2455. //复制第一个表格
  2456. Table cloneTable = (Table)table.Clone(true);
  2457. //在文档末尾段落后面加入复制的表格
  2458. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2459. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2460. {
  2461. int rownewsIndex = 13;
  2462. for (int i = 0; i < 2; i++)
  2463. {
  2464. var CopyRow = table.Rows[12].Clone(true);
  2465. table.Rows.RemoveAt(13);
  2466. table.Rows.Add(CopyRow);
  2467. rownewsIndex++;
  2468. }
  2469. }
  2470. else
  2471. {
  2472. table.Rows.RemoveAt(12);
  2473. }
  2474. cloneTable.Rows.RemoveAt(12);
  2475. }
  2476. if (_AirTicketReservations.Count != 0)
  2477. {
  2478. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2479. if (FlightsCode.Length != 0)
  2480. {
  2481. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2482. if (_AirCompany != null)
  2483. {
  2484. string str = "--";
  2485. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2486. if (!string.IsNullOrEmpty(translateResult))
  2487. {
  2488. str = translateResult;
  2489. str = _airTicketResRep.Processing(str);
  2490. }
  2491. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2492. }
  2493. else
  2494. {
  2495. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2496. }
  2497. }
  2498. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2499. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2500. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2501. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2502. string names = "";
  2503. foreach (string clientName in nameArray)
  2504. {
  2505. names += clientName + ",";
  2506. }
  2507. if (!string.IsNullOrWhiteSpace(names))
  2508. {
  2509. string str = "--";
  2510. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2511. if (!string.IsNullOrEmpty(translateResult))
  2512. {
  2513. str = translateResult;
  2514. str = _airTicketResRep.Processing(str);
  2515. }
  2516. table.Range.Bookmarks["ClientName"].Text = str;
  2517. }
  2518. else
  2519. {
  2520. table.Range.Bookmarks["ClientName"].Text = "--";
  2521. }
  2522. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2523. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2524. table.Range.Bookmarks["JointTicket"].Text = "--";
  2525. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2526. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2527. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2528. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2529. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2530. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2531. }
  2532. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2533. //保存合并后的文档
  2534. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2535. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2536. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2537. return Ok(JsonView(true, "成功!", rst));
  2538. }
  2539. }
  2540. }
  2541. catch (Exception ex)
  2542. {
  2543. return Ok(JsonView(false, "程序错误!"));
  2544. throw;
  2545. }
  2546. }
  2547. #endregion
  2548. #region 团组增减款项 --> 其他款项
  2549. /// <summary>
  2550. /// 团组增减款项下拉框绑定
  2551. /// </summary>
  2552. /// <param name="dto"></param>
  2553. /// <returns></returns>
  2554. [HttpPost]
  2555. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2556. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2557. {
  2558. #region 参数验证
  2559. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2560. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2561. #endregion
  2562. var res = await _decreasePaymentsRep.DecreasePaymentsSelect(dto);
  2563. if (res.Code != 0)
  2564. {
  2565. return Ok(JsonView(false, res.Msg));
  2566. }
  2567. return Ok(JsonView(true, "操作成功!", res.Data));
  2568. }
  2569. /// <summary>
  2570. /// 根据团组Id查询团组增减款项
  2571. /// </summary>
  2572. /// <param name="dto"></param>
  2573. /// <returns></returns>
  2574. [HttpPost]
  2575. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2576. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2577. {
  2578. try
  2579. {
  2580. #region 参数验证
  2581. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2582. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2583. #endregion
  2584. Result groupData = await _decreasePaymentsRep.DecreasePaymentsList(dto);
  2585. if (groupData.Code != 0)
  2586. {
  2587. return Ok(JsonView(false, groupData.Msg));
  2588. }
  2589. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2590. }
  2591. catch (Exception ex)
  2592. {
  2593. return Ok(JsonView(false, "程序错误!"));
  2594. }
  2595. }
  2596. /// <summary>
  2597. /// 团组增减款项操作(Status:1.新增,2.修改)
  2598. /// </summary>
  2599. /// <param name="dto"></param>
  2600. /// <returns></returns>
  2601. [HttpPost]
  2602. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2603. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2604. {
  2605. try
  2606. {
  2607. Result groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2608. if (groupData.Code != 0)
  2609. {
  2610. return Ok(JsonView(false, groupData.Msg));
  2611. }
  2612. #region 应用推送
  2613. try
  2614. {
  2615. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2616. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2617. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2618. }
  2619. catch (Exception ex)
  2620. {
  2621. }
  2622. #endregion
  2623. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2624. }
  2625. catch (Exception ex)
  2626. {
  2627. return Ok(JsonView(false, "程序错误!"));
  2628. throw;
  2629. }
  2630. }
  2631. /// <summary>
  2632. /// 团组增减款项操作 删除
  2633. /// </summary>
  2634. /// <param name="dto"></param>
  2635. /// <returns></returns>
  2636. [HttpPost]
  2637. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2638. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2639. {
  2640. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2641. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2642. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2643. if (res.Code == 0)
  2644. {
  2645. return Ok(JsonView(true, "删除成功!"));
  2646. }
  2647. return Ok(JsonView(false, "删除失败!"));
  2648. }
  2649. /// <summary>
  2650. /// 根据团组增减款项Id查询
  2651. /// </summary>
  2652. /// <param name="dto"></param>
  2653. /// <returns></returns>
  2654. [HttpPost]
  2655. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2656. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2657. {
  2658. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2659. Result groupData = await _decreasePaymentsRep.QueryDecreasePaymentsById(dto);
  2660. if (groupData.Code != 0)
  2661. {
  2662. return Ok(JsonView(false, groupData.Msg));
  2663. }
  2664. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2665. }
  2666. #endregion
  2667. #region 文件上传、删除
  2668. /// <summary>
  2669. /// region 文件上传 可以带参数
  2670. /// </summary>
  2671. /// <param name="file"></param>
  2672. /// <returns></returns>
  2673. [HttpPost]
  2674. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2675. public async Task<IActionResult> UploadProject(IFormFile file)
  2676. {
  2677. try
  2678. {
  2679. var TypeName = Request.Headers["TypeName"].ToString();
  2680. if (file != null)
  2681. {
  2682. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2683. //文件名称
  2684. string projectFileName = file.FileName;
  2685. //上传的文件的路径
  2686. string filePath = "";
  2687. if (TypeName == "A")//A代表团组增减款项
  2688. {
  2689. if (!Directory.Exists(fileDir))
  2690. {
  2691. Directory.CreateDirectory(fileDir);
  2692. }
  2693. //上传的文件的路径
  2694. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2695. }
  2696. else if (TypeName == "B")//B代表商邀相关文件
  2697. {
  2698. if (!Directory.Exists(fileDir))
  2699. {
  2700. Directory.CreateDirectory(fileDir);
  2701. }
  2702. //上传的文件的路径
  2703. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2704. }
  2705. using (FileStream fs = System.IO.File.Create(filePath))
  2706. {
  2707. file.CopyTo(fs);
  2708. fs.Flush();
  2709. }
  2710. return Ok(JsonView(true, "上传成功!", projectFileName));
  2711. }
  2712. else
  2713. {
  2714. return Ok(JsonView(false, "上传失败!"));
  2715. }
  2716. }
  2717. catch (Exception ex)
  2718. {
  2719. return Ok(JsonView(false, "程序错误!"));
  2720. throw;
  2721. }
  2722. }
  2723. /// <summary>
  2724. /// 删除指定文件
  2725. /// </summary>
  2726. /// <param name="dto"></param>
  2727. /// <returns></returns>
  2728. [HttpPost]
  2729. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2730. public async Task<IActionResult> DelFile(DelFileDto dto)
  2731. {
  2732. try
  2733. {
  2734. var TypeName = Request.Headers["TypeName"].ToString();
  2735. string filePath = "";
  2736. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2737. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2738. int id = 0;
  2739. if (TypeName == "A")
  2740. {
  2741. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2742. // 删除该文件
  2743. System.IO.File.Delete(filePath);
  2744. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2745. }
  2746. else if (TypeName == "B")
  2747. {
  2748. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2749. // 删除该文件
  2750. System.IO.File.Delete(filePath);
  2751. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2752. }
  2753. if (id != 0)
  2754. {
  2755. return Ok(JsonView(true, "成功!"));
  2756. }
  2757. else
  2758. {
  2759. return Ok(JsonView(false, "失败!"));
  2760. }
  2761. }
  2762. catch (Exception ex)
  2763. {
  2764. return Ok(JsonView(false, "程序错误!"));
  2765. throw;
  2766. }
  2767. }
  2768. #endregion
  2769. #region 商邀费用录入
  2770. /// <summary>
  2771. /// 根据团组Id查询商邀费用列表
  2772. /// </summary>
  2773. /// <param name="dto"></param>
  2774. /// <returns></returns>
  2775. [HttpPost]
  2776. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2777. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2778. {
  2779. try
  2780. {
  2781. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  2782. if (groupData.Code != 0)
  2783. {
  2784. return Ok(JsonView(false, groupData.Msg));
  2785. }
  2786. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2787. }
  2788. catch (Exception ex)
  2789. {
  2790. return Ok(JsonView(false, "程序错误!"));
  2791. throw;
  2792. }
  2793. }
  2794. //
  2795. /// <summary>
  2796. /// 商邀费用 Info Page 基础数据源
  2797. /// </summary>
  2798. /// <param name="dto"></param>
  2799. /// <returns></returns>
  2800. [HttpPost]
  2801. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2802. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  2803. {
  2804. try
  2805. {
  2806. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  2807. if (groupData.Code != 0)
  2808. {
  2809. return Ok(JsonView(false, groupData.Msg));
  2810. }
  2811. return Ok(JsonView(true, "操作成功", groupData.Data));
  2812. }
  2813. catch (Exception ex)
  2814. {
  2815. return Ok(JsonView(false, ex.Message));
  2816. throw;
  2817. }
  2818. }
  2819. /// <summary>
  2820. /// 根据商邀费用ID查询C表和商邀费用数据
  2821. /// </summary>
  2822. /// <param name="dto"></param>
  2823. /// <returns></returns>
  2824. [HttpPost]
  2825. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2826. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  2827. {
  2828. try
  2829. {
  2830. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  2831. if (groupData.Code != 0)
  2832. {
  2833. return Ok(JsonView(false, groupData.Msg));
  2834. }
  2835. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2836. }
  2837. catch (Exception ex)
  2838. {
  2839. return Ok(JsonView(false, ex.Message));
  2840. throw;
  2841. }
  2842. }
  2843. /// <summary>
  2844. /// 商邀费用录入操作(Status:1.新增,2.修改)
  2845. /// </summary>
  2846. /// <param name="dto"></param>
  2847. /// <returns></returns>
  2848. [HttpPost]
  2849. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2850. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  2851. {
  2852. try
  2853. {
  2854. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  2855. if (groupData.Code != 0)
  2856. {
  2857. return Ok(JsonView(false, groupData.Msg));
  2858. }
  2859. #region 应用推送
  2860. try
  2861. {
  2862. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2863. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2864. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2865. }
  2866. catch (Exception ex)
  2867. {
  2868. }
  2869. #endregion
  2870. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2871. }
  2872. catch (Exception ex)
  2873. {
  2874. return Ok(JsonView(false, "程序错误!"));
  2875. throw;
  2876. }
  2877. }
  2878. /// <summary>
  2879. /// 商邀删除
  2880. /// </summary>
  2881. /// <param name="dto"></param>
  2882. /// <returns></returns>
  2883. [HttpPost]
  2884. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2885. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  2886. {
  2887. try
  2888. {
  2889. _sqlSugar.BeginTran();
  2890. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  2891. .SetColumns(it => new Grp_InvitationOfficialActivities()
  2892. {
  2893. IsDel = 1,
  2894. DeleteUserId = dto.DeleteUserId,
  2895. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2896. })
  2897. .Where(it => it.Id == dto.Id)
  2898. .ExecuteCommand();
  2899. if (res1 > 0)
  2900. {
  2901. int _diId = 0;
  2902. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  2903. if (_ioaInfo != null)
  2904. {
  2905. _diId = _ioaInfo.DiId;
  2906. }
  2907. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  2908. .SetColumns(a => new Grp_CreditCardPayment()
  2909. {
  2910. IsDel = 1,
  2911. DeleteUserId = dto.DeleteUserId,
  2912. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2913. })
  2914. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  2915. .ExecuteCommand();
  2916. if (res2 > 0)
  2917. {
  2918. _sqlSugar.CommitTran();
  2919. return Ok(JsonView(true, "删除成功!"));
  2920. }
  2921. }
  2922. _sqlSugar.RollbackTran();
  2923. return Ok(JsonView(false, "删除失败"));
  2924. }
  2925. catch (Exception ex)
  2926. {
  2927. _sqlSugar.RollbackTran();
  2928. return Ok(JsonView(false, ex.Message));
  2929. }
  2930. }
  2931. #endregion
  2932. #region 团组英文资料
  2933. /// <summary>
  2934. /// 查询团组英文所有资料
  2935. /// </summary>
  2936. /// <param name="dto"></param>
  2937. /// <returns></returns>
  2938. [HttpPost]
  2939. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2940. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  2941. {
  2942. try
  2943. {
  2944. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  2945. if (groupData.Code != 0)
  2946. {
  2947. return Ok(JsonView(false, groupData.Msg));
  2948. }
  2949. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2950. }
  2951. catch (Exception ex)
  2952. {
  2953. return Ok(JsonView(false, "程序错误!"));
  2954. throw;
  2955. }
  2956. }
  2957. /// <summary>
  2958. /// 团组英文资料操作(Status:1.新增,2.修改)
  2959. /// </summary>
  2960. /// <param name="dto"></param>
  2961. /// <returns></returns>
  2962. [HttpPost]
  2963. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2964. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  2965. {
  2966. try
  2967. {
  2968. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  2969. if (groupData.Code != 0)
  2970. {
  2971. return Ok(JsonView(false, groupData.Msg));
  2972. }
  2973. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2974. }
  2975. catch (Exception ex)
  2976. {
  2977. return Ok(JsonView(false, "程序错误!"));
  2978. throw;
  2979. }
  2980. }
  2981. /// <summary>
  2982. /// 团组英文资料Id查询数据
  2983. /// </summary>
  2984. /// <param name="dto"></param>
  2985. /// <returns></returns>
  2986. [HttpPost]
  2987. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2988. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  2989. {
  2990. try
  2991. {
  2992. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  2993. if (_DelegationEnData != null)
  2994. {
  2995. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  2996. }
  2997. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  2998. }
  2999. catch (Exception ex)
  3000. {
  3001. return Ok(JsonView(false, "程序错误!"));
  3002. throw;
  3003. }
  3004. }
  3005. /// <summary>
  3006. /// 团组英文资料删除
  3007. /// </summary>
  3008. /// <param name="dto"></param>
  3009. /// <returns></returns>
  3010. [HttpPost]
  3011. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3012. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3013. {
  3014. try
  3015. {
  3016. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3017. if (!res)
  3018. {
  3019. return Ok(JsonView(false, "删除失败"));
  3020. }
  3021. return Ok(JsonView(true, "删除成功!"));
  3022. }
  3023. catch (Exception ex)
  3024. {
  3025. return Ok(JsonView(false, "程序错误!"));
  3026. throw;
  3027. }
  3028. }
  3029. #endregion
  3030. #region 导出邀请函
  3031. /// <summary>
  3032. /// 导出邀请函页面初始化
  3033. /// </summary>
  3034. /// <param name="dto"></param>
  3035. /// <returns></returns>
  3036. [HttpPost]
  3037. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3038. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3039. {
  3040. try
  3041. {
  3042. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3043. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3044. if (dto.DiId == 0)
  3045. {
  3046. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3047. }
  3048. else
  3049. {
  3050. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3051. }
  3052. return Ok(JsonView(true, "查询成功!", new
  3053. {
  3054. deleClient = crm_Deles,
  3055. delegations = grp_Delegations
  3056. }));
  3057. }
  3058. catch (Exception ex)
  3059. {
  3060. return Ok(JsonView(false, "程序错误!"));
  3061. throw;
  3062. }
  3063. }
  3064. /// <summary>
  3065. /// 导出邀请函
  3066. /// </summary>
  3067. /// <param name="dto"></param>
  3068. /// <returns></returns>
  3069. [HttpPost]
  3070. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3071. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3072. {
  3073. #region 参数验证
  3074. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3075. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3076. #endregion
  3077. try
  3078. {
  3079. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3080. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3081. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3082. From Grp_TourClientList tcl
  3083. Left Join
  3084. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3085. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3086. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3087. From Crm_DeleClient dc
  3088. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3089. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3090. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3091. Where dc.IsDel = 0) temp
  3092. On temp.DcId =tcl.ClientId
  3093. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3094. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3095. List<string> texts = new List<string>();
  3096. if (datas.Count != 0)
  3097. {
  3098. foreach (TourClientListDetailsView item in datas)
  3099. {
  3100. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3101. {
  3102. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3103. }
  3104. else
  3105. {
  3106. string name = item.LastName + item.FirstName;
  3107. texts.Add(name);
  3108. }
  3109. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3110. {
  3111. if (!transDic.ContainsKey(item.Job))
  3112. {
  3113. texts.Add(item.Job);
  3114. }
  3115. }
  3116. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3117. {
  3118. texts.Add(item.CompanyFullName);
  3119. }
  3120. }
  3121. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3122. if (transData.Count > 0)
  3123. {
  3124. foreach (TranslateResult item in transData)
  3125. {
  3126. if (!transDic.ContainsKey(item.Query))
  3127. {
  3128. transDic.Add(item.Query, item.Translation);
  3129. }
  3130. }
  3131. }
  3132. List<GuestList> list = new List<GuestList>();
  3133. foreach (TourClientListDetailsView dele in datas)
  3134. {
  3135. GuestList guestList = new GuestList();
  3136. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3137. {
  3138. guestList.Name = dele.Pinyin;
  3139. }
  3140. else
  3141. {
  3142. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3143. guestList.Name = Name;
  3144. }
  3145. if (dele.Sex == 0)
  3146. {
  3147. guestList.Sex = "Male";
  3148. }
  3149. else if (dele.Sex == 1)
  3150. {
  3151. guestList.Sex = "Female";
  3152. }
  3153. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3154. if (!string.IsNullOrEmpty(dele.Job))
  3155. {
  3156. guestList.Job = dele.Job;
  3157. }
  3158. list.Add(guestList);
  3159. }
  3160. //载入模板
  3161. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3162. DocumentBuilder builder = new DocumentBuilder(doc);
  3163. //获取word里所有表格
  3164. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3165. //获取所填表格的序数
  3166. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3167. var rowStart = tableOne.Rows[0]; //获取第1行
  3168. //循环赋值
  3169. for (int i = 0; i < list.Count; i++)
  3170. {
  3171. builder.MoveToCell(0, i + 1, 0, 0);
  3172. builder.Write(list[i].Name.ToString());
  3173. builder.MoveToCell(0, i + 1, 1, 0);
  3174. builder.Write(list[i].Sex.ToString());
  3175. builder.MoveToCell(0, i + 1, 2, 0);
  3176. builder.Write(list[i].DOB.ToString());
  3177. builder.MoveToCell(0, i + 1, 3, 0);
  3178. builder.Write(list[i].Job.ToString());
  3179. }
  3180. //删除多余行
  3181. while (tableOne.Rows.Count > list.Count + 1)
  3182. {
  3183. tableOne.Rows.RemoveAt(list.Count + 1);
  3184. }
  3185. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3186. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3187. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3188. doc.Save(filePath);
  3189. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3190. return Ok(JsonView(true, "操作成功!", Url));
  3191. }
  3192. else
  3193. {
  3194. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3195. }
  3196. }
  3197. catch (Exception ex)
  3198. {
  3199. return Ok(JsonView(false, ex.Message));
  3200. throw;
  3201. }
  3202. }
  3203. #endregion
  3204. #region 团组经理模块 出入境费用
  3205. ///// <summary>
  3206. ///// 团组模块 - 出入境费用
  3207. ///// </summary>
  3208. ///// <returns></returns>
  3209. //[HttpPost]
  3210. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3211. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3212. //{
  3213. // try
  3214. // {
  3215. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3216. // if (data.Code != 0)
  3217. // {
  3218. // return Ok(JsonView(false, data.Msg));
  3219. // }
  3220. // return Ok(JsonView(true, "查询成功!"));
  3221. // }
  3222. // catch (Exception ex)
  3223. // {
  3224. // return Ok(JsonView(false, ex.Message));
  3225. // throw;
  3226. // }
  3227. //}
  3228. /// <summary>
  3229. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3230. /// </summary>
  3231. /// <returns></returns>
  3232. [HttpPost]
  3233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3234. public async Task<IActionResult> SetDayAndCostAreaChange()
  3235. {
  3236. try
  3237. {
  3238. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3239. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3240. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3241. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3242. foreach (var item in unite) //处理交集数据
  3243. {
  3244. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3245. }
  3246. foreach (var item in merge) //处理差集数据
  3247. {
  3248. int nationalTravelFeeId = 0;
  3249. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3250. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3251. else
  3252. {
  3253. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3254. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3255. }
  3256. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3257. }
  3258. //只更新dayAndCost 的 nationalTravelFeeId;
  3259. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3260. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3261. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3262. }
  3263. catch (Exception ex)
  3264. {
  3265. return Ok(JsonView(false, ex.Message));
  3266. throw;
  3267. }
  3268. }
  3269. /// <summary>
  3270. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3271. /// </summary>
  3272. /// <returns></returns>
  3273. [HttpPost]
  3274. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3275. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3276. {
  3277. try
  3278. {
  3279. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3280. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3281. //SetDataInfoView
  3282. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3283. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3284. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3285. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3286. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3287. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3288. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3289. //默认币种显示
  3290. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3291. {
  3292. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 0.0000M },
  3293. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 0.0000M },
  3294. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 0.0000M },
  3295. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0000M },
  3296. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.0000M },
  3297. };
  3298. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3299. if (_currencyRate.Count > 0)
  3300. {
  3301. foreach (var item in _currencyInfos)
  3302. {
  3303. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3304. if (rateInfo != null)
  3305. {
  3306. item.Rate = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3307. }
  3308. }
  3309. }
  3310. return Ok(JsonView(true, "查询成功!", new
  3311. {
  3312. GroupNameData = groupNameData.Data,
  3313. CurrencyData = _CurrencyData,
  3314. WordTypeData = _WordTypeData,
  3315. ExcelTypeData = _ExcelTypeData,
  3316. CurrencyInit = _currencyInfos
  3317. }));
  3318. }
  3319. catch (Exception ex)
  3320. {
  3321. return Ok(JsonView(false, ex.Message));
  3322. throw;
  3323. }
  3324. }
  3325. /// <summary>
  3326. /// 团组模块 - 出入境费用
  3327. /// 实时汇率 tips
  3328. /// 签证费用 tips
  3329. /// </summary>
  3330. /// <returns></returns>
  3331. [HttpPost]
  3332. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3333. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3334. {
  3335. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3336. //默认币种显示
  3337. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3338. {
  3339. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 0.0000M },
  3340. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 0.0000M },
  3341. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 0.0000M },
  3342. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0000M },
  3343. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.0000M },
  3344. };
  3345. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3346. List<dynamic> reteInfos = new List<dynamic>();
  3347. if (_currencyRate.Count > 0)
  3348. {
  3349. foreach (var item in _currencyInfos)
  3350. {
  3351. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3352. if (rateInfo != null)
  3353. {
  3354. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3355. reteInfos.Add(new
  3356. {
  3357. currCode = item.CurrencyCode,
  3358. currName = item.CurrencyName,
  3359. rate = item.Rate,
  3360. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3361. });
  3362. }
  3363. }
  3364. }
  3365. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3366. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3367. return Ok(JsonView(true, "查询成功!", new
  3368. {
  3369. //GroupNameData = groupNameData.Data,
  3370. visaData = visaData.Data,
  3371. airData = airData.Data,
  3372. reteInfos = reteInfos
  3373. }));
  3374. }
  3375. /// <summary>
  3376. /// 团组模块 - 出入境费用 - Info
  3377. /// </summary>
  3378. /// <returns></returns>
  3379. [HttpPost]
  3380. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3381. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3382. {
  3383. try
  3384. {
  3385. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3386. if (data.Code != 0)
  3387. {
  3388. return Ok(JsonView(false, data.Msg));
  3389. }
  3390. return Ok(JsonView(true, "查询成功!", data.Data));
  3391. }
  3392. catch (Exception ex)
  3393. {
  3394. return Ok(JsonView(false, ex.Message));
  3395. }
  3396. }
  3397. /// <summary>
  3398. /// 团组模块 - 出入境费用 - Add And Update
  3399. /// </summary>
  3400. /// <returns></returns>
  3401. [HttpPost]
  3402. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3403. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3404. {
  3405. try
  3406. {
  3407. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3408. if (data.Code != 0)
  3409. {
  3410. return Ok(JsonView(false, data.Msg));
  3411. }
  3412. return Ok(JsonView(true, data.Msg, data.Data));
  3413. }
  3414. catch (Exception ex)
  3415. {
  3416. return Ok(JsonView(false, ex.Message));
  3417. }
  3418. }
  3419. /// <summary>
  3420. /// 团组模块 - 出入境费用 - File downlaod
  3421. /// </summary>
  3422. /// <param name="dto"></param>
  3423. /// <returns></returns>
  3424. [HttpPost]
  3425. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3426. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3427. {
  3428. try
  3429. {
  3430. if (dto.DiId < 1)
  3431. {
  3432. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3433. }
  3434. if (dto.ExportType < 1)
  3435. {
  3436. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3437. }
  3438. if (dto.SubTypeId < 1)
  3439. {
  3440. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3441. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3442. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3443. 3 团组成员名单 1 团组成员名单"));
  3444. }
  3445. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3446. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3447. if (_EnterExitCosts == null)
  3448. {
  3449. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3450. }
  3451. //数据源
  3452. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3453. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3454. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3455. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3456. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3457. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3458. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3459. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3460. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3461. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3462. .Select((tcl, dc, cc) => new
  3463. {
  3464. Name = dc.LastName + dc.FirstName,
  3465. Sex = dc.Sex,
  3466. Birthday = dc.BirthDay,
  3467. Company = cc.CompanyFullName,
  3468. Job = dc.Job
  3469. })
  3470. .ToList();
  3471. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3472. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3473. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3474. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3475. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3476. if (dto.ExportType == 1) //明细表
  3477. {
  3478. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3479. {
  3480. //获取模板
  3481. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3482. //载入模板
  3483. Document doc = new Document(tempPath);
  3484. DocumentBuilder builder = new DocumentBuilder(doc);
  3485. //利用键值对存放数据
  3486. Dictionary<string, string> dic = new Dictionary<string, string>();
  3487. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3488. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3489. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3490. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3491. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3492. string row1_1 = "";
  3493. if (_EnterExitCosts.Visa > 0)
  3494. {
  3495. //insidePayTotal += _EnterExitCosts.Visa;
  3496. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3497. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3498. {
  3499. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3500. }
  3501. }
  3502. string row1_2 = "";
  3503. if (_EnterExitCosts.YiMiao > 0)
  3504. {
  3505. //insidePayTotal += _EnterExitCosts.YiMiao;
  3506. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3507. }
  3508. if (_EnterExitCosts.HeSuan > 0)
  3509. {
  3510. //insidePayTotal += _EnterExitCosts.HeSuan;
  3511. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  3512. }
  3513. if (_EnterExitCosts.Service > 0)
  3514. {
  3515. //insidePayTotal += _EnterExitCosts.Service;
  3516. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  3517. }
  3518. string row1_3 = "";
  3519. if (_EnterExitCosts.Safe > 0)
  3520. {
  3521. //insidePayTotal += _EnterExitCosts.Safe;
  3522. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  3523. }
  3524. if (_EnterExitCosts.Ticket > 0)
  3525. {
  3526. //insidePayTotal += _EnterExitCosts.Ticket;
  3527. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  3528. }
  3529. string row1 = "";
  3530. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  3531. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  3532. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  3533. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  3534. dic.Add("Row1Str", row1);
  3535. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  3536. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  3537. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3538. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  3539. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3540. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  3541. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  3542. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  3543. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  3544. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  3545. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  3546. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  3547. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  3548. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  3549. #region 填充word模板书签内容
  3550. foreach (var key in dic.Keys)
  3551. {
  3552. builder.MoveToBookmark(key);
  3553. builder.Write(dic[key]);
  3554. }
  3555. #endregion
  3556. #region 填充word表格内容
  3557. ////获读取指定表格方法二
  3558. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3559. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3560. for (int i = 0; i < dac1.Count; i++)
  3561. {
  3562. Grp_DayAndCost dac = dac1[i];
  3563. if (dac == null) continue;
  3564. builder.MoveToCell(0, i, 0, 0);
  3565. builder.Write("第" + dac.Days.ToString() + "晚:");
  3566. builder.MoveToCell(0, i, 1, 0);
  3567. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  3568. //builder.Write(dac.Place == null ? "" : dac.Place);
  3569. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3570. builder.MoveToCell(0, i, 2, 0);
  3571. builder.Write("费用标准:");
  3572. string curr = "";
  3573. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3574. if (currData != null)
  3575. {
  3576. curr = currData.Name;
  3577. }
  3578. builder.MoveToCell(0, i, 3, 0);
  3579. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3580. builder.MoveToCell(0, i, 4, 0);
  3581. builder.Write("费用小计:");
  3582. builder.MoveToCell(0, i, 5, 0);
  3583. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3584. }
  3585. //删除多余行
  3586. while (table1.Rows.Count > dac1.Count)
  3587. {
  3588. table1.Rows.RemoveAt(dac1.Count);
  3589. }
  3590. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  3591. for (int i = 0; i < dac2.Count; i++)
  3592. {
  3593. Grp_DayAndCost dac = dac2[i];
  3594. if (dac == null) continue;
  3595. builder.MoveToCell(1, i, 0, 0);
  3596. builder.Write("第" + dac.Days.ToString() + "天:");
  3597. builder.MoveToCell(1, i, 1, 0);
  3598. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3599. builder.MoveToCell(1, i, 2, 0);
  3600. builder.Write("费用标准:");
  3601. string curr = "";
  3602. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3603. if (currData != null)
  3604. {
  3605. curr = currData.Name;
  3606. }
  3607. builder.MoveToCell(1, i, 3, 0);
  3608. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3609. builder.MoveToCell(1, i, 4, 0);
  3610. builder.Write("费用小计:");
  3611. builder.MoveToCell(1, i, 5, 0);
  3612. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3613. }
  3614. //删除多余行
  3615. while (table2.Rows.Count > dac2.Count)
  3616. {
  3617. table2.Rows.RemoveAt(dac2.Count);
  3618. }
  3619. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  3620. for (int i = 0; i < dac3.Count; i++)
  3621. {
  3622. Grp_DayAndCost dac = dac3[i];
  3623. if (dac == null) continue;
  3624. builder.MoveToCell(2, i, 0, 0);
  3625. builder.Write("第" + dac.Days.ToString() + "天:");
  3626. builder.MoveToCell(2, i, 1, 0);
  3627. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3628. builder.MoveToCell(2, i, 2, 0);
  3629. builder.Write("费用标准:");
  3630. string curr = "";
  3631. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3632. if (currData != null)
  3633. {
  3634. curr = currData.Name;
  3635. }
  3636. builder.MoveToCell(2, i, 3, 0);
  3637. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3638. builder.MoveToCell(2, i, 4, 0);
  3639. builder.Write("费用小计:");
  3640. builder.MoveToCell(2, i, 5, 0);
  3641. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3642. }
  3643. //删除多余行
  3644. while (table3.Rows.Count > dac3.Count)
  3645. {
  3646. table3.Rows.RemoveAt(dac3.Count);
  3647. }
  3648. #endregion
  3649. //文件名
  3650. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  3651. AsposeHelper.removewatermark_v2180();
  3652. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3653. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3654. return Ok(JsonView(true, "成功", new { Url = url }));
  3655. }
  3656. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  3657. {
  3658. //获取模板
  3659. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  3660. //载入模板
  3661. Document doc = new Document(tempPath);
  3662. DocumentBuilder builder = new DocumentBuilder(doc);
  3663. Dictionary<string, string> dic = new Dictionary<string, string>();
  3664. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3665. {
  3666. List<string> list = new List<string>();
  3667. try
  3668. {
  3669. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3670. foreach (var item in spilitArr)
  3671. {
  3672. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3673. var depCode = spDotandEmpty[2].Substring(0, 3);
  3674. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3675. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  3676. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  3677. list.Add(depName);
  3678. list.Add(arrName);
  3679. }
  3680. list = list.Distinct().ToList();
  3681. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3682. }
  3683. catch (Exception)
  3684. {
  3685. dic.Add("ReturnCode", "行程录入不正确!");
  3686. }
  3687. }
  3688. else
  3689. {
  3690. dic.Add("ReturnCode", "未录入行程!");
  3691. }
  3692. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3693. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3694. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3695. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3696. {
  3697. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3698. dic.Add("Day", sp.Days.ToString());
  3699. }
  3700. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3701. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3702. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3703. //dic.Add("Names", Names);
  3704. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3705. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3706. decimal dac1totalPrice = 0.00M;
  3707. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  3708. foreach (var dac in dac1)
  3709. {
  3710. if (dac.SubTotal == 0.00M)
  3711. {
  3712. continue;
  3713. }
  3714. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  3715. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  3716. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  3717. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3718. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  3719. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3720. builder.Write(currency);//币种
  3721. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  3722. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3723. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  3724. builder.Write("");//人数
  3725. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  3726. builder.Write("");//天数
  3727. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  3728. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3729. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  3730. decimal rate = 0.00M;
  3731. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3732. builder.Write(rate.ToString("#0.0000"));//汇率
  3733. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  3734. decimal rbmPrice = dac.SubTotal;
  3735. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3736. accommodationStartIndex++;
  3737. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3738. }
  3739. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  3740. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  3741. {
  3742. table1.Rows.RemoveAt(i - 1);
  3743. foodandotherStartIndex--;
  3744. }
  3745. if (dac2.Count == dac3.Count)//国家 币种 金额
  3746. {
  3747. for (int i = 0; i < dac2.Count; i++)
  3748. {
  3749. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  3750. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  3751. }
  3752. }
  3753. decimal dac2totalPrice = 0.00M;
  3754. foreach (var dac in dac2)
  3755. {
  3756. if (dac.SubTotal == 0)
  3757. {
  3758. continue;
  3759. }
  3760. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  3761. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3762. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  3763. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3764. builder.Write(currency);//币种
  3765. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  3766. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3767. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  3768. builder.Write("");//人数
  3769. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  3770. builder.Write("");//天数
  3771. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  3772. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3773. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  3774. decimal rate = 0.00M;
  3775. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3776. builder.Write(rate.ToString("#0.0000"));//汇率
  3777. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  3778. decimal rbmPrice = dac.SubTotal;
  3779. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3780. foodandotherStartIndex++;
  3781. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3782. }
  3783. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  3784. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  3785. {
  3786. table1.Rows.RemoveAt(i - 1);
  3787. }
  3788. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3789. string otherFeeStr = "";
  3790. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  3791. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  3792. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  3793. if (otherFeeStr.Length > 0)
  3794. {
  3795. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  3796. otherFeeStr = $"({otherFeeStr})";
  3797. dic.Add("OtherFeeStr", otherFeeStr);
  3798. }
  3799. //总计
  3800. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  3801. //国际旅费
  3802. string outsideJJ = "";
  3803. string allPriceJJ = "";
  3804. if (_EnterExitCosts.SumJJC == 1)
  3805. {
  3806. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3807. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  3808. }
  3809. string outsideGW = "";
  3810. string allPriceGW = "";
  3811. if (_EnterExitCosts.SumGWC == 1)
  3812. {
  3813. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  3814. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  3815. }
  3816. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  3817. {
  3818. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  3819. dic.Add("InTravelPrice", InTravelPriceStr);
  3820. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  3821. dic.Add("FinalSumPrice", FinalSumPriceStr);
  3822. }
  3823. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  3824. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  3825. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  3826. foreach (var key in dic.Keys)
  3827. {
  3828. builder.MoveToBookmark(key);
  3829. builder.Write(dic[key]);
  3830. }
  3831. //模板文件名
  3832. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  3833. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3834. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3835. return Ok(JsonView(true, "成功", new { Url = url }));
  3836. }
  3837. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  3838. {
  3839. //获取模板
  3840. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  3841. //载入模板
  3842. WorkbookDesigner designer = new WorkbookDesigner();
  3843. designer.Workbook = new Workbook(tempPath);
  3844. Dictionary<string, string> dic = new Dictionary<string, string>();
  3845. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3846. {
  3847. List<string> list = new List<string>();
  3848. try
  3849. {
  3850. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3851. foreach (var item in spilitArr)
  3852. {
  3853. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3854. var depCode = spDotandEmpty[2].Substring(0, 3);
  3855. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3856. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  3857. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  3858. list.Add(depName);
  3859. list.Add(arrName);
  3860. }
  3861. list = list.Distinct().ToList();
  3862. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3863. }
  3864. catch (Exception)
  3865. {
  3866. dic.Add("ReturnCode", "行程录入不正确!");
  3867. }
  3868. }
  3869. else
  3870. {
  3871. dic.Add("ReturnCode", "未录入行程!");
  3872. }
  3873. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3874. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3875. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3876. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3877. {
  3878. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3879. dic.Add("Day", sp.Days.ToString());
  3880. }
  3881. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3882. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3883. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3884. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  3885. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  3886. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  3887. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  3888. designer.SetDataSource("Name", Names);
  3889. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  3890. designer.SetDataSource("Day", dic["Day"] + "天");
  3891. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  3892. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  3893. int startIndex = 10;
  3894. const int startIndexcopy = 10;
  3895. if (dac2.Count == dac3.Count)//国家 币种 金额
  3896. {
  3897. for (int i = 0; i < dac2.Count; i++)
  3898. {
  3899. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  3900. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  3901. }
  3902. }
  3903. DataTable dtdac1 = new DataTable();
  3904. List<string> place = new List<string>();
  3905. dtdac1.Columns.AddRange(new DataColumn[] {
  3906. new DataColumn(){ ColumnName = "city"},
  3907. new DataColumn(){ ColumnName = "curr"},
  3908. new DataColumn(){ ColumnName = "criterion"},
  3909. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  3910. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  3911. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  3912. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  3913. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  3914. });
  3915. DataTable dtdac2 = new DataTable();
  3916. dtdac2.Columns.AddRange(new DataColumn[] {
  3917. new DataColumn(){ ColumnName = "city"},
  3918. new DataColumn(){ ColumnName = "curr"},
  3919. new DataColumn(){ ColumnName = "criterion"},
  3920. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  3921. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  3922. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  3923. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  3924. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  3925. });
  3926. dtdac1.TableName = "tb1";
  3927. dtdac2.TableName = "tb2";
  3928. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  3929. foreach (var item in dac1)
  3930. {
  3931. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  3932. if (place.Contains(item.Place))
  3933. {
  3934. continue;
  3935. }
  3936. DataRow row = dtdac1.NewRow();
  3937. row["city"] = item.Place;
  3938. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  3939. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  3940. row["curr"] = currency;
  3941. row["rate"] = rate.ToString("#0.0000");
  3942. row["criterion"] = item.Cost.ToString("#0.00");
  3943. row["number"] = 1;
  3944. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  3945. //row["costRMB"] = rbmPrice;
  3946. dtdac1.Rows.Add(row);
  3947. place.Add(item.Place);
  3948. }
  3949. place = new List<string>();
  3950. foreach (var item in dac2)
  3951. {
  3952. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  3953. if (place.Contains(item.Place))
  3954. {
  3955. continue;
  3956. }
  3957. DataRow row = dtdac2.NewRow();
  3958. row["city"] = item.Place;
  3959. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  3960. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  3961. row["curr"] = currency;
  3962. row["rate"] = rate.ToString("#0.0000");
  3963. row["criterion"] = item.Cost.ToString("#0.00");
  3964. row["number"] = 1;
  3965. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  3966. //row["cost"] = item.SubTotal;
  3967. //row["costRMB"] = rbmPrice;
  3968. dtdac2.Rows.Add(row);
  3969. place.Add(item.Place);
  3970. //dac2totalPrice += rbmPrice;
  3971. }
  3972. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  3973. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  3974. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  3975. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  3976. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  3977. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  3978. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  3979. string cellStr = $" 5.其他费用(";
  3980. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  3981. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  3982. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  3983. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  3984. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  3985. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  3986. if (cellStr.Length > 8)
  3987. {
  3988. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  3989. }
  3990. cellStr += ")";
  3991. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  3992. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  3993. decimal pxFee = dac4.Sum(it => it.Cost);
  3994. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  3995. string celllastStr1 = "";
  3996. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  3997. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  3998. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  3999. celllastStr1 += $",国际旅费 元";
  4000. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4001. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4002. designer.SetDataSource("cell4Str", cell4Str);
  4003. designer.SetDataSource("cellStr", cellStr);
  4004. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4005. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4006. designer.SetDataSource("celllastStr", celllastStr);
  4007. Workbook wb = designer.Workbook;
  4008. var sheet = wb.Worksheets[0];
  4009. //绑定datatable数据集
  4010. designer.SetDataSource(dtdac1);
  4011. designer.SetDataSource(dtdac2);
  4012. designer.Process();
  4013. var rowStart = dtdac1.Rows.Count;
  4014. while (rowStart > 0)
  4015. {
  4016. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4017. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4018. startIndex++;
  4019. rowStart--;
  4020. }
  4021. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4022. startIndex += 1; //总计行
  4023. rowStart = dtdac2.Rows.Count;
  4024. while (rowStart > 0)
  4025. {
  4026. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4027. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4028. startIndex++;
  4029. rowStart--;
  4030. }
  4031. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4032. wb.CalculateFormula(true);
  4033. //模板文件名
  4034. string strFileName = $"四川省商务厅出国经费财政先行审核表.xls";
  4035. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4036. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4037. return Ok(JsonView(true, "成功", new { Url = url }));
  4038. }
  4039. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4040. {
  4041. //获取模板
  4042. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4043. //载入模板
  4044. Document doc = new Document(tempPath);
  4045. DocumentBuilder builder = new DocumentBuilder(doc);
  4046. Dictionary<string, string> dic = new Dictionary<string, string>();
  4047. dic.Add("GroupName", _DelegationInfo.TeamName);
  4048. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4049. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4050. string missionLeaderJob = "";//负责人job
  4051. int groupNumber = 0; //团人数
  4052. if (DeleClientList.Count > 0)
  4053. {
  4054. missionLeader = DeleClientList[0]?.Name ?? "";
  4055. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4056. }
  4057. dic.Add("MissionLeader", missionLeader); //团负责人
  4058. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4059. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4060. #region MyRegion
  4061. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4062. //{
  4063. // List<string> list = new List<string>();
  4064. // try
  4065. // {
  4066. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4067. // foreach (var item in spilitArr)
  4068. // {
  4069. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4070. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4071. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4072. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4073. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4074. // list.Add(depName);
  4075. // list.Add(arrName);
  4076. // }
  4077. // list = list.Distinct().ToList();
  4078. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4079. // }
  4080. // catch (Exception)
  4081. // {
  4082. // dic.Add("ReturnCode", "行程录入不正确!");
  4083. // }
  4084. //}
  4085. //else
  4086. //{
  4087. // dic.Add("ReturnCode", "未录入行程!");
  4088. //}
  4089. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4090. dic.Add("ReturnCode", string.Join("、", countrys));
  4091. #endregion
  4092. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4093. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4094. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4095. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4096. //{
  4097. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4098. // dic.Add("Day", sp.Days.ToString());
  4099. //}
  4100. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4101. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4102. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4103. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4104. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4105. //培训人员名单
  4106. int cultivateRowIndex = 7;
  4107. foreach (var item in DeleClientList)
  4108. {
  4109. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4110. builder.Write(item.Name);
  4111. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4112. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4113. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4114. string birthDay = "";
  4115. if (item.Birthday != null)
  4116. {
  4117. DateTime dt = Convert.ToDateTime(item.Birthday);
  4118. birthDay = $"{dt.Year}.{dt.Month}";
  4119. }
  4120. builder.Write(birthDay);
  4121. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4122. builder.Write(item.Company);
  4123. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4124. builder.Write(item.Job);
  4125. cultivateRowIndex++;
  4126. }
  4127. //删除多余行
  4128. //cultivateRowIndex -= 2;
  4129. int delRows = 10 + 7 - cultivateRowIndex;
  4130. if (delRows > 0)
  4131. {
  4132. for (int i = 0; i < delRows; i++)
  4133. {
  4134. table1.Rows.RemoveAt(cultivateRowIndex);
  4135. //cultivateRowIndex++;
  4136. }
  4137. }
  4138. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4139. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4140. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4141. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4142. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4143. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4144. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4145. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4146. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4147. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4148. //其他费用
  4149. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4150. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4151. //其他费用合计
  4152. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4153. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4154. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4155. //公务舱合计
  4156. //国际旅费
  4157. string outsideJJ = "";
  4158. string allPriceJJ = "";
  4159. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4160. {
  4161. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4162. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4163. }
  4164. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4165. {
  4166. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4167. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4168. }
  4169. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4170. {
  4171. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4172. dic.Add("AirFeeTotal", airFeeTotalStr);
  4173. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4174. dic.Add("FeeTotal", feeTotalStr);
  4175. }
  4176. foreach (var key in dic.Keys)
  4177. {
  4178. builder.MoveToBookmark(key);
  4179. builder.Write(dic[key]);
  4180. }
  4181. //模板文件名
  4182. string strFileName = $"{_DelegationInfo.TeamName}成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4183. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4184. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4185. return Ok(JsonView(true, "成功", new { Url = url }));
  4186. }
  4187. }
  4188. else if (dto.ExportType == 2) //表格
  4189. {
  4190. //利用键值对存放数据
  4191. Dictionary<string, string> dic = new Dictionary<string, string>();
  4192. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4193. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4194. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4195. dic.Add("Day", sp.Days.ToString());
  4196. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4197. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4198. {
  4199. //获取模板
  4200. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4201. //载入模板
  4202. Document doc = new Document(tempPath);
  4203. DocumentBuilder builder = new DocumentBuilder(doc);
  4204. dic.Add("TeamName", _DelegationInfo.TeamName);
  4205. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4206. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4207. string missionLeaderName = "",
  4208. missionLeaderJob = "";
  4209. if (DeleClientList.Count > 0)
  4210. {
  4211. missionLeaderName = DeleClientList[0].Name;
  4212. missionLeaderJob = DeleClientList[0].Job;
  4213. }
  4214. dic.Add("MissionLeaderName", missionLeaderName);
  4215. dic.Add("MissionLeaderJob", missionLeaderJob);
  4216. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4217. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4218. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4219. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4220. int rowCount = 10;//总人数行
  4221. int startRowIndex = 7; //起始行
  4222. for (int i = 0; i < DeleClientList.Count; i++)
  4223. {
  4224. builder.MoveToCell(0, startRowIndex, 0, 0);
  4225. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4226. builder.MoveToCell(0, startRowIndex, 1, 0);
  4227. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4228. builder.Write(sex);//性别
  4229. builder.MoveToCell(0, startRowIndex, 2, 0);
  4230. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4231. builder.MoveToCell(0, startRowIndex, 3, 0);
  4232. builder.Write(DeleClientList[i].Company);//工作单位
  4233. builder.MoveToCell(0, startRowIndex, 4, 0);
  4234. builder.Write(DeleClientList[i].Job);//职务及级别
  4235. builder.MoveToCell(0, startRowIndex, 5, 0);
  4236. builder.Write("");//人员属性
  4237. builder.MoveToCell(0, startRowIndex, 6, 0);
  4238. builder.Write("");//上次出国时间
  4239. startRowIndex++;
  4240. }
  4241. int nullRow = rowCount - DeleClientList.Count;//空行
  4242. for (int i = 0; i < nullRow; i++)
  4243. {
  4244. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4245. }
  4246. foreach (var key in dic.Keys)
  4247. {
  4248. builder.MoveToBookmark(key);
  4249. builder.Write(dic[key]);
  4250. }
  4251. //模板文件名
  4252. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4253. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4254. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4255. return Ok(JsonView(true, "成功", new { Url = url }));
  4256. }
  4257. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4258. {
  4259. //获取模板
  4260. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4261. //载入模板
  4262. Document doc = new Document(tempPath);
  4263. DocumentBuilder builder = new DocumentBuilder(doc);
  4264. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4265. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4266. dic.Add("Names", Names);
  4267. int accommodationRows = 12, foodandotherRows = 12;
  4268. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4269. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4270. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4271. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4272. int accommodationStartIndex = 6;
  4273. decimal dac1totalPrice = 0.00M;
  4274. foreach (var dac in dac1)
  4275. {
  4276. if (dac.SubTotal == 0)
  4277. {
  4278. continue;
  4279. }
  4280. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4281. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4282. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4283. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4284. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4285. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4286. builder.Write(currency);//币种
  4287. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4288. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4289. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4290. builder.Write("");//人数
  4291. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4292. builder.Write("");//天数
  4293. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4294. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4295. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4296. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4297. builder.Write(rate.ToString("#0.0000"));//汇率
  4298. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4299. decimal rbmPrice = rate * dac.SubTotal;
  4300. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4301. accommodationStartIndex++;
  4302. dac1totalPrice += rbmPrice;
  4303. }
  4304. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4305. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4306. builder.Write("小计");
  4307. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4308. builder.Write(dac1totalPrice.ToString("#0.00"));
  4309. accommodationStartIndex++;
  4310. int nullRow = accommodationRows - dac1.Count;
  4311. //删除空行
  4312. //if (nullRow > 0)
  4313. //{
  4314. // int rowIndex = accommodationStartIndex;
  4315. // for (int i = 0; i < nullRow; i++)
  4316. // {
  4317. // Row row = table1.Rows[rowIndex];
  4318. // row.Remove();
  4319. // rowIndex++;
  4320. // }
  4321. //}
  4322. if (dac2.Count == dac3.Count)//国家 币种 金额
  4323. {
  4324. for (int i = 0; i < dac2.Count; i++)
  4325. {
  4326. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4327. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4328. }
  4329. }
  4330. int foodandotherStartIndex = 19;//
  4331. decimal dac2totalPrice = 0.00M;
  4332. foreach (var dac in dac2)
  4333. {
  4334. if (dac.SubTotal == 0)
  4335. {
  4336. continue;
  4337. }
  4338. //foodandotherStartIndex = 12;
  4339. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4340. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4341. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4342. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4343. builder.Write(currency);//币种
  4344. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4345. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4346. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4347. builder.Write("");//人数
  4348. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4349. builder.Write("");//天数
  4350. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4351. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4352. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4353. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4354. builder.Write(rate.ToString("#0.0000"));//汇率
  4355. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4356. decimal rbmPrice = rate * dac.SubTotal;
  4357. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4358. foodandotherStartIndex++;
  4359. dac2totalPrice += rbmPrice;
  4360. }
  4361. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4362. //删除空行
  4363. if (dac2.Count < foodandotherRows)
  4364. {
  4365. //int nullRow = accommodationRows - dac2.Count;
  4366. //while (table2.Rows.Count > dac2.Count)
  4367. //{
  4368. // table2.Rows.RemoveAt(dac2.Count);
  4369. //}
  4370. }
  4371. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4372. string otherFeeStr = "";
  4373. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4374. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4375. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4376. if (otherFeeStr.Length > 0)
  4377. {
  4378. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4379. otherFeeStr = $"({otherFeeStr})";
  4380. dic.Add("OtherFeeStr", otherFeeStr);
  4381. }
  4382. foreach (var key in dic.Keys)
  4383. {
  4384. builder.MoveToBookmark(key);
  4385. builder.Write(dic[key]);
  4386. }
  4387. //模板文件名
  4388. string strFileName = $"省级单位出(境)经费报销单.docx";
  4389. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4390. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4391. return Ok(JsonView(true, "成功", new { Url = url }));
  4392. }
  4393. }
  4394. else if (dto.ExportType == 3)
  4395. {
  4396. if (dto.SubTypeId == 1) //团组成员名单
  4397. {
  4398. if (DeleClientList.Count < 1)
  4399. {
  4400. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4401. }
  4402. //获取模板
  4403. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4404. //载入模板
  4405. Document doc = new Document(tempPath);
  4406. DocumentBuilder builder = new DocumentBuilder(doc);
  4407. //获取word里所有表格
  4408. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4409. //获取所填表格的序数
  4410. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4411. var rowStart = tableOne.Rows[0]; //获取第1行
  4412. //循环赋值
  4413. for (int i = 0; i < DeleClientList.Count; i++)
  4414. {
  4415. builder.MoveToCell(0, i + 1, 0, 0);
  4416. builder.Write(DeleClientList[i].Name);
  4417. builder.MoveToCell(0, i + 1, 1, 0);
  4418. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4419. builder.Write(sex);
  4420. builder.MoveToCell(0, i + 1, 2, 0);
  4421. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4422. builder.MoveToCell(0, i + 1, 3, 0);
  4423. builder.Write(DeleClientList[i].Company);
  4424. builder.MoveToCell(0, i + 1, 4, 0);
  4425. builder.Write(DeleClientList[i].Job);
  4426. }
  4427. //删除多余行
  4428. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4429. {
  4430. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4431. }
  4432. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4433. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4434. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4435. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4436. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4437. return Ok(JsonView(true, "成功", new { Url = url }));
  4438. }
  4439. }
  4440. return Ok(JsonView(false, "操作失败!"));
  4441. }
  4442. catch (Exception ex)
  4443. {
  4444. return Ok(JsonView(false, ex.Message));
  4445. }
  4446. }
  4447. /// <summary>
  4448. /// 获取三公费用标准city
  4449. /// </summary>
  4450. /// <param name="placeData"></param>
  4451. /// <param name="nationalTravelFeeId"></param>
  4452. /// <returns></returns>
  4453. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4454. {
  4455. string _city = string.Empty;
  4456. if (placeData.Count < 1) return _city;
  4457. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4458. if (data == null) return _city;
  4459. string country = data.Country;
  4460. string city = data.City;
  4461. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4462. else _city = city;
  4463. return _city;
  4464. }
  4465. /// <summary>
  4466. /// 团组模块 - 出入境费用 - 明细表导出
  4467. /// </summary>
  4468. /// <returns></returns>
  4469. [HttpPost]
  4470. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4471. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4472. {
  4473. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4474. if (data.Code != 0)
  4475. {
  4476. return Ok(JsonView(false, data.Msg));
  4477. }
  4478. return Ok(JsonView(true, data.Msg, data.Data));
  4479. }
  4480. /// <summary>
  4481. /// 团组模块 - 出入境费用 - 一键清空
  4482. /// </summary>
  4483. /// <returns></returns>
  4484. [HttpPost]
  4485. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4486. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4487. {
  4488. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4489. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4490. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4491. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4492. if (_view.Code == 0)
  4493. {
  4494. return Ok(JsonView(true, "操作成功"));
  4495. }
  4496. return Ok(JsonView(false, "操作失败"));
  4497. }
  4498. /// <summary>
  4499. /// 团组模块 - 出入境费用 - 子项删除
  4500. /// </summary>
  4501. /// <returns></returns>
  4502. [HttpPost]
  4503. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4504. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4505. {
  4506. try
  4507. {
  4508. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4509. if (data.Code != 0)
  4510. {
  4511. return Ok(JsonView(false, data.Msg));
  4512. }
  4513. return Ok(JsonView(true, "操作成功!", data.Data));
  4514. }
  4515. catch (Exception ex)
  4516. {
  4517. return Ok(JsonView(false, ex.Message));
  4518. }
  4519. }
  4520. /// <summary>
  4521. /// 团组模块 - 出入境国家费用标准 List
  4522. /// </summary>
  4523. /// <returns></returns>
  4524. [HttpPost]
  4525. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4526. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  4527. {
  4528. try
  4529. {
  4530. Stopwatch sw = new Stopwatch();
  4531. sw.Start();
  4532. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  4533. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4534. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4535. Where gntf.Isdel = 0");
  4536. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  4537. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  4538. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  4539. //foreach (var item in nationalTravel)
  4540. //{
  4541. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  4542. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  4543. // if (otherData != null)
  4544. // {
  4545. // cityData.Remove(otherData);
  4546. // cityData.Add(otherData);
  4547. // }
  4548. // nationalTravelFeeData1.Add(new
  4549. // {
  4550. // Country = item.Country,
  4551. // CityData = cityData
  4552. // });
  4553. //}
  4554. sw.Stop();
  4555. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  4556. }
  4557. catch (Exception ex)
  4558. {
  4559. return Ok(JsonView(false, ex.Message));
  4560. throw;
  4561. }
  4562. }
  4563. /// <summary>
  4564. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  4565. /// </summary>
  4566. /// <returns></returns>
  4567. [HttpPost]
  4568. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4569. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  4570. {
  4571. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  4572. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  4573. List<string> countryData = new List<string>();
  4574. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  4575. countryData = countryData.Distinct().ToList();
  4576. List<dynamic> dataSource = new List<dynamic>();
  4577. foreach (var item in countryData)
  4578. {
  4579. List<string> cityData1 = new List<string>();
  4580. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  4581. var countryData2 = new
  4582. {
  4583. CountryName = item,
  4584. CityData = cityData1
  4585. };
  4586. dataSource.Add(countryData2);
  4587. }
  4588. return Ok(JsonView(true, "查询成功!", dataSource));
  4589. }
  4590. /// <summary>
  4591. /// 团组模块 - 出入境国家费用标准 Page List
  4592. /// </summary>
  4593. /// <returns></returns>
  4594. [HttpPost]
  4595. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4596. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  4597. {
  4598. int portId = dto.PortType;
  4599. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4600. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  4601. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  4602. string whereSql = string.Empty;
  4603. if (!string.IsNullOrEmpty(dto.Country))
  4604. {
  4605. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  4606. }
  4607. if (!string.IsNullOrEmpty(dto.City))
  4608. {
  4609. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  4610. }
  4611. string pageSql = string.Format(@"Select * From (
  4612. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  4613. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  4614. From Grp_NationalTravelFee gntf
  4615. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4616. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4617. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  4618. RefAsync<int> total = 0;
  4619. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  4620. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  4621. }
  4622. /// <summary>
  4623. /// 团组模块 - 出入境国家费用标准 根据城市查询
  4624. /// </summary>
  4625. /// <returns></returns>
  4626. [HttpPost]
  4627. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4628. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  4629. {
  4630. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  4631. int portId = dto.PortType;
  4632. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4633. string whereSql = string.Empty;
  4634. if (!string.IsNullOrEmpty(dto.Country))
  4635. {
  4636. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  4637. }
  4638. if (!string.IsNullOrEmpty(dto.City))
  4639. {
  4640. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  4641. }
  4642. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  4643. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  4644. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  4645. From Grp_NationalTravelFee gntf
  4646. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4647. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4648. Where gntf.Isdel = 0 {0} ", whereSql);
  4649. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  4650. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  4651. }
  4652. /// <summary>
  4653. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  4654. /// </summary>
  4655. /// <returns></returns>
  4656. [HttpPost]
  4657. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4658. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  4659. {
  4660. try
  4661. {
  4662. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  4663. if (data.Code != 0)
  4664. {
  4665. return Ok(JsonView(false, data.Msg));
  4666. }
  4667. return Ok(JsonView(true, "操作成功!", data.Data));
  4668. }
  4669. catch (Exception ex)
  4670. {
  4671. return Ok(JsonView(false, ex.Message));
  4672. }
  4673. }
  4674. /// <summary>
  4675. /// 团组模块 - 出入境国家费用标准 - Del
  4676. /// </summary>
  4677. /// <returns></returns>
  4678. [HttpPost]
  4679. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4680. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  4681. {
  4682. try
  4683. {
  4684. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  4685. {
  4686. Id = dto.Id,
  4687. DeleteUserId = dto.DeleteUserId,
  4688. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  4689. IsDel = 1
  4690. };
  4691. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  4692. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  4693. .WhereColumns(it => new { it.Id })
  4694. .ExecuteCommandAsync();
  4695. if (delStatus <= 0)
  4696. {
  4697. return Ok(JsonView(false, "删除失败!"));
  4698. }
  4699. return Ok(JsonView(true, "操作成功!"));
  4700. }
  4701. catch (Exception ex)
  4702. {
  4703. return Ok(JsonView(false, ex.Message));
  4704. }
  4705. }
  4706. #endregion
  4707. #region 签证费用录入
  4708. /// <summary>
  4709. /// 根据diid查询签证费用列表
  4710. /// </summary>
  4711. /// <param name="dto"></param>
  4712. /// <returns></returns>
  4713. [HttpPost]
  4714. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4715. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  4716. {
  4717. try
  4718. {
  4719. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  4720. if (groupData.Code != 0)
  4721. {
  4722. return Ok(JsonView(false, groupData.Msg));
  4723. }
  4724. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4725. }
  4726. catch (Exception ex)
  4727. {
  4728. return Ok(JsonView(false, ex.Message));
  4729. }
  4730. }
  4731. /// <summary>
  4732. /// 根据签证费用Id查询单条数据及c表数据
  4733. /// </summary>
  4734. /// <param name="dto"></param>
  4735. /// <returns></returns>
  4736. [HttpPost]
  4737. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4738. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  4739. {
  4740. try
  4741. {
  4742. Result groupData = await _visaPriceRep.PostVisaById(dto);
  4743. if (groupData.Code != 0)
  4744. {
  4745. return Ok(JsonView(false, groupData.Msg));
  4746. }
  4747. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4748. }
  4749. catch (Exception ex)
  4750. {
  4751. return Ok(JsonView(false, ex.Message));
  4752. }
  4753. }
  4754. /// <summary>
  4755. /// 签证费用删除
  4756. /// </summary>
  4757. /// <param name="dto"></param>
  4758. /// <returns></returns>
  4759. [HttpPost]
  4760. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4761. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  4762. {
  4763. _sqlSugar.BeginTran();
  4764. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  4765. if (!res)
  4766. {
  4767. _sqlSugar.RollbackTran();
  4768. return Ok(JsonView(false, "删除失败"));
  4769. }
  4770. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  4771. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  4772. .SetColumns(a => new Grp_CreditCardPayment()
  4773. {
  4774. IsDel = 1,
  4775. DeleteUserId = dto.DeleteUserId,
  4776. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4777. }).ExecuteCommand();
  4778. if (resSub < 1)
  4779. {
  4780. _sqlSugar.RollbackTran();
  4781. return Ok(JsonView(false, "删除失败"));
  4782. }
  4783. _sqlSugar.CommitTran();
  4784. return Ok(JsonView(true, "删除成功!"));
  4785. }
  4786. /// <summary>
  4787. /// 签证费用录入下拉框初始化
  4788. /// </summary>
  4789. /// <returns></returns>
  4790. [HttpPost]
  4791. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4792. public async Task<IActionResult> VisaPriceAddSelect()
  4793. {
  4794. try
  4795. {
  4796. //支付方式
  4797. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  4798. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  4799. //币种
  4800. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  4801. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  4802. //乘客类型
  4803. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  4804. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  4805. //卡类型
  4806. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  4807. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  4808. var data = new
  4809. {
  4810. Payment = _Payment,
  4811. CurrencyList = _CurrencyList,
  4812. PassengerType = _PassengerType,
  4813. BankCard = _BankCard
  4814. };
  4815. return Ok(JsonView(true, "查询成功!", data));
  4816. }
  4817. catch (Exception ex)
  4818. {
  4819. return Ok(JsonView(false, "程序错误!"));
  4820. throw;
  4821. }
  4822. }
  4823. /// <summary>
  4824. /// 签证费用录入操作(Status:1.新增,2.修改)
  4825. /// </summary>
  4826. /// <param name="dto"></param>
  4827. /// <returns></returns>
  4828. [HttpPost]
  4829. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4830. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  4831. {
  4832. try
  4833. {
  4834. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  4835. if (groupData.Code != 0)
  4836. {
  4837. return Ok(JsonView(false, groupData.Msg));
  4838. }
  4839. #region 应用推送
  4840. try
  4841. {
  4842. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  4843. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  4844. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  4845. }
  4846. catch (Exception ex)
  4847. {
  4848. }
  4849. #endregion
  4850. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4851. }
  4852. catch (Exception ex)
  4853. {
  4854. return Ok(JsonView(false, ex.Message));
  4855. }
  4856. }
  4857. #endregion
  4858. #region op费用录入
  4859. /// <summary>
  4860. /// 根据diid查询op费用列表
  4861. /// </summary>
  4862. /// <param name="dto"></param>
  4863. /// <returns></returns>
  4864. [HttpPost]
  4865. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4866. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  4867. {
  4868. try
  4869. {
  4870. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  4871. if (groupData.Code != 0)
  4872. {
  4873. return Ok(JsonView(false, groupData.Msg));
  4874. }
  4875. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4876. }
  4877. catch (Exception ex)
  4878. {
  4879. return Ok(JsonView(false, ex.Message));
  4880. }
  4881. }
  4882. /// <summary>
  4883. /// 根据op费用Id查询单条数据及c表数据
  4884. /// </summary>
  4885. /// <param name="dto"></param>
  4886. /// <returns></returns>
  4887. [HttpPost]
  4888. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4889. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  4890. {
  4891. try
  4892. {
  4893. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  4894. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  4895. var data = new
  4896. {
  4897. CarTouristGuideGround = _groupData,
  4898. CreditCardPayment = _creditCardPayment
  4899. };
  4900. return Ok(JsonView(true, "查询成功!", data));
  4901. }
  4902. catch (Exception ex)
  4903. {
  4904. return Ok(JsonView(false, "程序错误!"));
  4905. }
  4906. }
  4907. /// <summary>
  4908. /// op费用删除
  4909. /// </summary>
  4910. /// <param name="dto"></param>
  4911. /// <returns></returns>
  4912. [HttpPost]
  4913. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4914. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  4915. {
  4916. try
  4917. {
  4918. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  4919. if (!res)
  4920. {
  4921. return Ok(JsonView(false, "删除失败"));
  4922. }
  4923. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  4924. {
  4925. IsDel = 1,
  4926. DeleteUserId = dto.DeleteUserId,
  4927. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4928. }).ExecuteCommandAsync();
  4929. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  4930. {
  4931. IsDel = 1,
  4932. DeleteUserId = dto.DeleteUserId,
  4933. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4934. }).ExecuteCommandAsync();
  4935. return Ok(JsonView(true, "删除成功!"));
  4936. }
  4937. catch (Exception ex)
  4938. {
  4939. return Ok(JsonView(false, "程序错误!"));
  4940. throw;
  4941. }
  4942. }
  4943. /// <summary>
  4944. /// op费用录入操作(Status:1.新增,2.修改)
  4945. /// </summary>
  4946. /// <param name="dto"></param>
  4947. /// <returns></returns>
  4948. [HttpPost]
  4949. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4950. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  4951. {
  4952. try
  4953. {
  4954. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  4955. if (groupData.Code != 0)
  4956. {
  4957. return Ok(JsonView(false, groupData.Msg));
  4958. }
  4959. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4960. }
  4961. catch (Exception ex)
  4962. {
  4963. return Ok(JsonView(false, ex.Message));
  4964. }
  4965. }
  4966. /// <summary>
  4967. /// 填写费用详细页面初始化绑定
  4968. /// </summary>
  4969. /// <param name="dto"></param>
  4970. /// <returns></returns>
  4971. [HttpPost]
  4972. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4973. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  4974. {
  4975. try
  4976. {
  4977. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  4978. if (groupData.Code != 0)
  4979. {
  4980. return Ok(JsonView(false, groupData.Msg));
  4981. }
  4982. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4983. }
  4984. catch (Exception ex)
  4985. {
  4986. return Ok(JsonView(false, ex.Message));
  4987. }
  4988. }
  4989. /// <summary>
  4990. /// 根据op费用Id查询详细数据
  4991. /// </summary>
  4992. /// <param name="dto"></param>
  4993. /// <returns></returns>
  4994. [HttpPost]
  4995. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4996. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  4997. {
  4998. try
  4999. {
  5000. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5001. if (groupData.Code != 0)
  5002. {
  5003. return Ok(JsonView(false, groupData.Msg));
  5004. }
  5005. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5006. }
  5007. catch (Exception ex)
  5008. {
  5009. return Ok(JsonView(false, ex.Message));
  5010. }
  5011. }
  5012. /// <summary>
  5013. /// OP费用录入填写详情
  5014. /// </summary>
  5015. /// <param name="dto"></param>
  5016. /// <returns></returns>
  5017. [HttpPost]
  5018. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5019. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5020. {
  5021. try
  5022. {
  5023. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5024. if (groupData.Code != 0)
  5025. {
  5026. return Ok(JsonView(false, groupData.Msg));
  5027. }
  5028. #region 应用推送
  5029. try
  5030. {
  5031. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5032. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5033. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5034. }
  5035. catch (Exception ex)
  5036. {
  5037. }
  5038. #endregion
  5039. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5040. }
  5041. catch (Exception ex)
  5042. {
  5043. return Ok(JsonView(false, ex.Message));
  5044. }
  5045. }
  5046. /// <summary>
  5047. /// 获取三公详细所有城市
  5048. /// </summary>
  5049. /// <returns></returns>
  5050. [HttpGet]
  5051. public IActionResult OpCarCityResult()
  5052. {
  5053. var jw = JsonView(false);
  5054. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5055. {
  5056. x.Id,
  5057. x.Country,
  5058. x.City,
  5059. }).ToList();
  5060. if (data.Count > 0)
  5061. {
  5062. jw = JsonView(true, "获取成功!", data);
  5063. }
  5064. else
  5065. {
  5066. jw.Msg = "城市数据未空!";
  5067. jw.Data = new string[0];
  5068. }
  5069. return Ok(jw);
  5070. }
  5071. #region OP行程单
  5072. /// <summary>
  5073. /// OP行程单初始化
  5074. /// </summary>
  5075. /// <param name="dto"></param>
  5076. /// <returns></returns>
  5077. [HttpPost]
  5078. public IActionResult InitOpTravel(InitOpTravelDto dto)
  5079. {
  5080. var jw = JsonView(false);
  5081. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  5082. var group = groupList.First();
  5083. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  5084. if (group == null)
  5085. {
  5086. jw.Msg = "暂无团组!";
  5087. return Ok(jw);
  5088. }
  5089. group = groupList.Find(x => x.Id == diid);
  5090. if (group == null)
  5091. {
  5092. jw.Msg = "请输入正确的团组ID!";
  5093. return Ok(jw);
  5094. }
  5095. string city = string.Empty;
  5096. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  5097. if (blackCode.Count > 0)
  5098. {
  5099. var black = blackCode.First();
  5100. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  5101. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  5102. if (blackSp.Length > 0)
  5103. {
  5104. try
  5105. {
  5106. var cityArrCode = new List<string>(20);
  5107. foreach (var item in blackSp)
  5108. {
  5109. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  5110. var IndexSelect = itemSp[2];
  5111. var cityArrCodeLength = cityArrCode.Count - 1;
  5112. var startCity = IndexSelect.Substring(0, 3);
  5113. if (cityArrCodeLength > 0)
  5114. {
  5115. var arrEndCity = cityArrCode[cityArrCodeLength];
  5116. if (arrEndCity != startCity)
  5117. {
  5118. cityArrCode.Add(startCity.ToUpper());
  5119. }
  5120. }
  5121. else
  5122. {
  5123. cityArrCode.Add(startCity.ToUpper());
  5124. }
  5125. var endCity = IndexSelect.Substring(3, 3);
  5126. cityArrCode.Add(endCity.ToUpper());
  5127. }
  5128. var cityThree = string.Empty;
  5129. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  5130. cityThree = cityThree.TrimEnd(',');
  5131. if (string.IsNullOrWhiteSpace(cityThree))
  5132. {
  5133. throw new
  5134. Exception("error");
  5135. }
  5136. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  5137. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  5138. foreach (var item in cityArrCode)
  5139. {
  5140. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  5141. if (find != null)
  5142. {
  5143. city += find.City + "/";
  5144. }
  5145. else
  5146. {
  5147. city += item + "三字码未收入/";
  5148. }
  5149. }
  5150. city = city.TrimEnd('/');
  5151. }
  5152. catch (Exception e)
  5153. {
  5154. city = "黑屏代码格式不正确!";
  5155. }
  5156. }
  5157. }
  5158. else
  5159. {
  5160. city = "未录入黑屏代码";
  5161. }
  5162. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  5163. {
  5164. Date = x.Date,
  5165. Days = x.Days,
  5166. Diffgroup = x.Diffgroup,
  5167. Diid = x.Diid,
  5168. Traffic_First = x.Traffic_First,
  5169. Traffic_Second = x.Traffic_Second,
  5170. Trip = x.Trip,
  5171. WeekDay = x.WeekDay,
  5172. Id = x.Id
  5173. }).ToList();
  5174. jw.Data = new
  5175. {
  5176. groupList = groupList.Select(x => new
  5177. {
  5178. x.Id,
  5179. x.TeamName,
  5180. x.TourCode
  5181. }).ToList(),
  5182. groupInfo = new
  5183. {
  5184. group.VisitDays,
  5185. group.TourCode,
  5186. group.VisitPNumber,
  5187. group.TeamName,
  5188. city
  5189. },
  5190. OpTravelList
  5191. };
  5192. jw.Code = 200;
  5193. jw.Msg = "操作成功!";
  5194. return Ok(jw);
  5195. }
  5196. /// <summary>
  5197. /// 删除团组行程单
  5198. /// </summary>
  5199. /// <returns></returns>
  5200. [HttpPost]
  5201. public IActionResult DelTravel(DelOpTravelDto dto)
  5202. {
  5203. var jw = JsonView(false);
  5204. if (dto.UserId <= 0 || dto.Diid <= 0)
  5205. {
  5206. jw.Msg = "请输入正确的参数!";
  5207. return Ok(jw);
  5208. }
  5209. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  5210. .SetColumns(x => new Grp_TravelList
  5211. {
  5212. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5213. DeleteUserId = dto.UserId,
  5214. IsDel = 1,
  5215. }).ExecuteCommand();
  5216. jw = JsonView(true);
  5217. return Ok(jw);
  5218. }
  5219. /// <summary>
  5220. /// 行程单保存
  5221. /// </summary>
  5222. /// <returns></returns>
  5223. [HttpPost]
  5224. public IActionResult TravelSave(TravelSaveDto dto)
  5225. {
  5226. var jw = JsonView(false);
  5227. if (dto.Arr.Count > 0)
  5228. {
  5229. try
  5230. {
  5231. _sqlSugar.BeginTran();
  5232. foreach (var item in dto.Arr)
  5233. {
  5234. if (item.Id == 0)
  5235. {
  5236. throw new Exception("请传入正确的Id");
  5237. }
  5238. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  5239. .SetColumns(x => new Grp_TravelList
  5240. {
  5241. Trip = item.Trip
  5242. }).ExecuteCommand();
  5243. }
  5244. _sqlSugar.CommitTran();
  5245. jw = JsonView(true);
  5246. }
  5247. catch (Exception ex)
  5248. {
  5249. _sqlSugar.RollbackTran();
  5250. jw.Msg = "程序异常!" + ex.Message;
  5251. }
  5252. }
  5253. else
  5254. {
  5255. jw.Msg = "请传入正确的参数!";
  5256. }
  5257. return Ok(jw);
  5258. }
  5259. /// <summary>
  5260. /// 导出行程单
  5261. /// </summary>
  5262. /// <param name="dto"></param>
  5263. /// <returns></returns>
  5264. [HttpPost]
  5265. public IActionResult ExportTravel(InitOpTravelDto dto)
  5266. {
  5267. var jw = JsonView(false);
  5268. //数据源
  5269. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  5270. int diid = 0;
  5271. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  5272. if (Find == null)
  5273. {
  5274. jw.Msg = "请选择正确的团组!";
  5275. return Ok(jw);
  5276. }
  5277. else
  5278. {
  5279. diid = Find.Id;
  5280. }
  5281. DataTable dtBlack = null;
  5282. try
  5283. {
  5284. dtBlack = GetTableByBlackCode(diid);
  5285. }
  5286. catch (Exception)
  5287. {
  5288. jw.Msg = "机票黑屏代码有误!";
  5289. return Ok(jw);
  5290. }
  5291. string CityStr1 = "";
  5292. List<string> countriesList = new List<string>();
  5293. List<string> cityList = new List<string>();
  5294. string countriesIntroduction = "";
  5295. string cityIntroduction = "";
  5296. string timeDifference = "";
  5297. string currExchangeRate = "";
  5298. string txt_itemPrepare = "";
  5299. string txt_specialReminder = "";
  5300. string txt_cGPrecautions = "";
  5301. string txt_yGCG = "";
  5302. string txt_conduct = "";
  5303. string txt_commonEnglish = "";
  5304. if (dtBlack == null && (dtBlack.Rows[0]["Day"] == null || dtBlack.Rows[0]["Day"].ToString() == ""))
  5305. {
  5306. //提示
  5307. //PublicCode.GetAlertMsg(this, GetType(), dt.Rows[dt.Rows.Count - 1]["Error"].ToString());
  5308. }
  5309. else
  5310. {
  5311. //创建三字码示例
  5312. Res_ThreeCode t = new Res_ThreeCode();
  5313. //城市缓存
  5314. string city = "";
  5315. //出访城市
  5316. for (int i = 0; i < dtBlack.Rows.Count; i++)
  5317. {
  5318. if ((i + 1) < dtBlack.Rows.Count && dtBlack.Rows[i]["Three"].ToString() == dtBlack.Rows[i + 1]["Three"].ToString())
  5319. {
  5320. continue;
  5321. }
  5322. if (dtBlack.Rows.Count > 0 && (dtBlack.Rows[i]["Three"].ToString() != null && dtBlack.Rows[i]["Three"].ToString() != ""))
  5323. {
  5324. //出发城市
  5325. string cityTemp = dtBlack.Rows[i]["Three"].ToString().Replace("/", string.Empty).Substring(0, 3);
  5326. t = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three == cityTemp && x.IsDel == 0);
  5327. if (t != null)
  5328. {
  5329. city = city + "/" + t.City;
  5330. }
  5331. else
  5332. {
  5333. city = city + "/【" + cityTemp + "未收录,请联系机票同事录入】";
  5334. }
  5335. if (i == dtBlack.Rows.Count - 1)
  5336. {
  5337. //抵达城市
  5338. cityTemp = dtBlack.Rows[i]["Three"].ToString().Replace("/", string.Empty).Substring(3, 3);
  5339. t = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three == cityTemp && x.IsDel == 0);
  5340. if (t != null)
  5341. {
  5342. city = city + "/" + t.City;
  5343. }
  5344. else
  5345. {
  5346. city = city + "/【" + cityTemp + "未收录,请联系机票同事录入】";
  5347. }
  5348. }
  5349. }
  5350. }
  5351. if (city != "" && city != null)
  5352. {
  5353. string[] cityStr2 = city.Split('/');
  5354. string[] strs = cityStr2.Distinct().ToArray(); ;
  5355. string str = "";
  5356. foreach (var s in strs)
  5357. {
  5358. str += s + "/";
  5359. }
  5360. str = str.TrimStart('/');
  5361. str = str.TrimEnd('/');
  5362. //lblTourCity.Text = "去重前:" + city.TrimStart('/') + "\n 去重后:" + str;
  5363. CityStr1 = city.TrimStart('/');
  5364. }
  5365. // 行程repeater
  5366. if (GetByDiid(diid).Count > 0)
  5367. {
  5368. _travelList = GetByDiid(diid).Where(x => x.Issel == 1 && x.IsDel == 0).ToList();
  5369. }
  5370. else
  5371. {
  5372. //生成该时间段日期
  5373. List<string> timeList = GetTimeListByDataTable(dtBlack);
  5374. if (timeList != null)
  5375. {
  5376. string[] str = new string[timeList.Count];
  5377. //rpData.DataSource = str;
  5378. //rpData.DataBind();
  5379. }
  5380. }
  5381. }
  5382. //创建数据源Table
  5383. DataTable dtSource = new DataTable();
  5384. dtSource.Columns.Add("Days", typeof(string));
  5385. dtSource.Columns.Add("Date", typeof(string));
  5386. dtSource.Columns.Add("Week", typeof(string));
  5387. dtSource.Columns.Add("Traffic", typeof(string));
  5388. dtSource.Columns.Add("Trip", typeof(string));
  5389. //获取数据,放到datatable
  5390. foreach (var item in _travelList)
  5391. {
  5392. DataRow dr = dtSource.NewRow();
  5393. dr["Days"] = item.Days;
  5394. dr["Date"] = item.Date;
  5395. dr["Week"] = item.WeekDay;
  5396. dr["Traffic"] = item.Traffic_First
  5397. + "\r\n"
  5398. + item.Traffic_Second;
  5399. if (item.Trip.Replace("(此地区为黄热病地区,请注意打疫苗)", "").Length < 15)
  5400. {
  5401. item.Trip += @"
  5402. 08:00 早餐于酒店;
  5403. 09:00 公务活动;
  5404. 10:30 公务活动;
  5405. 12:00 午餐于当地餐厅;
  5406. 14:00 公务活动;
  5407. 16:00 公务活动;
  5408. 18:00 晚餐于当地餐厅;
  5409. 19:00 入住酒店休息;";
  5410. }
  5411. dr["Trip"] = item.Trip;
  5412. dtSource.Rows.Add(dr);
  5413. }
  5414. //lblTeamName.Text = di.TourCode;
  5415. //lblVisitDays.Text = di.VisitDays.ToString();
  5416. //lblVisitDays2.Text = di.VisitDays.ToString();
  5417. //lblPNumber.Text = di.VisitPNumber.ToString();
  5418. //lblGroup.Text = di.TeamName.ToString();
  5419. Dictionary<string, string> dic = new Dictionary<string, string>();
  5420. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  5421. dic.Add("City", CityStr1);
  5422. dic.Add("Days", Find.VisitDays.ToString());
  5423. dic.Add("DeleCode", Find.TourCode);
  5424. dic.Add("Pnum", Find.VisitPNumber.ToString());
  5425. dic.Add("Pnum2", Find.VisitPNumber.ToString());
  5426. List<Crm_DeleClient> leader = GetByDiidClient(Find.Id);
  5427. if (leader != null && leader.Count > 0)
  5428. {
  5429. dic.Add("Leader", GetByDiidClient(Find.Id)[0].LastName + GetByDiidClient(Find.Id)[0].FirstName);
  5430. }
  5431. else
  5432. {
  5433. dic.Add("Leader", "");
  5434. }
  5435. dic.Add("Pnum3", Find.VisitPNumber.ToString());
  5436. int UserId = 253;
  5437. dic.Add("OP", "");
  5438. dic.Add("OPTel", "");
  5439. //dic.Add("OP", "OP姓名");
  5440. //dic.Add("OPTel", "OP手机号码");
  5441. string countriesStr = "";
  5442. countriesList.ForEach(s => countriesStr += s + "、");
  5443. countriesStr = countriesStr.TrimEnd('、');
  5444. string cityStr = "";
  5445. cityList.ForEach(s => cityStr += s + "、");
  5446. cityStr = cityStr.TrimEnd('、');
  5447. //下方数据
  5448. dic.Add("selCountries", countriesStr == null ? "" : countriesStr);
  5449. dic.Add("selCity", cityStr == null ? "" : cityStr);
  5450. dic.Add("countriesIntroduction", countriesIntroduction == null ? "" : countriesIntroduction);
  5451. dic.Add("CityIntroduction", cityIntroduction == null ? "" : cityIntroduction);
  5452. dic.Add("timeDifference", timeDifference == null ? "" : timeDifference);
  5453. dic.Add("currExchangeRate", currExchangeRate == null ? "" : currExchangeRate);
  5454. dic.Add("temperature", "");
  5455. dic.Add("txt_itemPrepare", txt_itemPrepare == null ? "" : txt_itemPrepare);
  5456. dic.Add("txt_specialReminder", txt_specialReminder == null ? "" : txt_specialReminder);
  5457. dic.Add("txt_cGPrecautions", txt_cGPrecautions == null ? "" : txt_cGPrecautions);
  5458. dic.Add("txt_yGCG", txt_yGCG == null ? "" : txt_yGCG);
  5459. dic.Add("txt_conduct", txt_conduct == null ? "" : txt_conduct);
  5460. dic.Add("txt_commonEnglish", txt_commonEnglish == null ? "" : txt_commonEnglish);
  5461. //模板路径
  5462. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  5463. //载入模板
  5464. Document doc = null;
  5465. DocumentBuilder builder = null;
  5466. try
  5467. {
  5468. //载入模板
  5469. doc = new Document(tempPath);
  5470. builder = new DocumentBuilder(doc);
  5471. }
  5472. catch (Exception)
  5473. {
  5474. jw.Msg = "模板位置不存在!";
  5475. return Ok(jw);
  5476. }
  5477. foreach (var key in dic.Keys)
  5478. {
  5479. Bookmark bookmark = doc.Range.Bookmarks[key];
  5480. if (bookmark != null)
  5481. {
  5482. builder.MoveToBookmark(key);
  5483. builder.Write(dic[key]);
  5484. }
  5485. }
  5486. //获取word里所有表格
  5487. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5488. //获取所填表格的序数
  5489. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5490. try
  5491. {
  5492. //循环赋值
  5493. for (int i = 0; i < dtSource.Rows.Count; i++)
  5494. {
  5495. builder.MoveToCell(0, i + 1, 0, 0);
  5496. builder.Write(dtSource.Rows[i]["Days"].ToString());
  5497. builder.MoveToCell(0, i + 1, 1, 0);
  5498. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  5499. builder.MoveToCell(0, i + 1, 2, 0);
  5500. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  5501. var trip = dtSource.Rows[i]["Trip"].ToString();
  5502. builder.MoveToCell(0, i + 1, 3, 0);
  5503. builder.Write(trip);
  5504. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  5505. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  5506. // 获取特定索引的段落
  5507. Paragraph paragraph = (Paragraph)paragraphs[0];
  5508. Run run = paragraph.Runs[0];
  5509. Aspose.Words.Font font = run.Font;
  5510. font.Name = "黑体";
  5511. //设置双休红色
  5512. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  5513. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  5514. paragraph = (Paragraph)paragraphs[1];
  5515. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  5516. {
  5517. run = paragraph.Runs[0];
  5518. font = run.Font;
  5519. font.Color = Color.Red;
  5520. }
  5521. }
  5522. }
  5523. catch (Exception ex)
  5524. {
  5525. }
  5526. //删除多余行
  5527. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  5528. {
  5529. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  5530. }
  5531. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  5532. if (!Directory.Exists(savePath))
  5533. {
  5534. try
  5535. {
  5536. Directory.CreateDirectory(savePath);
  5537. }
  5538. catch
  5539. {
  5540. }
  5541. }
  5542. string path = savePath + Find.TeamName + "出访日程.docx";
  5543. try
  5544. {
  5545. doc.Save(path, Aspose.Words.SaveFormat.Doc);
  5546. jw = JsonView(true, "导出成功", path);
  5547. }
  5548. catch (Exception)
  5549. {
  5550. jw = JsonView(false);
  5551. }
  5552. return Ok(jw);
  5553. }
  5554. /// <summary>
  5555. ///根据机票黑屏代码整理DataTable
  5556. /// </summary>
  5557. /// <param name="diid"></param>
  5558. /// <returns></returns>
  5559. DataTable GetTableByBlackCode(int diid)
  5560. {
  5561. //黑屏代码信息
  5562. List<Air_TicketBlackCode> listcode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.DiId == diid && x.IsDel == 0).ToList();
  5563. //测试数据为序号,航班号,起飞日期,三字码,起飞时刻,到达时刻,出发航站楼,到达航站楼,机型,飞行时间
  5564. //1.3U8391 TU17NOV CTUCAI 0220 0715 T1 T2 330 10H55M
  5565. DataTable dt = new DataTable();
  5566. dt.Columns.Add("Fliagtcode", typeof(string)); //航班号
  5567. dt.Columns.Add("Date", typeof(string));//起飞日期
  5568. dt.Columns.Add("Three", typeof(string));//三字码
  5569. dt.Columns.Add("StartTime", typeof(string));//起飞时刻
  5570. dt.Columns.Add("EndTime", typeof(string));//到达时刻
  5571. dt.Columns.Add("StartBuilding", typeof(string));//出发航站楼
  5572. dt.Columns.Add("EndBuilding", typeof(string));//到达航站楼
  5573. dt.Columns.Add("AirModel", typeof(string)); //机型
  5574. dt.Columns.Add("FlightTime", typeof(string));//飞行时间
  5575. dt.Columns.Add("Day", typeof(string));//整理的起飞日期;作为排序依据
  5576. dt.Columns.Add("ArrivedDate", typeof(string));//整理的到达日期
  5577. dt.Columns.Add("Error", typeof(string));//整理的到达日期
  5578. dt.Columns.Add("Sign", typeof(string));//标识:0表示为原生黑屏代码、1表示“+1”新增的黑屏代码
  5579. //判断是否录入黑屏代码
  5580. if (listcode.Count() == 0 || listcode == null)
  5581. {
  5582. dt.Rows.Add(null, null, null, null, null, null, null, null, null, null, null, "黑屏代码未录入!", null);
  5583. }
  5584. else
  5585. {
  5586. //读取单段黑屏代码
  5587. for (int i = 0; i < listcode.Count; i++)
  5588. {
  5589. //去除序号
  5590. string[] CodeList = Regex.Split(listcode[i].BlackCode, "\\d+\\.", RegexOptions.IgnoreCase);
  5591. //去除多余空格,方法一Linq扩展方法
  5592. CodeList = CodeList.Where(str => str != "").ToArray();
  5593. CodeList = CodeList.Where(str => str != " ").ToArray();
  5594. //年
  5595. int year = Convert.ToInt32(DateTime.Now.Year.ToString());
  5596. //读取单条黑屏代码
  5597. for (int j = 0; j < CodeList.Count(); j++)
  5598. {
  5599. //去除多余空格,方法二使用Split()方法进行分割,分割有一个选项是RemoveEmptyEntries
  5600. CodeList[j] = CodeList[j].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty).TrimStart().TrimEnd();
  5601. string[] Info = CodeList[j].Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5602. //string[] Info = CodeList[j].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty)
  5603. // .TrimStart().TrimEnd().Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5604. //去除多余空格
  5605. Info = Info.Where(str => str != "").ToArray();
  5606. Info = Info.Where(str => str != " ").ToArray();
  5607. //判断黑屏代码是否正确拆分; 理应拆成9段
  5608. if (Info.Count() < 9)
  5609. {
  5610. dt.Rows.Add(null, null, null, null, null, null, null, null, null, null, null, "本团组第" + (i + 1) + "段黑屏代码中第" + (j + 1) + " 条有误,请联系机票同事核对", null);
  5611. }
  5612. else
  5613. {
  5614. try
  5615. {
  5616. //月
  5617. int month = Convert.ToInt32(GetLonger(Info[1].Substring(4, 3)));
  5618. //日
  5619. int day = Convert.ToInt32(Info[1].Substring(2, 2));
  5620. #region 逐一比较月份,判断是否翻年;逐一比较三字码顶真,判断是否跑错机场
  5621. if (j > 0)
  5622. {
  5623. string[] Temp = CodeList[j - 1].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty)
  5624. .TrimStart().TrimEnd().Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5625. Temp = Temp.Where(str => str != "").ToArray();
  5626. Temp = Temp.Where(str => str != " ").ToArray();
  5627. int monthTemp = Convert.ToInt32(GetLonger(Temp[1].Substring(4, 3)));
  5628. // 如果相邻月份之差小于0,则证明次一条年份需+1
  5629. if (month - monthTemp < 0)
  5630. {
  5631. year = year + 1;
  5632. }
  5633. //如果相邻代码三字码不顶真,提醒
  5634. string FootThree = Temp[2].Substring(3, 3);
  5635. string HeadThree = Info[2].Substring(0, 3);
  5636. if (FootThree != HeadThree)
  5637. {
  5638. //DelegationInfoService s = new DelegationInfoService();
  5639. //UsersService us = new UsersService();
  5640. //GroupsTaskAssignmentService gts = new GroupsTaskAssignmentService();
  5641. //77 行程
  5642. List<Grp_GroupsTaskAssignment> list2 = _sqlSugar.Queryable<Grp_GroupsTaskAssignment>().Where(x => x.CTId == 77 && x.DIId == diid && x.IsDel == 0).ToList();
  5643. foreach (var temp in list2)
  5644. {
  5645. //if (temp.UId != 21)
  5646. //SendAndReturn(us.GetUsersByID(temp.UId).Email,
  5647. // "黑屏代码提醒",
  5648. // s.GetDelegationInfoByID(diid).TeamName + "的机票黑屏代码中,相邻航段的三字码不连续,请查看!");
  5649. }
  5650. //85 机票预订
  5651. List<Grp_GroupsTaskAssignment> list6 = _sqlSugar.Queryable<Grp_GroupsTaskAssignment>().Where(x => x.CTId == 85 && x.DIId == diid && x.IsDel == 0).ToList();
  5652. foreach (var temp in list6)
  5653. {
  5654. //if (temp.UId != 21)
  5655. //SendAndReturn(us.GetUsersByID(temp.UId).Email,
  5656. // "黑屏代码提醒",
  5657. // s.GetDelegationInfoByID(diid).TeamName + "的机票黑屏代码中,相邻航段的三字码不连续,请查看!");
  5658. }
  5659. }
  5660. }
  5661. #endregion
  5662. #region 判断到达日期是否需要加1
  5663. if (Info[4].Contains("+"))
  5664. {
  5665. //日期+1
  5666. day = day + 1;
  5667. //判断是否进入下一月
  5668. if (day > Convert.ToInt32(GetDaysByMonth(Info[1].Substring(4, 3), year)))
  5669. {
  5670. day = day - Convert.ToInt32(GetDaysByMonth(Info[1].Substring(4, 3), year));
  5671. month = month + 1;
  5672. //判断是否进入下一年
  5673. if (month > 12)
  5674. {
  5675. month = month - 12;
  5676. year = year + 1;
  5677. }
  5678. }
  5679. //月份整理格式
  5680. string monthTemp = month.ToString();
  5681. if (month < 10)
  5682. {
  5683. monthTemp = "0" + monthTemp;
  5684. }
  5685. //日期整理格式
  5686. string daytemp = day.ToString();
  5687. if (day < 10)
  5688. {
  5689. daytemp = "0" + daytemp;
  5690. }
  5691. string temp = Info[4].Split('+')[0];
  5692. //添加起飞数据
  5693. dt.Rows.Add(Info[0],
  5694. Info[1],
  5695. Info[2],
  5696. Info[3],
  5697. temp,
  5698. Info[5],
  5699. Info[6],
  5700. Info[7],
  5701. Info[8],
  5702. year + "-" + GetLonger(Info[1].Substring(4, 3)) + "-" + Info[1].Substring(2, 2),
  5703. year + "-" + monthTemp + "-" + daytemp,
  5704. "",
  5705. "0");
  5706. //加1天,添加到达数据
  5707. dt.Rows.Add(Info[0],
  5708. Info[1].Replace(Info[1].Substring(2, 2), daytemp),
  5709. Info[2],
  5710. Info[3],
  5711. temp,
  5712. Info[5],
  5713. Info[6],
  5714. Info[7],
  5715. Info[8],
  5716. year + "-" + monthTemp + "-" + daytemp,
  5717. year + "-" + monthTemp + "-" + daytemp,
  5718. "",
  5719. "1");
  5720. }
  5721. else
  5722. {
  5723. //月份整理格式
  5724. string monthTemp = month.ToString();
  5725. if (month < 10)
  5726. {
  5727. monthTemp = "0" + monthTemp;
  5728. }
  5729. //日期整理格式
  5730. string daytemp = day.ToString();
  5731. if (day < 10)
  5732. {
  5733. daytemp = "0" + daytemp;
  5734. }
  5735. dt.Rows.Add(Info[0],
  5736. Info[1],
  5737. Info[2],
  5738. Info[3],
  5739. Info[4],
  5740. Info[5],
  5741. Info[6],
  5742. Info[7],
  5743. Info[8],
  5744. year + "-" + monthTemp + "-" + daytemp,
  5745. year + "-" + monthTemp + "-" + daytemp,
  5746. "",
  5747. "0");
  5748. }
  5749. #endregion
  5750. }
  5751. catch (Exception ex)
  5752. {
  5753. string exstr = ex.Message.ToString();
  5754. }
  5755. }
  5756. }
  5757. //排序
  5758. dt.DefaultView.Sort = "Day asc";
  5759. dt = dt.DefaultView.ToTable();
  5760. }
  5761. }
  5762. return dt;
  5763. }
  5764. /// <summary>
  5765. /// 根据团组编号查询信息
  5766. /// </summary>
  5767. /// <returns>返回空或者对象信息</returns>
  5768. List<Grp_TravelList> GetByDiid(int Diid)
  5769. {
  5770. //调用获取单个对象的方法
  5771. return _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == Diid && x.IsDel == 0).ToList();
  5772. }
  5773. /// <summary>
  5774. /// 20210816
  5775. /// 根据datatable生成某一时间段的日期
  5776. /// </summary>
  5777. /// <param name="dt">黑屏代码生成的datatable</param>
  5778. /// <returns></returns>
  5779. List<string> GetTimeListByDataTable(DataTable dt)
  5780. {
  5781. if (dt.Rows[0]["Day"].ToString() != "")
  5782. {
  5783. DateTime datestart = Convert.ToDateTime(dt.Rows[0]["Day"].ToString());
  5784. DateTime dateend = Convert.ToDateTime(dt.Rows[dt.Rows.Count - 1]["ArrivedDate"].ToString());
  5785. List<string> timeList = new List<string>();
  5786. while (datestart <= dateend)
  5787. {
  5788. timeList.Add(datestart.ToString("yyyy-MM-dd"));
  5789. datestart = datestart.AddDays(1);
  5790. }
  5791. return timeList;
  5792. }
  5793. return null;
  5794. }
  5795. /// <summary>
  5796. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  5797. /// </summary>
  5798. /// <param name="num"></param>
  5799. /// <returns></returns>
  5800. string GetNum(string num)
  5801. {
  5802. string str = "";
  5803. switch (num)
  5804. {
  5805. case "1":
  5806. str = "一";
  5807. break;
  5808. case "2":
  5809. str = "二";
  5810. break;
  5811. case "3":
  5812. str = "三";
  5813. break;
  5814. case "4":
  5815. str = "四";
  5816. break;
  5817. case "5":
  5818. str = "五";
  5819. break;
  5820. case "6":
  5821. str = "六";
  5822. break;
  5823. case "7":
  5824. str = "七";
  5825. break;
  5826. case "8":
  5827. str = "八";
  5828. break;
  5829. case "9":
  5830. str = "九";
  5831. break;
  5832. case "10":
  5833. str = "十";
  5834. break;
  5835. case "11":
  5836. str = "十一";
  5837. break;
  5838. case "12":
  5839. str = "十二";
  5840. break;
  5841. case "一":
  5842. str = "1";
  5843. break;
  5844. case "二":
  5845. str = "2";
  5846. break;
  5847. case "三":
  5848. str = "3";
  5849. break;
  5850. case "四":
  5851. str = "4";
  5852. break;
  5853. case "五":
  5854. str = "5";
  5855. break;
  5856. case "六":
  5857. str = "6";
  5858. break;
  5859. case "七":
  5860. str = "7";
  5861. break;
  5862. case "八":
  5863. str = "8";
  5864. break;
  5865. case "九":
  5866. str = "9";
  5867. break;
  5868. case "十":
  5869. str = "10";
  5870. break;
  5871. case "十一":
  5872. str = "11";
  5873. break;
  5874. case "十二":
  5875. str = "12";
  5876. break;
  5877. }
  5878. return str;
  5879. }
  5880. List<Crm_DeleClient> GetByDiidClient(int DIID)
  5881. {
  5882. return _sqlSugar.Queryable<Crm_DeleClient>().Where(x => x.DiId == DIID && x.IsDel == 0).ToList();
  5883. }
  5884. /// <summary>
  5885. /// 根据星期,月份的缩写,转换成数字或者全称
  5886. /// 根据币种中文名称返回币种代码
  5887. /// 根据数字返回机型型号【2、3开头的就是空客,比如空客320,7开头的就是波音,比如波音777】
  5888. /// 20210903贾文滔
  5889. /// </summary>
  5890. /// <param name="startDate"></param>
  5891. /// <param name="endDate"></param>
  5892. /// <returns></returns>
  5893. string GetLonger(string temp)
  5894. {
  5895. string str = "";
  5896. switch (temp.ToUpper())
  5897. {
  5898. case "美元":
  5899. str = "USD";
  5900. break;
  5901. case "日元":
  5902. str = "JPY";
  5903. break;
  5904. case "英镑":
  5905. str = "GBP";
  5906. break;
  5907. case "欧元":
  5908. str = "EUR";
  5909. break;
  5910. case "港币":
  5911. str = "HKD";
  5912. break;
  5913. case "MO":
  5914. str = "星期一";
  5915. break;
  5916. case "TU":
  5917. str = "星期二";
  5918. break;
  5919. case "WE":
  5920. str = "星期三";
  5921. break;
  5922. case "TH":
  5923. str = "星期四";
  5924. break;
  5925. case "FR":
  5926. str = "星期五";
  5927. break;
  5928. case "SA":
  5929. str = "星期六";
  5930. break;
  5931. case "SU":
  5932. str = "星期天";
  5933. break;
  5934. case "JAN":
  5935. str = "01";
  5936. break;
  5937. case "FEB":
  5938. str = "02";
  5939. break;
  5940. case "MAR":
  5941. str = "03";
  5942. break;
  5943. case "APR":
  5944. str = "04";
  5945. break;
  5946. case "MAY":
  5947. str = "05";
  5948. break;
  5949. case "JUN":
  5950. str = "06";
  5951. break;
  5952. case "JUL":
  5953. str = "07";
  5954. break;
  5955. case "AUG":
  5956. str = "08";
  5957. break;
  5958. case "SEP":
  5959. str = "09";
  5960. break;
  5961. case "OCT":
  5962. str = "10";
  5963. break;
  5964. case "NOV":
  5965. str = "11";
  5966. break;
  5967. case "DEC":
  5968. str = "12";
  5969. break;
  5970. case "MONDAY":
  5971. str = "星期一";
  5972. break;
  5973. case "TUESDAY":
  5974. str = "星期二";
  5975. break;
  5976. case "WEDNESDAY":
  5977. str = "星期三";
  5978. break;
  5979. case "THURSDAY":
  5980. str = "星期四";
  5981. break;
  5982. case "FRIDAY":
  5983. str = "星期五";
  5984. break;
  5985. case "SATURDAY":
  5986. str = "星期六";
  5987. break;
  5988. case "SUNDAY":
  5989. str = "星期日";
  5990. break;
  5991. case "01":
  5992. str = "JAN";
  5993. break;
  5994. case "02":
  5995. str = "FEB";
  5996. break;
  5997. case "03":
  5998. str = "MAR";
  5999. break;
  6000. case "04":
  6001. str = "APR";
  6002. break;
  6003. case "05":
  6004. str = "MAY";
  6005. break;
  6006. case "06":
  6007. str = "JUN";
  6008. break;
  6009. case "07":
  6010. str = "JUL";
  6011. break;
  6012. case "08":
  6013. str = "AUG";
  6014. break;
  6015. case "09":
  6016. str = "SEP";
  6017. break;
  6018. case "10":
  6019. str = "OCT";
  6020. break;
  6021. case "11":
  6022. str = "NOV";
  6023. break;
  6024. case "12":
  6025. str = "DEC";
  6026. break;
  6027. case "2":
  6028. str = "空客A";
  6029. break;
  6030. case "3":
  6031. str = "空客A";
  6032. break;
  6033. case "7":
  6034. str = "波音";
  6035. break;
  6036. }
  6037. return str;
  6038. }
  6039. /// <summary>
  6040. /// 根据月份返回天数
  6041. /// </summary>
  6042. /// <param name="temp"></param>
  6043. /// <returns></returns>
  6044. string GetDaysByMonth(string Month, int year)
  6045. {
  6046. string str = "";
  6047. //判断是否是闰年
  6048. if (DateTime.IsLeapYear(year) == false)
  6049. {
  6050. switch (Month.ToUpper())
  6051. {
  6052. case "JAN":
  6053. str = "31";
  6054. break;
  6055. case "FEB":
  6056. str = "28";
  6057. break;
  6058. case "MAR":
  6059. str = "31";
  6060. break;
  6061. case "APR":
  6062. str = "30";
  6063. break;
  6064. case "MAY":
  6065. str = "31";
  6066. break;
  6067. case "JUN":
  6068. str = "30";
  6069. break;
  6070. case "JUL":
  6071. str = "31";
  6072. break;
  6073. case "AUG":
  6074. str = "31";
  6075. break;
  6076. case "SEP":
  6077. str = "30";
  6078. break;
  6079. case "OCT":
  6080. str = "31";
  6081. break;
  6082. case "NOV":
  6083. str = "30";
  6084. break;
  6085. case "DEC":
  6086. str = "31";
  6087. break;
  6088. case "01":
  6089. str = "31";
  6090. break;
  6091. case "02":
  6092. str = "28";
  6093. break;
  6094. case "03":
  6095. str = "31";
  6096. break;
  6097. case "04":
  6098. str = "30";
  6099. break;
  6100. case "05":
  6101. str = "31";
  6102. break;
  6103. case "06":
  6104. str = "30";
  6105. break;
  6106. case "07":
  6107. str = "31";
  6108. break;
  6109. case "08":
  6110. str = "31";
  6111. break;
  6112. case "09":
  6113. str = "30";
  6114. break;
  6115. case "10":
  6116. str = "31";
  6117. break;
  6118. case "11":
  6119. str = "30";
  6120. break;
  6121. case "12":
  6122. str = "31";
  6123. break;
  6124. }
  6125. }
  6126. else
  6127. {
  6128. switch (Month.ToUpper())
  6129. {
  6130. case "JAN":
  6131. str = "31";
  6132. break;
  6133. case "FEB":
  6134. str = "29";
  6135. break;
  6136. case "MAR":
  6137. str = "31";
  6138. break;
  6139. case "APR":
  6140. str = "30";
  6141. break;
  6142. case "MAY":
  6143. str = "31";
  6144. break;
  6145. case "JUN":
  6146. str = "30";
  6147. break;
  6148. case "JUL":
  6149. str = "31";
  6150. break;
  6151. case "AUG":
  6152. str = "31";
  6153. break;
  6154. case "SEP":
  6155. str = "30";
  6156. break;
  6157. case "OCT":
  6158. str = "31";
  6159. break;
  6160. case "NOV":
  6161. str = "30";
  6162. break;
  6163. case "DEC":
  6164. str = "31";
  6165. break;
  6166. case "01":
  6167. str = "31";
  6168. break;
  6169. case "02":
  6170. str = "29";
  6171. break;
  6172. case "03":
  6173. str = "31";
  6174. break;
  6175. case "04":
  6176. str = "30";
  6177. break;
  6178. case "05":
  6179. str = "31";
  6180. break;
  6181. case "06":
  6182. str = "30";
  6183. break;
  6184. case "07":
  6185. str = "31";
  6186. break;
  6187. case "08":
  6188. str = "31";
  6189. break;
  6190. case "09":
  6191. str = "30";
  6192. break;
  6193. case "10":
  6194. str = "31";
  6195. break;
  6196. case "11":
  6197. str = "30";
  6198. break;
  6199. case "12":
  6200. str = "31";
  6201. break;
  6202. }
  6203. }
  6204. return str;
  6205. }
  6206. #endregion
  6207. #endregion
  6208. #region 团组成本
  6209. /// <summary>
  6210. /// 团组成本数据初始化
  6211. /// </summary>
  6212. /// <param name="dto"></param>
  6213. /// <returns></returns>
  6214. [HttpPost]
  6215. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6216. {
  6217. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6218. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6219. WHEN COUNT(*) >= 0 THEN 'True'
  6220. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6221. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6222. ").ToList(); //团组列表
  6223. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6224. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6225. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6226. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6227. if (groupinfoValue != null)
  6228. {
  6229. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6230. var spArr = new string[1] { countryArr };
  6231. if (countryArr.Contains("|"))
  6232. {
  6233. spArr = countryArr.Split("|");
  6234. }
  6235. else if (countryArr.Contains("、"))
  6236. {
  6237. spArr = countryArr.Split("、");
  6238. }
  6239. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6240. {
  6241. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6242. if (dbQueryCountry != null)
  6243. {
  6244. visaCountryInfoArr.Add(dbQueryCountry);
  6245. }
  6246. }
  6247. }
  6248. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6249. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6250. var create = _GroupCostRepository.
  6251. CreateGroupCostByBlackCode(dto.Diid);
  6252. if (groupCost.Count == 0 && create.Code == 0)
  6253. {
  6254. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6255. }
  6256. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6257. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6258. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6259. groupCostMap = groupCostMap.Select(x =>
  6260. {
  6261. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6262. {
  6263. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6264. }
  6265. return x;
  6266. }).ToList();
  6267. //GroupCostParameter.Add(new
  6268. // Grp_GroupCostParameter());
  6269. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6270. return Ok(JsonView(new
  6271. {
  6272. groupList,
  6273. groupInfo,
  6274. groupChecks,
  6275. groupCost = groupCostMap,
  6276. hotelNumber,
  6277. GroupCostParameter = GroupCostParameterMap,
  6278. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6279. {
  6280. x.VisaCountry,
  6281. x.VisaPrice,
  6282. x.Id,
  6283. }).ToList(),
  6284. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6285. blackCodeIsTrue = create.Code == 0 ? true : false
  6286. })) ;
  6287. }
  6288. /// <summary>
  6289. /// 团组成本信息保存
  6290. /// </summary>
  6291. /// <param name="dto"></param>
  6292. /// <returns></returns>
  6293. [HttpPost]
  6294. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6295. {
  6296. if (dto.Diid <= 0 || dto.Userid <= 0)
  6297. {
  6298. return Ok(JsonView(false));
  6299. }
  6300. JsonView jw = null;
  6301. bool isTrue = false;
  6302. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6303. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6304. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6305. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6306. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6307. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6308. try
  6309. {
  6310. _sqlSugar.BeginTran();
  6311. isTrue = await _GroupCostRepository.
  6312. SaveGroupCostList(Grp_groups, dto.Diid,dto.Userid); //列表
  6313. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6314. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6315. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6316. _sqlSugar.CommitTran();
  6317. jw = JsonView(true, "保存成功!", isTrue);
  6318. }
  6319. catch (Exception)
  6320. {
  6321. _sqlSugar.RollbackTran();
  6322. jw = JsonView(false);
  6323. }
  6324. return Ok(jw);
  6325. }
  6326. /// <summary>
  6327. /// 司兼导数据
  6328. /// </summary>
  6329. /// <param name="dto"></param>
  6330. /// <returns></returns>
  6331. [HttpPost]
  6332. public IActionResult GetCarGuides(CarGuidesDto dto)
  6333. {
  6334. JsonView jw = null;
  6335. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6336. jw = JsonView(true, "获取成功!", Data);
  6337. return Ok(jw);
  6338. }
  6339. /// <summary>
  6340. /// 导游数据
  6341. /// </summary>
  6342. /// <param name="dto"></param>
  6343. /// <returns></returns>
  6344. [HttpPost]
  6345. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6346. {
  6347. JsonView jw = null;
  6348. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6349. // 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
  6350. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6351. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6352. jw = JsonView(true, "获取成功!", Data);
  6353. return Ok(jw);
  6354. }
  6355. /// <summary>
  6356. /// 成本车数据
  6357. /// </summary>
  6358. /// <param name="dto"></param>
  6359. /// <returns></returns>
  6360. [HttpPost]
  6361. public IActionResult GetCarInfo(CarGuidesDto dto)
  6362. {
  6363. JsonView jw = null;
  6364. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6365. jw = JsonView(true, "获取成功!", Data);
  6366. return Ok(jw);
  6367. }
  6368. /// <summary>
  6369. /// 景点数据
  6370. /// </summary>
  6371. /// <param name="dto"></param>
  6372. /// <returns></returns>
  6373. [HttpPost]
  6374. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6375. {
  6376. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6377. return Ok(JsonView(true, "获取成功!", Data));
  6378. }
  6379. /// <summary>
  6380. /// 成本通知
  6381. /// </summary>
  6382. /// <param name="dto"></param>
  6383. /// <returns></returns>
  6384. [HttpPost]
  6385. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6386. {
  6387. if (dto.Diid < 0)
  6388. {
  6389. return Ok(JsonView(false));
  6390. }
  6391. JsonView jw = null;
  6392. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6393. if (GroupCostParameter != null)
  6394. {
  6395. int IsShare = 0;
  6396. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6397. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6398. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6399. string msg = string.Empty;
  6400. if (isTrue)
  6401. {
  6402. if (IsShare == 0)
  6403. {
  6404. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6405. }
  6406. else
  6407. {
  6408. #region 企微通知对应岗位用户
  6409. try
  6410. {
  6411. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6412. }
  6413. catch (Exception ex)
  6414. {
  6415. }
  6416. #endregion
  6417. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6418. }
  6419. jw = JsonView(isTrue, msg, new { IsShare });
  6420. }
  6421. else
  6422. {
  6423. msg = "修改失败!";
  6424. jw = JsonView(isTrue, msg);
  6425. }
  6426. }
  6427. else
  6428. {
  6429. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6430. }
  6431. return Ok(jw);
  6432. }
  6433. /// <summary>
  6434. /// 导出收款账单
  6435. /// </summary>
  6436. /// <param name="dto"></param>
  6437. /// <returns></returns>
  6438. [HttpPost]
  6439. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6440. {
  6441. if (dto.Diid == 0)
  6442. {
  6443. return Ok(JsonView(false, "请传递团组id"));
  6444. }
  6445. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6446. if (deleInfo.Code != 0)
  6447. {
  6448. return Ok(JsonView(false, "团组信息查询失败!"));
  6449. }
  6450. var di = deleInfo.Data as DelegationInfoWebView;
  6451. if (di != null)
  6452. {
  6453. //文件名
  6454. string strFileName = di.TeamName + "-收款账单.doc";
  6455. //获取模板
  6456. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6457. //载入模板
  6458. Document doc = new Document(tmppath);
  6459. decimal TotalPrice = 0.00M;
  6460. string itemStr = string.Empty;
  6461. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6462. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6463. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6464. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6465. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6466. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6467. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6468. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6469. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6470. foreach (var cost in groupCostType)
  6471. {
  6472. var List = cost.ToList();
  6473. if (cost.Key == "A")
  6474. {
  6475. foreach (var ListItem in List)
  6476. {
  6477. if (ListItem.number > 0)
  6478. {
  6479. if (ListItem.code.Contains("TBR"))
  6480. {
  6481. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6482. }
  6483. else
  6484. {
  6485. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6486. }
  6487. TotalPrice += (ListItem.number * ListItem.price);
  6488. }
  6489. }
  6490. }
  6491. else
  6492. {
  6493. itemStr = itemStr.Insert(0, "A段\r\n");
  6494. itemStr += "B段\r\n";
  6495. foreach (var ListItem in List)
  6496. {
  6497. if (ListItem.number > 0)
  6498. {
  6499. if (ListItem.code.Contains("TBR"))
  6500. {
  6501. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6502. }
  6503. else
  6504. {
  6505. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6506. }
  6507. TotalPrice += (ListItem.number * ListItem.price);
  6508. }
  6509. }
  6510. }
  6511. }
  6512. #region 替换Word模板书签内容
  6513. Dictionary<string, string> marks = new Dictionary<string, string>();
  6514. marks.Add("To", di.ClientUnit);//付款方
  6515. marks.Add("ToTel", di.TellPhone);//付款方电话
  6516. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6517. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6518. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6519. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6520. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6521. marks.Add("WeChat", "WeChat");//微信号 di.WeChat;
  6522. marks.Add("PayItemContent", itemStr);//详细信息
  6523. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6524. #endregion
  6525. ////注
  6526. //if (doc.Range.Bookmarks["Attention"] != null)
  6527. //{
  6528. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6529. // mark.Text = frList[0].Attention;
  6530. //}
  6531. foreach (var item in marks.Keys)
  6532. {
  6533. if (doc.Range.Bookmarks[item] != null)
  6534. {
  6535. Bookmark mark = doc.Range.Bookmarks[item];
  6536. mark.Text = marks[item];
  6537. }
  6538. }
  6539. byte[] bytes = null;
  6540. using (MemoryStream stream = new MemoryStream())
  6541. {
  6542. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6543. bytes = stream.ToArray();
  6544. }
  6545. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6546. return Ok(JsonView(true, "", new
  6547. {
  6548. Data = bytes,
  6549. strFileName,
  6550. }));
  6551. }
  6552. else
  6553. {
  6554. return Ok(JsonView(false, "团组信息不存在!"));
  6555. }
  6556. }
  6557. /// <summary>
  6558. /// 导出团组成本
  6559. /// </summary>
  6560. /// <param name="dto"></param>
  6561. /// <returns></returns>
  6562. [HttpPost]
  6563. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6564. {
  6565. var jw = JsonView(false);
  6566. if (dto.Diid == 0)
  6567. {
  6568. return Ok(JsonView(false, "请传递团组id"));
  6569. }
  6570. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6571. if (deleInfo.Code != 0)
  6572. {
  6573. return Ok(JsonView(false, "团组信息查询失败!"));
  6574. }
  6575. var di = deleInfo.Data as DelegationInfoWebView;
  6576. if (di == null)
  6577. {
  6578. return Ok(JsonView(false, "团组信息查询失败!"));
  6579. }
  6580. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6581. WorkbookDesigner designer = new WorkbookDesigner();
  6582. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6583. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6584. for (int i = 0; i < List_GC.Count; i++)
  6585. {
  6586. GroupCost_Excel gc = new GroupCost_Excel();
  6587. gc.Id = List_GC[i].Id;
  6588. gc.Diid = List_GC[i].Diid.ToString();
  6589. gc.DAY = List_GC[i].DAY;
  6590. string week = "";
  6591. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6592. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6593. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6594. gc.ITIN = List_GC[i].ITIN;
  6595. gc.CarType = List_GC[i].CarType;
  6596. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6597. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6598. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6599. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6600. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6601. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6602. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6603. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6604. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6605. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6606. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6607. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6608. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6609. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6610. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6611. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6612. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6613. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6614. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6615. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6616. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6617. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6618. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6619. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6620. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6621. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6622. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6623. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6624. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6625. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6626. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6627. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6628. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6629. List_GC1.Add(gc);
  6630. }
  6631. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6632. dt.TableName = "TB";
  6633. //报表标题等不用dt的值
  6634. designer.SetDataSource("TeamName", dto.title.TeamName);
  6635. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6636. designer.SetDataSource("Tax", dto.title.Tax);
  6637. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6638. designer.SetDataSource("Currency", dto.title.Currency);
  6639. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6640. designer.SetDataSource("Rate", dto.title.Rate);
  6641. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6642. var Aparams = hotels.Find(x => x.Type == "Default");
  6643. if (Aparams == null)
  6644. {
  6645. return Ok(jw);
  6646. }
  6647. //酒店数量
  6648. var txtSGRNumber = Aparams.SGR.ToString();
  6649. var txtTBRNumber = Aparams.TBR.ToString();
  6650. var txtJSESNumber = Aparams.JSES.ToString();
  6651. var txtSUITENumbe = Aparams.SUITE.ToString();
  6652. if (dto.costType == "B")
  6653. {
  6654. Aparams = hotels.Find(x => x.Type == "A");
  6655. var Bparams = hotels.Find(x => x.Type == "B");
  6656. if (Aparams == null || Bparams == null)
  6657. {
  6658. return Ok(jw);
  6659. }
  6660. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6661. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6662. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6663. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6664. }
  6665. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6666. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6667. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6668. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6669. var ws = designer.Workbook.Worksheets[0];
  6670. int Row = List_GC.Count;
  6671. int startIndex = 11;
  6672. int HideRows = 0;
  6673. List<int> hideRowsList = new List<int>();
  6674. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6675. #region A段left数据
  6676. var left = dto.leftInfo.Find(x => x.Type == "A");
  6677. if (left == null)
  6678. {
  6679. return Ok(jw);
  6680. }
  6681. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6682. if (leftBindData != null)
  6683. {
  6684. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6685. designer.SetDataSource("VisaRS", leftBindData.rs);
  6686. designer.SetDataSource("VisaXS", leftBindData.xs);
  6687. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6688. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6689. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6690. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6691. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6692. }
  6693. else
  6694. {
  6695. hideRowsList.Add(Row + startIndex + HideRows);
  6696. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6697. }
  6698. HideRows += 2;
  6699. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6700. if (leftBindData != null)
  6701. {
  6702. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6703. designer.SetDataSource("BXRS", leftBindData.rs);
  6704. designer.SetDataSource("BXXS", leftBindData.xs);
  6705. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6706. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6707. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6708. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6709. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6710. }
  6711. else
  6712. {
  6713. hideRowsList.Add(Row + startIndex + HideRows);
  6714. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6715. }
  6716. HideRows += 2;
  6717. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6718. if (leftBindData != null)
  6719. {
  6720. designer.SetDataSource("HSDRCB", leftBindData.cb);
  6721. designer.SetDataSource("HSRS", leftBindData.rs);
  6722. designer.SetDataSource("HSXS", leftBindData.xs);
  6723. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6724. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6725. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6726. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6727. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6728. }
  6729. else
  6730. {
  6731. hideRowsList.Add(Row + startIndex + HideRows);
  6732. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6733. }
  6734. HideRows += 2;
  6735. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  6736. if (leftBindData != null)
  6737. {
  6738. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  6739. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  6740. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  6741. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6742. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6743. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6744. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6745. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6746. }
  6747. else
  6748. {
  6749. hideRowsList.Add(Row + startIndex + HideRows);
  6750. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6751. }
  6752. HideRows += 2;
  6753. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  6754. if (leftBindData != null)
  6755. {
  6756. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  6757. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  6758. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  6759. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6760. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6761. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6762. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6763. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6764. }
  6765. else
  6766. {
  6767. hideRowsList.Add(Row + startIndex + HideRows);
  6768. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6769. }
  6770. HideRows += 2;
  6771. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  6772. if (leftBindData != null)
  6773. {
  6774. ////TBR
  6775. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  6776. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  6777. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  6778. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6779. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6780. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6781. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6782. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6783. }
  6784. else
  6785. {
  6786. hideRowsList.Add(Row + startIndex + HideRows);
  6787. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6788. }
  6789. HideRows += 2;
  6790. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  6791. if (leftBindData != null)
  6792. {
  6793. ////SGR
  6794. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  6795. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  6796. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  6797. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6798. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6799. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6800. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6801. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6802. }
  6803. else
  6804. {
  6805. hideRowsList.Add(Row + startIndex + HideRows);
  6806. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6807. }
  6808. HideRows += 2;
  6809. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  6810. if (leftBindData != null)
  6811. {
  6812. ////JS/ES
  6813. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  6814. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  6815. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  6816. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6817. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6818. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6819. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6820. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6821. }
  6822. else
  6823. {
  6824. hideRowsList.Add(Row + startIndex + HideRows);
  6825. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6826. }
  6827. HideRows += 2;
  6828. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  6829. if (leftBindData != null)
  6830. {
  6831. ////SUITE
  6832. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  6833. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  6834. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  6835. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6836. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6837. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6838. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6839. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6840. }
  6841. else
  6842. {
  6843. hideRowsList.Add(Row + startIndex + HideRows);
  6844. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6845. }
  6846. HideRows += 2;
  6847. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  6848. if (leftBindData != null)
  6849. {
  6850. designer.SetDataSource("DJDRCB", leftBindData.cb);
  6851. designer.SetDataSource("DJRS", leftBindData.rs);
  6852. designer.SetDataSource("DJXS", leftBindData.xs);
  6853. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6854. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6855. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6856. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6857. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6858. }
  6859. else
  6860. {
  6861. hideRowsList.Add(Row + startIndex + HideRows);
  6862. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6863. }
  6864. HideRows += 2;
  6865. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  6866. if (leftBindData != null)
  6867. {
  6868. designer.SetDataSource("HCPCB", leftBindData.cb);
  6869. designer.SetDataSource("HCPRS", leftBindData.rs);
  6870. designer.SetDataSource("HCPXS", leftBindData.xs);
  6871. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6872. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6873. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6874. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6875. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6876. }
  6877. else
  6878. {
  6879. hideRowsList.Add(Row + startIndex + HideRows);
  6880. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6881. }
  6882. HideRows += 2;
  6883. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  6884. if (leftBindData != null)
  6885. {
  6886. designer.SetDataSource("CPCB", leftBindData.cb);
  6887. designer.SetDataSource("CPRS", leftBindData.rs);
  6888. designer.SetDataSource("CPXS", leftBindData.xs);
  6889. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6890. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6891. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6892. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6893. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6894. }
  6895. else
  6896. {
  6897. hideRowsList.Add(Row + startIndex + HideRows);
  6898. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6899. }
  6900. HideRows += 2;
  6901. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  6902. if (leftBindData != null)
  6903. {
  6904. designer.SetDataSource("GWDRCD", leftBindData.cb);
  6905. designer.SetDataSource("GWRS", leftBindData.rs);
  6906. designer.SetDataSource("GWXS", leftBindData.xs);
  6907. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6908. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6909. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6910. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6911. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6912. }
  6913. else
  6914. {
  6915. hideRowsList.Add(Row + startIndex + HideRows);
  6916. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6917. }
  6918. HideRows += 2;
  6919. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  6920. if (leftBindData != null)
  6921. {
  6922. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  6923. designer.SetDataSource("LYJRS", leftBindData.rs);
  6924. designer.SetDataSource("LYJXS", leftBindData.xs);
  6925. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6926. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6927. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6928. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6929. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6930. }
  6931. else
  6932. {
  6933. hideRowsList.Add(Row + startIndex + HideRows);
  6934. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6935. }
  6936. #endregion
  6937. #region A段Right信息
  6938. var right = dto.rightInfo.Find(x => x.Type == "A");
  6939. if (right == null)
  6940. {
  6941. return Ok(jw);
  6942. }
  6943. HideRows += 4;
  6944. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  6945. if (rightBindData != null)
  6946. {
  6947. //经济舱 + 双人间 TBR
  6948. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  6949. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  6950. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6951. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  6952. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6953. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6954. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6955. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6956. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6957. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6958. }
  6959. else
  6960. {
  6961. hideRowsList.Add(Row + startIndex + HideRows);
  6962. }
  6963. HideRows += 2;
  6964. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  6965. if (rightBindData != null)
  6966. {
  6967. //经济舱 + 单人间 SGR
  6968. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  6969. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  6970. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6971. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  6972. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6973. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6974. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6975. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6976. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6977. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6978. }
  6979. else
  6980. {
  6981. hideRowsList.Add(Row + startIndex + HideRows);
  6982. }
  6983. HideRows += 2;
  6984. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  6985. if (rightBindData != null)
  6986. {
  6987. //公务舱 + 单人间 SGR
  6988. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  6989. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  6990. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6991. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  6992. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6993. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6994. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6995. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6996. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6997. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6998. }
  6999. else
  7000. {
  7001. hideRowsList.Add(Row + startIndex + HideRows);
  7002. }
  7003. HideRows += 2;
  7004. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7005. if (rightBindData != null)
  7006. {
  7007. //公务舱 + 小套房 JSES
  7008. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7009. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7010. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7011. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7012. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7013. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7014. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7015. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7016. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7017. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7018. }
  7019. else
  7020. {
  7021. hideRowsList.Add(Row + startIndex + HideRows);
  7022. }
  7023. HideRows += 2;
  7024. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7025. if (rightBindData != null)
  7026. {
  7027. //公务舱 + 小套房 JSES
  7028. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7029. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7030. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7031. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7032. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7033. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7034. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7035. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7036. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7037. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7038. }
  7039. else
  7040. {
  7041. hideRowsList.Add(Row + startIndex + HideRows);
  7042. }
  7043. HideRows += 2;
  7044. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7045. if (rightBindData != null)
  7046. {
  7047. //经济舱 + 大套房
  7048. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7049. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7050. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7051. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7052. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7053. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7054. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7055. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7056. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7057. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7058. }
  7059. else
  7060. {
  7061. hideRowsList.Add(Row + startIndex + HideRows);
  7062. }
  7063. #endregion
  7064. #region B段标题清空
  7065. designer.SetDataSource("CostBDRCB", "");
  7066. designer.SetDataSource("CostBRS", "");
  7067. designer.SetDataSource("CostBXS", "");
  7068. designer.SetDataSource("CostBZCB", "");
  7069. designer.SetDataSource("CostBDRBJ", "");
  7070. designer.SetDataSource("CostBZBJ", "");
  7071. designer.SetDataSource("CostBDRLR", "");
  7072. designer.SetDataSource("CostBZLR", "");
  7073. designer.SetDataSource("CostBDRCBOM", "");
  7074. designer.SetDataSource("CostBRSOM", "");
  7075. designer.SetDataSource("CostBZCBOM", "");
  7076. designer.SetDataSource("CostBDRBJOM", "");
  7077. designer.SetDataSource("CostBZBJOM", "");
  7078. designer.SetDataSource("CostBDRLROM", "");
  7079. designer.SetDataSource("CostBZLROM", "");
  7080. #endregion
  7081. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7082. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7083. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7084. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7085. designer.SetDataSource("DJName", "地接(CNY)");
  7086. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7087. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7088. designer.SetDataSource("GWName", "公务(CNY)");
  7089. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7090. designer.SetDataSource("LYJName", "零用金(CNY)");
  7091. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7092. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7093. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7094. designer.SetDataSource("BXName", "保险(CNY)");
  7095. designer.SetDataSource("VisaName", "签证(CNY)");
  7096. #region B段基本数据
  7097. if (dto.costType == "B")
  7098. {
  7099. left = dto.leftInfo.Find(x => x.Type == "B");
  7100. if (left == null)
  7101. {
  7102. return Ok(jw);
  7103. }
  7104. #region B段left数据
  7105. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7106. if (leftBindData != null)
  7107. {
  7108. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7109. designer.SetDataSource("BHSRS", leftBindData.rs);
  7110. designer.SetDataSource("BHSXS", leftBindData.xs);
  7111. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7112. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7113. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7114. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7115. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7116. }
  7117. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7118. if (leftBindData != null)
  7119. {
  7120. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7121. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7122. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7123. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7124. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7125. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7126. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7127. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7128. }
  7129. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7130. if (leftBindData != null)
  7131. {
  7132. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7133. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7134. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7135. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7136. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7137. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7138. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7139. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7140. }
  7141. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7142. if (leftBindData != null)
  7143. {
  7144. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7145. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7146. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7147. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7148. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7149. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7150. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7151. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7152. }
  7153. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7154. if (leftBindData != null)
  7155. {
  7156. designer.SetDataSource("BCPCB", leftBindData.cb);
  7157. designer.SetDataSource("BCPRS", leftBindData.rs);
  7158. designer.SetDataSource("BCPXS", leftBindData.xs);
  7159. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7160. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7161. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7162. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7163. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7164. }
  7165. //TBR
  7166. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7167. if (leftBindData != null)
  7168. {
  7169. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7170. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7171. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7172. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7173. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7174. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7175. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7176. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7177. }
  7178. //SGR
  7179. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7180. if (leftBindData != null)
  7181. {
  7182. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7183. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7184. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7185. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7186. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7187. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7188. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7189. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7190. }
  7191. //JS/ES
  7192. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7193. if (leftBindData != null)
  7194. {
  7195. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7196. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7197. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7198. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7199. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7200. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7201. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7202. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7203. }
  7204. //SUITE
  7205. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7206. if (leftBindData != null)
  7207. {
  7208. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7209. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7210. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7211. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7212. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7213. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7214. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7215. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7216. }
  7217. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7218. if (leftBindData != null)
  7219. {
  7220. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7221. designer.SetDataSource("BDJRS", leftBindData.rs);
  7222. designer.SetDataSource("BDJXS", leftBindData.xs);
  7223. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7224. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7225. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7226. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7227. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7228. }
  7229. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7230. if (leftBindData != null)
  7231. {
  7232. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7233. designer.SetDataSource("BGWRS", leftBindData.rs);
  7234. designer.SetDataSource("BGWXS", leftBindData.xs);
  7235. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7236. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7237. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7238. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7239. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7240. }
  7241. #region 优化方案
  7242. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7243. //excelBind.Add("零用金", new {
  7244. //cb="",
  7245. //rs="",
  7246. //xs ="",
  7247. //zcb = "",
  7248. //});
  7249. #endregion
  7250. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7251. if (leftBindData != null)
  7252. {
  7253. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7254. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7255. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7256. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7257. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7258. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7259. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7260. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7261. }
  7262. #endregion
  7263. #region B段Right信息
  7264. right = dto.rightInfo.Find(x => x.Type == "B");
  7265. if (right == null)
  7266. {
  7267. return Ok(jw);
  7268. }
  7269. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7270. if (rightBindData != null)
  7271. {
  7272. //经济舱 + 双人间 TBR
  7273. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7274. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7275. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7276. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7277. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7278. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7279. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7280. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7281. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7282. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7283. }
  7284. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7285. if (rightBindData != null)
  7286. {
  7287. //经济舱 + 单人间 SGR
  7288. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7289. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7290. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7291. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7292. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7293. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7294. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7295. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7296. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7297. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7298. }
  7299. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7300. if (rightBindData != null)
  7301. {
  7302. //公务舱 + 单人间 SGR
  7303. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7304. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7305. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7306. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7307. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7308. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7309. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7310. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7311. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7312. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7313. }
  7314. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7315. if (rightBindData != null)
  7316. {
  7317. //公务舱 + 小套房 JSES
  7318. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7319. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7320. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7321. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7322. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7323. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7324. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7325. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7326. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7327. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7328. }
  7329. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7330. if (rightBindData != null)
  7331. {
  7332. //公务舱 + 小套房 JSES
  7333. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7334. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7335. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7336. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7337. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7338. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7339. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7340. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7341. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7342. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7343. }
  7344. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7345. if (rightBindData != null)
  7346. {
  7347. //经济舱 + 大套房
  7348. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7349. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7350. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7351. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7352. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7353. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7354. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7355. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7356. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7357. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7358. }
  7359. #endregion
  7360. #region 标题
  7361. designer.SetDataSource("CostBDRCB", "单人成本");
  7362. designer.SetDataSource("CostBRS", "人数");
  7363. designer.SetDataSource("CostBXS", "系数");
  7364. designer.SetDataSource("CostBZCB", "总成本");
  7365. designer.SetDataSource("CostBDRBJ", "单人报价");
  7366. designer.SetDataSource("CostBZBJ", "总报价");
  7367. designer.SetDataSource("CostBDRLR", "单人利润");
  7368. designer.SetDataSource("CostBZLR", "总利润");
  7369. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7370. designer.SetDataSource("CostBRSOM", "人数");
  7371. designer.SetDataSource("CostBZCBOM", "总成本");
  7372. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7373. designer.SetDataSource("CostBZBJOM", "总报价");
  7374. designer.SetDataSource("CostBDRLROM", "单人利润");
  7375. designer.SetDataSource("CostBZLROM", "总利润");
  7376. #endregion
  7377. }
  7378. #endregion
  7379. designer.SetDataSource("TzZCB2", TzZCB2);
  7380. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7381. designer.SetDataSource("TzZLR2", TzZLR2);
  7382. string[] dataSourceKeys = new string[]
  7383. {
  7384. "VF",
  7385. "TGS",
  7386. "TGOF",
  7387. "TGM",
  7388. "TGA",
  7389. "TGTF",
  7390. "TGEF",
  7391. "CFM",
  7392. "CFOF",
  7393. "B",
  7394. "L",
  7395. "D",
  7396. "TBR",
  7397. "SGR",
  7398. "JSES",
  7399. "Suite",
  7400. "TV",
  7401. "1L",
  7402. "IF",
  7403. "EF",
  7404. "BRF",
  7405. "TE",
  7406. "TGT",
  7407. "DRVT",
  7408. "PC",
  7409. "TLF",
  7410. "ECT"
  7411. };
  7412. foreach (var item in dataSourceKeys)
  7413. {
  7414. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7415. if (find != null)
  7416. {
  7417. designer.SetDataSource(item, find.text);
  7418. }
  7419. else
  7420. {
  7421. designer.SetDataSource(item, 0);
  7422. }
  7423. }
  7424. designer.SetDataSource(dt);
  7425. //根据数据源处理生成报表内容
  7426. designer.Process();
  7427. designer.Workbook.Worksheets[0].Name = "清单";
  7428. Worksheet sheet = designer.Workbook.Worksheets[0];
  7429. foreach (var Rowindex in hideRowsList)
  7430. {
  7431. ws.Cells.HideRows(Rowindex, 2);
  7432. }
  7433. byte[] bytes = null;
  7434. string strFileName = di.TeamName + "-团组-成本.xls";
  7435. using (MemoryStream stream = new MemoryStream())
  7436. {
  7437. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7438. bytes = stream.ToArray();
  7439. }
  7440. return Ok(JsonView(true, "", new
  7441. {
  7442. Data = bytes,
  7443. strFileName,
  7444. }));
  7445. }
  7446. /// <summary>
  7447. /// 导出客户报表
  7448. /// </summary>
  7449. /// <returns></returns>
  7450. [HttpPost]
  7451. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7452. {
  7453. var jw = JsonView(false);
  7454. if (dto.Diid == 0)
  7455. {
  7456. return Ok(JsonView(false, "请传递团组id"));
  7457. }
  7458. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7459. if (deleInfo.Code != 0)
  7460. {
  7461. return Ok(JsonView(false, "团组信息查询失败!"));
  7462. }
  7463. var di = deleInfo.Data as DelegationInfoWebView;
  7464. if (di == null)
  7465. {
  7466. return Ok(JsonView(false, "团组信息查询失败!"));
  7467. }
  7468. //文件名
  7469. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7470. //获取模板
  7471. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7472. //载入模板
  7473. Document doc = new Document(tmppath);
  7474. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7475. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7476. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7477. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7478. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7479. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7480. if (AParameter == null)
  7481. {
  7482. return Ok(JsonView(false, "系数不存在!"));
  7483. }
  7484. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7485. , TzAirDesc, TzZCost;
  7486. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7487. = TzAirDesc = TzZCost = string.Empty;
  7488. TzNumber = AParameter.CostTypenumber.ToString();
  7489. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7490. CarGuides1 = dto.CarGuides1;
  7491. Meal = dto.Meal;
  7492. SubsidizedMeals = dto.SubsidizedMeals;
  7493. NightRepair = dto.NightRepair;
  7494. AttractionsTickets = dto.AttractionsTickets;
  7495. MiscellaneousFees = dto.MiscellaneousFees;
  7496. ATip = dto.ATip;
  7497. TzHotelDesc = "";
  7498. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7499. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7500. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7501. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7502. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7503. TzAirDesc = "";
  7504. TzZCost = dto.TzZCost;
  7505. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7506. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7507. var index = 1;
  7508. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7509. foreach (var item in TzHotelDescArr)
  7510. {
  7511. if (AinfoArr != null)
  7512. {
  7513. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7514. if (Ainfo != null)
  7515. {
  7516. if (int.Parse(Ainfo.rs) <= 0)
  7517. {
  7518. continue;
  7519. }
  7520. var hotelText = string.Empty;
  7521. switch (item)
  7522. {
  7523. case "SGR":
  7524. hotelText = "单人间";
  7525. break;
  7526. case "JSES":
  7527. hotelText = "小套房";
  7528. break;
  7529. case "SUITE":
  7530. hotelText = "套房";
  7531. break;
  7532. case "TBR":
  7533. hotelText = "双人间";
  7534. break;
  7535. }
  7536. if (item != "TBR")
  7537. {
  7538. 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";
  7539. }
  7540. else
  7541. {
  7542. 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";
  7543. }
  7544. index++;
  7545. }
  7546. }
  7547. }
  7548. index = 1;
  7549. foreach (var item in TzAirDescArr)
  7550. {
  7551. if (AinfoArr != null)
  7552. {
  7553. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7554. if (Ainfo != null)
  7555. {
  7556. if (int.Parse(Ainfo.rs) <= 0)
  7557. {
  7558. continue;
  7559. }
  7560. 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";
  7561. index++;
  7562. }
  7563. }
  7564. }
  7565. if (dto.costType == "B")
  7566. {
  7567. if (BParameter == null)
  7568. {
  7569. return Ok(JsonView(false, "B段系数不存在!"));
  7570. }
  7571. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7572. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7573. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7574. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7575. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7576. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7577. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7578. foreach (var item in TzHotelDescArr)
  7579. {
  7580. if (AinfoArr != null)
  7581. {
  7582. TzHotelDesc += "B段信息 \r\n";
  7583. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7584. if (Ainfo != null)
  7585. {
  7586. if (int.Parse(Ainfo.rs) <= 0)
  7587. {
  7588. continue;
  7589. }
  7590. var hotelText = string.Empty;
  7591. switch (item)
  7592. {
  7593. case "SGR":
  7594. hotelText = "单人间";
  7595. break;
  7596. case "JSES":
  7597. hotelText = "小套房";
  7598. break;
  7599. case "SUITE":
  7600. hotelText = "套房";
  7601. break;
  7602. case "TBR":
  7603. hotelText = "双人间";
  7604. break;
  7605. }
  7606. if (item != "TBR")
  7607. {
  7608. 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";
  7609. }
  7610. else
  7611. {
  7612. 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";
  7613. }
  7614. index++;
  7615. }
  7616. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7617. }
  7618. }
  7619. index = 1;
  7620. foreach (var item in TzAirDescArr)
  7621. {
  7622. if (AinfoArr != null)
  7623. {
  7624. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7625. if (Ainfo != null)
  7626. {
  7627. if (int.Parse(Ainfo.rs) <= 0)
  7628. {
  7629. continue;
  7630. }
  7631. 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";
  7632. index++;
  7633. }
  7634. }
  7635. }
  7636. }
  7637. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7638. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7639. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7640. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7641. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7642. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7643. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7644. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7645. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7646. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7647. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7648. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7649. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7650. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7651. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7652. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7653. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7654. DickeyValue.Add("TzZCost", TzZCost);
  7655. foreach (var key in DickeyValue.Keys)
  7656. {
  7657. if (doc.Range.Bookmarks[key] != null)
  7658. {
  7659. Bookmark mark = doc.Range.Bookmarks[key];
  7660. mark.Text = DickeyValue[key];
  7661. }
  7662. }
  7663. byte[] bytes = null;
  7664. string strFileName = di.TeamName + "-客户报价.doc";
  7665. using (MemoryStream stream = new MemoryStream())
  7666. {
  7667. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7668. bytes = stream.ToArray();
  7669. }
  7670. return Ok(JsonView(true, "", new
  7671. {
  7672. Data = bytes,
  7673. strFileName,
  7674. }));
  7675. }
  7676. /// <summary>
  7677. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7678. /// </summary>
  7679. /// <param name="dto"></param>
  7680. /// <returns></returns>
  7681. [HttpPost]
  7682. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7683. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7684. {
  7685. try
  7686. {
  7687. #region 参数验证
  7688. if (dto.DiId < 0)
  7689. {
  7690. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7691. }
  7692. List<int> cTableIds = new List<int>() {
  7693. 76 ,//酒店预订
  7694. 77 ,//行程
  7695. 79 ,//车/导游地接
  7696. 80 ,//签证
  7697. 81 ,//邀请/公务活
  7698. 82 ,//团组客户保险
  7699. 85 ,//机票预订
  7700. 98 ,//其他款项
  7701. 285 ,//收款退还
  7702. 751 ,//酒店早餐
  7703. 1015 // 超支费用
  7704. };
  7705. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7706. {
  7707. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7708. }
  7709. #endregion
  7710. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7711. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7712. if (_GroupCostParameters.Count <= 0)
  7713. {
  7714. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7715. }
  7716. if (_GroupCostParameters[0].IsShare == 0)
  7717. {
  7718. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7719. }
  7720. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7721. //处理date为空问题
  7722. if (_GroupCosts.Count > 0)
  7723. {
  7724. for (int i = 0; i < _GroupCosts.Count; i++)
  7725. {
  7726. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  7727. {
  7728. if (i > 0)
  7729. {
  7730. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  7731. }
  7732. }
  7733. }
  7734. }
  7735. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  7736. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  7737. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  7738. string currCode = "";
  7739. #region currCode 验证
  7740. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  7741. if (isInt)
  7742. {
  7743. var currData = currDatas.Find(it => it.Id == intCurrency);
  7744. if (currData != null)
  7745. {
  7746. currCode = currData.Name;
  7747. }
  7748. }
  7749. else
  7750. {
  7751. currCode = _GroupCostParameters[0].Currency.Trim();
  7752. }
  7753. #endregion
  7754. //op,酒店单段模式存储
  7755. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  7756. {
  7757. CurrencyCode = currCode,
  7758. Rate = _GroupCostParameters[0].Rate,
  7759. CostType = _GroupCostParameters[0].CostType,
  7760. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  7761. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  7762. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  7763. };
  7764. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  7765. if (_GroupCostParameters.Count == 2)
  7766. {
  7767. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  7768. }
  7769. foreach (var item in _GroupCostParameters)
  7770. {
  7771. decimal _rate = 1;
  7772. decimal _rate1 = item.Rate;
  7773. decimal _scale = 1;
  7774. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  7775. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  7776. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  7777. //if (userInfo != null)
  7778. //{
  7779. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  7780. // {
  7781. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  7782. // {
  7783. // _scale = 1.00M;
  7784. // }
  7785. // }
  7786. //}
  7787. #endregion
  7788. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  7789. {
  7790. CurrencyCode = currCode,
  7791. Rate = _rate1,
  7792. CostType = item.CostType,
  7793. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  7794. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  7795. CostTypeNumber = item.CostTypenumber
  7796. };
  7797. if (_GroupCostParameters.Count > 1)
  7798. {
  7799. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  7800. }
  7801. else
  7802. {
  7803. modulePromptInfo.CostTypeNumber = item.LYJRS;
  7804. }
  7805. if (dto.CTable == 79)//
  7806. {
  7807. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  7808. modulePromptInfo.TotalCost = item.DJCB;
  7809. }
  7810. List<string> costTypes = new List<string>() { "A", "B" };
  7811. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  7812. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  7813. if (_GroupCostsDuplicates.Count() == 1)
  7814. {
  7815. _GroupCostsTypeData = _GroupCosts;
  7816. }
  7817. else
  7818. {
  7819. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  7820. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  7821. }
  7822. /*
  7823. * 76 酒店预订
  7824. * 77 行程
  7825. * 79 车/导游地接
  7826. * 80 签证
  7827. * 81 邀请/公务活动
  7828. * 82 团组客户保险
  7829. * 85 机票预订
  7830. * 98 其他款项
  7831. * 285 收款退还
  7832. * 751 酒店早餐
  7833. * 1015 超支费用
  7834. */
  7835. switch (dto.CTable)
  7836. {
  7837. case 76: // 酒店预订
  7838. _ModuleSubPromptInfo.AddRange(
  7839. _GroupCostsTypeData.Select(it => new
  7840. {
  7841. it.DAY,
  7842. it.Date,
  7843. it.ACCON,
  7844. it.ITIN,
  7845. it.SGR,
  7846. it.TBR,
  7847. it.JS_ES,
  7848. it.Suite
  7849. })
  7850. );
  7851. break;
  7852. case 79: // 车/导游地接
  7853. _ModuleSubPromptInfo.AddRange(
  7854. _GroupCostsTypeData.Select(it => new
  7855. {
  7856. Date = it.Date, //日期
  7857. CarFee = (it.CarCost + it.CFM + it.CFOF) * _rate * _scale, //车费用
  7858. GuideFee = (it.TGS + it.TGOF + it.TGM + it.TGA + it.TGTF + it.TGEF) * _rate * _scale, //导游费用
  7859. MealFee = (it.B + it.L + it.D) * _rate * _scale, //餐食费
  7860. TicketFee = it.EF * _rate * _scale, //门票费
  7861. TipFee = (it.TGTips + it.DRVTips) * _rate * _scale, //小费
  7862. AirportTransferFee = 0.00M,
  7863. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  7864. TravelSupplies = it.TE * _rate * _scale, //出行物资
  7865. LeadersFee = it.TLF * _rate * _scale, //领队费
  7866. CarFee1 = it.CarCost * _rate * _scale,
  7867. CarType = it.CarType, //车型
  7868. SpentCash = it.PC * _rate * _scale, //零用金
  7869. })
  7870. );
  7871. break;
  7872. case 85: // 机票
  7873. List<dynamic> datas = new List<dynamic>();
  7874. datas.Add(
  7875. new
  7876. {
  7877. AirType = "经济舱",
  7878. AirNum = item.JJCRS,
  7879. AirDRCB = item.JJCCB,
  7880. AirZCB = (item.JJCRS * item.JJCCB)
  7881. }
  7882. );
  7883. datas.Add(
  7884. new
  7885. {
  7886. AirType = "公务舱",
  7887. AirNum = item.GWCRS,
  7888. AirDRCB = item.GWCCB,
  7889. AirZCB = (item.GWCRS * item.GWCCB)
  7890. }
  7891. );
  7892. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7893. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  7894. modulePromptInfo.Data = new {
  7895. airFeeData = datas,
  7896. airInitData = initDatas
  7897. };
  7898. _ModulePromptInfos.Add(modulePromptInfo);
  7899. break;
  7900. default:
  7901. break;
  7902. }
  7903. }
  7904. if (dto.CTable != 85)
  7905. {
  7906. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  7907. _ModulePromptInfos.Add(_ModulePromptInfo);
  7908. }
  7909. _view.ModulePromptInfos = _ModulePromptInfos;
  7910. return Ok(JsonView(true, "操作成功!", _view));
  7911. }
  7912. catch (Exception ex)
  7913. {
  7914. return Ok(JsonView(false, ex.Message));
  7915. }
  7916. }
  7917. /// <summary>
  7918. /// 根据黑屏代码重新生成行程
  7919. /// </summary>
  7920. /// <param name="dto"></param>
  7921. /// <returns></returns>
  7922. [HttpPost]
  7923. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  7924. {
  7925. var jw = JsonView(false);
  7926. var Create =_GroupCostRepository.
  7927. CreateGroupCostByBlackCode(dto.Diid);
  7928. jw.Msg = Create.Msg;
  7929. if (Create.Code == 0)
  7930. {
  7931. jw.Code = 200;
  7932. jw.Data = new
  7933. {
  7934. groupCost = Create.Data,
  7935. blackCodeIsTrue = true
  7936. };
  7937. }
  7938. else
  7939. {
  7940. jw.Code = 400;
  7941. jw.Data = new
  7942. {
  7943. groupCost = Create.Data,
  7944. blackCodeIsTrue = false,
  7945. };
  7946. }
  7947. return Ok(jw);
  7948. }
  7949. #endregion
  7950. #region 酒店预定 保留
  7951. /// <summary>
  7952. /// 酒店预订页面初始化绑定
  7953. /// </summary>
  7954. /// <param name="dto"></param>
  7955. /// <returns></returns>
  7956. [HttpPost]
  7957. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7958. public async Task<IActionResult> HotelReservationsInitialize(HotelReservationsDto dto)
  7959. {
  7960. try
  7961. {
  7962. Result groupData = await _hotelPriceRep.HotelReservationsInitialize(dto);
  7963. if (groupData.Code != 0)
  7964. {
  7965. return Ok(JsonView(false, groupData.Msg));
  7966. }
  7967. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  7968. }
  7969. catch (Exception ex)
  7970. {
  7971. return Ok(JsonView(false, ex.Message));
  7972. }
  7973. }
  7974. /// <summary>
  7975. /// 根据团组Id查询酒店费用列表
  7976. /// </summary>
  7977. /// <param name="dto"></param>
  7978. /// <returns></returns>
  7979. [HttpPost]
  7980. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7981. public async Task<IActionResult> HotelReservationsByDiId(HotelReservationsByDiIdDto dto)
  7982. {
  7983. try
  7984. {
  7985. Result groupData = await _hotelPriceRep.HotelReservationsByDiId(dto);
  7986. if (groupData.Code != 0)
  7987. {
  7988. return Ok(JsonView(false, groupData.Msg));
  7989. }
  7990. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  7991. }
  7992. catch (Exception ex)
  7993. {
  7994. return Ok(JsonView(false, ex.Message));
  7995. }
  7996. }
  7997. /// <summary>
  7998. /// 根据酒店费用Id查询酒店费用详细
  7999. /// </summary>
  8000. /// <param name="dto"></param>
  8001. /// <returns></returns>
  8002. [HttpPost]
  8003. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8004. public async Task<IActionResult> HotelReservationsById(HotelReservationsByIdDto dto)
  8005. {
  8006. try
  8007. {
  8008. Result groupData = await _hotelPriceRep.HotelReservationsById(dto);
  8009. if (groupData.Code != 0)
  8010. {
  8011. return Ok(JsonView(false, groupData.Msg));
  8012. }
  8013. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8014. }
  8015. catch (Exception ex)
  8016. {
  8017. return Ok(JsonView(false, ex.Message));
  8018. }
  8019. }
  8020. /// <summary>
  8021. /// 计算酒店付款总金额
  8022. /// </summary>
  8023. /// <param name="dto"></param>
  8024. /// <returns></returns>
  8025. [HttpPost]
  8026. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8027. public async Task<IActionResult> HotelConversionAmounts(HotelReservationsCNYDto dto)
  8028. {
  8029. try
  8030. {
  8031. Result groupData = await _hotelPriceRep.HotelConversionAmounts(dto);
  8032. if (groupData.Code != 0)
  8033. {
  8034. return Ok(JsonView(false, groupData.Msg));
  8035. }
  8036. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8037. }
  8038. catch (Exception ex)
  8039. {
  8040. return Ok(JsonView(false, ex.Message));
  8041. }
  8042. }
  8043. /// <summary>
  8044. /// 酒店费用操作(Status:1.新增,2.修改)
  8045. /// </summary>
  8046. /// <param name="dto"></param>
  8047. /// <returns></returns>
  8048. [HttpPost]
  8049. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8050. public async Task<IActionResult> OpHotelReservations(OpHotelReservationsData dto)
  8051. {
  8052. try
  8053. {
  8054. Result groupData = await _hotelPriceRep.OpHotelReservations(dto);
  8055. if (groupData.Code != 0)
  8056. {
  8057. return Ok(JsonView(false, groupData.Msg));
  8058. }
  8059. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8060. }
  8061. catch (Exception ex)
  8062. {
  8063. return Ok(JsonView(false, ex.Message));
  8064. }
  8065. }
  8066. /// <summary>
  8067. /// 文件上传
  8068. /// </summary>
  8069. /// <param name="file"></param>
  8070. /// <returns></returns>
  8071. [HttpPost]
  8072. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8073. public async Task<IActionResult> UploadHotel(IFormFile file)
  8074. {
  8075. try
  8076. {
  8077. if (file != null)
  8078. {
  8079. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  8080. //文件名称
  8081. string projectFileName = file.FileName;
  8082. //上传的文件的路径
  8083. string filePath = "";
  8084. if (!Directory.Exists(fileDir))
  8085. {
  8086. Directory.CreateDirectory(fileDir);
  8087. }
  8088. //上传的文件的路径
  8089. filePath = fileDir + $@"\酒店费用录入相关文件\{projectFileName}";
  8090. using (FileStream fs = System.IO.File.Create(filePath))
  8091. {
  8092. file.CopyTo(fs);
  8093. fs.Flush();
  8094. }
  8095. return Ok(JsonView(true, "上传成功!", projectFileName));
  8096. }
  8097. else
  8098. {
  8099. return Ok(JsonView(false, "上传失败!"));
  8100. }
  8101. }
  8102. catch (Exception ex)
  8103. {
  8104. return Ok(JsonView(false, "程序错误!"));
  8105. throw;
  8106. }
  8107. }
  8108. /// <summary>
  8109. /// 删除指定文件
  8110. /// </summary>
  8111. /// <param name="dto"></param>
  8112. /// <returns></returns>
  8113. [HttpPost]
  8114. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8115. public async Task<IActionResult> DelFileHotel(DelFileDto dto)
  8116. {
  8117. try
  8118. {
  8119. string filePath = "";
  8120. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  8121. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  8122. //int id = 0;
  8123. filePath = fileDir + "/酒店费用录入相关文件/" + dto.fileName;
  8124. // 删除该文件
  8125. try
  8126. {
  8127. System.IO.File.Delete(filePath);
  8128. var result = await _sqlSugar.Updateable<Grp_HotelReservations>().Where(a => a.Id == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_HotelReservations()
  8129. {
  8130. Attachment = "",
  8131. }).ExecuteCommandAsync();
  8132. if (result != 0)
  8133. {
  8134. return Ok(JsonView(true, "成功!"));
  8135. }
  8136. else
  8137. {
  8138. return Ok(JsonView(false, "失败!"));
  8139. }
  8140. }
  8141. catch (Exception)
  8142. {
  8143. var result = await _sqlSugar.Updateable<Grp_HotelReservations>().Where(a => a.Id == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_HotelReservations()
  8144. {
  8145. Attachment = "",
  8146. }).ExecuteCommandAsync();
  8147. if (result != 0)
  8148. {
  8149. return Ok(JsonView(true, "成功!"));
  8150. }
  8151. else
  8152. {
  8153. return Ok(JsonView(false, "失败!"));
  8154. }
  8155. throw;
  8156. }
  8157. }
  8158. catch (Exception ex)
  8159. {
  8160. return Ok(JsonView(false, "程序错误!"));
  8161. throw;
  8162. }
  8163. }
  8164. /// <summary>
  8165. /// 生成VOUCHER
  8166. /// </summary>
  8167. /// <param name="dto"></param>
  8168. /// <returns></returns>
  8169. [HttpPost]
  8170. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8171. public async Task<IActionResult> HotelGenerate(HotelReservationsByIdDto dto)
  8172. {
  8173. Grp_HotelReservations h = _sqlSugar.Queryable<Grp_HotelReservations>().First(a => a.Id == dto.Id && a.IsDel == 0);
  8174. //判断数据是否完整
  8175. if (h != null)
  8176. {
  8177. if (!string.IsNullOrEmpty(h.DetermineNo))
  8178. {
  8179. string strFileName = "HotelStatement/";
  8180. Grp_DelegationInfo dele = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == h.DiId && a.IsDel == 0);
  8181. if (dele != null)
  8182. strFileName += dele.TourCode;
  8183. //载入模板
  8184. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8185. Document doc = new Document(sss);
  8186. DocumentBuilder builder = new DocumentBuilder(doc);
  8187. try
  8188. {
  8189. #region 替换Word模板书签内容
  8190. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8191. //入住卷预定号码
  8192. if (doc.Range.Bookmarks["VNO"] != null)
  8193. {
  8194. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8195. mark.Text = h.CheckNumber;
  8196. }
  8197. //酒店时间
  8198. if (doc.Range.Bookmarks["Date"] != null)
  8199. {
  8200. Bookmark mark = doc.Range.Bookmarks["Date"];
  8201. mark.Text = Convert.ToDateTime(h.CreateTime).ToString("yyyy-MM-dd");
  8202. }
  8203. //团号
  8204. if (doc.Range.Bookmarks["TNo"] != null)
  8205. {
  8206. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8207. mark.Text = dele.TourCode;
  8208. }
  8209. //预定号码
  8210. if (doc.Range.Bookmarks["BookingId"] != null)
  8211. {
  8212. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8213. mark.Text = h.ReservationsNo;
  8214. }
  8215. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8216. {
  8217. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8218. mark.Text = h.DetermineNo;
  8219. }
  8220. //酒店城市
  8221. if (doc.Range.Bookmarks["City"] != null)
  8222. {
  8223. Bookmark mark = doc.Range.Bookmarks["City"];
  8224. mark.Text = h.City;
  8225. }
  8226. //酒店名称
  8227. if (doc.Range.Bookmarks["HName"] != null)
  8228. {
  8229. Bookmark mark = doc.Range.Bookmarks["HName"];
  8230. mark.Text = h.HotelName;
  8231. }
  8232. //酒店地址
  8233. if (doc.Range.Bookmarks["Address"] != null)
  8234. {
  8235. Bookmark mark = doc.Range.Bookmarks["Address"];
  8236. mark.Text = h.HotelAddress;
  8237. }
  8238. //酒店电话
  8239. if (doc.Range.Bookmarks["Tel"] != null)
  8240. {
  8241. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8242. mark.Text = h.HotelTel;
  8243. }
  8244. //酒店传真
  8245. if (doc.Range.Bookmarks["Fax"] != null)
  8246. {
  8247. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8248. if (!string.IsNullOrWhiteSpace(h.HotelFax))
  8249. {
  8250. mark.Text = h.HotelFax;
  8251. }
  8252. }
  8253. //入住时间
  8254. if (doc.Range.Bookmarks["CIn"] != null)
  8255. {
  8256. DateTime dtCheckIn = Convert.ToDateTime(h.CheckInDate);
  8257. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8258. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8259. }
  8260. //退房时间
  8261. if (doc.Range.Bookmarks["COut"] != null)
  8262. {
  8263. DateTime dtCheckOut = Convert.ToDateTime(h.CheckOutDate);
  8264. Bookmark mark = doc.Range.Bookmarks["COut"];
  8265. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8266. }
  8267. //客户名称
  8268. if (doc.Range.Bookmarks["GName"] != null)
  8269. {
  8270. Bookmark mark = doc.Range.Bookmarks["GName"];
  8271. mark.Text = h.GuestName;
  8272. }
  8273. //房间介绍
  8274. if (doc.Range.Bookmarks["ROOM"] != null)
  8275. {
  8276. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8277. mark.Text = h.RoomExplanation;
  8278. }
  8279. //报价描述
  8280. if (doc.Range.Bookmarks["NOTE"] != null)
  8281. {
  8282. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8283. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == h.ReservationsWebsite);
  8284. if (ss != null)
  8285. mark.Text = ss.Name;
  8286. }
  8287. //入住时间
  8288. if (doc.Range.Bookmarks["CheckIn"] != null)
  8289. {
  8290. DateTime dtCheckIn = Convert.ToDateTime(h.CheckInDate);
  8291. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8292. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8293. }
  8294. //退房时间
  8295. if (doc.Range.Bookmarks["CheckOut"] != null)
  8296. {
  8297. DateTime dtCheckOut = Convert.ToDateTime(h.CheckOutDate);
  8298. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8299. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8300. }
  8301. //日期
  8302. if (doc.Range.Bookmarks["DT"] != null)
  8303. {
  8304. Bookmark mark = doc.Range.Bookmarks["DT"];
  8305. mark.Text = Convert.ToDateTime(h.CreateTime).ToString("yyyy-MM-dd");
  8306. }
  8307. //名称
  8308. if (doc.Range.Bookmarks["VName"] != null)
  8309. {
  8310. Bookmark mark = doc.Range.Bookmarks["VName"];
  8311. mark.Text = h.HotelName;
  8312. }
  8313. //号码
  8314. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8315. {
  8316. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8317. mark.Text = h.CheckNumber;
  8318. }
  8319. #endregion
  8320. //string fileName = "HotelStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx";
  8321. strFileName += "VOUCHER.doc";
  8322. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8323. doc.Save(fileDir);
  8324. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8325. return Ok(JsonView(true, "成功!", Url));
  8326. }
  8327. catch (Exception ex)
  8328. {
  8329. throw;
  8330. }
  8331. }
  8332. else
  8333. {
  8334. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8335. }
  8336. }
  8337. else
  8338. {
  8339. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8340. }
  8341. }
  8342. /// <summary>
  8343. /// 导出确认单
  8344. /// </summary>
  8345. /// <param name=""></param>
  8346. /// <returns></returns>
  8347. [HttpPost]
  8348. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8349. public async Task<IActionResult> ConfirmWord(HotelReservationsByIdDto dto)
  8350. {
  8351. //团组信息
  8352. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == dto.Id);
  8353. //酒店数据
  8354. List<Grp_HotelReservations> listhoteldata = _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == dto.Id && a.IsDel == 0).ToList();
  8355. //利datatable存储
  8356. DataTable dt = new DataTable();
  8357. dt.Columns.Add("CheckInDate", typeof(string));
  8358. dt.Columns.Add("City", typeof(string));
  8359. dt.Columns.Add("Hotel", typeof(string));
  8360. dt.Columns.Add("Room", typeof(string));
  8361. for (int i = 0; i < listhoteldata.Count; i++)
  8362. {
  8363. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  8364. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  8365. while (dayStart < dayEnd)
  8366. {
  8367. string temp = "";
  8368. DataRow row = dt.NewRow();
  8369. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  8370. row["City"] = listhoteldata[i].City;
  8371. row["Hotel"] = listhoteldata[i].HotelName;
  8372. if (listhoteldata[i].SingleRoomCount > 0)
  8373. {
  8374. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  8375. }
  8376. if (listhoteldata[i].DoubleRoomCount > 0)
  8377. {
  8378. temp = temp + listhoteldata[i].DoubleRoomCount + "个表间" + "\r\n";
  8379. }
  8380. if (listhoteldata[i].SuiteRoomCount > 0)
  8381. {
  8382. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  8383. }
  8384. if (listhoteldata[i].OtherRoomCount > 0)
  8385. {
  8386. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  8387. }
  8388. row["Room"] = temp;
  8389. dt.Rows.Add(row);
  8390. dayStart = dayStart.AddDays(1);
  8391. }
  8392. }
  8393. Dictionary<string, string> dic = new Dictionary<string, string>();
  8394. dic.Add("Dele", di.TeamName);
  8395. dic.Add("City", di.VisitCountry);
  8396. //模板路径
  8397. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  8398. //载入模板
  8399. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  8400. DocumentBuilder builder = new DocumentBuilder(doc);
  8401. foreach (var key in dic.Keys)
  8402. {
  8403. builder.MoveToBookmark(key);
  8404. builder.Write(dic[key]);
  8405. }
  8406. //获取word里所有表格
  8407. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8408. //获取所填表格的序数
  8409. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  8410. var rowStart = tableOne.Rows[0]; //获取第1行
  8411. try
  8412. {
  8413. //循环赋值
  8414. for (int i = 0; i < dt.Rows.Count; i++)
  8415. {
  8416. builder.MoveToCell(0, i + 1, 0, 0);
  8417. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  8418. builder.MoveToCell(0, i + 1, 1, 0);
  8419. builder.Write(dt.Rows[i]["City"].ToString());
  8420. builder.MoveToCell(0, i + 1, 2, 0);
  8421. builder.Write(dt.Rows[i]["Hotel"].ToString());
  8422. builder.MoveToCell(0, i + 1, 3, 0);
  8423. builder.Write(dt.Rows[i]["Room"].ToString());
  8424. }
  8425. }
  8426. catch
  8427. {
  8428. }
  8429. //删除多余行
  8430. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  8431. {
  8432. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  8433. }
  8434. string strFileName = di.TeamName + "酒店确认单.doc";
  8435. try
  8436. {
  8437. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  8438. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  8439. return Ok(JsonView(true, "成功", Url));
  8440. }
  8441. catch (Exception)
  8442. {
  8443. return Ok(JsonView(false, "当前文档已打开,请先关闭!"));
  8444. throw;
  8445. }
  8446. }
  8447. /// <summary>
  8448. /// 酒店费用删除
  8449. /// </summary>
  8450. /// <param name="dto"></param>
  8451. /// <returns></returns>
  8452. [HttpPost]
  8453. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8454. public async Task<IActionResult> DelHotelPrice(DelBaseDto dto)
  8455. {
  8456. try
  8457. {
  8458. var res = await _hotelPriceRep.SoftDeleteByIdAsync<Grp_HotelReservations>(dto.Id.ToString(), dto.DeleteUserId);
  8459. if (!res)
  8460. {
  8461. return Ok(JsonView(false, "删除失败"));
  8462. }
  8463. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 76).SetColumns(a => new Grp_CreditCardPayment()
  8464. {
  8465. IsDel = 1,
  8466. DeleteUserId = dto.DeleteUserId,
  8467. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  8468. }).ExecuteCommandAsync();
  8469. return Ok(JsonView(true, "删除成功!"));
  8470. }
  8471. catch (Exception ex)
  8472. {
  8473. return Ok(JsonView(false, "程序错误!"));
  8474. throw;
  8475. }
  8476. }
  8477. #endregion
  8478. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8479. /// <summary>
  8480. /// 酒店预订
  8481. /// 酒店费用列表 根据团组Id查询
  8482. /// </summary>
  8483. /// <param name="_dto"></param>
  8484. /// <returns></returns>
  8485. [HttpPost]
  8486. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8487. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8488. {
  8489. try
  8490. {
  8491. #region 参数验证
  8492. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8493. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8494. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8495. #region 团组操作权限验证 76 酒店预定模块
  8496. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8497. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8498. #endregion
  8499. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8500. #region 页面操作权限验证
  8501. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8502. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8503. #endregion
  8504. #endregion
  8505. Result _view = await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId);
  8506. if (_view.Code != 0)
  8507. {
  8508. return Ok(JsonView(false, _view.Msg));
  8509. }
  8510. return Ok(JsonView(true, _view.Msg, _view.Data));
  8511. }
  8512. catch (Exception ex)
  8513. {
  8514. return Ok(JsonView(false, ex.Message));
  8515. }
  8516. }
  8517. /// <summary>
  8518. /// 酒店预订
  8519. /// 基础数据
  8520. /// </summary>
  8521. /// <param name="_dto"></param>
  8522. /// <returns></returns>
  8523. [HttpPost]
  8524. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8525. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8526. {
  8527. try
  8528. {
  8529. #region 参数验证
  8530. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8531. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8532. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8533. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8534. #region 页面操作权限验证
  8535. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8536. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8537. #endregion
  8538. #region 团组操作权限验证 76 酒店预定模块
  8539. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8540. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8541. #endregion
  8542. #endregion
  8543. Result data = await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId);
  8544. if (data.Code != 0)
  8545. {
  8546. return Ok(JsonView(false, data.Msg));
  8547. }
  8548. return Ok(JsonView(true, data.Msg, data.Data));
  8549. }
  8550. catch (Exception ex)
  8551. {
  8552. return Ok(JsonView(false, "Catch:" + ex.Message));
  8553. }
  8554. }
  8555. /// <summary>
  8556. /// 酒店预订
  8557. /// 创建 入住卷号码
  8558. /// </summary>
  8559. /// <param name="_dto"></param>
  8560. /// <returns></returns>
  8561. [HttpPost]
  8562. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8563. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8564. {
  8565. try
  8566. {
  8567. #region 参数验证
  8568. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8569. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8570. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8571. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8572. #region 页面操作权限验证
  8573. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8574. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8575. #endregion
  8576. #region 团组操作权限验证 76 酒店预定模块
  8577. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8578. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8579. #endregion
  8580. #endregion
  8581. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8582. if (data.Code != 0)
  8583. {
  8584. return Ok(JsonView(false, data.Msg));
  8585. }
  8586. return Ok(JsonView(true, data.Msg, data.Data));
  8587. }
  8588. catch (Exception ex)
  8589. {
  8590. return Ok(JsonView(false, ex.Message));
  8591. }
  8592. }
  8593. /// <summary>
  8594. /// 酒店预订
  8595. /// 详情
  8596. /// </summary>
  8597. /// <param name="_dto"></param>
  8598. /// <returns></returns>
  8599. [HttpPost]
  8600. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8601. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8602. {
  8603. try
  8604. {
  8605. #region 参数验证
  8606. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8607. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8608. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8609. #region 团组操作权限验证 76 酒店预定模块
  8610. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8611. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8612. #endregion
  8613. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8614. #region 页面操作权限验证
  8615. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8616. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8617. #endregion
  8618. #endregion
  8619. Result data = await _hotelPriceRep._Details(_dto.PortType, _dto.Id);
  8620. if (data.Code != 0)
  8621. {
  8622. return Ok(JsonView(false, data.Msg));
  8623. }
  8624. return Ok(JsonView(true, data.Msg, data.Data));
  8625. }
  8626. catch (Exception ex)
  8627. {
  8628. return Ok(JsonView(false, ex.Message));
  8629. }
  8630. }
  8631. /// <summary>
  8632. /// 酒店预订
  8633. /// Add Or Edit
  8634. /// </summary>
  8635. /// <param name="_dto"></param>
  8636. /// <returns></returns>
  8637. [HttpPost]
  8638. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8639. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8640. {
  8641. try
  8642. {
  8643. #region 参数验证
  8644. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8645. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8646. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8647. #region 团组操作权限验证 76 酒店预定模块
  8648. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8649. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8650. #endregion
  8651. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8652. #region 页面操作权限验证
  8653. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8654. if (_dto.Id == 0) // Add
  8655. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8656. else if (_dto.Id > 0) // Edit
  8657. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8658. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8659. #endregion
  8660. #endregion
  8661. Result data = await _hotelPriceRep._AddOrEdit(_dto);
  8662. if (data.Code != 0)
  8663. {
  8664. return Ok(JsonView(false, data.Msg));
  8665. }
  8666. #region 应用推送
  8667. try
  8668. {
  8669. int ccpId = data.Data.GetType().GetProperty("ccpId").GetValue(data.Data, null);
  8670. int sign = data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  8671. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8672. }
  8673. catch (Exception ex)
  8674. {
  8675. }
  8676. #endregion
  8677. return Ok(JsonView(true, data.Msg, data.Data));
  8678. }
  8679. catch (Exception ex)
  8680. {
  8681. return Ok(JsonView(false, ex.Message));
  8682. }
  8683. }
  8684. /// <summary>
  8685. /// 酒店预订
  8686. /// Del
  8687. /// </summary>
  8688. /// <param name="_dto"></param>
  8689. /// <returns></returns>
  8690. [HttpPost]
  8691. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8692. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8693. {
  8694. try
  8695. {
  8696. #region 参数验证
  8697. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8698. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8699. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8700. #region 团组操作权限验证 76 酒店预定模块
  8701. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8702. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8703. #endregion
  8704. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8705. #region 页面操作权限验证
  8706. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8707. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8708. #endregion
  8709. #endregion
  8710. Result data = await _hotelPriceRep._Del(_dto.Id, _dto.UserId);
  8711. if (data.Code != 0)
  8712. {
  8713. return Ok(JsonView(false, data.Msg));
  8714. }
  8715. return Ok(JsonView(true, data.Msg, data.Data));
  8716. }
  8717. catch (Exception ex)
  8718. {
  8719. return Ok(JsonView(false, ex.Message));
  8720. }
  8721. }
  8722. /// <summary>
  8723. /// 酒店预订
  8724. /// 生成VOUCHER
  8725. /// 2024.05.06 之前版本
  8726. /// </summary>
  8727. /// <param name="_dto"></param>
  8728. /// <returns></returns>
  8729. [HttpPost]
  8730. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8731. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8732. {
  8733. try
  8734. {
  8735. #region 参数验证
  8736. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8737. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8738. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8739. #region 团组操作权限验证 76 酒店预定模块
  8740. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8741. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8742. #endregion
  8743. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8744. #region 页面操作权限验证
  8745. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8746. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8747. #endregion
  8748. #endregion
  8749. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8750. //判断数据是否完整
  8751. if (hr != null)
  8752. {
  8753. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8754. {
  8755. string strFileName = "HotelStatement/";
  8756. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8757. if (dele != null)
  8758. strFileName += dele.TourCode;
  8759. //载入模板
  8760. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8761. Document doc = new Document(sss);
  8762. DocumentBuilder builder = new DocumentBuilder(doc);
  8763. #region 替换Word模板书签内容
  8764. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8765. //入住卷预定号码
  8766. if (doc.Range.Bookmarks["VNO"] != null)
  8767. {
  8768. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8769. mark.Text = hr.CheckNumber;
  8770. }
  8771. //酒店时间
  8772. if (doc.Range.Bookmarks["Date"] != null)
  8773. {
  8774. Bookmark mark = doc.Range.Bookmarks["Date"];
  8775. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8776. }
  8777. //团号
  8778. if (doc.Range.Bookmarks["TNo"] != null)
  8779. {
  8780. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8781. mark.Text = dele.TourCode;
  8782. }
  8783. //预定号码
  8784. if (doc.Range.Bookmarks["BookingId"] != null)
  8785. {
  8786. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8787. mark.Text = hr.ReservationsNo;
  8788. }
  8789. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8790. {
  8791. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8792. mark.Text = hr.DetermineNo;
  8793. }
  8794. //酒店城市
  8795. if (doc.Range.Bookmarks["City"] != null)
  8796. {
  8797. Bookmark mark = doc.Range.Bookmarks["City"];
  8798. mark.Text = hr.City;
  8799. }
  8800. //酒店名称
  8801. if (doc.Range.Bookmarks["HName"] != null)
  8802. {
  8803. Bookmark mark = doc.Range.Bookmarks["HName"];
  8804. mark.Text = hr.HotelName;
  8805. }
  8806. //酒店地址
  8807. if (doc.Range.Bookmarks["Address"] != null)
  8808. {
  8809. Bookmark mark = doc.Range.Bookmarks["Address"];
  8810. mark.Text = hr.HotelAddress;
  8811. }
  8812. //酒店电话
  8813. if (doc.Range.Bookmarks["Tel"] != null)
  8814. {
  8815. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8816. mark.Text = hr.HotelTel;
  8817. }
  8818. //酒店传真
  8819. if (doc.Range.Bookmarks["Fax"] != null)
  8820. {
  8821. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8822. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8823. {
  8824. mark.Text = hr.HotelFax;
  8825. }
  8826. }
  8827. //入住时间
  8828. if (doc.Range.Bookmarks["CIn"] != null)
  8829. {
  8830. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8831. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8832. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8833. }
  8834. //退房时间
  8835. if (doc.Range.Bookmarks["COut"] != null)
  8836. {
  8837. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8838. Bookmark mark = doc.Range.Bookmarks["COut"];
  8839. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8840. }
  8841. //客户名称
  8842. if (doc.Range.Bookmarks["GName"] != null)
  8843. {
  8844. string guestName = "";
  8845. string[] clients = new string[] { };
  8846. if (hr.GuestName.Contains(","))
  8847. {
  8848. clients = hr.GuestName.Split(",");
  8849. }
  8850. else
  8851. {
  8852. clients = new string[] { hr.GuestName };
  8853. }
  8854. List<int> clientIds_int = new List<int>();
  8855. if (clients.Length > 0)
  8856. {
  8857. foreach (var item in clients)
  8858. {
  8859. if (item.IsNumeric())
  8860. {
  8861. clientIds_int.Add(int.Parse(item));
  8862. }
  8863. }
  8864. }
  8865. if (clientIds_int.Count > 0)
  8866. {
  8867. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8868. foreach (var client in _clientDatas)
  8869. {
  8870. //男
  8871. if (client.Sex == 0) guestName += $"Mr.";
  8872. //女
  8873. else if (client.Sex == 1) guestName += $"Ms.";
  8874. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8875. {
  8876. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8877. }
  8878. //guestName += $"{client.Pinyin},";
  8879. }
  8880. if (guestName.Length > 0)
  8881. {
  8882. guestName = guestName.Substring(0, guestName.Length - 1);
  8883. }
  8884. }
  8885. else
  8886. {
  8887. guestName = hr.GuestName;
  8888. }
  8889. Bookmark mark = doc.Range.Bookmarks["GName"];
  8890. mark.Text = guestName;
  8891. }
  8892. //房间介绍
  8893. if (doc.Range.Bookmarks["ROOM"] != null)
  8894. {
  8895. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8896. mark.Text = hr.RoomExplanation;
  8897. }
  8898. //报价描述
  8899. if (doc.Range.Bookmarks["NOTE"] != null)
  8900. {
  8901. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8902. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8903. if (ss != null)
  8904. mark.Text = ss.Name;
  8905. }
  8906. //入住时间
  8907. if (doc.Range.Bookmarks["CheckIn"] != null)
  8908. {
  8909. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8910. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8911. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8912. }
  8913. //退房时间
  8914. if (doc.Range.Bookmarks["CheckOut"] != null)
  8915. {
  8916. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8917. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8918. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8919. }
  8920. //日期
  8921. if (doc.Range.Bookmarks["DT"] != null)
  8922. {
  8923. Bookmark mark = doc.Range.Bookmarks["DT"];
  8924. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8925. }
  8926. //名称
  8927. if (doc.Range.Bookmarks["VName"] != null)
  8928. {
  8929. Bookmark mark = doc.Range.Bookmarks["VName"];
  8930. mark.Text = hr.HotelName;
  8931. }
  8932. //号码
  8933. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8934. {
  8935. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8936. mark.Text = hr.CheckNumber;
  8937. }
  8938. #endregion
  8939. strFileName += "VOUCHER.doc";
  8940. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8941. doc.Save(fileDir);
  8942. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8943. return Ok(JsonView(true, "操作成功!", Url));
  8944. }
  8945. else
  8946. {
  8947. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8948. }
  8949. }
  8950. else
  8951. {
  8952. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8953. }
  8954. }
  8955. catch (Exception ex)
  8956. {
  8957. return Ok(JsonView(false, ex.Message));
  8958. }
  8959. }
  8960. /// <summary>
  8961. /// 酒店预订
  8962. /// 生成VOUCHER
  8963. /// 2024.05.06 之后版本
  8964. /// </summary>
  8965. /// <param name="_dto"></param>
  8966. /// <returns></returns>
  8967. [HttpPost]
  8968. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8969. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8970. {
  8971. #region 参数验证
  8972. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8973. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8974. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8975. #region 团组操作权限验证 76 酒店预定模块
  8976. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8977. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8978. #endregion
  8979. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8980. #region 页面操作权限验证
  8981. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8982. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8983. #endregion
  8984. #endregion
  8985. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8986. //判断数据是否完整
  8987. if (hrDtas.Count < 1) return Ok(JsonView(false, "请先录入酒店预订信息!"));
  8988. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8989. string strFileName = "HotelStatement/";
  8990. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8991. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8992. #region 数据处理
  8993. List<int> guestIds = new List<int>();
  8994. int index = 0;
  8995. foreach (var item in hrDtas)
  8996. {
  8997. if (item.GuestName.Contains(","))
  8998. {
  8999. string[] guestIdArr = item.GuestName.Split(',');
  9000. foreach (var guestIdStr in guestIdArr)
  9001. {
  9002. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  9003. if (guestBool)
  9004. {
  9005. guestIds.Add(guestId);
  9006. }
  9007. }
  9008. }
  9009. else guestNames += item.GuestName;
  9010. var voucherInfo = new HotelVoucherInfoView()
  9011. {
  9012. HotelName = item.HotelName,
  9013. CheckInDate = item.CheckInDate,
  9014. CheckOutDate = item.CheckOutDate,
  9015. ConfirmationNumber = item.DetermineNo.Trim(),
  9016. RoomType = item.RoomExplanation
  9017. };
  9018. vouchers.Add(voucherInfo);
  9019. }
  9020. if (guestIds.Count > 0)
  9021. {
  9022. guestIds = guestIds.Distinct().ToList();
  9023. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  9024. if (guestDatas.Count > 0)
  9025. {
  9026. guestNames = "";
  9027. foreach (var guest in guestDatas)
  9028. {
  9029. string guestName = "";
  9030. if (guest.Sex == 0) guestName += @"MR.";
  9031. else if (guest.Sex == 1) guestName += @"MS.";
  9032. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9033. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9034. guestNames += @$"{guestName.Trim()}、";
  9035. }
  9036. if (guestNames.Length > 0)
  9037. {
  9038. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9039. }
  9040. }
  9041. }
  9042. #endregion
  9043. //载入模板
  9044. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  9045. Document doc = new Document(sss);
  9046. DocumentBuilder builder = new DocumentBuilder(doc);
  9047. if (doc.Range.Bookmarks["GuestName"] != null)
  9048. {
  9049. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9050. mark.Text = guestNames;
  9051. }
  9052. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9053. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9054. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9055. for (int i = 1; i <= vouchers.Count; i++)
  9056. {
  9057. HotelVoucherInfoView hviv = vouchers[i - 1];
  9058. builder.MoveToCell(0, i, 0, 0);
  9059. builder.Write(hviv.HotelName);
  9060. builder.MoveToCell(0, i, 1, 0);
  9061. builder.Write(hviv.CheckInDate);
  9062. builder.MoveToCell(0, i, 2, 0);
  9063. builder.Write(hviv.CheckOutDate);
  9064. builder.MoveToCell(0, i, 3, 0);
  9065. builder.Write(hviv.RoomType);
  9066. builder.MoveToCell(0, i, 4, 0);
  9067. builder.Write(hviv.ConfirmationNumber);
  9068. }
  9069. //删除多余行
  9070. int currRowIndex = vouchers.Count + 1;
  9071. int delRows = 21 - currRowIndex;
  9072. if (delRows > 0)
  9073. {
  9074. for (int i = 0; i < delRows; i++)
  9075. {
  9076. table.Rows.RemoveAt(currRowIndex);
  9077. //cultivateRowIndex++;
  9078. }
  9079. }
  9080. strFileName += "VOUCHER.docx";
  9081. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9082. doc.Save(fileDir);
  9083. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9084. return Ok(JsonView(true, "操作成功!", Url));
  9085. }
  9086. /// <summary>
  9087. /// 酒店预订
  9088. /// 生成 预定成本 Excel
  9089. /// </summary>
  9090. /// <param name="_dto"></param>
  9091. /// <returns></returns>
  9092. [HttpPost]
  9093. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9094. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9095. {
  9096. #region 参数验证
  9097. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9098. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9099. if (!vadalitorRes.IsValid)
  9100. {
  9101. var errors = new StringBuilder();
  9102. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9103. return Ok(JsonView(false, errors.ToString()));
  9104. }
  9105. #region 团组操作权限验证 76 酒店预定模块
  9106. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9107. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9108. #endregion
  9109. //PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9110. //#region 页面操作权限验证
  9111. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9112. //if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9113. //#endregion
  9114. #endregion
  9115. decimal _rate = 1.00M;
  9116. string _currency = "";
  9117. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9118. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9119. if (hrDtas.Count < 1) return Ok(JsonView(false, "酒店预订费用未录入,不支持预定成本Excel导出"));
  9120. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9121. if (_GroupCostParameter == null) return Ok(JsonView(false, "团组成本费用未录入,不支持预定成本Excel导出"));
  9122. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9123. {
  9124. return Ok(JsonView(false, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出"));
  9125. }
  9126. _currency = _GroupCostParameter.Currency;
  9127. bool isIntType = int.TryParse(_currency, out int currId);
  9128. if (isIntType)
  9129. {
  9130. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9131. }
  9132. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9133. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9134. if (currInfo == null)
  9135. {
  9136. return Ok(JsonView(false, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出"));
  9137. }
  9138. if (!_currency.ToUpper().Equals("CNY"))
  9139. {
  9140. _rate = _GroupCostParameter.Rate;
  9141. }
  9142. _rate = currInfo.Rate;
  9143. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9144. string strFileName = "HotelStatement/";
  9145. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9146. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9147. #region 数据处理
  9148. foreach (var item in hrDtas)
  9149. {
  9150. var ccpInfo = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9151. string roomCurr = currDatas.Find(it => it.Id == ccpInfo.PaymentCurrency)?.Name ?? "";
  9152. string singleRoomFeeStr = string.Empty,
  9153. doubleRoomFeeStr = string.Empty,
  9154. suiteRoomFeeStr = string.Empty,
  9155. otherRoomFeeStr = string.Empty,
  9156. payMoneyStr = string.Empty,
  9157. cardPriceStr = string.Empty;
  9158. if (roomCurr.Equals(_currency))
  9159. {
  9160. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9161. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9162. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9163. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9164. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9165. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9166. }
  9167. else
  9168. {
  9169. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9170. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9171. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9172. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9173. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9174. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9175. }
  9176. string breakfastPriceStr = string.Empty,
  9177. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9178. governmentRentStr = string.Empty,
  9179. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9180. cityTaxStrStr = string.Empty,
  9181. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9182. //if (breakfastCurrency.Equals(_currency))
  9183. //{
  9184. // breakfastPriceStr = $"{item.BreakfastPrice.ToString("#0.00")} ({_currency})";
  9185. //}
  9186. //if (governmentRentCurrency.Equals(_currency))
  9187. //{
  9188. // governmentRentStr = $"{item.GovernmentRent.ToString("#0.00")} ({_currency})";
  9189. //}
  9190. //if (cityTaxStrCurrency.Equals(_currency))
  9191. //{
  9192. // cityTaxStrStr = $"{item.CityTax.ToString("#0.00")} ({_currency})";
  9193. //}
  9194. breakfastPriceStr = $"{item.BreakfastPrice.ToString("#0.00")} {_currency}";
  9195. governmentRentStr = $"{item.GovernmentRent.ToString("#0.00")} {_currency}";
  9196. cityTaxStrStr = $"{item.CityTax.ToString("#0.00")} {_currency}";
  9197. pcfds.Add(new HotelReservations_PCFD_View()
  9198. {
  9199. City = item.City,
  9200. HotelName = item.HotelName,
  9201. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9202. // SingleRoomCount = item.SingleRoomCount,
  9203. SingleRoomPrice = singleRoomFeeStr,
  9204. // DoubleRoomCount = item.DoubleRoomCount,
  9205. DoubleRoomPrice = doubleRoomFeeStr,
  9206. //SuiteRoomCount = item.SuiteRoomCount,
  9207. SuiteRoomPrice = suiteRoomFeeStr,
  9208. OtherRoomPrice = otherRoomFeeStr,
  9209. //OtherRoomCount = item.OtherRoomCount,
  9210. BreakfastPrice = breakfastPriceStr,
  9211. GovernmentRent = governmentRentStr,
  9212. CityTax = cityTaxStrStr,
  9213. RoomExplanation = item.RoomExplanation,
  9214. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == ccpInfo.PayDId).First()?.Name ?? "",
  9215. PayTime = ccpInfo.ConsumptionDate,
  9216. BankNo = ccpInfo.BankNo,
  9217. PayMoney = payMoneyStr,
  9218. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9219. ConsumptionPatterns = ccpInfo.ConsumptionPatterns,
  9220. CardPrice = cardPriceStr,
  9221. Remark = ccpInfo.Remark
  9222. });
  9223. }
  9224. #endregion
  9225. //载入模板
  9226. WorkbookDesigner designer = new WorkbookDesigner();
  9227. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9228. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9229. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9230. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9231. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9232. designer.SetDataSource("Opertor", userInfo.CnName);
  9233. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9234. dt.TableName = "ViewMyHotelReservations";
  9235. designer.SetDataSource(dt);
  9236. designer.Process();
  9237. string fileName = ($"HotelReservation/{groupInfo.TeamName}_酒店预订成本_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls").Replace(":", "");
  9238. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9239. designer.Workbook.Save(serverPath);
  9240. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9241. #region 删除指定行
  9242. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true,cpDel=true, remarkDel = true;
  9243. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9244. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9245. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9246. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9247. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9248. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9249. cssIndex = dt.Columns["CityTax"].Ordinal,
  9250. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9251. remarkIndex = dt.Columns["Remark"].Ordinal;
  9252. //删除指定列
  9253. foreach (DataRow item in dt.Rows)
  9254. {
  9255. string singleStr = item["SingleRoomPrice"].ToString();
  9256. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9257. if (containsDigitButNotZero1) singleDel = false;
  9258. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9259. string doubleStr = item["DoubleRoomPrice"].ToString();
  9260. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9261. if (containsDigitButNotZero2) doubleDel = false;
  9262. string suiteStr = item["SuiteRoomPrice"].ToString();
  9263. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9264. if (containsDigitButNotZero3) suiteDel = false;
  9265. string otherStr = item["OtherRoomPrice"].ToString();
  9266. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9267. if (containsDigitButNotZero4) otherDel = false;
  9268. string zcStr = item["BreakfastPrice"].ToString();
  9269. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9270. if (containsDigitButNotZero5) zcDel = false;
  9271. string dsStr = item["GovernmentRent"].ToString();
  9272. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9273. if (containsDigitButNotZero6) dsDel = false;
  9274. string cssStr = item["CityTax"].ToString();
  9275. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9276. if (containsDigitButNotZero7) cssDel = false;
  9277. string cpStr = item["ConsumptionPatterns"].ToString();
  9278. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9279. string remarkStr = item["Remark"].ToString();
  9280. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9281. }
  9282. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9283. DeleteColumn(serverPath, cpIndex, cpDel);
  9284. DeleteColumn(serverPath, dsIndex, dsDel);
  9285. DeleteColumn(serverPath, cssIndex, cssDel);
  9286. DeleteColumn(serverPath, zcIndex, zcDel);
  9287. DeleteColumn(serverPath, otherIndex, otherDel);
  9288. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9289. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9290. DeleteColumn(serverPath, singleIndex, singleDel);
  9291. #endregion
  9292. //只保留第一个表格
  9293. DeleteSheet(serverPath);
  9294. return Ok(JsonView(true, "操作成功", url = rst));
  9295. }
  9296. /// <summary>
  9297. /// 删除指定列
  9298. /// </summary>
  9299. /// <param name="file"></param>
  9300. /// <param name="columnIndex"></param>
  9301. /// <param name="isDel"></param>
  9302. private void DeleteColumn(string file, int columnIndex,bool isDel)
  9303. {
  9304. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9305. //wb.Save(file);
  9306. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9307. if (sheet1 != null)
  9308. {
  9309. if (isDel)
  9310. {
  9311. Cells cells = sheet1.Cells;
  9312. cells.DeleteColumn(columnIndex);
  9313. }
  9314. }
  9315. wb.Save(file);
  9316. }
  9317. /// <summary>
  9318. /// 删除sheet
  9319. /// </summary>
  9320. /// <param name="file"></param>
  9321. /// <param name="sheetName"></param>
  9322. private void DeleteSheet(string file, string sheetName="")
  9323. {
  9324. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9325. //wb.Save(file);
  9326. List<string> sheets = new List<string>();
  9327. foreach (var item in wb.Worksheets)
  9328. {
  9329. sheets.Add(item.Name);
  9330. }
  9331. if (sheets.Count > 0)
  9332. {
  9333. sheets.RemoveAt(0);//不删除第一个sheet
  9334. foreach (var item in sheets)
  9335. {
  9336. wb.Worksheets.RemoveAt(item);
  9337. }
  9338. }
  9339. wb.Save(file);
  9340. }
  9341. /// <summary>
  9342. /// 酒店预订
  9343. /// 确认单
  9344. /// </summary>
  9345. /// <param name="_dto"></param>
  9346. /// <returns></returns>
  9347. [HttpPost]
  9348. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9349. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9350. {
  9351. try
  9352. {
  9353. #region 参数验证
  9354. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9355. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9356. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9357. #region 团组操作权限验证 76 酒店预定模块
  9358. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9359. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9360. #endregion
  9361. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9362. #region 页面操作权限验证
  9363. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9364. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9365. #endregion
  9366. #endregion
  9367. //团组信息
  9368. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9369. //酒店数据
  9370. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9371. if (listhoteldata.Count < 0)
  9372. {
  9373. return Ok(JsonView(false, "当前团组暂无酒店预订信息!"));
  9374. }
  9375. //利datatable存储
  9376. DataTable dt = new DataTable();
  9377. dt.Columns.Add("CheckInDate", typeof(string));
  9378. dt.Columns.Add("City", typeof(string));
  9379. dt.Columns.Add("Hotel", typeof(string));
  9380. dt.Columns.Add("Room", typeof(string));
  9381. for (int i = 0; i < listhoteldata.Count; i++)
  9382. {
  9383. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9384. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9385. while (dayStart < dayEnd)
  9386. {
  9387. string temp = "";
  9388. DataRow row = dt.NewRow();
  9389. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9390. row["City"] = listhoteldata[i].City;
  9391. row["Hotel"] = listhoteldata[i].HotelName;
  9392. if (listhoteldata[i].SingleRoomCount > 0)
  9393. {
  9394. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9395. }
  9396. if (listhoteldata[i].DoubleRoomCount > 0)
  9397. {
  9398. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9399. }
  9400. if (listhoteldata[i].SuiteRoomCount > 0)
  9401. {
  9402. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9403. }
  9404. if (listhoteldata[i].OtherRoomCount > 0)
  9405. {
  9406. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9407. }
  9408. row["Room"] = temp;
  9409. dt.Rows.Add(row);
  9410. dayStart = dayStart.AddDays(1);
  9411. }
  9412. }
  9413. Dictionary<string, string> dic = new Dictionary<string, string>();
  9414. dic.Add("Dele", di.TeamName);
  9415. dic.Add("City", di.VisitCountry);
  9416. //模板路径
  9417. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9418. //载入模板
  9419. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9420. DocumentBuilder builder = new DocumentBuilder(doc);
  9421. foreach (var key in dic.Keys)
  9422. {
  9423. builder.MoveToBookmark(key);
  9424. builder.Write(dic[key]);
  9425. }
  9426. //获取word里所有表格
  9427. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9428. //获取所填表格的序数
  9429. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9430. var rowStart = tableOne.Rows[0]; //获取第1行
  9431. //循环赋值
  9432. for (int i = 0; i < dt.Rows.Count; i++)
  9433. {
  9434. builder.MoveToCell(0, i + 1, 0, 0);
  9435. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9436. builder.MoveToCell(0, i + 1, 1, 0);
  9437. builder.Write(dt.Rows[i]["City"].ToString());
  9438. builder.MoveToCell(0, i + 1, 2, 0);
  9439. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9440. builder.MoveToCell(0, i + 1, 3, 0);
  9441. builder.Write(dt.Rows[i]["Room"].ToString());
  9442. }
  9443. //删除多余行
  9444. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9445. {
  9446. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9447. }
  9448. string strFileName = di.TeamName + "酒店确认单.doc";
  9449. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9450. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9451. return Ok(JsonView(true, "成功", url));
  9452. }
  9453. catch (Exception ex)
  9454. {
  9455. return Ok(JsonView(false, ex.Message));
  9456. }
  9457. }
  9458. #endregion
  9459. #region 团组状态
  9460. /// <summary>
  9461. /// 团组状态列表 Page
  9462. /// </summary>
  9463. /// <param name="dto">团组列表请求dto</param>
  9464. /// <returns></returns>
  9465. [HttpPost]
  9466. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9467. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9468. {
  9469. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9470. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9471. {
  9472. string sqlWhere = string.Empty;
  9473. if (dto.IsSure == 0) //未完成
  9474. {
  9475. sqlWhere += string.Format(@" And IsSure = 0");
  9476. }
  9477. else if (dto.IsSure == 1) //已完成
  9478. {
  9479. sqlWhere += string.Format(@" And IsSure = 1");
  9480. }
  9481. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9482. {
  9483. string tj = dto.SearchCriteria;
  9484. 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}%')",
  9485. tj, tj, tj, tj, tj);
  9486. }
  9487. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9488. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9489. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9490. From (
  9491. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9492. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9493. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9494. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9495. From Grp_DelegationInfo gdi
  9496. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9497. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9498. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9499. Where gdi.IsDel = 0 {0}
  9500. ) temp ", sqlWhere);
  9501. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9502. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9503. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9504. }
  9505. else
  9506. {
  9507. return Ok(JsonView(false, "查询失败"));
  9508. }
  9509. }
  9510. /// <summary>
  9511. /// 团组状态
  9512. /// 设置操作完成
  9513. /// </summary>
  9514. /// <param name="dto">团组列表请求dto</param>
  9515. /// <returns></returns>
  9516. [HttpPost]
  9517. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9518. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9519. {
  9520. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9521. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9522. {
  9523. Id = dto.Id,
  9524. IsSure = 1
  9525. };
  9526. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9527. .UpdateColumns(it => new { it.IsSure })
  9528. .WhereColumns(it => new { it.Id })
  9529. .ExecuteCommandAsync();
  9530. if (result > 0)
  9531. {
  9532. return Ok(JsonView(true, "操作完成!"));
  9533. }
  9534. return Ok(JsonView(false, "操作失败!"));
  9535. }
  9536. #endregion
  9537. #region 保险费用录入
  9538. /// <summary>
  9539. /// 根据团组Id查询保险费用列表
  9540. /// </summary>
  9541. /// <param name="dto"></param>
  9542. /// <returns></returns>
  9543. [HttpPost]
  9544. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9545. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9546. {
  9547. try
  9548. {
  9549. Result groupData = await _customersRep.CustomersByDiId(dto);
  9550. if (groupData.Code != 0)
  9551. {
  9552. return Ok(JsonView(false, groupData.Msg));
  9553. }
  9554. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9555. }
  9556. catch (Exception ex)
  9557. {
  9558. return Ok(JsonView(false, ex.Message));
  9559. }
  9560. }
  9561. /// <summary>
  9562. /// 根据保险费用Id查询保险费用详细
  9563. /// </summary>
  9564. /// <param name="dto"></param>
  9565. /// <returns></returns>
  9566. [HttpPost]
  9567. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9568. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9569. {
  9570. try
  9571. {
  9572. Result groupData = await _customersRep.CustomersById(dto);
  9573. if (groupData.Code != 0)
  9574. {
  9575. return Ok(JsonView(false, groupData.Msg));
  9576. }
  9577. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9578. }
  9579. catch (Exception ex)
  9580. {
  9581. return Ok(JsonView(false, ex.Message));
  9582. }
  9583. }
  9584. /// <summary>
  9585. /// 保险费用录入页面初始化绑定
  9586. /// </summary>
  9587. /// <param name="dto"></param>
  9588. /// <returns></returns>
  9589. [HttpPost]
  9590. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9591. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9592. {
  9593. try
  9594. {
  9595. Result groupData = await _customersRep.CustomersInitialize(dto);
  9596. if (groupData.Code != 0)
  9597. {
  9598. return Ok(JsonView(false, groupData.Msg));
  9599. }
  9600. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9601. }
  9602. catch (Exception ex)
  9603. {
  9604. return Ok(JsonView(false, ex.Message));
  9605. }
  9606. }
  9607. /// <summary>
  9608. /// 保险费用操作(Status:1.新增,2.修改)
  9609. /// </summary>
  9610. /// <param name="dto"></param>
  9611. /// <returns></returns>
  9612. [HttpPost]
  9613. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9614. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9615. {
  9616. try
  9617. {
  9618. Result groupData = await _customersRep.OpCustomers(dto);
  9619. if (groupData.Code != 0)
  9620. {
  9621. return Ok(JsonView(false, groupData.Msg));
  9622. }
  9623. #region 应用推送
  9624. try
  9625. {
  9626. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9627. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9628. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9629. }
  9630. catch (Exception ex)
  9631. {
  9632. }
  9633. #endregion
  9634. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9635. }
  9636. catch (Exception ex)
  9637. {
  9638. return Ok(JsonView(false, ex.Message));
  9639. }
  9640. }
  9641. /// <summary>
  9642. /// 保险文件上传
  9643. /// </summary>
  9644. /// <param name="file"></param>
  9645. /// <returns></returns>
  9646. [HttpPost]
  9647. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9648. public async Task<IActionResult> UploadCus(IFormFile file)
  9649. {
  9650. try
  9651. {
  9652. if (file != null)
  9653. {
  9654. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9655. //文件名称
  9656. string projectFileName = file.FileName;
  9657. //上传的文件的路径
  9658. string filePath = "";
  9659. if (!Directory.Exists(fileDir))
  9660. {
  9661. Directory.CreateDirectory(fileDir);
  9662. }
  9663. //上传的文件的路径
  9664. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9665. using (FileStream fs = System.IO.File.Create(filePath))
  9666. {
  9667. file.CopyTo(fs);
  9668. fs.Flush();
  9669. }
  9670. return Ok(JsonView(true, "上传成功!", projectFileName));
  9671. }
  9672. else
  9673. {
  9674. return Ok(JsonView(false, "上传失败!"));
  9675. }
  9676. }
  9677. catch (Exception ex)
  9678. {
  9679. return Ok(JsonView(false, "程序错误!"));
  9680. throw;
  9681. }
  9682. }
  9683. /// <summary>
  9684. /// 保险删除指定文件
  9685. /// </summary>
  9686. /// <param name="dto"></param>
  9687. /// <returns></returns>
  9688. [HttpPost]
  9689. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9690. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9691. {
  9692. try
  9693. {
  9694. string filePath = "";
  9695. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9696. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9697. //int id = 0;
  9698. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9699. // 删除该文件
  9700. try
  9701. {
  9702. System.IO.File.Delete(filePath);
  9703. var result = await _sqlSugar.Updateable<Grp_Customers>().Where(a => a.Id == dto.Id && a.IsDel == 0 && a.Attachment == dto.fileName).SetColumns(a => new Grp_Customers()
  9704. {
  9705. Attachment = "",
  9706. }).ExecuteCommandAsync();
  9707. if (result != 0)
  9708. {
  9709. return Ok(JsonView(true, "成功!"));
  9710. }
  9711. else
  9712. {
  9713. return Ok(JsonView(false, "失败!"));
  9714. }
  9715. }
  9716. catch (Exception)
  9717. {
  9718. 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()
  9719. {
  9720. Attachment = "",
  9721. }).ExecuteCommandAsync();
  9722. if (result != 0)
  9723. {
  9724. return Ok(JsonView(true, "成功!"));
  9725. }
  9726. else
  9727. {
  9728. return Ok(JsonView(false, "失败!"));
  9729. }
  9730. }
  9731. }
  9732. catch (Exception ex)
  9733. {
  9734. return Ok(JsonView(false, "程序错误!"));
  9735. throw;
  9736. }
  9737. }
  9738. /// <summary>
  9739. /// 保险费用操作(删除)
  9740. /// </summary>
  9741. /// <param name="dto"></param>
  9742. /// <returns></returns>
  9743. [HttpPost]
  9744. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9745. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9746. {
  9747. try
  9748. {
  9749. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9750. if (!res)
  9751. {
  9752. return Ok(JsonView(false, "删除失败"));
  9753. }
  9754. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9755. {
  9756. IsDel = 1,
  9757. DeleteUserId = dto.DeleteUserId,
  9758. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9759. }).ExecuteCommandAsync();
  9760. return Ok(JsonView(true, "删除成功!"));
  9761. }
  9762. catch (Exception ex)
  9763. {
  9764. return Ok(JsonView(false, "程序错误!"));
  9765. throw;
  9766. }
  9767. }
  9768. #endregion
  9769. #region 接团客户名单 PageId 104
  9770. /// <summary>
  9771. /// 接团客户名单
  9772. /// 迁移数据(慎用!)
  9773. /// </summary>
  9774. /// <param name="dto"></param>
  9775. /// <returns></returns>
  9776. [HttpPost]
  9777. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9778. public async Task<IActionResult> PostTourClientListChange()
  9779. {
  9780. try
  9781. {
  9782. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9783. //var groupClinetData1
  9784. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9785. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9786. int updateCount = 0;
  9787. if (oldOAClientList.Count > 0)
  9788. {
  9789. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9790. _sqlSugar.BeginTran();
  9791. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9792. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9793. foreach (var item in oldOAClientList)
  9794. {
  9795. int comId = 0;
  9796. string format = "yyyy-MM-dd HH:mm:ss";
  9797. string data11 = "1990-01-01 00:00";
  9798. var data1 = IsValidDate(item.OPdate, format);
  9799. if (data1) data11 = item.OPdate;
  9800. //客户公司验证
  9801. if (!string.IsNullOrEmpty(item.Company))
  9802. {
  9803. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9804. if (clientComInfo == null) // add
  9805. {
  9806. var addInfo = new Crm_CustomerCompany()
  9807. {
  9808. CompanyAbbreviation = "",
  9809. CompanyFullName = item.Company,
  9810. Address = "",
  9811. PostCodes = "",
  9812. LastedOpUserId = item.OPer,
  9813. LastedOpDt = Convert.ToDateTime(data11),
  9814. CreateUserId = item.OPer,
  9815. CreateTime = Convert.ToDateTime(data11),
  9816. IsDel = 0
  9817. };
  9818. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9819. if (comId1 > 0) comId = comId1;
  9820. }
  9821. else comId = clientComInfo.Id;
  9822. }
  9823. //客户人员验证
  9824. int clientId = 0;
  9825. string name = item.LastName + item.Name;
  9826. if (!string.IsNullOrEmpty(name))
  9827. {
  9828. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9829. if (clientInfo == null)
  9830. {
  9831. DateTime? dateTime = null;
  9832. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9833. if (isDt) dateTime = birthDayDt;
  9834. var addInfo1 = new Crm_DeleClient()
  9835. {
  9836. CrmCompanyId = comId,
  9837. DiId = -1,
  9838. LastName = item.LastName,
  9839. FirstName = item.Name,
  9840. OldName = "",
  9841. Pinyin = item.Pinyin,
  9842. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9843. Marriage = 0,
  9844. Phone = item.Phone,
  9845. Job = item.Job,
  9846. BirthDay = dateTime
  9847. };
  9848. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9849. if (clientId1 > 0) clientId = clientId1;
  9850. }
  9851. else clientId = clientInfo.Id;
  9852. }
  9853. if (clientId < 1)
  9854. {
  9855. continue;
  9856. }
  9857. int airType = 0;
  9858. if (item.AirType == "超经舱") airType = 459;
  9859. else if (item.AirType == "公务舱") airType = 458;
  9860. else if (item.AirType == "经济舱") airType = 460;
  9861. else if (item.AirType == "其他") airType = 565;
  9862. else if (item.AirType == "头等舱") airType = 457;
  9863. var _TourClientListEntity = new Grp_TourClientList()
  9864. {
  9865. DiId = item.Diid,
  9866. ClientId = clientId,
  9867. CreateUserId = item.OPer,
  9868. CreateTime = Convert.ToDateTime(data11),
  9869. Remark = item.Remark,
  9870. IsDel = item.Isdel,
  9871. ShippingSpaceTypeId = airType,
  9872. ShippingSpaceSpecialNeeds = item.AirRemark,
  9873. HotelSpecialNeeds = item.RoomType
  9874. };
  9875. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9876. if (_TourClientList > 0)
  9877. {
  9878. updateCount++;
  9879. }
  9880. }
  9881. _sqlSugar.CommitTran();
  9882. }
  9883. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9884. }
  9885. catch (Exception ex)
  9886. {
  9887. _sqlSugar.RollbackTran();
  9888. return Ok(JsonView(false, ex.Message));
  9889. }
  9890. return Ok(JsonView(true));
  9891. }
  9892. private bool IsValidDate(string dateString, string format)
  9893. {
  9894. DateTime dateValue;
  9895. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9896. return valid;
  9897. }
  9898. /// <summary>
  9899. /// 接团客户名单
  9900. /// 根据团组Id查询List
  9901. /// </summary>
  9902. /// <param name="dto"></param>
  9903. /// <returns></returns>
  9904. [HttpPost]
  9905. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9906. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9907. {
  9908. #region 参数验证
  9909. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9910. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9911. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9912. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9913. #region 页面操作权限验证
  9914. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9915. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9916. #endregion
  9917. #endregion
  9918. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9919. if (viewData.Code != 0)
  9920. {
  9921. return Ok(JsonView(false, viewData.Msg));
  9922. }
  9923. return Ok(JsonView(viewData.Data));
  9924. }
  9925. /// <summary>
  9926. /// 接团客户名单
  9927. /// 基础数据 Init
  9928. /// </summary>
  9929. /// <param name="_dto"></param>
  9930. /// <returns></returns>
  9931. [HttpPost]
  9932. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9933. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9934. {
  9935. #region 参数验证
  9936. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9937. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9938. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9939. #region 页面操作权限验证
  9940. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9941. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9942. #endregion
  9943. #endregion
  9944. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9945. if (viewData.Code != 0)
  9946. {
  9947. return Ok(JsonView(false, viewData.Msg));
  9948. }
  9949. return Ok(JsonView(viewData.Data));
  9950. }
  9951. /// <summary>
  9952. /// 接团客户名单
  9953. /// 根据 Id查询 Details
  9954. /// </summary>
  9955. /// <param name="_dto"></param>
  9956. /// <returns></returns>
  9957. [HttpPost]
  9958. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9959. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9960. {
  9961. #region 参数验证
  9962. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9963. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9964. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9965. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9966. #region 页面操作权限验证
  9967. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9968. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9969. #endregion
  9970. #endregion
  9971. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9972. if (viewData.Code != 0)
  9973. {
  9974. return Ok(JsonView(false, viewData.Msg));
  9975. }
  9976. return Ok(JsonView(viewData.Data));
  9977. }
  9978. /// <summary>
  9979. /// 接团客户名单
  9980. /// Add Or Edit
  9981. /// </summary>
  9982. /// <param name="_dto"></param>
  9983. /// <returns></returns>
  9984. [HttpPost]
  9985. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9986. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9987. {
  9988. #region 参数验证
  9989. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9990. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9991. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9992. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9993. #region 页面操作权限验证
  9994. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9995. if (_dto.Id == 0) //添加
  9996. {
  9997. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9998. }
  9999. else if (_dto.Id >= 0) //修改
  10000. {
  10001. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  10002. }
  10003. #endregion
  10004. #endregion
  10005. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  10006. if (viewData.Code != 0)
  10007. {
  10008. return Ok(JsonView(false, viewData.Msg));
  10009. }
  10010. return Ok(JsonView(true));
  10011. }
  10012. /// <summary>
  10013. /// 接团客户名单
  10014. /// AddMultiple(添加多个)
  10015. /// </summary>
  10016. /// <param name="_dto"></param>
  10017. /// <returns></returns>
  10018. [HttpPost]
  10019. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10020. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  10021. {
  10022. #region 参数验证
  10023. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10024. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10025. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10026. #region 页面操作权限验证
  10027. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10028. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10029. #endregion
  10030. #endregion
  10031. var viewData = await _tourClientListRep._AddMultiple(_dto);
  10032. if (viewData.Code != 0)
  10033. {
  10034. return Ok(JsonView(false, viewData.Msg));
  10035. }
  10036. return Ok(JsonView(true));
  10037. }
  10038. /// <summary>
  10039. /// 接团客户名单
  10040. /// Del
  10041. /// </summary>
  10042. /// <param name="_dto"></param>
  10043. /// <returns></returns>
  10044. [HttpPost]
  10045. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10046. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  10047. {
  10048. #region 参数验证
  10049. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10050. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10051. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10052. #region 页面操作权限验证
  10053. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10054. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  10055. #endregion
  10056. #endregion
  10057. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  10058. if (viewData.Code != 0)
  10059. {
  10060. return Ok(JsonView(false, viewData.Msg));
  10061. }
  10062. return Ok(JsonView(true));
  10063. }
  10064. /// <summary>
  10065. /// 接团客户名单
  10066. /// 文件下载 客户名单
  10067. /// </summary>
  10068. /// <param name="_dto"></param>
  10069. /// <returns></returns>
  10070. [HttpPost]
  10071. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10072. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  10073. {
  10074. #region 参数验证
  10075. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10076. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10077. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10078. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10079. #region 页面操作权限验证
  10080. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10081. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10082. #endregion
  10083. #endregion
  10084. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10085. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10086. From Grp_TourClientList tcl
  10087. Left Join
  10088. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10089. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10090. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10091. From Crm_DeleClient dc
  10092. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10093. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10094. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10095. Where dc.IsDel = 0) temp
  10096. On temp.DcId =tcl.ClientId
  10097. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10098. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10099. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10100. //载入模板
  10101. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10102. if (_dto.Language == 1)
  10103. {
  10104. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10105. }
  10106. //载入模板
  10107. var doc = new Document(tempPath);
  10108. DocumentBuilder builder = new DocumentBuilder(doc);
  10109. //获取word里所有表格
  10110. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10111. //获取所填表格的序数
  10112. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10113. var rowStart = tableOne.Rows[0]; //获取第1行
  10114. if (_dto.Language == 0)
  10115. {
  10116. //循环赋值
  10117. for (int i = 0; i < DcList.Count; i++)
  10118. {
  10119. builder.MoveToCell(0, i + 1, 0, 0);
  10120. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10121. builder.MoveToCell(0, i + 1, 1, 0);
  10122. int sex = DcList[i].Sex;
  10123. string sexStr = string.Empty;
  10124. if (sex == 0) sexStr = "男";
  10125. else if (sex == 1) sexStr = "女";
  10126. else sexStr = "未设置";
  10127. builder.Write(sexStr);
  10128. builder.MoveToCell(0, i + 1, 2, 0);
  10129. string birthDay = DcList[i].BirthDay;
  10130. string birthDayStr = string.Empty;
  10131. if (!string.IsNullOrEmpty(birthDay))
  10132. {
  10133. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10134. }
  10135. builder.Write(birthDayStr);
  10136. builder.MoveToCell(0, i + 1, 3, 0);
  10137. string company = "";
  10138. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10139. {
  10140. company = DcList[i].CompanyFullName.ToString();
  10141. }
  10142. builder.Write(company);
  10143. builder.MoveToCell(0, i + 1, 4, 0);
  10144. builder.Write(DcList[i].Job);
  10145. }
  10146. }
  10147. else if (_dto.Language == 1)
  10148. {
  10149. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10150. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10151. //循环赋值
  10152. for (int i = 0; i < DcList.Count; i++)
  10153. {
  10154. string PYName = "";
  10155. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10156. {
  10157. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10158. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10159. PYName = PY_First + " " + PY_Last;
  10160. }
  10161. else
  10162. {
  10163. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10164. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10165. PYName = PY_First + " " + PY_Last;
  10166. }
  10167. builder.MoveToCell(0, i + 1, 0, 0);
  10168. builder.Write(PYName);
  10169. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10170. builder.MoveToCell(0, i + 1, 1, 0);
  10171. builder.Write(sex);
  10172. DateTime birthDt;
  10173. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10174. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : "";
  10175. builder.MoveToCell(0, i + 1, 2, 0);
  10176. builder.Write(birthday);
  10177. string company = "";
  10178. try
  10179. {
  10180. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10181. {
  10182. //查询对照表
  10183. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10184. if (tempCec != null)
  10185. {
  10186. company = tempCec.enName;
  10187. }
  10188. //翻译
  10189. else
  10190. {
  10191. company = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].CompanyFullName.ToString().Trim());
  10192. }
  10193. }
  10194. }
  10195. catch (Exception)
  10196. {
  10197. }
  10198. builder.MoveToCell(0, i + 1, 3, 0);
  10199. builder.Write(company);
  10200. string job = "";
  10201. try
  10202. {
  10203. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10204. {
  10205. //查询对照表
  10206. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10207. if (tempPec != null)
  10208. {
  10209. job = tempPec.enName;
  10210. }
  10211. //翻译
  10212. else
  10213. {
  10214. job = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].Job.ToString().Trim());
  10215. }
  10216. }
  10217. }
  10218. catch (Exception ex)
  10219. {
  10220. }
  10221. builder.MoveToCell(0, i + 1, 4, 0);
  10222. builder.Write(job);
  10223. }
  10224. }
  10225. //删除多余行
  10226. while (tableOne.Rows.Count > DcList.Count + 1)
  10227. {
  10228. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10229. }
  10230. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10231. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10232. doc.Save(fileDir);
  10233. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10234. return Ok(JsonView(true, "操作成功!", Url));
  10235. }
  10236. #endregion
  10237. #region 团组倒推表
  10238. /// <summary>
  10239. /// 倒推表基础数据
  10240. /// Init
  10241. /// </summary>
  10242. /// <param name="dto"></param>
  10243. /// <returns></returns>
  10244. [HttpPost]
  10245. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10246. public async Task<IActionResult> PostInvertedListInit()
  10247. {
  10248. var viewData = await _invertedListRep._Init();
  10249. if (viewData.Code != 0)
  10250. {
  10251. return Ok(JsonView(false, viewData.Msg));
  10252. }
  10253. return Ok(JsonView(viewData.Data));
  10254. }
  10255. /// <summary>
  10256. /// 倒推表
  10257. /// Info
  10258. /// </summary>
  10259. /// <param name="dto"></param>
  10260. /// <returns></returns>
  10261. [HttpPost]
  10262. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10263. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10264. {
  10265. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10266. if (viewData.Code != 0)
  10267. {
  10268. return Ok(JsonView(false, viewData.Msg));
  10269. }
  10270. return Ok(JsonView(viewData.Data));
  10271. }
  10272. /// <summary>
  10273. /// 倒推表
  10274. /// Create
  10275. /// </summary>
  10276. /// <param name="dto"></param>
  10277. /// <returns></returns>
  10278. [HttpPost]
  10279. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10280. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10281. {
  10282. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10283. if (viewData.Code != 0)
  10284. {
  10285. return Ok(JsonView(false, viewData.Msg));
  10286. }
  10287. return Ok(JsonView(viewData.Data));
  10288. }
  10289. /// <summary>
  10290. /// 倒推表
  10291. /// Update
  10292. /// </summary>
  10293. /// <param name="dto"></param>
  10294. /// <returns></returns>
  10295. [HttpPost]
  10296. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10297. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10298. {
  10299. var viewData = await _invertedListRep._Update(dto);
  10300. if (viewData.Code != 0)
  10301. {
  10302. return Ok(JsonView(false, viewData.Msg));
  10303. }
  10304. return Ok(JsonView(viewData.Data));
  10305. }
  10306. /// <summary>
  10307. /// 倒推表
  10308. /// File Download
  10309. /// </summary>
  10310. /// <param name="dto"></param>
  10311. /// <returns></returns>
  10312. [HttpPost]
  10313. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10314. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10315. {
  10316. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10317. if (info2.Code != 0)
  10318. {
  10319. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10320. }
  10321. var info1 = info2.Data as InvertedListInfoView;
  10322. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10323. string teamName = "";
  10324. if (info != null) teamName = info.TeamName;
  10325. //载入模板
  10326. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10327. DocumentBuilder builder = new DocumentBuilder(doc);
  10328. //利用键值对存放数据
  10329. Dictionary<string, string> dic = new Dictionary<string, string>();
  10330. dic.Add("TeamName", teamName);
  10331. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10332. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10333. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10334. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10335. dic.Add("SQRemark", info1.ApprovalRemark);
  10336. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10337. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10338. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10339. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10340. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10341. dic.Add("QZRemark", info1.VisaInformationRemark);
  10342. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10343. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10344. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10345. dic.Add("CQRemark", info1.IssueVisaRemark);
  10346. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10347. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10348. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10349. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10350. #region 填充word模板书签内容
  10351. foreach (var key in dic.Keys)
  10352. {
  10353. builder.MoveToBookmark(key);
  10354. builder.Write(dic[key]);
  10355. }
  10356. #endregion
  10357. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10358. string fileName = $"{teamName}团出行准备流程表.doc";
  10359. string filePath = fileDir + $@"InvertedList/{fileName}";
  10360. doc.Save(filePath);
  10361. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10362. return Ok(JsonView(true, "操作成功!", Url));
  10363. }
  10364. #endregion
  10365. #region 三公签证费用(签证费、代办费)
  10366. /// <summary>
  10367. /// 三公签证费用(签证费、代办费)
  10368. /// List
  10369. /// </summary>
  10370. /// <returns></returns>
  10371. [HttpPost]
  10372. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10373. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10374. {
  10375. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10376. if (_view.Code != 0)
  10377. {
  10378. return Ok(JsonView(false, _view.Msg));
  10379. }
  10380. return Ok(JsonView(true, "操作成功!", _view.Data));
  10381. }
  10382. /// <summary>
  10383. /// 三公签证费用(签证费、代办费)
  10384. /// Add Or Update
  10385. /// </summary>
  10386. /// <returns></returns>
  10387. [HttpPost]
  10388. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10389. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10390. {
  10391. var _view = await _visaFeeInfoRep._Update(_dto);
  10392. if (_view.Code != 0)
  10393. {
  10394. return Ok(JsonView(false, _view.Msg));
  10395. }
  10396. return Ok(JsonView(true, _view.Msg));
  10397. }
  10398. #endregion
  10399. #region 酒店询价
  10400. /// <summary>
  10401. /// 酒店询价
  10402. /// Init
  10403. /// </summary>
  10404. /// <param name="dto"></param>
  10405. /// <returns></returns>
  10406. [HttpPost]
  10407. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10408. public async Task<IActionResult> PostHotelInquiryInit()
  10409. {
  10410. var res = await _hotelInquiryRep._Init();
  10411. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10412. return Ok(JsonView(true, res.Msg, res.Data));
  10413. }
  10414. /// <summary>
  10415. /// 酒店询价
  10416. /// page Item
  10417. /// </summary>
  10418. /// <param name="_dto"></param>
  10419. /// <returns></returns>
  10420. [HttpPost]
  10421. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10422. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10423. {
  10424. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex,_dto.PageSize,_dto.PortType,_dto.DiId);
  10425. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10426. var view = res.Data as PageDataViewBase;
  10427. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10428. }
  10429. /// <summary>
  10430. /// 酒店询价
  10431. /// info
  10432. /// </summary>
  10433. /// <param name="_dto"></param>
  10434. /// <returns></returns>
  10435. [HttpPost]
  10436. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10437. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10438. {
  10439. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10440. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10441. return Ok(JsonView(true, res.Msg, res.Data));
  10442. }
  10443. /// <summary>
  10444. /// 酒店询价
  10445. /// Add Or Edit
  10446. /// </summary>
  10447. /// <param name="_dto"></param>
  10448. /// <returns></returns>
  10449. [HttpPost]
  10450. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10451. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10452. {
  10453. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10454. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10455. return Ok(JsonView(true, res.Msg, res.Data));
  10456. }
  10457. /// <summary>
  10458. /// 酒店询价
  10459. /// Del
  10460. /// </summary>
  10461. /// <param name="_dto"></param>
  10462. /// <returns></returns>
  10463. [HttpPost]
  10464. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10465. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10466. {
  10467. var res = await _hotelInquiryRep._Del(_dto.Id,_dto.DeleteUserId);
  10468. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10469. return Ok(JsonView(true, res.Msg, res.Data));
  10470. }
  10471. #endregion
  10472. // /// <summary>
  10473. // ///
  10474. // /// </summary>
  10475. // /// <param name="_dto"></param>
  10476. // /// <returns></returns>
  10477. // [HttpPost]
  10478. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10479. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  10480. // {
  10481. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  10482. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  10483. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  10484. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  10485. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  10486. // dic_psg.Add("客人", 974);
  10487. // dic_psg.Add("司机", 975);
  10488. // dic_psg.Add("导游", 976);
  10489. // dic_psg.Add("公司内部人员", 977);
  10490. // dic_psg.Add("司机/导游/公司内部人员", 978);
  10491. // foreach (var item in list_visa)
  10492. // {
  10493. // Grp_VisaInfo temp = new Grp_VisaInfo();
  10494. // temp.Id = item.Id;
  10495. // temp.DIId = item.DIId;
  10496. // temp.VisaClient = item.VisaClient;
  10497. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  10498. // temp.VisaCurrency = item.VisaCurrency;
  10499. // temp.IsThird = item.IsThird;
  10500. // if (dic_psg.ContainsKey(item.PassengerType))
  10501. // {
  10502. // temp.PassengerType = dic_psg[item.PassengerType];
  10503. // }
  10504. // else {
  10505. // temp.PassengerType = -1;
  10506. // }
  10507. // temp.VisaNumber = item.VisaNumber;
  10508. // temp.VisaFreeNumber = item.VisaFreeNumber;
  10509. // temp.CreateUserId = item.Operators;
  10510. // DateTime dt_ct;
  10511. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  10512. // if (b_ct)
  10513. // {
  10514. // temp.CreateTime = dt_ct;
  10515. // }
  10516. // else
  10517. // {
  10518. // temp.CreateTime = DateTime.Now;
  10519. // }
  10520. // temp.DeleteTime = "";
  10521. // temp.DeleteUserId = 0;
  10522. // temp.Remark = item.Remark;
  10523. // if (string.IsNullOrEmpty(temp.Remark)) {
  10524. // temp.Remark = "";
  10525. // }
  10526. // temp.IsDel = item.IsDel;
  10527. // temp.VisaDescription = item.VisaAttachment;
  10528. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  10529. //([Id]
  10530. // ,[DIId]
  10531. // ,[VisaClient]
  10532. // ,[VisaPrice]
  10533. // ,[VisaCurrency]
  10534. // ,[IsThird]
  10535. // ,[PassengerType]
  10536. // ,[VisaNumber]
  10537. // ,[VisaFreeNumber]
  10538. // ,[CreateUserId]
  10539. // ,[CreateTime]
  10540. // ,[DeleteTime]
  10541. // ,[DeleteUserId]
  10542. // ,[Remark]
  10543. // ,[IsDel]
  10544. // ,[visaDescription])
  10545. // VALUES
  10546. // ({0},{1},'{2}',{3},{4}
  10547. //,{5},{6},{7},{8},{9}
  10548. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  10549. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  10550. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  10551. //);
  10552. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  10553. // }
  10554. // return Ok(JsonView(true, "操作成功!"));
  10555. // }
  10556. /// <summary>
  10557. /// 123132123
  10558. /// </summary>
  10559. /// <param name="_dto"></param>
  10560. /// <returns></returns>
  10561. [HttpPost]
  10562. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10563. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  10564. {
  10565. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  10566. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  10567. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  10568. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  10569. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  10570. dicDetail.Add(789, 1034);
  10571. dicDetail.Add(790, 1035);
  10572. dicDetail.Add(791, 1036);
  10573. dicDetail.Add(792, 1037);
  10574. dicDetail.Add(793, 1038);
  10575. dicDetail.Add(794, 1039);
  10576. dicDetail.Add(795, 1040);
  10577. dicDetail.Add(796, 1041);
  10578. dicDetail.Add(797, 1042);
  10579. dicDetail.Add(798, 1043);
  10580. dicDetail.Add(801, 1044);
  10581. dicDetail.Add(802, 1045);
  10582. dicDetail.Add(803, 1046);
  10583. Dictionary<int, int> dic = new Dictionary<int, int>();
  10584. dic.Add(806, 1027);
  10585. dic.Add(807, 1028);
  10586. dic.Add(808, 1029);
  10587. dic.Add(809, 1030);
  10588. dic.Add(810, 1031);
  10589. dic.Add(811, 1032);
  10590. dic.Add(812, 1033);
  10591. foreach (var item in list_visa)
  10592. {
  10593. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  10594. temp.Coefficient = item.coefficient;
  10595. DateTime dtCrt;
  10596. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  10597. if (b1)
  10598. {
  10599. temp.CreateTime = dtCrt;
  10600. }
  10601. else
  10602. {
  10603. temp.CreateTime = DateTime.Now;
  10604. }
  10605. temp.CreateUserId = item.Operators;
  10606. temp.DeleteTime = "";
  10607. temp.DeleteUserId = 0;
  10608. temp.DiId = int.Parse(item.DIID);
  10609. temp.FilePath = item.FilePath;
  10610. temp.IsDel = item.IsDel;
  10611. temp.Price = item.Price;
  10612. temp.PriceCount = 1;
  10613. temp.PriceCurrency = item.Currency;
  10614. int detailId = 0;
  10615. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  10616. {
  10617. detailId = dicDetail[item.PriceTypeDetail];
  10618. }
  10619. temp.PriceDetailType = detailId;
  10620. temp.PriceDt = DateTime.Now;
  10621. temp.PriceName = item.PriceName;
  10622. temp.PriceSum = item.Price;
  10623. int tid = 0;
  10624. if (dic.ContainsKey(item.PriceType))
  10625. {
  10626. tid = dic[item.PriceType];
  10627. }
  10628. temp.PriceType = tid;
  10629. temp.Remark = item.Remark;
  10630. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  10631. }
  10632. return Ok(JsonView(true, "操作成功!"));
  10633. }
  10634. }
  10635. }