GroupsController.cs 533 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. namespace OASystem.API.Controllers
  78. {
  79. /// <summary>
  80. /// 团组相关
  81. /// </summary>
  82. //[Authorize]
  83. [Route("api/[controller]/[action]")]
  84. public class GroupsController : ControllerBase
  85. {
  86. private readonly GrpScheduleRepository _grpScheduleRep;
  87. private readonly IMapper _mapper;
  88. private readonly DelegationInfoRepository _groupRepository;
  89. private readonly TaskAssignmentRepository _taskAssignmentRep;
  90. private readonly AirTicketResRepository _airTicketResRep;
  91. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  92. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  93. private readonly DelegationEnDataRepository _delegationEnDataRep;
  94. private readonly DelegationVisaRepository _delegationVisaRep;
  95. private readonly VisaPriceRepository _visaPriceRep;
  96. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  97. private readonly HotelPriceRepository _hotelPriceRep;
  98. private readonly CustomersRepository _customersRep;
  99. private readonly MessageRepository _message;
  100. private readonly SqlSugarClient _sqlSugar;
  101. private readonly TourClientListRepository _tourClientListRep;
  102. private readonly TeamRateRepository _teamRateRep;
  103. #region 成本相关
  104. private readonly CheckBoxsRepository _checkBoxs;
  105. private readonly GroupCostRepository _GroupCostRepository;
  106. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  107. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  108. #endregion
  109. private readonly SetDataRepository _setDataRep;
  110. private string url;
  111. private string path;
  112. private readonly EnterExitCostRepository _enterExitCostRep;
  113. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  114. private readonly UsersRepository _usersRep;
  115. private readonly IJuHeApiService _juHeApi;
  116. private readonly InvertedListRepository _invertedListRep;
  117. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  118. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  119. private readonly HotelInquiryRepository _hotelInquiryRep;
  120. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  121. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  122. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  123. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  124. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  125. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  126. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  127. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep)
  128. {
  129. _mapper = mapper;
  130. _grpScheduleRep = grpScheduleRep;
  131. _groupRepository = groupRepository;
  132. _taskAssignmentRep = taskAssignmentRep;
  133. _airTicketResRep = airTicketResRep;
  134. _sqlSugar = sqlSugar;
  135. url = AppSettingsHelper.Get("ExcelBaseUrl");
  136. path = AppSettingsHelper.Get("ExcelBasePath");
  137. if (!System.IO.Directory.Exists(path))
  138. {
  139. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  140. }
  141. _decreasePaymentsRep = decreasePaymentsRep;
  142. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  143. _delegationEnDataRep = delegationEnDataRep;
  144. _enterExitCostRep = enterExitCostRep;
  145. _delegationVisaRep = delegationVisaRep;
  146. _message = message;
  147. _visaPriceRep = visaPriceRep;
  148. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  149. _checkBoxs = checkBoxs;
  150. _GroupCostRepository = GroupCostRepository;
  151. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  152. _GroupCostParameterRepository = GroupCostParameterRepository;
  153. _hotelPriceRep = hotelPriceRep;
  154. _customersRep = customersRep;
  155. _setDataRep = setDataRep;
  156. _tourClientListRep = tourClientListRep;
  157. _teamRateRep = teamRateRep;
  158. _hubContext = hubContext;
  159. _usersRep = usersRep;
  160. _juHeApi = juHeApi;
  161. _invertedListRep = invertedListRep;
  162. _visaFeeInfoRep = visaFeeInfoRep;
  163. _ticketBlackCodeRep = ticketBlackCodeRep;
  164. _hotelInquiryRep = hotelInquiryRep;
  165. }
  166. #region 流程管控
  167. /// <summary>
  168. /// 获取团组流程管控信息
  169. /// </summary>
  170. /// <param name="paras">参数Json字符串</param>
  171. /// <returns></returns>
  172. [HttpPost]
  173. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  174. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  175. {
  176. if (string.IsNullOrEmpty(_jsonDto.Paras))
  177. {
  178. return Ok(JsonView(false, "参数为空"));
  179. }
  180. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  181. if (_ScheduleDto != null)
  182. {
  183. if (_ScheduleDto.SearchType == 2)//获取列表
  184. {
  185. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  186. return Ok(JsonView(_grpScheduleViewList));
  187. }
  188. else//获取对象
  189. {
  190. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  191. if (_grpScheduleView != null)
  192. {
  193. return Ok(JsonView(_grpScheduleView));
  194. }
  195. }
  196. }
  197. else
  198. {
  199. return Ok(JsonView(false, "参数反序列化失败"));
  200. }
  201. return Ok(JsonView(false, "暂无数据!"));
  202. }
  203. /// <summary>
  204. /// 修改团组流程管控详细表数据
  205. /// </summary>
  206. /// <param name="paras"></param>
  207. /// <returns></returns>
  208. [HttpPost]
  209. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  210. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  211. {
  212. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  213. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  214. .SetColumns(it => it.Duty == _detail.Duty)
  215. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  216. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  217. .SetColumns(it => it.JobContent == _detail.JobContent)
  218. .SetColumns(it => it.Remark == _detail.Remark)
  219. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  220. .Where(s => s.Id == dto.Id)
  221. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  222. .ExecuteCommandAsync();
  223. if (result > 0)
  224. {
  225. return Ok(JsonView(true, "保存成功!"));
  226. }
  227. return Ok(JsonView(false, "保存失败!"));
  228. }
  229. /// <summary>
  230. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  231. /// </summary>
  232. /// <param name="dto"></param>
  233. /// <returns></returns>
  234. [HttpPost]
  235. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  236. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  237. {
  238. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  239. _detail.IsDel = 1;
  240. _detail.DeleteUserId = dto.Duty;
  241. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  242. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  243. .SetColumns(it => it.IsDel == _detail.IsDel)
  244. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  245. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  246. .Where(it => it.Id == dto.Id)
  247. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  248. //.WhereColumns(s => s.Id == dto.Id)
  249. .ExecuteCommandAsync();
  250. if (result > 0)
  251. {
  252. return Ok(JsonView(true, "删除成功!"));
  253. }
  254. return Ok(JsonView(false, "删除失败!"));
  255. }
  256. /// <summary>
  257. /// 增加团组流程管控详细表数据
  258. /// </summary>
  259. /// <param name="dto"></param>
  260. /// <returns></returns>
  261. [HttpPost]
  262. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  263. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  264. {
  265. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  266. if (DateTime.Now < _detail.ExpectBeginDt)
  267. {
  268. _detail.StepStatus = 0;
  269. }
  270. else
  271. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  272. _detail.StepStatus = 1;
  273. }
  274. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  275. if (result > 0)
  276. {
  277. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  278. return Ok(JsonView(true, "添加成功!", _result));
  279. }
  280. return Ok(JsonView(false, "添加失败!"));
  281. }
  282. #endregion
  283. #region 团组基本信息
  284. /// <summary>
  285. /// 接团信息列表
  286. /// </summary>
  287. /// <param name="dto">团组列表请求dto</param>
  288. /// <returns></returns>
  289. [HttpPost]
  290. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  291. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  292. {
  293. var groupData = await _groupRepository.GetGroupList(dto);
  294. if (groupData.Code != 0)
  295. {
  296. return Ok(JsonView(false, groupData.Msg));
  297. }
  298. return Ok(JsonView(groupData.Data));
  299. }
  300. /// <summary>
  301. /// 接团信息列表 Page
  302. /// </summary>
  303. /// <param name="dto">团组列表请求dto</param>
  304. /// <returns></returns>
  305. [HttpPost]
  306. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  307. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  308. {
  309. #region 参数验证
  310. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  311. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  312. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  313. #region 页面操作权限验证
  314. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  315. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  316. #endregion
  317. #endregion
  318. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  319. {
  320. string sqlWhere = string.Empty;
  321. if (dto.IsSure == 0) //未完成
  322. {
  323. sqlWhere += string.Format(@" And IsSure = 0");
  324. }
  325. else if (dto.IsSure == 1) //已完成
  326. {
  327. sqlWhere += string.Format(@" And IsSure = 1");
  328. }
  329. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  330. {
  331. string tj = dto.SearchCriteria;
  332. sqlWhere += string.Format(@"And (ssd.Name Like '%{0}%' Or TeamName Like '%{1}%' Or ClientName Like '%{2}%' Or ClientName Like '%{3}%' Or su.CnName Like '%{4}%')",
  333. tj, tj, tj, tj, tj);
  334. }
  335. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  336. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  337. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  338. JietuanOperator,IsSure,CreateTime
  339. From (
  340. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  341. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  342. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  343. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  344. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  345. From Grp_DelegationInfo gdi
  346. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  347. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  348. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  349. Where gdi.IsDel = 0 {0}
  350. ) temp", sqlWhere);
  351. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  352. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  353. #region 处理所属部门
  354. /*
  355. * 1.sq 和 gyy 等显示 市场部
  356. * 2.王鸽和主管及张总还有管理员号统一国交部
  357. * 2-1. 4 管理员 ,21 张海麟
  358. */
  359. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  360. List<int> userIds1 = new List<int>() { 4, 21 };
  361. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  362. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  363. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  364. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  365. .ToList();
  366. foreach (var item in _DelegationList)
  367. {
  368. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  369. }
  370. #endregion
  371. var _view = new
  372. {
  373. PageFuncAuth = pageFunAuthView,
  374. Data = _DelegationList
  375. };
  376. return Ok(JsonView(true, "查询成功!", _view, total));
  377. }
  378. else
  379. {
  380. return Ok(JsonView(false, "查询失败"));
  381. }
  382. }
  383. /// <summary>
  384. /// 团组列表
  385. /// </summary>
  386. /// <returns></returns>
  387. [HttpPost]
  388. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  389. {
  390. #region 参数验证
  391. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  392. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  393. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  394. #region 页面操作权限验证
  395. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  396. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  397. #endregion
  398. #endregion
  399. if (dto.PortType != 1 && dto.PortType != 2)
  400. {
  401. return Ok(JsonView(false, "查询失败!"));
  402. }
  403. string orderbyStr = "order by gdi.CreateTime Desc";
  404. string sqlWhere = string.Empty;
  405. if (dto.IsSure == 0) //未完成
  406. {
  407. sqlWhere += string.Format(@" And IsSure = 0");
  408. }
  409. else if (dto.IsSure == 1) //已完成
  410. {
  411. sqlWhere += string.Format(@" And IsSure = 1");
  412. }
  413. //团组类型
  414. if (dto.TeamDid > 0)
  415. {
  416. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  417. }
  418. //团组名称
  419. if (!string.IsNullOrEmpty(dto.TeamName))
  420. {
  421. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  422. }
  423. //客户名称
  424. if (!string.IsNullOrEmpty(dto.ClientName))
  425. {
  426. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  427. }
  428. //客户单位
  429. if (!string.IsNullOrEmpty(dto.ClientUnit))
  430. {
  431. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  432. }
  433. //出访时间
  434. if (!string.IsNullOrEmpty(dto.visitDataTime))
  435. {
  436. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  437. orderbyStr = "order by gdi.VisitDate";
  438. }
  439. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  440. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  441. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  442. JietuanOperator,IsSure,CreateTime
  443. From (
  444. Select row_number() over({0}) as Row_Number,
  445. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  446. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  447. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  448. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  449. From Grp_DelegationInfo gdi
  450. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  451. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  452. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  453. Where gdi.IsDel = 0 {1}
  454. ) temp ", orderbyStr, sqlWhere);
  455. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  456. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  457. #region 处理所属部门
  458. /*
  459. * 1.sq 和 gyy 等显示 市场部
  460. * 2.王鸽和主管及张总还有管理员号统一国交部
  461. * 2-1. 4 管理员 ,21 张海麟
  462. */
  463. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  464. List<int> userIds1 = new List<int>() { 4, 21 };
  465. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  466. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  467. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  468. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  469. .ToList();
  470. foreach (var item in _DelegationList)
  471. {
  472. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  473. }
  474. #endregion
  475. var _view = new
  476. {
  477. PageFuncAuth = pageFunAuthView,
  478. Data = _DelegationList
  479. };
  480. return Ok(JsonView(true, "查询成功!", _view, total));
  481. }
  482. /// <summary>
  483. /// 接团信息详情
  484. /// </summary>
  485. /// <param name="dto">团组info请求dto</param>
  486. /// <returns></returns>
  487. [HttpPost]
  488. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  489. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  490. {
  491. var groupData = await _groupRepository.GetGroupInfo(dto);
  492. if (groupData.Code != 0)
  493. {
  494. return Ok(JsonView(false, groupData.Msg));
  495. }
  496. return Ok(JsonView(groupData.Data));
  497. }
  498. /// <summary>
  499. /// 接团信息 编辑添加
  500. /// 基础信息数据源
  501. /// </summary>
  502. /// <param name="dto"></param>
  503. /// <returns></returns>
  504. [HttpPost]
  505. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  506. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  507. {
  508. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  509. if (groupData.Code != 0)
  510. {
  511. return Ok(JsonView(false, groupData.Msg));
  512. }
  513. return Ok(JsonView(groupData.Data));
  514. }
  515. /// <summary>
  516. /// 接团信息 操作(增改)
  517. /// </summary>
  518. /// <param name="dto"></param>
  519. /// <returns></returns>
  520. [HttpPost]
  521. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  522. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  523. {
  524. try
  525. {
  526. var groupData = await _groupRepository.GroupOperation(dto);
  527. if (groupData.Code != 0)
  528. {
  529. return Ok(JsonView(false, groupData.Msg));
  530. }
  531. int diId = 0;
  532. //添加时 默认加入团组汇率
  533. if (dto.Status == 1) //添加
  534. {
  535. diId = groupData.Data;
  536. //添加默认币种
  537. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  538. //默认分配权限
  539. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  540. //消息提示 王鸽 主管号
  541. List<int> _managerIds = new List<int>() { 22, 32 };
  542. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  543. if (userIds.Count > 0)
  544. {
  545. userIds.Add(208);
  546. //创建团组管控
  547. GroupStepForDelegation.CreateWorkStep(diId);
  548. //发送消息
  549. string groupName = dto.TeamName;
  550. string createGroupUser = string.Empty;
  551. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  552. if (userInfo != null) createGroupUser = userInfo.CnName;
  553. string title = $"系统通知";
  554. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  555. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  556. }
  557. //默认创建倒推表
  558. await _invertedListRep._Create(dto.UserId, diId);
  559. }
  560. else if (dto.Status == 2)
  561. {
  562. diId = dto.Id;
  563. }
  564. return Ok(JsonView(true, "操作成功!", diId));
  565. }
  566. catch (Exception ex)
  567. {
  568. Logs("[response]" + JsonConvert.SerializeObject(dto));
  569. Logs(ex.Message);
  570. return Ok(JsonView(false, ex.Message));
  571. }
  572. }
  573. /// <summary>
  574. /// 接团流程操作(增改)
  575. /// 安卓端使用 建团时添加客户名单
  576. /// </summary>
  577. /// <param name="dto"></param>
  578. /// <returns></returns>
  579. [HttpPost]
  580. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  581. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  582. {
  583. try
  584. {
  585. #region 参数验证
  586. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  587. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  588. #region 页面操作权限验证
  589. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  590. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  591. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  592. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  593. #endregion
  594. #endregion
  595. _sqlSugar.BeginTran();
  596. var _dto = new GroupOperationDto();
  597. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  598. var groupData = await _groupRepository.GroupOperation(_dto);
  599. if (groupData.Code != 0)
  600. {
  601. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  602. }
  603. int diId = 0;
  604. //添加时 默认加入团组汇率
  605. if (dto.Status == 1) //添加
  606. {
  607. diId = groupData.Data;
  608. //添加默认币种
  609. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  610. //默认分配权限
  611. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  612. //消息提示 王鸽 主管号
  613. List<int> _managerIds = new List<int>() { 22, 32 };
  614. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  615. if (userIds.Count > 0)
  616. {
  617. userIds.Add(208);
  618. //创建团组管控
  619. GroupStepForDelegation.CreateWorkStep(diId);
  620. //发送消息
  621. string groupName = dto.TeamName;
  622. string createGroupUser = string.Empty;
  623. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  624. if (userInfo != null) createGroupUser = userInfo.CnName;
  625. string title = $"系统通知";
  626. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  627. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  628. }
  629. }
  630. if (dto.Status == 2)
  631. {
  632. diId = dto.Id;
  633. if (diId == 0)
  634. {
  635. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  636. }
  637. }
  638. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  639. if (viewData.Code != 0)
  640. {
  641. _sqlSugar.RollbackTran();
  642. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  643. }
  644. _sqlSugar.CommitTran();
  645. return Ok(JsonView(true, "添加成功"));
  646. }
  647. catch (Exception ex)
  648. {
  649. _sqlSugar.RollbackTran();
  650. return Ok(JsonView(false, ex.Message));
  651. }
  652. }
  653. /// <summary>
  654. /// 接团信息 操作(删除)
  655. /// </summary>
  656. /// <param name="dto"></param>
  657. /// <returns></returns>
  658. [HttpPost]
  659. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  660. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  661. {
  662. try
  663. {
  664. var groupData = await _groupRepository.GroupDel(dto);
  665. if (groupData.Code != 0)
  666. {
  667. return Ok(JsonView(false, groupData.Msg));
  668. }
  669. return Ok(JsonView(true));
  670. }
  671. catch (Exception ex)
  672. {
  673. Logs("[response]" + JsonConvert.SerializeObject(dto));
  674. Logs(ex.Message);
  675. return Ok(JsonView(false, ex.Message));
  676. }
  677. }
  678. /// <summary>
  679. /// 获取团组销售报价号
  680. /// 团组添加时 使用
  681. /// </summary>
  682. /// <returns></returns>
  683. [HttpPost]
  684. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  685. public async Task<IActionResult> GetGroupSalesQuoteNo()
  686. {
  687. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  688. if (groupData.Code != 0)
  689. {
  690. return Ok(JsonView(false, groupData.Msg));
  691. }
  692. object salesQuoteNo = new
  693. {
  694. SalesQuoteNo = groupData.Data
  695. };
  696. return Ok(JsonView(salesQuoteNo));
  697. }
  698. /// <summary>
  699. /// 设置确认出团
  700. /// </summary>
  701. /// <param name="dto"></param>
  702. /// <returns></returns>
  703. [HttpPost]
  704. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  705. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  706. {
  707. var groupData = await _groupRepository.ConfirmationGroup(dto);
  708. if (groupData.Code != 0)
  709. {
  710. return Ok(JsonView(false, groupData.Msg));
  711. }
  712. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  713. #region OA消息推送
  714. try
  715. {
  716. string groupName = groupInfo.TeamName;
  717. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  718. List<int> userIds = new List<int>();
  719. listUser.ForEach(s => userIds.Add(s.Id));
  720. string title = $"系统通知";
  721. string content = $"团组[{groupName}]已确认出团!";
  722. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  723. }
  724. catch (Exception ex)
  725. {
  726. }
  727. #endregion
  728. #region 应用推送
  729. try
  730. {
  731. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  732. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  733. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  734. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  735. {
  736. List<string> userList = new List<string>() { users.QiyeChatUserId };
  737. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  738. }
  739. }
  740. catch (Exception ex)
  741. {
  742. }
  743. #endregion
  744. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  745. return Ok(JsonView(true, "操作成功!", groupData.Data));
  746. }
  747. /// <summary>
  748. /// 获取团组名称data And 签证国别Data
  749. /// </summary>
  750. /// <param name="dto"></param>
  751. /// <returns></returns>
  752. [HttpPost]
  753. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  754. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  755. {
  756. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  757. if (groupData.Code != 0)
  758. {
  759. return Ok(JsonView(false, groupData.Msg));
  760. }
  761. return Ok(JsonView(groupData.Data));
  762. }
  763. /// <summary>
  764. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  765. /// </summary>
  766. /// <returns></returns>
  767. [HttpPost]
  768. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  769. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  770. {
  771. try
  772. {
  773. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  774. if (groupData.Code != 0)
  775. {
  776. return Ok(JsonView(false, groupData.Msg));
  777. }
  778. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  779. }
  780. catch (Exception ex)
  781. {
  782. return Ok(JsonView(false, "程序错误!"));
  783. throw;
  784. }
  785. }
  786. #endregion
  787. #region 团组&签证
  788. /// <summary>
  789. /// 根据团组Id获取签证客户信息List
  790. /// </summary>
  791. /// <param name="dto">请求dto</param>
  792. /// <returns></returns>
  793. [HttpPost]
  794. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  795. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  796. {
  797. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  798. if (groupData.Code != 0)
  799. {
  800. return Ok(JsonView(false, groupData.Msg));
  801. }
  802. return Ok(JsonView(groupData.Data));
  803. }
  804. /// <summary>
  805. /// IOS获取团组签证拍照上传进度01(团组列表)
  806. /// </summary>
  807. /// <param name="dto">请求dto</param>
  808. /// <returns></returns>
  809. [HttpPost]
  810. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  811. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  812. {
  813. if (dto == null)
  814. {
  815. return Ok(JsonView(false, "参数为空"));
  816. }
  817. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  818. return Ok(JsonView(visaList));
  819. }
  820. /// <summary>
  821. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  822. /// </summary>
  823. /// <returns></returns>
  824. [HttpPost]
  825. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  826. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  827. {
  828. if (dto == null)
  829. {
  830. return Ok(JsonView(false, "请求错误:"));
  831. }
  832. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  833. return Ok(JsonView(list));
  834. }
  835. /// <summary>
  836. /// IOS获取团组签证拍照上传进度03(相册)
  837. /// </summary>
  838. /// <returns></returns>
  839. [HttpPost]
  840. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  841. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  842. {
  843. if (dto == null)
  844. {
  845. return Ok(JsonView(false, "请求错误:"));
  846. }
  847. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  848. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  849. list.ForEach(s => s.url = url);
  850. return Ok(JsonView(list));
  851. }
  852. /// <summary>
  853. /// IOS获取团组签证拍照上传进度04(图片上传)
  854. /// </summary>
  855. /// <param name="dto"></param>
  856. /// <returns></returns>
  857. [HttpPost]
  858. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  859. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  860. {
  861. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  862. //if (!string.IsNullOrEmpty(result))
  863. //{
  864. //}
  865. //else {
  866. // return Ok(JsonView(false, "上传失败"));
  867. //}
  868. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  869. int sucNum = 0;
  870. try
  871. {
  872. foreach (var item in dto.base64DataList)
  873. {
  874. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  875. string result = decodeBase64ToImage(item, imageName);
  876. if (!string.IsNullOrEmpty(result))
  877. {
  878. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  879. pic.CreateUserId = dto.CreateUserId;
  880. pic.PicName = imageName;
  881. pic.PicPath = result;
  882. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  883. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  884. if (insertResult > 0)
  885. {
  886. sucNum++;
  887. }
  888. }
  889. }
  890. }
  891. catch (Exception ex)
  892. {
  893. return Ok(JsonView(false, ex.Message));
  894. }
  895. string msg = string.Format(@"成功上传{0}张", sucNum);
  896. return Ok(JsonView(true, msg));
  897. }
  898. private string decodeBase64ToImage(string base64DataURL, string imgName)
  899. {
  900. string filename = "";//声明一个string类型的相对路径
  901. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  902. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  903. try//会有异常抛出,try,catch一下
  904. {
  905. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  906. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  907. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  908. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  909. //文件名称
  910. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  911. //上传的文件的路径
  912. string filePath = "";
  913. if (!Directory.Exists(fileDir))
  914. {
  915. Directory.CreateDirectory(fileDir);
  916. }
  917. //上传的文件的路径
  918. filePath = fileDir + filename;
  919. //string url = HttpRuntime.AppDomainAppPath.ToString();
  920. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  921. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  922. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  923. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  924. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  925. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  926. ms.Close();//关闭当前流,并释放所有与之关联的资源
  927. bitmap.Dispose();
  928. }
  929. catch (Exception e)
  930. {
  931. string massage = e.Message;
  932. Logs("IOS图片上传Error:" + massage);
  933. //filename = e.Message;
  934. }
  935. return filename;//返回相对路径
  936. }
  937. /// <summary>
  938. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  939. /// </summary>
  940. /// <param name="dto"></param>
  941. /// <returns></returns>
  942. [HttpPost]
  943. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  944. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  945. {
  946. if (dto == null)
  947. {
  948. return Ok(JsonView(false, "请求错误:"));
  949. }
  950. string msg = "参数错误";
  951. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  952. {
  953. try
  954. {
  955. //_delegationVisaRep.BeginTran();
  956. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  957. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  958. .Where(s => s.Id == dto.visaProgressCustomerId)
  959. .ExecuteCommandAsync();
  960. if (updCount > 0 && dto.publishCode == 1)
  961. {
  962. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  963. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  964. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  965. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  966. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  967. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  968. if (groupData == null)
  969. {
  970. _delegationVisaRep.RollbackTran();
  971. }
  972. string title = string.Format(@"[签证进度更新]");
  973. string content = string.Format(@"测试文本");
  974. bool rst = await _message.AddMsg(new MessageDto()
  975. {
  976. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  977. IssuerId = dto.publisher,
  978. Title = title,
  979. Content = content,
  980. ReleaseTime = DateTime.Now,
  981. UIdList = new List<int> {
  982. 234
  983. }
  984. });
  985. if (rst)
  986. {
  987. return Ok(JsonView(true, "发送通知成功"));
  988. }
  989. }
  990. //_delegationVisaRep.CommitTran();
  991. }
  992. catch (Exception)
  993. {
  994. //_delegationVisaRep.RollbackTran();
  995. }
  996. }
  997. return Ok(JsonView(true, msg));
  998. }
  999. #endregion
  1000. #region 团组任务分配
  1001. /// <summary>
  1002. /// 团组任务分配初始化
  1003. /// </summary>
  1004. /// <param name="dto"></param>
  1005. /// <returns></returns>
  1006. [HttpPost]
  1007. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1008. public async Task<IActionResult> GetTaskAssignmen()
  1009. {
  1010. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1011. if (groupData.Code != 0)
  1012. {
  1013. return Ok(JsonView(false, groupData.Msg));
  1014. }
  1015. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1016. }
  1017. /// <summary>
  1018. /// 团组任务分配查询
  1019. /// </summary>
  1020. /// <param name="dto"></param>
  1021. /// <returns></returns>
  1022. [HttpPost]
  1023. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1024. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1025. {
  1026. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1027. if (groupData.Code != 0)
  1028. {
  1029. return Ok(JsonView(false, groupData.Msg));
  1030. }
  1031. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1032. }
  1033. /// <summary>
  1034. /// 团组任务分配操作
  1035. /// </summary>
  1036. /// <param name="dto"></param>
  1037. /// <returns></returns>
  1038. [HttpPost]
  1039. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1040. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1041. {
  1042. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1043. if (groupData.Code != 0)
  1044. {
  1045. return Ok(JsonView(false, groupData.Msg));
  1046. }
  1047. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1048. }
  1049. #endregion
  1050. #region 团组费用审核
  1051. /// <summary>
  1052. /// 费用审核
  1053. /// 团组列表 Page
  1054. /// </summary>
  1055. /// <param name="_dto">团组列表请求dto</param>
  1056. /// <returns></returns>
  1057. [HttpPost]
  1058. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1059. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1060. {
  1061. #region 参数验证
  1062. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1063. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1064. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1065. #region 页面操作权限验证
  1066. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1067. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1068. #endregion
  1069. #endregion
  1070. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1071. {
  1072. string sqlWhere = string.Empty;
  1073. if (_dto.IsSure == 0) //未完成
  1074. {
  1075. sqlWhere += string.Format(@" And IsSure = 0");
  1076. }
  1077. else if (_dto.IsSure == 1) //已完成
  1078. {
  1079. sqlWhere += string.Format(@" And IsSure = 1");
  1080. }
  1081. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1082. {
  1083. string tj = _dto.SearchCriteria;
  1084. sqlWhere += string.Format(@"And (ssd.Name Like '%{0}%' Or TeamName Like '%{1}%' Or ClientName Like '%{2}%' Or ClientName Like '%{3}%' Or su.CnName Like '%{4}%')",
  1085. tj, tj, tj, tj, tj);
  1086. }
  1087. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1088. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1089. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1090. From (
  1091. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1092. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1093. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1094. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1095. From Grp_DelegationInfo gdi
  1096. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1097. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1098. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1099. Where gdi.IsDel = 0 {0}
  1100. ) temp ", sqlWhere);
  1101. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1102. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1103. var _view = new
  1104. {
  1105. PageFuncAuth = pageFunAuthView,
  1106. Data = _DelegationList
  1107. };
  1108. return Ok(JsonView(true, "查询成功!", _view, total));
  1109. }
  1110. else
  1111. {
  1112. return Ok(JsonView(false, "查询失败"));
  1113. }
  1114. }
  1115. /// <summary>
  1116. /// 获取团组费用审核
  1117. /// </summary>
  1118. /// <param name="paras">参数Json字符串</param>
  1119. /// <returns></returns>
  1120. [HttpPost]
  1121. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1122. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1123. {
  1124. try
  1125. {
  1126. #region 参数验证
  1127. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1128. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1129. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1130. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1131. #region 页面操作权限验证
  1132. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1133. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1134. #endregion
  1135. #endregion
  1136. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1137. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1138. #region 费用清单
  1139. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1140. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1141. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1142. List<Grp_CreditCardPayment> entityList = _groupRepository
  1143. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1144. .Where(exp.ToExpression())
  1145. .ToList();
  1146. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1147. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1148. /*
  1149. * 76://酒店预订
  1150. */
  1151. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1152. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1153. .ToListAsync();
  1154. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1155. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1156. .ToListAsync();
  1157. /*
  1158. * 79://车/导游地接
  1159. */
  1160. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1161. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1162. .ToListAsync();
  1163. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1164. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1165. .ToListAsync();
  1166. /*
  1167. * 80: //签证
  1168. */
  1169. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1170. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1171. .ToListAsync();
  1172. /*
  1173. *81: //邀请/公务活动
  1174. */
  1175. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1176. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1177. .ToListAsync();
  1178. /*
  1179. * 82: //团组客户保险
  1180. */
  1181. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1182. /*
  1183. * Lable = 85 机票预订
  1184. */
  1185. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1186. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1187. .ToListAsync();
  1188. /*
  1189. * 85 机票预定
  1190. */
  1191. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1192. /*
  1193. * 98 其他款项
  1194. */
  1195. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1196. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1197. .ToListAsync();
  1198. /*
  1199. * 285:收款退还
  1200. */
  1201. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1202. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1203. .ToListAsync();
  1204. /*
  1205. * 1015: //超支费用
  1206. */
  1207. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1208. /*
  1209. * 币种信息
  1210. */
  1211. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1212. /*
  1213. * 车/导游地接 费用类型
  1214. */
  1215. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1216. /*
  1217. * 车/导游地接 费用类型
  1218. */
  1219. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1220. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1221. /*
  1222. * 用户信息
  1223. */
  1224. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1225. /*
  1226. * 费用模块
  1227. */
  1228. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1229. string priceModule = string.Empty;
  1230. if (sdPriceName != null)
  1231. {
  1232. priceModule = sdPriceName.Name;
  1233. }
  1234. /*
  1235. * 处理详情数据
  1236. */
  1237. foreach (var entity in entityList)
  1238. {
  1239. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1240. _detail.Id = entity.Id;
  1241. _detail.PriceName = priceModule;
  1242. /*
  1243. * 应付款金额
  1244. */
  1245. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1246. string PaymentCurrency_WaitPay = "Unknown";
  1247. string hotelCurrncyCode = "Unknown";
  1248. string hotelCurrncyName = "Unknown";
  1249. if (sdPaymentCurrency_WaitPay != null)
  1250. {
  1251. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1252. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1253. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1254. if (hotelCurrncyCode.Equals("CNY"))
  1255. {
  1256. entity.DayRate = 1.0000M;
  1257. }
  1258. }
  1259. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1260. /*
  1261. * 此次付款金额
  1262. */
  1263. decimal CurrPayStr = 0;
  1264. if (entity.PayPercentage == 0)
  1265. {
  1266. if (entity.PayThenMoney != 0)
  1267. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1268. }
  1269. else
  1270. {
  1271. if (entity.PayMoney != 0)
  1272. {
  1273. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1274. }
  1275. }
  1276. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1277. /*
  1278. * 剩余尾款
  1279. */
  1280. decimal BalanceStr = 0;
  1281. if (CurrPayStr != 0 )
  1282. {
  1283. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1284. BalanceStr = 0;
  1285. else
  1286. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1287. }
  1288. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1289. /*
  1290. * Bus名称
  1291. */
  1292. _detail.BusName = "待增加";
  1293. /*
  1294. *费用所属
  1295. */
  1296. switch (entity.CTable)
  1297. {
  1298. case 76://酒店预订
  1299. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1300. if (hotelReservations != null)
  1301. {
  1302. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1303. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1304. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1305. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1306. /*
  1307. * 费用类型
  1308. * 1:房费
  1309. * 2:早餐
  1310. * 3:地税
  1311. * 4:城市税
  1312. * </summary>
  1313. */
  1314. //地税
  1315. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1316. if (governmentRentData != null)
  1317. {
  1318. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1319. governmentRentFee = governmentRentData.Price;
  1320. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1321. if (governmentRentCurrData != null)
  1322. {
  1323. governmentRentCode = governmentRentCurrData.Name;
  1324. governmentRentName = $"({governmentRentCurrData.Remark})";
  1325. }
  1326. }
  1327. //城市税
  1328. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1329. if (cityTaxData != null)
  1330. {
  1331. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1332. cityTaxFee = cityTaxData.Price;
  1333. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1334. if (cityTaxCurrData != null)
  1335. {
  1336. cityTaxCode = cityTaxCurrData.Name;
  1337. cityTaxName = $"({cityTaxCurrData.Remark})";
  1338. }
  1339. }
  1340. //酒店早餐
  1341. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1342. if (breakfastData != null)
  1343. {
  1344. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1345. breakfastFee = breakfastData.Price;
  1346. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1347. if (breakfastCurrData != null)
  1348. {
  1349. breakfastCode = breakfastCurrData.Name;
  1350. breakfastName = $"({breakfastCurrData.Remark})";
  1351. }
  1352. }
  1353. //房间费用
  1354. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1355. if (roomData != null)
  1356. {
  1357. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1358. roomFee = roomData.Price;
  1359. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1360. if (roomCurrData != null)
  1361. {
  1362. roomCode = roomCurrData.Name;
  1363. roomName = $"({roomCurrData.Remark})";
  1364. }
  1365. }
  1366. _detail.PriceMsgContent = $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1367. $"房间说明: {hotelReservations.Remark} <br/>" +
  1368. $"房间费用: {roomFee.ToString("#0.00")} {roomCode} {roomName} 当时汇率{roomData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{roomBool}<br/>" +
  1369. $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率{breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/>" +
  1370. $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率{governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/>" +
  1371. $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率{cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1372. _detail.PriceNameContent = hotelReservations.HotelName;
  1373. }
  1374. break;
  1375. case 79://车/导游地接
  1376. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1377. if (touristGuideGroundReservations != null)
  1378. {
  1379. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1380. {
  1381. _detail.BusName = touristGuideGroundReservations.BusName;
  1382. }
  1383. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1384. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1385. //if (isInt)
  1386. //{
  1387. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1388. // if (cityInfo != null)
  1389. // {
  1390. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1391. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1392. // if (carFeeItem != null)
  1393. // {
  1394. // nameContent += $@"({carFeeItem.Name})";
  1395. // }
  1396. // _detail.PriceNameContent = nameContent;
  1397. // }
  1398. //}
  1399. //else
  1400. //{
  1401. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1402. //}
  1403. List<Grp_CarTouristGuideGroundReservationsContent> touristGuideGroundReservationsContents = _CarTouristGuideGroundReservationsContent
  1404. .Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1405. string priceMsg = string.Empty;
  1406. foreach (var item in touristGuideGroundReservationsContents)
  1407. {
  1408. string typeName = "Unknown";
  1409. string carCurrencyCode = "Unknown";
  1410. string carCurrencyName = "Unknown";
  1411. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1412. if (carTypeData != null) typeName = carTypeData.Name;
  1413. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1414. if (currencyData != null)
  1415. {
  1416. carCurrencyCode = currencyData.Name;
  1417. carCurrencyName = currencyData.Remark;
  1418. }
  1419. priceMsg += typeName + ":" + item.Price.ToString("#0.00") + " " + carCurrencyCode + "(" + carCurrencyName + ")<br/>" +
  1420. "明细:" + item.PriceContent + "<br/>" +
  1421. "备注:" + item.Remark + "<br/><br/>";
  1422. }
  1423. _detail.PriceMsgContent = priceMsg;
  1424. }
  1425. break;
  1426. case 80: //签证
  1427. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1428. if (visaInfo != null)
  1429. {
  1430. _detail.PriceNameContent = getClientNameStr(clientNameList, visaInfo.VisaClient);
  1431. _detail.PriceMsgContent = $"签证描述:{visaInfo.VisaDescription}<br/> 备注:{visaInfo.Remark}";
  1432. }
  1433. break;
  1434. case 81: //邀请/公务活动
  1435. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1436. if (_ioa != null)
  1437. {
  1438. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1439. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1440. sendCurrName = "Unknown", //快递费用币种 Name
  1441. sendCurrCode = "Unknown", //快递费用币种 Code
  1442. eventsCurrName = "Unknown", //公务活动费币种 Name
  1443. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1444. translateCurrName = "Unknown", //公务翻译费 Name
  1445. translateCurrCode = "Unknown"; //公务翻译费 Code
  1446. #region 处理费用币种
  1447. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1448. if (inviteCurrData != null)
  1449. {
  1450. inviteCurrName = inviteCurrData.Remark;
  1451. inviteCurrCode = inviteCurrData.Name;
  1452. }
  1453. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1454. if (sendCurrData != null)
  1455. {
  1456. sendCurrName = sendCurrData.Remark;
  1457. sendCurrCode = sendCurrData.Name;
  1458. }
  1459. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1460. if (eventsCurrData != null)
  1461. {
  1462. eventsCurrName = eventsCurrData.Remark;
  1463. eventsCurrCode = eventsCurrData.Name;
  1464. }
  1465. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1466. if (translateCurrData != null)
  1467. {
  1468. translateCurrName = translateCurrData.Remark;
  1469. translateCurrCode = translateCurrData.Name;
  1470. }
  1471. #endregion
  1472. _detail.PriceNameContent = _ioa.InviterArea;
  1473. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1474. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1475. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1476. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1477. $@"备注:" + _ioa.Remark + "<br/>";
  1478. }
  1479. break;
  1480. case 82: //团组客户保险
  1481. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1482. if (customers != null)
  1483. {
  1484. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1485. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1486. }
  1487. break;
  1488. case 85: //机票预订
  1489. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1490. if (jpRes != null)
  1491. {
  1492. string FlightsDescription = jpRes.FlightsDescription;
  1493. string PriceDescription = jpRes.PriceDescription;
  1494. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1495. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1496. }
  1497. break;
  1498. case 98://其他款项
  1499. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1500. if (gdpRes != null)
  1501. {
  1502. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1503. _detail.PriceNameContent = gdpRes.PriceName;
  1504. }
  1505. break;
  1506. case 285://收款退还
  1507. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1508. if (refundAndOtherMoney != null)
  1509. {
  1510. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1511. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1512. }
  1513. break;
  1514. case 751://酒店早餐
  1515. break;
  1516. case 1015://超支费用
  1517. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1518. if (groupExtraCost != null)
  1519. {
  1520. _detail.PriceNameContent = groupExtraCost.PriceName;
  1521. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1522. }
  1523. break;
  1524. default:
  1525. break;
  1526. }
  1527. /*
  1528. * 申请人
  1529. */
  1530. string operatorName = " - ";
  1531. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1532. if (_opUser != null)
  1533. {
  1534. operatorName = _opUser.CnName;
  1535. }
  1536. _detail.OperatorName = operatorName;
  1537. /*
  1538. * 审核人
  1539. */
  1540. string auditOperatorName = "Unknown";
  1541. if (entity.AuditGMOperate == 0)
  1542. auditOperatorName = " - ";
  1543. else if (entity.AuditGMOperate == 4)
  1544. auditOperatorName = "自动审核";
  1545. else
  1546. {
  1547. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1548. if (_adUser != null)
  1549. {
  1550. auditOperatorName = _adUser.CnName;
  1551. }
  1552. }
  1553. _detail.AuditOperatorName = auditOperatorName;
  1554. /*
  1555. * 超预算比例
  1556. */
  1557. string overBudgetStr = "";
  1558. if (entity.ExceedBudget == -1)
  1559. overBudgetStr = sdPriceName.Name + "尚无预算";
  1560. else if (entity.ExceedBudget == 0)
  1561. overBudgetStr = "未超预算";
  1562. else
  1563. overBudgetStr = entity.ExceedBudget.ToString("P");
  1564. _detail.OverBudget = overBudgetStr;
  1565. /*
  1566. * 费用总计
  1567. */
  1568. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1569. {
  1570. CurrencyId = entity.PaymentCurrency,
  1571. CurrencyName = PaymentCurrency_WaitPay,
  1572. AmountPayable = entity.PayMoney,
  1573. ThisPayment = CurrPayStr,
  1574. BalancePayment = BalanceStr,
  1575. AuditedFunds = CurrPayStr
  1576. });
  1577. _detail.IsAuditGM = entity.IsAuditGM;
  1578. detailList.Add(_detail);
  1579. }
  1580. #endregion
  1581. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1582. /*
  1583. * 下方描述处理
  1584. */
  1585. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1586. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1587. if (ccpCurrencyPrice != null)
  1588. {
  1589. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1590. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1591. }
  1592. else
  1593. {
  1594. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1595. }
  1596. string amountPayableStr = string.Format(@"应付款总金额: ");
  1597. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1598. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1599. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1600. foreach (var item in nonDuplicat)
  1601. {
  1602. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1603. if (strs.Count > 0)
  1604. {
  1605. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1606. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1607. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1608. //单独处理此次付款金额
  1609. if (item.CurrencyId == 836) //人民币
  1610. {
  1611. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1612. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1613. }
  1614. else
  1615. {
  1616. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1617. }
  1618. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1619. //单独处理已审核费用
  1620. if (item.CurrencyId == 836) //人民币
  1621. {
  1622. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1623. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1624. }
  1625. else
  1626. {
  1627. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1628. }
  1629. }
  1630. }
  1631. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1632. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1633. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1634. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1635. var _view1 = new
  1636. {
  1637. PageFuncAuth = pageFunAuthView,
  1638. Data = _view
  1639. };
  1640. return Ok(JsonView(_view1));
  1641. }
  1642. catch (Exception ex)
  1643. {
  1644. return Ok(JsonView(false, ex.Message));
  1645. }
  1646. }
  1647. /// <summary>
  1648. /// 费用审核
  1649. /// 修改团组费用审核状态
  1650. /// </summary>
  1651. /// <param name="_dto">参数Json字符串</param>
  1652. /// <returns></returns>
  1653. [HttpPost]
  1654. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1655. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1656. {
  1657. #region 参数验证
  1658. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1659. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1660. #endregion
  1661. #region 页面操作权限验证
  1662. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1663. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1664. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1665. #endregion
  1666. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1667. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1668. DateTime dtNow = DateTime.Now;
  1669. _groupRepository.BeginTran();
  1670. int rst = 0;
  1671. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1672. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1673. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1674. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1675. List<dynamic> msgDatas = new List<dynamic>();
  1676. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1677. foreach (var item in idList)
  1678. {
  1679. int CreditId = int.Parse(item);
  1680. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1681. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1682. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1683. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1684. .Where(s => s.Id == CreditId)
  1685. .ExecuteCommandAsync();
  1686. if (result < 1)
  1687. {
  1688. rst = -1;
  1689. _groupRepository.RollbackTran();
  1690. return Ok(JsonView(false, "操作失败并回滚!"));
  1691. }
  1692. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1693. if (creditData != null)
  1694. {
  1695. #region 应用通知配置
  1696. try
  1697. {
  1698. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1699. }
  1700. catch (Exception ex)
  1701. {
  1702. }
  1703. #endregion
  1704. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1705. string groupNameStr = string.Empty;
  1706. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1707. if (groupData != null) groupNameStr = groupData.TeamName;
  1708. string creditTypeStr = string.Empty;
  1709. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1710. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1711. string creditCurrency = string.Empty;
  1712. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1713. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1714. if (creditCurrency.Equals("CNY"))
  1715. {
  1716. creditData.DayRate = 1.0000M;
  1717. }
  1718. if (creditData.PayPercentage == 0.00M)
  1719. {
  1720. creditData.PayPercentage = 100M;
  1721. }
  1722. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1723. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1724. string msgContent = "";
  1725. if (creditCurrency.Equals("CNY"))
  1726. {
  1727. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1728. }
  1729. else
  1730. {
  1731. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1732. }
  1733. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1734. }
  1735. }
  1736. if (rst == 0)
  1737. {
  1738. _groupRepository.CommitTran();
  1739. foreach (var item in msgDatas)
  1740. {
  1741. //发送消息
  1742. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1743. }
  1744. #region 应用推送
  1745. try
  1746. {
  1747. foreach (var ccpId in dic_ccp_user.Keys)
  1748. {
  1749. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1750. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1751. }
  1752. }
  1753. catch (Exception)
  1754. {
  1755. }
  1756. #endregion
  1757. return Ok(JsonView(true, "操作成功!"));
  1758. }
  1759. return Ok(JsonView(false, "操作失败!"));
  1760. }
  1761. #endregion
  1762. #region 机票费用录入
  1763. /// <summary>
  1764. /// 机票录入当前登录人可操作团组
  1765. /// </summary>
  1766. /// <param name="dto"></param>
  1767. /// <returns></returns>
  1768. [HttpPost]
  1769. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1770. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1771. {
  1772. try
  1773. {
  1774. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1775. if (groupData.Code != 0)
  1776. {
  1777. return Ok(JsonView(false, groupData.Msg));
  1778. }
  1779. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1780. }
  1781. catch (Exception ex)
  1782. {
  1783. return Ok(JsonView(false, "程序错误!"));
  1784. throw;
  1785. }
  1786. }
  1787. /// <summary>
  1788. /// 机票费用录入列表
  1789. /// </summary>
  1790. /// <param name="dto"></param>
  1791. /// <returns></returns>
  1792. [HttpPost]
  1793. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1794. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1795. {
  1796. try
  1797. {
  1798. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1799. if (groupData.Code != 0)
  1800. {
  1801. return Ok(JsonView(false, groupData.Msg));
  1802. }
  1803. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1804. }
  1805. catch (Exception ex)
  1806. {
  1807. return Ok(JsonView(false, ex.Message));
  1808. throw;
  1809. }
  1810. }
  1811. /// <summary>
  1812. /// 根据id查询费用录入信息
  1813. /// </summary>
  1814. /// <param name="dto"></param>
  1815. /// <returns></returns>
  1816. [HttpPost]
  1817. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1818. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1819. {
  1820. try
  1821. {
  1822. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1823. if (groupData.Code != 0)
  1824. {
  1825. return Ok(JsonView(false, groupData.Msg));
  1826. }
  1827. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1828. }
  1829. catch (Exception ex)
  1830. {
  1831. return Ok(JsonView(false, "程序错误!"));
  1832. throw;
  1833. }
  1834. }
  1835. /// <summary>
  1836. /// 机票费用录入操作(Status:1.新增,2.修改)
  1837. /// </summary>
  1838. /// <param name="dto"></param>
  1839. /// <returns></returns>
  1840. [HttpPost]
  1841. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1842. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1843. {
  1844. try
  1845. {
  1846. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1847. if (groupData.Code != 0)
  1848. {
  1849. return Ok(JsonView(false, groupData.Msg));
  1850. }
  1851. #region 应用推送
  1852. try
  1853. {
  1854. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  1855. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  1856. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  1857. }
  1858. catch (Exception ex)
  1859. {
  1860. }
  1861. #endregion
  1862. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1863. }
  1864. catch (Exception ex)
  1865. {
  1866. return Ok(JsonView(false, "程序错误!"));
  1867. throw;
  1868. }
  1869. }
  1870. /// <summary>
  1871. /// 根据舱位类型查询接团客户名单信息
  1872. /// </summary>
  1873. /// <param name="dto"></param>
  1874. /// <returns></returns>
  1875. [HttpPost]
  1876. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1877. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  1878. {
  1879. try
  1880. {
  1881. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  1882. if (crm_Groups.Count != 0)
  1883. {
  1884. List<dynamic> Customer = new List<dynamic>();
  1885. foreach (var item in crm_Groups)
  1886. {
  1887. var data = new
  1888. {
  1889. Id = item.Id,
  1890. Pinyin = item.Pinyin,
  1891. Name = item.LastName + item.FirstName
  1892. };
  1893. Customer.Add(data);
  1894. }
  1895. return Ok(JsonView(true, "查询成功!", Customer));
  1896. }
  1897. return Ok(JsonView(true, "暂无数据", crm_Groups));
  1898. }
  1899. catch (Exception ex)
  1900. {
  1901. return Ok(JsonView(false, "程序错误!"));
  1902. throw;
  1903. }
  1904. }
  1905. /// <summary>
  1906. /// 根据团号获取客户信息
  1907. /// </summary>
  1908. /// <param name="dto"></param>
  1909. /// <returns></returns>
  1910. [HttpPost]
  1911. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1912. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  1913. {
  1914. var jw = JsonView(false);
  1915. if (dto.DIID < 1)
  1916. {
  1917. jw.Msg += "请输入正确的diid";
  1918. return Ok(jw);
  1919. }
  1920. var arr = getSimplClientList(dto.DIID);
  1921. jw = JsonView(true, "获取成功!", arr);
  1922. return Ok(jw);
  1923. }
  1924. private List<SimplClientInfo> getSimplClientList(int diId)
  1925. {
  1926. 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);
  1927. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  1928. return arr;
  1929. }
  1930. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  1931. {
  1932. string result = origin;
  1933. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  1934. {
  1935. string[] temparr = origin.Split(',');
  1936. string fistrStr = temparr[0];
  1937. int count = temparr.Count();
  1938. int tempId;
  1939. bool success = int.TryParse(fistrStr, out tempId);
  1940. if (success)
  1941. {
  1942. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  1943. if (tempInfo != null)
  1944. {
  1945. if (count > 1)
  1946. {
  1947. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  1948. }
  1949. else
  1950. {
  1951. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  1952. }
  1953. }
  1954. }
  1955. }
  1956. return result;
  1957. }
  1958. /// <summary>
  1959. /// 机票费用录入,删除
  1960. /// </summary>
  1961. /// <param name="dto"></param>
  1962. /// <returns></returns>
  1963. [HttpPost]
  1964. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1965. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  1966. {
  1967. try
  1968. {
  1969. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  1970. if (res)
  1971. {
  1972. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  1973. {
  1974. IsDel = 1,
  1975. DeleteUserId = dto.DeleteUserId,
  1976. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  1977. }).ExecuteCommandAsync();
  1978. return Ok(JsonView(true, "删除成功!"));
  1979. }
  1980. return Ok(JsonView(false, "删除失败!"));
  1981. }
  1982. catch (Exception ex)
  1983. {
  1984. return Ok(JsonView(false, "程序错误!"));
  1985. throw;
  1986. }
  1987. }
  1988. /// <summary>
  1989. /// 导出机票录入报表
  1990. /// </summary>
  1991. /// <param name="dto"></param>
  1992. /// <returns></returns>
  1993. [HttpPost]
  1994. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1995. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  1996. {
  1997. try
  1998. {
  1999. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2000. if (groupData.Code != 0)
  2001. {
  2002. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2003. }
  2004. else
  2005. {
  2006. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2007. if (AirTicketReservations.Count != 0)
  2008. {
  2009. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2010. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2011. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2012. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2013. WorkbookDesigner designer = new WorkbookDesigner();
  2014. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2015. decimal countCost = 0;
  2016. foreach (var item in AirTicketReservations)
  2017. {
  2018. #region 处理客人姓名
  2019. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2020. item.ClientName = clientNames;
  2021. #endregion
  2022. if (item.BankType == "其他")
  2023. {
  2024. item.BankNo = "--";
  2025. }
  2026. else
  2027. {
  2028. if (!string.IsNullOrEmpty(item.BankType))
  2029. {
  2030. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2031. }
  2032. }
  2033. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2034. item.Price = System.Decimal.Round(item.Price, 2);
  2035. countCost += Convert.ToDecimal(item.Price);
  2036. }
  2037. designer.SetDataSource("Export", AirTicketReservations);
  2038. designer.SetDataSource("ExportDiCode", diCode);
  2039. designer.SetDataSource("ExportDiName", diName);
  2040. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2041. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2042. designer.Process();
  2043. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2044. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2045. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2046. return Ok(JsonView(true, "成功", url = rst));
  2047. }
  2048. else
  2049. {
  2050. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2051. }
  2052. }
  2053. }
  2054. catch (Exception ex)
  2055. {
  2056. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2057. throw;
  2058. }
  2059. }
  2060. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2061. /// <summary>
  2062. /// 行程单导出
  2063. /// </summary>
  2064. /// <param name="dto"></param>
  2065. /// <returns></returns>
  2066. [HttpPost]
  2067. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2068. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2069. {
  2070. try
  2071. {
  2072. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2073. if (groupData.Code != 0)
  2074. {
  2075. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2076. }
  2077. else
  2078. {
  2079. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2080. if (dto.Language == "CN")
  2081. {
  2082. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2083. DocumentBuilder builder = new DocumentBuilder(doc);
  2084. int tableIndex = 0;//表格索引
  2085. //得到文档中的第一个表格
  2086. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2087. foreach (var item in _AirTicketReservations)
  2088. {
  2089. #region 处理固定数据
  2090. string[] FlightsCode = item.FlightsCode.Split('/');
  2091. if (FlightsCode.Length != 0)
  2092. {
  2093. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2094. if (_AirCompany != null)
  2095. {
  2096. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2097. }
  2098. else
  2099. {
  2100. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2101. }
  2102. }
  2103. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2104. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2105. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2106. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2107. string name = "";
  2108. foreach (string clientName in nameArray)
  2109. {
  2110. if (!name.Contains(clientName))
  2111. {
  2112. name += clientName + ",";
  2113. }
  2114. }
  2115. if (!string.IsNullOrWhiteSpace(name))
  2116. {
  2117. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2118. }
  2119. else
  2120. {
  2121. table.Range.Bookmarks["ClientName"].Text = "--";
  2122. }
  2123. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2124. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2125. table.Range.Bookmarks["JointTicket"].Text = "--";
  2126. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2127. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2128. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2129. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2130. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2131. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2132. #endregion
  2133. #region 循环数据处理
  2134. List<AirInfo> airs = new List<AirInfo>();
  2135. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2136. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2137. for (int i = 0; i < FlightsCode.Length; i++)
  2138. {
  2139. AirInfo air = new AirInfo();
  2140. string[] tempstr = DayArray[i]
  2141. .Replace("\r\n", string.Empty)
  2142. .Replace("\\r\\n", string.Empty)
  2143. .TrimStart().TrimEnd()
  2144. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2145. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2146. string starCity = "";
  2147. if (star_Three != null)
  2148. {
  2149. starCity = star_Three.AirPort;
  2150. }
  2151. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2152. string EndCity = "";
  2153. if (End_Three != null)
  2154. {
  2155. EndCity = End_Three.AirPort;
  2156. }
  2157. air.Destination = starCity + "/" + EndCity;
  2158. air.Flight = FlightsCode[i];
  2159. air.SeatingClass = item.CTypeName;
  2160. string dateTime = tempstr[2];
  2161. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2162. air.FlightDate = DateTemp;
  2163. air.DepartureTime = tempstr[5];
  2164. air.LandingTime = tempstr[6];
  2165. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2166. air.TicketStatus = "--";
  2167. air.Luggage = "--";
  2168. air.DepartureTerminal = "--";
  2169. air.LandingTerminal = "--";
  2170. airs.Add(air);
  2171. }
  2172. int row = 13;
  2173. for (int i = 0; i < airs.Count; i++)
  2174. {
  2175. if (airs.Count > 2)
  2176. {
  2177. for (int j = 0; j < airs.Count - 2; j++)
  2178. {
  2179. var CopyRow = table.Rows[12].Clone(true);
  2180. table.Rows.Add(CopyRow);
  2181. }
  2182. }
  2183. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2184. int index = 0;
  2185. foreach (PropertyInfo property in properties)
  2186. {
  2187. string value = property.GetValue(airs[i]).ToString();
  2188. Cell ishcel0 = table.Rows[row].Cells[index];
  2189. Paragraph p = new Paragraph(doc);
  2190. string s = value;
  2191. p.AppendChild(new Run(doc, s));
  2192. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2193. ishcel0.AppendChild(p);
  2194. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2195. index++;
  2196. }
  2197. row++;
  2198. }
  2199. #endregion
  2200. Paragraph lastParagraph = new Paragraph(doc);
  2201. //第一个表格末尾加段落
  2202. table.ParentNode.InsertAfter(lastParagraph, table);
  2203. //复制第一个表格
  2204. Table cloneTable = (Table)table.Clone(true);
  2205. //在文档末尾段落后面加入复制的表格
  2206. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2207. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2208. {
  2209. int rownewsIndex = 13;
  2210. for (int i = 0; i < 2; i++)
  2211. {
  2212. var CopyRow = table.Rows[12].Clone(true);
  2213. table.Rows.RemoveAt(13);
  2214. table.Rows.Add(CopyRow);
  2215. rownewsIndex++;
  2216. }
  2217. }
  2218. else
  2219. {
  2220. table.Rows.RemoveAt(12);
  2221. }
  2222. cloneTable.Rows.RemoveAt(12);
  2223. }
  2224. if (_AirTicketReservations.Count != 0)
  2225. {
  2226. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2227. if (FlightsCode.Length != 0)
  2228. {
  2229. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2230. if (_AirCompany != null)
  2231. {
  2232. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2233. }
  2234. else
  2235. {
  2236. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2237. }
  2238. }
  2239. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2240. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2241. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2242. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2243. string name = "";
  2244. foreach (string clientName in nameArray)
  2245. {
  2246. if (!name.Contains(clientName))
  2247. {
  2248. name += clientName + ",";
  2249. }
  2250. }
  2251. if (!string.IsNullOrWhiteSpace(name))
  2252. {
  2253. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2254. }
  2255. else
  2256. {
  2257. table.Range.Bookmarks["ClientName"].Text = "--";
  2258. }
  2259. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2260. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2261. table.Range.Bookmarks["JointTicket"].Text = "--";
  2262. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2263. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2264. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2265. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2266. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2267. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2268. }
  2269. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2270. //保存合并后的文档
  2271. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2272. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2273. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2274. return Ok(JsonView(true, "成功!", rst));
  2275. }
  2276. else
  2277. {
  2278. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2279. DocumentBuilder builder = new DocumentBuilder(doc);
  2280. int tableIndex = 0;//表格索引
  2281. //得到文档中的第一个表格
  2282. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2283. List<string> texts = new List<string>();
  2284. foreach (var item in _AirTicketReservations)
  2285. {
  2286. string[] FlightsCode = item.FlightsCode.Split('/');
  2287. if (FlightsCode.Length != 0)
  2288. {
  2289. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2290. if (_AirCompany != null)
  2291. {
  2292. if (!transDic.ContainsKey(_AirCompany.CnName))
  2293. {
  2294. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2295. }
  2296. }
  2297. else
  2298. {
  2299. if (!transDic.ContainsKey("--"))
  2300. {
  2301. transDic.Add("--", "--");
  2302. }
  2303. }
  2304. }
  2305. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2306. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2307. string name = "";
  2308. foreach (string clientName in nameArray)
  2309. {
  2310. name += clientName + ",";
  2311. }
  2312. if (!texts.Contains(name))
  2313. {
  2314. texts.Add(name);
  2315. }
  2316. List<AirInfo> airs = new List<AirInfo>();
  2317. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2318. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2319. for (int i = 0; i < FlightsCode.Length; i++)
  2320. {
  2321. AirInfo air = new AirInfo();
  2322. string[] tempstr = DayArray[i]
  2323. .Replace("\r\n", string.Empty)
  2324. .Replace("\\r\\n", string.Empty)
  2325. .TrimStart().TrimEnd()
  2326. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2327. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2328. if (star_Three != null)
  2329. {
  2330. if (!transDic.ContainsKey(star_Three.AirPort))
  2331. {
  2332. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2333. }
  2334. }
  2335. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2336. if (End_Three != null)
  2337. {
  2338. if (!transDic.ContainsKey(End_Three.AirPort))
  2339. {
  2340. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2341. }
  2342. }
  2343. if (!texts.Contains(item.CTypeName))
  2344. {
  2345. texts.Add(item.CTypeName);
  2346. }
  2347. }
  2348. }
  2349. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2350. if (transData.Count > 0)
  2351. {
  2352. foreach (TranslateResult item in transData)
  2353. {
  2354. if (!transDic.ContainsKey(item.Query))
  2355. {
  2356. transDic.Add(item.Query, item.Translation);
  2357. }
  2358. }
  2359. }
  2360. foreach (var item in _AirTicketReservations)
  2361. {
  2362. #region 处理固定数据
  2363. string[] FlightsCode = item.FlightsCode.Split('/');
  2364. if (FlightsCode.Length != 0)
  2365. {
  2366. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2367. if (_AirCompany != null)
  2368. {
  2369. string str = "--";
  2370. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2371. if (!string.IsNullOrEmpty(translateResult))
  2372. {
  2373. str = translateResult;
  2374. str = _airTicketResRep.Processing(str);
  2375. }
  2376. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2377. }
  2378. else
  2379. {
  2380. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2381. }
  2382. }
  2383. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2384. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2385. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2386. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2387. string names = "";
  2388. foreach (string clientName in nameArray)
  2389. {
  2390. names += clientName + ",";
  2391. }
  2392. if (!string.IsNullOrWhiteSpace(names))
  2393. {
  2394. string str = "--";
  2395. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2396. if (!string.IsNullOrEmpty(translateResult))
  2397. {
  2398. str = translateResult;
  2399. str = _airTicketResRep.Processing(str);
  2400. }
  2401. table.Range.Bookmarks["ClientName"].Text = str;
  2402. }
  2403. else
  2404. {
  2405. table.Range.Bookmarks["ClientName"].Text = "--";
  2406. }
  2407. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2408. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2409. table.Range.Bookmarks["JointTicket"].Text = "--";
  2410. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2411. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2412. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2413. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2414. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2415. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2416. #endregion
  2417. #region 循环数据处理
  2418. List<AirInfo> airs = new List<AirInfo>();
  2419. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2420. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2421. for (int i = 0; i < FlightsCode.Length; i++)
  2422. {
  2423. AirInfo air = new AirInfo();
  2424. string[] tempstr = DayArray[i]
  2425. .Replace("\r\n", string.Empty)
  2426. .Replace("\\r\\n", string.Empty)
  2427. .TrimStart().TrimEnd()
  2428. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2429. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2430. string starCity = "";
  2431. if (star_Three != null)
  2432. {
  2433. string str2 = "--";
  2434. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2435. if (!string.IsNullOrEmpty(translateResult2))
  2436. {
  2437. str2 = translateResult2;
  2438. str2 = _airTicketResRep.Processing(str2);
  2439. }
  2440. starCity = str2;
  2441. }
  2442. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2443. string EndCity = "";
  2444. if (End_Three != null)
  2445. {
  2446. string str1 = "--";
  2447. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2448. if (!string.IsNullOrEmpty(translateResult1))
  2449. {
  2450. str1 = translateResult1;
  2451. str1 = _airTicketResRep.Processing(str1);
  2452. }
  2453. EndCity = str1;
  2454. }
  2455. air.Destination = starCity + "/" + EndCity;
  2456. air.Flight = FlightsCode[i];
  2457. string str = "--";
  2458. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2459. if (!string.IsNullOrEmpty(translateResult))
  2460. {
  2461. str = translateResult;
  2462. str = _airTicketResRep.Processing(str);
  2463. }
  2464. air.SeatingClass = str;
  2465. string dateTime = tempstr[2];
  2466. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2467. air.FlightDate = DateTemp;
  2468. air.DepartureTime = tempstr[5];
  2469. air.LandingTime = tempstr[6];
  2470. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2471. air.TicketStatus = "--";
  2472. air.Luggage = "--";
  2473. air.DepartureTerminal = "--";
  2474. air.LandingTerminal = "--";
  2475. airs.Add(air);
  2476. }
  2477. int row = 13;
  2478. for (int i = 0; i < airs.Count; i++)
  2479. {
  2480. if (airs.Count > 2)
  2481. {
  2482. for (int j = 0; j < airs.Count - 2; j++)
  2483. {
  2484. var CopyRow = table.Rows[12].Clone(true);
  2485. table.Rows.Add(CopyRow);
  2486. }
  2487. }
  2488. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2489. int index = 0;
  2490. foreach (PropertyInfo property in properties)
  2491. {
  2492. string value = property.GetValue(airs[i]).ToString();
  2493. Cell ishcel0 = table.Rows[row].Cells[index];
  2494. Paragraph p = new Paragraph(doc);
  2495. string s = value;
  2496. p.AppendChild(new Run(doc, s));
  2497. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2498. ishcel0.AppendChild(p);
  2499. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2500. //ishcel0.CellFormat.VerticalAlignment=
  2501. index++;
  2502. }
  2503. row++;
  2504. }
  2505. #endregion
  2506. Paragraph lastParagraph = new Paragraph(doc);
  2507. //第一个表格末尾加段落
  2508. table.ParentNode.InsertAfter(lastParagraph, table);
  2509. //复制第一个表格
  2510. Table cloneTable = (Table)table.Clone(true);
  2511. //在文档末尾段落后面加入复制的表格
  2512. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2513. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2514. {
  2515. int rownewsIndex = 13;
  2516. for (int i = 0; i < 2; i++)
  2517. {
  2518. var CopyRow = table.Rows[12].Clone(true);
  2519. table.Rows.RemoveAt(13);
  2520. table.Rows.Add(CopyRow);
  2521. rownewsIndex++;
  2522. }
  2523. }
  2524. else
  2525. {
  2526. table.Rows.RemoveAt(12);
  2527. }
  2528. cloneTable.Rows.RemoveAt(12);
  2529. }
  2530. if (_AirTicketReservations.Count != 0)
  2531. {
  2532. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2533. if (FlightsCode.Length != 0)
  2534. {
  2535. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2536. if (_AirCompany != null)
  2537. {
  2538. string str = "--";
  2539. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2540. if (!string.IsNullOrEmpty(translateResult))
  2541. {
  2542. str = translateResult;
  2543. str = _airTicketResRep.Processing(str);
  2544. }
  2545. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2546. }
  2547. else
  2548. {
  2549. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2550. }
  2551. }
  2552. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2553. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2554. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2555. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2556. string names = "";
  2557. foreach (string clientName in nameArray)
  2558. {
  2559. names += clientName + ",";
  2560. }
  2561. if (!string.IsNullOrWhiteSpace(names))
  2562. {
  2563. string str = "--";
  2564. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2565. if (!string.IsNullOrEmpty(translateResult))
  2566. {
  2567. str = translateResult;
  2568. str = _airTicketResRep.Processing(str);
  2569. }
  2570. table.Range.Bookmarks["ClientName"].Text = str;
  2571. }
  2572. else
  2573. {
  2574. table.Range.Bookmarks["ClientName"].Text = "--";
  2575. }
  2576. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2577. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2578. table.Range.Bookmarks["JointTicket"].Text = "--";
  2579. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2580. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2581. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2582. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2583. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2584. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2585. }
  2586. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2587. //保存合并后的文档
  2588. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2589. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2590. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2591. return Ok(JsonView(true, "成功!", rst));
  2592. }
  2593. }
  2594. }
  2595. catch (Exception ex)
  2596. {
  2597. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2598. throw;
  2599. }
  2600. }
  2601. #endregion
  2602. #region 团组增减款项 --> 其他款项
  2603. /// <summary>
  2604. /// 团组增减款项下拉框绑定
  2605. /// </summary>
  2606. /// <param name="dto"></param>
  2607. /// <returns></returns>
  2608. [HttpPost]
  2609. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2610. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2611. {
  2612. #region 参数验证
  2613. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2614. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2615. #endregion
  2616. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2617. }
  2618. /// <summary>
  2619. /// 根据团组Id查询团组增减款项
  2620. /// </summary>
  2621. /// <param name="dto"></param>
  2622. /// <returns></returns>
  2623. [HttpPost]
  2624. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2625. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2626. {
  2627. #region 参数验证
  2628. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2629. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2630. #endregion
  2631. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2632. }
  2633. /// <summary>
  2634. /// 团组增减款项操作(Status:1.新增,2.修改)
  2635. /// </summary>
  2636. /// <param name="dto"></param>
  2637. /// <returns></returns>
  2638. [HttpPost]
  2639. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2640. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2641. {
  2642. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2643. if (groupData.Code != 200)
  2644. {
  2645. return Ok(JsonView(false, groupData.Msg));
  2646. }
  2647. #region 应用推送
  2648. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2649. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2650. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2651. #endregion
  2652. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2653. }
  2654. /// <summary>
  2655. /// 团组增减款项操作 删除
  2656. /// </summary>
  2657. /// <param name="dto"></param>
  2658. /// <returns></returns>
  2659. [HttpPost]
  2660. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2661. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2662. {
  2663. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2664. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2665. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2666. if (res.Code == 0)
  2667. {
  2668. return Ok(JsonView(true, "删除成功!"));
  2669. }
  2670. return Ok(JsonView(false, "删除失败!"));
  2671. }
  2672. /// <summary>
  2673. /// 根据团组增减款项Id查询
  2674. /// </summary>
  2675. /// <param name="dto"></param>
  2676. /// <returns></returns>
  2677. [HttpPost]
  2678. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2679. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2680. {
  2681. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2682. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2683. }
  2684. /// <summary>
  2685. /// 查询供应商名称
  2686. /// </summary>
  2687. /// <param name="dto"></param>
  2688. /// <returns></returns>
  2689. [HttpPost]
  2690. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2691. {
  2692. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2693. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2694. ?? new List<Grp_DecreasePayments>();
  2695. dbResult = dbResult.Distinct(new
  2696. ProductComparer ()).ToList();
  2697. var jw = JsonView(true, "success", dbResult.OrderByDescending(x=>x. Id ).Select(x => new
  2698. {
  2699. x.Id,
  2700. x.SupplierAddress,
  2701. x.SupplierArea,
  2702. x.SupplierContact,
  2703. x.SupplierContactNumber,
  2704. x.SupplierEmail,
  2705. x.SupplierName,
  2706. x.SupplierSocialAccount,
  2707. x.SupplierTypeId,
  2708. }).ToList());
  2709. return Ok(jw);
  2710. }
  2711. #endregion
  2712. #region 文件上传、删除
  2713. /// <summary>
  2714. /// region 文件上传 可以带参数
  2715. /// </summary>
  2716. /// <param name="file"></param>
  2717. /// <returns></returns>
  2718. [HttpPost]
  2719. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2720. public async Task<IActionResult> UploadProject(IFormFile file)
  2721. {
  2722. try
  2723. {
  2724. var TypeName = Request.Headers["TypeName"].ToString();
  2725. if (file != null)
  2726. {
  2727. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2728. //文件名称
  2729. string projectFileName = file.FileName;
  2730. //上传的文件的路径
  2731. string filePath = "";
  2732. if (TypeName == "A")//A代表团组增减款项
  2733. {
  2734. if (!Directory.Exists(fileDir))
  2735. {
  2736. Directory.CreateDirectory(fileDir);
  2737. }
  2738. //上传的文件的路径
  2739. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2740. }
  2741. else if (TypeName == "B")//B代表商邀相关文件
  2742. {
  2743. if (!Directory.Exists(fileDir))
  2744. {
  2745. Directory.CreateDirectory(fileDir);
  2746. }
  2747. //上传的文件的路径
  2748. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2749. }
  2750. using (FileStream fs = System.IO.File.Create(filePath))
  2751. {
  2752. file.CopyTo(fs);
  2753. fs.Flush();
  2754. }
  2755. return Ok(JsonView(true, "上传成功!", projectFileName));
  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. /// <summary>
  2769. /// 删除指定文件
  2770. /// </summary>
  2771. /// <param name="dto"></param>
  2772. /// <returns></returns>
  2773. [HttpPost]
  2774. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2775. public async Task<IActionResult> DelFile(DelFileDto dto)
  2776. {
  2777. try
  2778. {
  2779. var TypeName = Request.Headers["TypeName"].ToString();
  2780. string filePath = "";
  2781. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2782. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2783. int id = 0;
  2784. if (TypeName == "A")
  2785. {
  2786. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2787. // 删除该文件
  2788. System.IO.File.Delete(filePath);
  2789. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2790. }
  2791. else if (TypeName == "B")
  2792. {
  2793. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2794. // 删除该文件
  2795. System.IO.File.Delete(filePath);
  2796. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2797. }
  2798. if (id != 0)
  2799. {
  2800. return Ok(JsonView(true, "成功!"));
  2801. }
  2802. else
  2803. {
  2804. return Ok(JsonView(false, "失败!"));
  2805. }
  2806. }
  2807. catch (Exception ex)
  2808. {
  2809. return Ok(JsonView(false, "程序错误!"));
  2810. throw;
  2811. }
  2812. }
  2813. #endregion
  2814. #region 商邀费用录入
  2815. /// <summary>
  2816. /// 根据团组Id查询商邀费用列表
  2817. /// </summary>
  2818. /// <param name="dto"></param>
  2819. /// <returns></returns>
  2820. [HttpPost]
  2821. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2822. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2823. {
  2824. try
  2825. {
  2826. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  2827. if (groupData.Code != 0)
  2828. {
  2829. return Ok(JsonView(false, groupData.Msg));
  2830. }
  2831. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2832. }
  2833. catch (Exception ex)
  2834. {
  2835. return Ok(JsonView(false, "程序错误!"));
  2836. throw;
  2837. }
  2838. }
  2839. //
  2840. /// <summary>
  2841. /// 商邀费用 Info Page 基础数据源
  2842. /// </summary>
  2843. /// <param name="dto"></param>
  2844. /// <returns></returns>
  2845. [HttpPost]
  2846. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2847. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  2848. {
  2849. try
  2850. {
  2851. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  2852. if (groupData.Code != 0)
  2853. {
  2854. return Ok(JsonView(false, groupData.Msg));
  2855. }
  2856. return Ok(JsonView(true, "操作成功", groupData.Data));
  2857. }
  2858. catch (Exception ex)
  2859. {
  2860. return Ok(JsonView(false, ex.Message));
  2861. throw;
  2862. }
  2863. }
  2864. /// <summary>
  2865. /// 根据商邀费用ID查询C表和商邀费用数据
  2866. /// </summary>
  2867. /// <param name="dto"></param>
  2868. /// <returns></returns>
  2869. [HttpPost]
  2870. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2871. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  2872. {
  2873. try
  2874. {
  2875. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  2876. if (groupData.Code != 0)
  2877. {
  2878. return Ok(JsonView(false, groupData.Msg));
  2879. }
  2880. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2881. }
  2882. catch (Exception ex)
  2883. {
  2884. return Ok(JsonView(false, ex.Message));
  2885. throw;
  2886. }
  2887. }
  2888. /// <summary>
  2889. /// 商邀费用录入操作(Status:1.新增,2.修改)
  2890. /// </summary>
  2891. /// <param name="dto"></param>
  2892. /// <returns></returns>
  2893. [HttpPost]
  2894. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2895. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  2896. {
  2897. try
  2898. {
  2899. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  2900. if (groupData.Code != 0)
  2901. {
  2902. return Ok(JsonView(false, groupData.Msg));
  2903. }
  2904. #region 应用推送
  2905. try
  2906. {
  2907. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2908. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2909. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2910. }
  2911. catch (Exception ex)
  2912. {
  2913. }
  2914. #endregion
  2915. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2916. }
  2917. catch (Exception ex)
  2918. {
  2919. return Ok(JsonView(false, "程序错误!"));
  2920. throw;
  2921. }
  2922. }
  2923. /// <summary>
  2924. /// 商邀删除
  2925. /// </summary>
  2926. /// <param name="dto"></param>
  2927. /// <returns></returns>
  2928. [HttpPost]
  2929. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2930. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  2931. {
  2932. try
  2933. {
  2934. _sqlSugar.BeginTran();
  2935. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  2936. .SetColumns(it => new Grp_InvitationOfficialActivities()
  2937. {
  2938. IsDel = 1,
  2939. DeleteUserId = dto.DeleteUserId,
  2940. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2941. })
  2942. .Where(it => it.Id == dto.Id)
  2943. .ExecuteCommand();
  2944. if (res1 > 0)
  2945. {
  2946. int _diId = 0;
  2947. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  2948. if (_ioaInfo != null)
  2949. {
  2950. _diId = _ioaInfo.DiId;
  2951. }
  2952. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  2953. .SetColumns(a => new Grp_CreditCardPayment()
  2954. {
  2955. IsDel = 1,
  2956. DeleteUserId = dto.DeleteUserId,
  2957. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2958. })
  2959. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  2960. .ExecuteCommand();
  2961. if (res2 > 0)
  2962. {
  2963. _sqlSugar.CommitTran();
  2964. return Ok(JsonView(true, "删除成功!"));
  2965. }
  2966. }
  2967. _sqlSugar.RollbackTran();
  2968. return Ok(JsonView(false, "删除失败"));
  2969. }
  2970. catch (Exception ex)
  2971. {
  2972. _sqlSugar.RollbackTran();
  2973. return Ok(JsonView(false, ex.Message));
  2974. }
  2975. }
  2976. #endregion
  2977. #region 团组英文资料
  2978. /// <summary>
  2979. /// 查询团组英文所有资料
  2980. /// </summary>
  2981. /// <param name="dto"></param>
  2982. /// <returns></returns>
  2983. [HttpPost]
  2984. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2985. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  2986. {
  2987. try
  2988. {
  2989. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  2990. if (groupData.Code != 0)
  2991. {
  2992. return Ok(JsonView(false, groupData.Msg));
  2993. }
  2994. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2995. }
  2996. catch (Exception ex)
  2997. {
  2998. return Ok(JsonView(false, "程序错误!"));
  2999. throw;
  3000. }
  3001. }
  3002. /// <summary>
  3003. /// 团组英文资料操作(Status:1.新增,2.修改)
  3004. /// </summary>
  3005. /// <param name="dto"></param>
  3006. /// <returns></returns>
  3007. [HttpPost]
  3008. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3009. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3010. {
  3011. try
  3012. {
  3013. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3014. if (groupData.Code != 0)
  3015. {
  3016. return Ok(JsonView(false, groupData.Msg));
  3017. }
  3018. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3019. }
  3020. catch (Exception ex)
  3021. {
  3022. return Ok(JsonView(false, "程序错误!"));
  3023. throw;
  3024. }
  3025. }
  3026. /// <summary>
  3027. /// 团组英文资料Id查询数据
  3028. /// </summary>
  3029. /// <param name="dto"></param>
  3030. /// <returns></returns>
  3031. [HttpPost]
  3032. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3033. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3034. {
  3035. try
  3036. {
  3037. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3038. if (_DelegationEnData != null)
  3039. {
  3040. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3041. }
  3042. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3043. }
  3044. catch (Exception ex)
  3045. {
  3046. return Ok(JsonView(false, "程序错误!"));
  3047. throw;
  3048. }
  3049. }
  3050. /// <summary>
  3051. /// 团组英文资料删除
  3052. /// </summary>
  3053. /// <param name="dto"></param>
  3054. /// <returns></returns>
  3055. [HttpPost]
  3056. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3057. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3058. {
  3059. try
  3060. {
  3061. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3062. if (!res)
  3063. {
  3064. return Ok(JsonView(false, "删除失败"));
  3065. }
  3066. return Ok(JsonView(true, "删除成功!"));
  3067. }
  3068. catch (Exception ex)
  3069. {
  3070. return Ok(JsonView(false, "程序错误!"));
  3071. throw;
  3072. }
  3073. }
  3074. #endregion
  3075. #region 导出邀请函
  3076. /// <summary>
  3077. /// 导出邀请函页面初始化
  3078. /// </summary>
  3079. /// <param name="dto"></param>
  3080. /// <returns></returns>
  3081. [HttpPost]
  3082. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3083. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3084. {
  3085. try
  3086. {
  3087. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3088. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3089. if (dto.DiId == 0)
  3090. {
  3091. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3092. }
  3093. else
  3094. {
  3095. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3096. }
  3097. return Ok(JsonView(true, "查询成功!", new
  3098. {
  3099. deleClient = crm_Deles,
  3100. delegations = grp_Delegations
  3101. }));
  3102. }
  3103. catch (Exception ex)
  3104. {
  3105. return Ok(JsonView(false, "程序错误!"));
  3106. throw;
  3107. }
  3108. }
  3109. /// <summary>
  3110. /// 导出邀请函
  3111. /// </summary>
  3112. /// <param name="dto"></param>
  3113. /// <returns></returns>
  3114. [HttpPost]
  3115. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3116. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3117. {
  3118. #region 参数验证
  3119. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3120. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3121. #endregion
  3122. try
  3123. {
  3124. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3125. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3126. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3127. From Grp_TourClientList tcl
  3128. Left Join
  3129. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3130. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3131. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3132. From Crm_DeleClient dc
  3133. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3134. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3135. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3136. Where dc.IsDel = 0) temp
  3137. On temp.DcId =tcl.ClientId
  3138. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3139. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3140. List<string> texts = new List<string>();
  3141. if (datas.Count != 0)
  3142. {
  3143. foreach (TourClientListDetailsView item in datas)
  3144. {
  3145. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3146. {
  3147. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3148. }
  3149. else
  3150. {
  3151. string name = item.LastName + item.FirstName;
  3152. texts.Add(name);
  3153. }
  3154. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3155. {
  3156. if (!transDic.ContainsKey(item.Job))
  3157. {
  3158. texts.Add(item.Job);
  3159. }
  3160. }
  3161. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3162. {
  3163. texts.Add(item.CompanyFullName);
  3164. }
  3165. }
  3166. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3167. if (transData.Count > 0)
  3168. {
  3169. foreach (TranslateResult item in transData)
  3170. {
  3171. if (!transDic.ContainsKey(item.Query))
  3172. {
  3173. transDic.Add(item.Query, item.Translation);
  3174. }
  3175. }
  3176. }
  3177. List<GuestList> list = new List<GuestList>();
  3178. foreach (TourClientListDetailsView dele in datas)
  3179. {
  3180. GuestList guestList = new GuestList();
  3181. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3182. {
  3183. guestList.Name = dele.Pinyin;
  3184. }
  3185. else
  3186. {
  3187. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3188. guestList.Name = Name;
  3189. }
  3190. if (dele.Sex == 0)
  3191. {
  3192. guestList.Sex = "Male";
  3193. }
  3194. else if (dele.Sex == 1)
  3195. {
  3196. guestList.Sex = "Female";
  3197. }
  3198. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3199. if (!string.IsNullOrEmpty(dele.Job))
  3200. {
  3201. guestList.Job = dele.Job;
  3202. }
  3203. list.Add(guestList);
  3204. }
  3205. //载入模板
  3206. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3207. DocumentBuilder builder = new DocumentBuilder(doc);
  3208. //获取word里所有表格
  3209. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3210. //获取所填表格的序数
  3211. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3212. var rowStart = tableOne.Rows[0]; //获取第1行
  3213. //循环赋值
  3214. for (int i = 0; i < list.Count; i++)
  3215. {
  3216. builder.MoveToCell(0, i + 1, 0, 0);
  3217. builder.Write(list[i].Name.ToString());
  3218. builder.MoveToCell(0, i + 1, 1, 0);
  3219. builder.Write(list[i].Sex.ToString());
  3220. builder.MoveToCell(0, i + 1, 2, 0);
  3221. builder.Write(list[i].DOB.ToString());
  3222. builder.MoveToCell(0, i + 1, 3, 0);
  3223. builder.Write(list[i].Job.ToString());
  3224. }
  3225. //删除多余行
  3226. while (tableOne.Rows.Count > list.Count + 1)
  3227. {
  3228. tableOne.Rows.RemoveAt(list.Count + 1);
  3229. }
  3230. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3231. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3232. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3233. doc.Save(filePath);
  3234. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3235. return Ok(JsonView(true, "操作成功!", Url));
  3236. }
  3237. else
  3238. {
  3239. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3240. }
  3241. }
  3242. catch (Exception ex)
  3243. {
  3244. return Ok(JsonView(false, ex.Message));
  3245. throw;
  3246. }
  3247. }
  3248. #endregion
  3249. #region 团组经理模块 出入境费用
  3250. ///// <summary>
  3251. ///// 团组模块 - 出入境费用
  3252. ///// </summary>
  3253. ///// <returns></returns>
  3254. //[HttpPost]
  3255. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3256. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3257. //{
  3258. // try
  3259. // {
  3260. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3261. // if (data.Code != 0)
  3262. // {
  3263. // return Ok(JsonView(false, data.Msg));
  3264. // }
  3265. // return Ok(JsonView(true, "查询成功!"));
  3266. // }
  3267. // catch (Exception ex)
  3268. // {
  3269. // return Ok(JsonView(false, ex.Message));
  3270. // throw;
  3271. // }
  3272. //}
  3273. /// <summary>
  3274. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3275. /// </summary>
  3276. /// <returns></returns>
  3277. [HttpPost]
  3278. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3279. public async Task<IActionResult> SetDayAndCostAreaChange()
  3280. {
  3281. try
  3282. {
  3283. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3284. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3285. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3286. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3287. foreach (var item in unite) //处理交集数据
  3288. {
  3289. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3290. }
  3291. foreach (var item in merge) //处理差集数据
  3292. {
  3293. int nationalTravelFeeId = 0;
  3294. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3295. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3296. else
  3297. {
  3298. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3299. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3300. }
  3301. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3302. }
  3303. //只更新dayAndCost 的 nationalTravelFeeId;
  3304. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3305. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3306. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3307. }
  3308. catch (Exception ex)
  3309. {
  3310. return Ok(JsonView(false, ex.Message));
  3311. throw;
  3312. }
  3313. }
  3314. /// <summary>
  3315. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3316. /// </summary>
  3317. /// <returns></returns>
  3318. [HttpPost]
  3319. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3320. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3321. {
  3322. try
  3323. {
  3324. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3325. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3326. //SetDataInfoView
  3327. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3328. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3329. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3330. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3331. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3332. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3333. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3334. //默认币种显示
  3335. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3336. {
  3337. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3338. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3339. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3340. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3341. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3342. };
  3343. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3344. if (_currencyRate.Count > 0)
  3345. {
  3346. foreach (var item in _currencyInfos)
  3347. {
  3348. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3349. if (rateInfo != null)
  3350. {
  3351. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3352. rate1 *= 1.03M;
  3353. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3354. }
  3355. }
  3356. }
  3357. return Ok(JsonView(true, "查询成功!", new
  3358. {
  3359. GroupNameData = groupNameData.Data,
  3360. CurrencyData = _CurrencyData,
  3361. WordTypeData = _WordTypeData,
  3362. ExcelTypeData = _ExcelTypeData,
  3363. CurrencyInit = _currencyInfos
  3364. }));
  3365. }
  3366. catch (Exception ex)
  3367. {
  3368. return Ok(JsonView(false, ex.Message));
  3369. throw;
  3370. }
  3371. }
  3372. /// <summary>
  3373. /// 团组模块 - 出入境费用
  3374. /// 实时汇率 tips
  3375. /// 签证费用 tips
  3376. /// </summary>
  3377. /// <returns></returns>
  3378. [HttpPost]
  3379. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3380. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3381. {
  3382. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3383. //默认币种显示
  3384. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3385. {
  3386. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3387. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3388. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3389. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3390. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3391. };
  3392. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3393. List<dynamic> reteInfos = new List<dynamic>();
  3394. if (_currencyRate.Count > 0)
  3395. {
  3396. foreach (var item in _currencyInfos)
  3397. {
  3398. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3399. if (rateInfo != null)
  3400. {
  3401. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3402. decimal rate1 = item.Rate;
  3403. rate1 *= 1.03M;
  3404. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3405. reteInfos.Add(new
  3406. {
  3407. currCode = item.CurrencyCode,
  3408. currName = item.CurrencyName,
  3409. rate = rate2,
  3410. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3411. });
  3412. }
  3413. }
  3414. }
  3415. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3416. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3417. return Ok(JsonView(true, "查询成功!", new
  3418. {
  3419. //GroupNameData = groupNameData.Data,
  3420. visaData = visaData.Data,
  3421. airData = airData.Data,
  3422. reteInfos = reteInfos
  3423. }));
  3424. }
  3425. /// <summary>
  3426. /// 团组模块 - 出入境费用 - Info
  3427. /// </summary>
  3428. /// <returns></returns>
  3429. [HttpPost]
  3430. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3431. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3432. {
  3433. try
  3434. {
  3435. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3436. if (data.Code != 0)
  3437. {
  3438. return Ok(JsonView(false, data.Msg));
  3439. }
  3440. return Ok(JsonView(true, "查询成功!", data.Data));
  3441. }
  3442. catch (Exception ex)
  3443. {
  3444. return Ok(JsonView(false, ex.Message));
  3445. }
  3446. }
  3447. /// <summary>
  3448. /// 团组模块 - 出入境费用 - Add And Update
  3449. /// </summary>
  3450. /// <returns></returns>
  3451. [HttpPost]
  3452. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3453. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3454. {
  3455. try
  3456. {
  3457. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3458. if (data.Code != 0)
  3459. {
  3460. return Ok(JsonView(false, data.Msg));
  3461. }
  3462. return Ok(JsonView(true, data.Msg, data.Data));
  3463. }
  3464. catch (Exception ex)
  3465. {
  3466. return Ok(JsonView(false, ex.Message));
  3467. }
  3468. }
  3469. /// <summary>
  3470. /// 团组模块 - 出入境费用 - File downlaod
  3471. /// </summary>
  3472. /// <param name="dto"></param>
  3473. /// <returns></returns>
  3474. [HttpPost]
  3475. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3476. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3477. {
  3478. try
  3479. {
  3480. if (dto.DiId < 1)
  3481. {
  3482. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3483. }
  3484. if (dto.ExportType < 1)
  3485. {
  3486. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3487. }
  3488. if (dto.SubTypeId < 1)
  3489. {
  3490. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3491. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3492. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3493. 3 团组成员名单 1 团组成员名单"));
  3494. }
  3495. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3496. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3497. if (_EnterExitCosts == null)
  3498. {
  3499. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3500. }
  3501. //数据源
  3502. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3503. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3504. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3505. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3506. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3507. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3508. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3509. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3510. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3511. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3512. .Select((tcl, dc, cc) => new
  3513. {
  3514. Name = dc.LastName + dc.FirstName,
  3515. Sex = dc.Sex,
  3516. Birthday = dc.BirthDay,
  3517. Company = cc.CompanyFullName,
  3518. Job = dc.Job
  3519. })
  3520. .ToList();
  3521. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3522. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3523. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3524. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3525. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3526. if (dto.ExportType == 1) //明细表
  3527. {
  3528. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3529. {
  3530. //获取模板
  3531. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3532. //载入模板
  3533. Document doc = new Document(tempPath);
  3534. DocumentBuilder builder = new DocumentBuilder(doc);
  3535. //利用键值对存放数据
  3536. Dictionary<string, string> dic = new Dictionary<string, string>();
  3537. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3538. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3539. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3540. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3541. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3542. string row1_1 = "";
  3543. if (_EnterExitCosts.Visa > 0)
  3544. {
  3545. //insidePayTotal += _EnterExitCosts.Visa;
  3546. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3547. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3548. {
  3549. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3550. }
  3551. }
  3552. string row1_2 = "";
  3553. if (_EnterExitCosts.YiMiao > 0)
  3554. {
  3555. //insidePayTotal += _EnterExitCosts.YiMiao;
  3556. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3557. }
  3558. if (_EnterExitCosts.HeSuan > 0)
  3559. {
  3560. //insidePayTotal += _EnterExitCosts.HeSuan;
  3561. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  3562. }
  3563. if (_EnterExitCosts.Service > 0)
  3564. {
  3565. //insidePayTotal += _EnterExitCosts.Service;
  3566. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  3567. }
  3568. string row1_3 = "";
  3569. if (_EnterExitCosts.Safe > 0)
  3570. {
  3571. //insidePayTotal += _EnterExitCosts.Safe;
  3572. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  3573. }
  3574. if (_EnterExitCosts.Ticket > 0)
  3575. {
  3576. //insidePayTotal += _EnterExitCosts.Ticket;
  3577. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  3578. }
  3579. string row1 = "";
  3580. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  3581. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  3582. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  3583. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  3584. dic.Add("Row1Str", row1);
  3585. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  3586. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  3587. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3588. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  3589. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3590. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  3591. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  3592. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  3593. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  3594. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  3595. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  3596. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  3597. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  3598. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  3599. #region 填充word模板书签内容
  3600. foreach (var key in dic.Keys)
  3601. {
  3602. builder.MoveToBookmark(key);
  3603. builder.Write(dic[key]);
  3604. }
  3605. #endregion
  3606. #region 填充word表格内容
  3607. ////获读取指定表格方法二
  3608. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3609. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3610. for (int i = 0; i < dac1.Count; i++)
  3611. {
  3612. Grp_DayAndCost dac = dac1[i];
  3613. if (dac == null) continue;
  3614. builder.MoveToCell(0, i, 0, 0);
  3615. builder.Write("第" + dac.Days.ToString() + "晚:");
  3616. builder.MoveToCell(0, i, 1, 0);
  3617. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  3618. //builder.Write(dac.Place == null ? "" : dac.Place);
  3619. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3620. builder.MoveToCell(0, i, 2, 0);
  3621. builder.Write("费用标准:");
  3622. string curr = "";
  3623. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3624. if (currData != null)
  3625. {
  3626. curr = currData.Name;
  3627. }
  3628. builder.MoveToCell(0, i, 3, 0);
  3629. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3630. builder.MoveToCell(0, i, 4, 0);
  3631. builder.Write("费用小计:");
  3632. builder.MoveToCell(0, i, 5, 0);
  3633. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3634. }
  3635. //删除多余行
  3636. while (table1.Rows.Count > dac1.Count)
  3637. {
  3638. table1.Rows.RemoveAt(dac1.Count);
  3639. }
  3640. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  3641. for (int i = 0; i < dac2.Count; i++)
  3642. {
  3643. Grp_DayAndCost dac = dac2[i];
  3644. if (dac == null) continue;
  3645. builder.MoveToCell(1, i, 0, 0);
  3646. builder.Write("第" + dac.Days.ToString() + "天:");
  3647. builder.MoveToCell(1, i, 1, 0);
  3648. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3649. builder.MoveToCell(1, i, 2, 0);
  3650. builder.Write("费用标准:");
  3651. string curr = "";
  3652. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3653. if (currData != null)
  3654. {
  3655. curr = currData.Name;
  3656. }
  3657. builder.MoveToCell(1, i, 3, 0);
  3658. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3659. builder.MoveToCell(1, i, 4, 0);
  3660. builder.Write("费用小计:");
  3661. builder.MoveToCell(1, i, 5, 0);
  3662. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3663. }
  3664. //删除多余行
  3665. while (table2.Rows.Count > dac2.Count)
  3666. {
  3667. table2.Rows.RemoveAt(dac2.Count);
  3668. }
  3669. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  3670. for (int i = 0; i < dac3.Count; i++)
  3671. {
  3672. Grp_DayAndCost dac = dac3[i];
  3673. if (dac == null) continue;
  3674. builder.MoveToCell(2, i, 0, 0);
  3675. builder.Write("第" + dac.Days.ToString() + "天:");
  3676. builder.MoveToCell(2, i, 1, 0);
  3677. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3678. builder.MoveToCell(2, i, 2, 0);
  3679. builder.Write("费用标准:");
  3680. string curr = "";
  3681. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3682. if (currData != null)
  3683. {
  3684. curr = currData.Name;
  3685. }
  3686. builder.MoveToCell(2, i, 3, 0);
  3687. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3688. builder.MoveToCell(2, i, 4, 0);
  3689. builder.Write("费用小计:");
  3690. builder.MoveToCell(2, i, 5, 0);
  3691. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3692. }
  3693. //删除多余行
  3694. while (table3.Rows.Count > dac3.Count)
  3695. {
  3696. table3.Rows.RemoveAt(dac3.Count);
  3697. }
  3698. #endregion
  3699. //文件名
  3700. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  3701. AsposeHelper.removewatermark_v2180();
  3702. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3703. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3704. return Ok(JsonView(true, "成功", new { Url = url }));
  3705. }
  3706. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  3707. {
  3708. //获取模板
  3709. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  3710. //载入模板
  3711. Document doc = new Document(tempPath);
  3712. DocumentBuilder builder = new DocumentBuilder(doc);
  3713. Dictionary<string, string> dic = new Dictionary<string, string>();
  3714. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3715. {
  3716. List<string> list = new List<string>();
  3717. try
  3718. {
  3719. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3720. foreach (var item in spilitArr)
  3721. {
  3722. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3723. var depCode = spDotandEmpty[2].Substring(0, 3);
  3724. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3725. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  3726. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  3727. list.Add(depName);
  3728. list.Add(arrName);
  3729. }
  3730. list = list.Distinct().ToList();
  3731. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3732. }
  3733. catch (Exception)
  3734. {
  3735. dic.Add("ReturnCode", "行程录入不正确!");
  3736. }
  3737. }
  3738. else
  3739. {
  3740. dic.Add("ReturnCode", "未录入行程!");
  3741. }
  3742. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3743. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3744. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3745. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3746. {
  3747. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3748. dic.Add("Day", sp.Days.ToString());
  3749. }
  3750. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3751. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3752. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3753. //dic.Add("Names", Names);
  3754. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3755. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3756. decimal dac1totalPrice = 0.00M;
  3757. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  3758. foreach (var dac in dac1)
  3759. {
  3760. if (dac.SubTotal == 0.00M)
  3761. {
  3762. continue;
  3763. }
  3764. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  3765. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  3766. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  3767. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3768. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  3769. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3770. builder.Write(currency);//币种
  3771. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  3772. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3773. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  3774. builder.Write("");//人数
  3775. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  3776. builder.Write("");//天数
  3777. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  3778. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3779. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  3780. decimal rate = 0.00M;
  3781. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3782. builder.Write(rate.ToString("#0.0000"));//汇率
  3783. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  3784. decimal rbmPrice = dac.SubTotal;
  3785. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3786. accommodationStartIndex++;
  3787. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3788. }
  3789. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  3790. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  3791. {
  3792. table1.Rows.RemoveAt(i - 1);
  3793. foodandotherStartIndex--;
  3794. }
  3795. if (dac2.Count == dac3.Count)//国家 币种 金额
  3796. {
  3797. for (int i = 0; i < dac2.Count; i++)
  3798. {
  3799. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  3800. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  3801. }
  3802. }
  3803. decimal dac2totalPrice = 0.00M;
  3804. foreach (var dac in dac2)
  3805. {
  3806. if (dac.SubTotal == 0)
  3807. {
  3808. continue;
  3809. }
  3810. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  3811. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3812. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  3813. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3814. builder.Write(currency);//币种
  3815. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  3816. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3817. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  3818. builder.Write("");//人数
  3819. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  3820. builder.Write("");//天数
  3821. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  3822. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3823. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  3824. decimal rate = 0.00M;
  3825. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3826. builder.Write(rate.ToString("#0.0000"));//汇率
  3827. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  3828. decimal rbmPrice = dac.SubTotal;
  3829. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3830. foodandotherStartIndex++;
  3831. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3832. }
  3833. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  3834. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  3835. {
  3836. table1.Rows.RemoveAt(i - 1);
  3837. }
  3838. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3839. string otherFeeStr = "";
  3840. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  3841. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  3842. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  3843. if (otherFeeStr.Length > 0)
  3844. {
  3845. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  3846. otherFeeStr = $"({otherFeeStr})";
  3847. dic.Add("OtherFeeStr", otherFeeStr);
  3848. }
  3849. //总计
  3850. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  3851. //国际旅费
  3852. string outsideJJ = "";
  3853. string allPriceJJ = "";
  3854. if (_EnterExitCosts.SumJJC == 1)
  3855. {
  3856. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3857. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  3858. }
  3859. string outsideGW = "";
  3860. string allPriceGW = "";
  3861. if (_EnterExitCosts.SumGWC == 1)
  3862. {
  3863. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  3864. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  3865. }
  3866. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  3867. {
  3868. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  3869. dic.Add("InTravelPrice", InTravelPriceStr);
  3870. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  3871. dic.Add("FinalSumPrice", FinalSumPriceStr);
  3872. }
  3873. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  3874. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  3875. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  3876. foreach (var key in dic.Keys)
  3877. {
  3878. builder.MoveToBookmark(key);
  3879. builder.Write(dic[key]);
  3880. }
  3881. //模板文件名
  3882. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  3883. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3884. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3885. return Ok(JsonView(true, "成功", new { Url = url }));
  3886. }
  3887. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  3888. {
  3889. //获取模板
  3890. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  3891. //载入模板
  3892. WorkbookDesigner designer = new WorkbookDesigner();
  3893. designer.Workbook = new Workbook(tempPath);
  3894. Dictionary<string, string> dic = new Dictionary<string, string>();
  3895. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3896. {
  3897. List<string> list = new List<string>();
  3898. try
  3899. {
  3900. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3901. foreach (var item in spilitArr)
  3902. {
  3903. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3904. var depCode = spDotandEmpty[2].Substring(0, 3);
  3905. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3906. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  3907. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  3908. list.Add(depName);
  3909. list.Add(arrName);
  3910. }
  3911. list = list.Distinct().ToList();
  3912. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3913. }
  3914. catch (Exception)
  3915. {
  3916. dic.Add("ReturnCode", "行程录入不正确!");
  3917. }
  3918. }
  3919. else
  3920. {
  3921. dic.Add("ReturnCode", "未录入行程!");
  3922. }
  3923. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3924. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3925. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3926. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3927. {
  3928. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3929. dic.Add("Day", sp.Days.ToString());
  3930. }
  3931. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3932. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3933. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3934. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  3935. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  3936. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  3937. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  3938. designer.SetDataSource("Name", Names);
  3939. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  3940. designer.SetDataSource("Day", dic["Day"] + "天");
  3941. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  3942. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  3943. int startIndex = 10;
  3944. const int startIndexcopy = 10;
  3945. if (dac2.Count == dac3.Count)//国家 币种 金额
  3946. {
  3947. for (int i = 0; i < dac2.Count; i++)
  3948. {
  3949. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  3950. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  3951. }
  3952. }
  3953. DataTable dtdac1 = new DataTable();
  3954. List<string> place = new List<string>();
  3955. dtdac1.Columns.AddRange(new DataColumn[] {
  3956. new DataColumn(){ ColumnName = "city"},
  3957. new DataColumn(){ ColumnName = "curr"},
  3958. new DataColumn(){ ColumnName = "criterion"},
  3959. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  3960. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  3961. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  3962. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  3963. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  3964. });
  3965. DataTable dtdac2 = new DataTable();
  3966. dtdac2.Columns.AddRange(new DataColumn[] {
  3967. new DataColumn(){ ColumnName = "city"},
  3968. new DataColumn(){ ColumnName = "curr"},
  3969. new DataColumn(){ ColumnName = "criterion"},
  3970. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  3971. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  3972. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  3973. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  3974. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  3975. });
  3976. dtdac1.TableName = "tb1";
  3977. dtdac2.TableName = "tb2";
  3978. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  3979. foreach (var item in dac1)
  3980. {
  3981. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  3982. if (place.Contains(item.Place))
  3983. {
  3984. continue;
  3985. }
  3986. DataRow row = dtdac1.NewRow();
  3987. row["city"] = item.Place;
  3988. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  3989. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  3990. row["curr"] = currency;
  3991. row["rate"] = rate.ToString("#0.0000");
  3992. row["criterion"] = item.Cost.ToString("#0.00");
  3993. row["number"] = 1;
  3994. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  3995. //row["costRMB"] = rbmPrice;
  3996. dtdac1.Rows.Add(row);
  3997. place.Add(item.Place);
  3998. }
  3999. place = new List<string>();
  4000. foreach (var item in dac2)
  4001. {
  4002. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4003. if (place.Contains(item.Place))
  4004. {
  4005. continue;
  4006. }
  4007. DataRow row = dtdac2.NewRow();
  4008. row["city"] = item.Place;
  4009. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4010. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4011. row["curr"] = currency;
  4012. row["rate"] = rate.ToString("#0.0000");
  4013. row["criterion"] = item.Cost.ToString("#0.00");
  4014. row["number"] = 1;
  4015. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4016. //row["cost"] = item.SubTotal;
  4017. //row["costRMB"] = rbmPrice;
  4018. dtdac2.Rows.Add(row);
  4019. place.Add(item.Place);
  4020. //dac2totalPrice += rbmPrice;
  4021. }
  4022. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4023. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4024. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4025. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4026. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4027. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4028. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4029. string cellStr = $" 5.其他费用(";
  4030. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4031. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4032. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4033. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4034. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4035. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4036. if (cellStr.Length > 8)
  4037. {
  4038. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4039. }
  4040. cellStr += ")";
  4041. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4042. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4043. decimal pxFee = dac4.Sum(it => it.Cost);
  4044. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4045. string celllastStr1 = "";
  4046. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4047. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4048. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4049. celllastStr1 += $",国际旅费 元";
  4050. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4051. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4052. designer.SetDataSource("cell4Str", cell4Str);
  4053. designer.SetDataSource("cellStr", cellStr);
  4054. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4055. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4056. designer.SetDataSource("celllastStr", celllastStr);
  4057. Workbook wb = designer.Workbook;
  4058. var sheet = wb.Worksheets[0];
  4059. //绑定datatable数据集
  4060. designer.SetDataSource(dtdac1);
  4061. designer.SetDataSource(dtdac2);
  4062. designer.Process();
  4063. var rowStart = dtdac1.Rows.Count;
  4064. while (rowStart > 0)
  4065. {
  4066. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4067. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4068. startIndex++;
  4069. rowStart--;
  4070. }
  4071. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4072. startIndex += 1; //总计行
  4073. rowStart = dtdac2.Rows.Count;
  4074. while (rowStart > 0)
  4075. {
  4076. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4077. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4078. startIndex++;
  4079. rowStart--;
  4080. }
  4081. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4082. wb.CalculateFormula(true);
  4083. //模板文件名
  4084. string strFileName = $"四川省商务厅出国经费财政先行审核表.xls";
  4085. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4086. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4087. return Ok(JsonView(true, "成功", new { Url = url }));
  4088. }
  4089. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4090. {
  4091. //获取模板
  4092. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4093. //载入模板
  4094. Document doc = new Document(tempPath);
  4095. DocumentBuilder builder = new DocumentBuilder(doc);
  4096. Dictionary<string, string> dic = new Dictionary<string, string>();
  4097. dic.Add("GroupName", _DelegationInfo.TeamName);
  4098. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4099. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4100. string missionLeaderJob = "";//负责人job
  4101. int groupNumber = 0; //团人数
  4102. if (DeleClientList.Count > 0)
  4103. {
  4104. missionLeader = DeleClientList[0]?.Name ?? "";
  4105. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4106. }
  4107. dic.Add("MissionLeader", missionLeader); //团负责人
  4108. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4109. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4110. #region MyRegion
  4111. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4112. //{
  4113. // List<string> list = new List<string>();
  4114. // try
  4115. // {
  4116. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4117. // foreach (var item in spilitArr)
  4118. // {
  4119. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4120. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4121. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4122. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4123. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4124. // list.Add(depName);
  4125. // list.Add(arrName);
  4126. // }
  4127. // list = list.Distinct().ToList();
  4128. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4129. // }
  4130. // catch (Exception)
  4131. // {
  4132. // dic.Add("ReturnCode", "行程录入不正确!");
  4133. // }
  4134. //}
  4135. //else
  4136. //{
  4137. // dic.Add("ReturnCode", "未录入行程!");
  4138. //}
  4139. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4140. dic.Add("ReturnCode", string.Join("、", countrys));
  4141. #endregion
  4142. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4143. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4144. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4145. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4146. //{
  4147. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4148. // dic.Add("Day", sp.Days.ToString());
  4149. //}
  4150. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4151. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4152. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4153. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4154. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4155. //培训人员名单
  4156. int cultivateRowIndex = 7;
  4157. foreach (var item in DeleClientList)
  4158. {
  4159. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4160. builder.Write(item.Name);
  4161. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4162. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4163. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4164. string birthDay = "";
  4165. if (item.Birthday != null)
  4166. {
  4167. DateTime dt = Convert.ToDateTime(item.Birthday);
  4168. birthDay = $"{dt.Year}.{dt.Month}";
  4169. }
  4170. builder.Write(birthDay);
  4171. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4172. builder.Write(item.Company);
  4173. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4174. builder.Write(item.Job);
  4175. cultivateRowIndex++;
  4176. }
  4177. //删除多余行
  4178. //cultivateRowIndex -= 2;
  4179. int delRows = 10 + 7 - cultivateRowIndex;
  4180. if (delRows > 0)
  4181. {
  4182. for (int i = 0; i < delRows; i++)
  4183. {
  4184. table1.Rows.RemoveAt(cultivateRowIndex);
  4185. //cultivateRowIndex++;
  4186. }
  4187. }
  4188. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4189. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4190. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4191. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4192. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4193. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4194. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4195. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4196. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4197. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4198. //其他费用
  4199. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4200. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4201. //其他费用合计
  4202. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4203. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4204. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4205. //公务舱合计
  4206. //国际旅费
  4207. string outsideJJ = "";
  4208. string allPriceJJ = "";
  4209. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4210. {
  4211. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4212. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4213. }
  4214. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4215. {
  4216. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4217. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4218. }
  4219. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4220. {
  4221. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4222. dic.Add("AirFeeTotal", airFeeTotalStr);
  4223. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4224. dic.Add("FeeTotal", feeTotalStr);
  4225. }
  4226. foreach (var key in dic.Keys)
  4227. {
  4228. builder.MoveToBookmark(key);
  4229. builder.Write(dic[key]);
  4230. }
  4231. //模板文件名
  4232. string strFileName = $"{_DelegationInfo.TeamName}成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4233. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4234. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4235. return Ok(JsonView(true, "成功", new { Url = url }));
  4236. }
  4237. }
  4238. else if (dto.ExportType == 2) //表格
  4239. {
  4240. //利用键值对存放数据
  4241. Dictionary<string, string> dic = new Dictionary<string, string>();
  4242. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4243. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4244. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4245. dic.Add("Day", sp.Days.ToString());
  4246. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4247. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4248. {
  4249. //获取模板
  4250. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4251. //载入模板
  4252. Document doc = new Document(tempPath);
  4253. DocumentBuilder builder = new DocumentBuilder(doc);
  4254. dic.Add("TeamName", _DelegationInfo.TeamName);
  4255. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4256. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4257. string missionLeaderName = "",
  4258. missionLeaderJob = "";
  4259. if (DeleClientList.Count > 0)
  4260. {
  4261. missionLeaderName = DeleClientList[0].Name;
  4262. missionLeaderJob = DeleClientList[0].Job;
  4263. }
  4264. dic.Add("MissionLeaderName", missionLeaderName);
  4265. dic.Add("MissionLeaderJob", missionLeaderJob);
  4266. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4267. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4268. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4269. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4270. int rowCount = 10;//总人数行
  4271. int startRowIndex = 7; //起始行
  4272. for (int i = 0; i < DeleClientList.Count; i++)
  4273. {
  4274. builder.MoveToCell(0, startRowIndex, 0, 0);
  4275. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4276. builder.MoveToCell(0, startRowIndex, 1, 0);
  4277. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4278. builder.Write(sex);//性别
  4279. builder.MoveToCell(0, startRowIndex, 2, 0);
  4280. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4281. builder.MoveToCell(0, startRowIndex, 3, 0);
  4282. builder.Write(DeleClientList[i].Company);//工作单位
  4283. builder.MoveToCell(0, startRowIndex, 4, 0);
  4284. builder.Write(DeleClientList[i].Job);//职务及级别
  4285. builder.MoveToCell(0, startRowIndex, 5, 0);
  4286. builder.Write("");//人员属性
  4287. builder.MoveToCell(0, startRowIndex, 6, 0);
  4288. builder.Write("");//上次出国时间
  4289. startRowIndex++;
  4290. }
  4291. int nullRow = rowCount - DeleClientList.Count;//空行
  4292. for (int i = 0; i < nullRow; i++)
  4293. {
  4294. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4295. }
  4296. foreach (var key in dic.Keys)
  4297. {
  4298. builder.MoveToBookmark(key);
  4299. builder.Write(dic[key]);
  4300. }
  4301. //模板文件名
  4302. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4303. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4304. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4305. return Ok(JsonView(true, "成功", new { Url = url }));
  4306. }
  4307. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4308. {
  4309. //获取模板
  4310. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4311. //载入模板
  4312. Document doc = new Document(tempPath);
  4313. DocumentBuilder builder = new DocumentBuilder(doc);
  4314. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4315. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4316. dic.Add("Names", Names);
  4317. int accommodationRows = 12, foodandotherRows = 12;
  4318. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4319. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4320. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4321. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4322. int accommodationStartIndex = 6;
  4323. decimal dac1totalPrice = 0.00M;
  4324. foreach (var dac in dac1)
  4325. {
  4326. if (dac.SubTotal == 0)
  4327. {
  4328. continue;
  4329. }
  4330. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4331. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4332. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4333. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4334. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4335. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4336. builder.Write(currency);//币种
  4337. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4338. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4339. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4340. builder.Write("");//人数
  4341. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4342. builder.Write("");//天数
  4343. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4344. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4345. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4346. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4347. builder.Write(rate.ToString("#0.0000"));//汇率
  4348. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4349. decimal rbmPrice = rate * dac.SubTotal;
  4350. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4351. accommodationStartIndex++;
  4352. dac1totalPrice += rbmPrice;
  4353. }
  4354. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4355. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4356. builder.Write("小计");
  4357. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4358. builder.Write(dac1totalPrice.ToString("#0.00"));
  4359. accommodationStartIndex++;
  4360. int nullRow = accommodationRows - dac1.Count;
  4361. //删除空行
  4362. //if (nullRow > 0)
  4363. //{
  4364. // int rowIndex = accommodationStartIndex;
  4365. // for (int i = 0; i < nullRow; i++)
  4366. // {
  4367. // Row row = table1.Rows[rowIndex];
  4368. // row.Remove();
  4369. // rowIndex++;
  4370. // }
  4371. //}
  4372. if (dac2.Count == dac3.Count)//国家 币种 金额
  4373. {
  4374. for (int i = 0; i < dac2.Count; i++)
  4375. {
  4376. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4377. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4378. }
  4379. }
  4380. int foodandotherStartIndex = 19;//
  4381. decimal dac2totalPrice = 0.00M;
  4382. foreach (var dac in dac2)
  4383. {
  4384. if (dac.SubTotal == 0)
  4385. {
  4386. continue;
  4387. }
  4388. //foodandotherStartIndex = 12;
  4389. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4390. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4391. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4392. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4393. builder.Write(currency);//币种
  4394. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4395. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4396. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4397. builder.Write("");//人数
  4398. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4399. builder.Write("");//天数
  4400. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4401. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4402. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4403. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4404. builder.Write(rate.ToString("#0.0000"));//汇率
  4405. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4406. decimal rbmPrice = rate * dac.SubTotal;
  4407. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4408. foodandotherStartIndex++;
  4409. dac2totalPrice += rbmPrice;
  4410. }
  4411. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4412. //删除空行
  4413. if (dac2.Count < foodandotherRows)
  4414. {
  4415. //int nullRow = accommodationRows - dac2.Count;
  4416. //while (table2.Rows.Count > dac2.Count)
  4417. //{
  4418. // table2.Rows.RemoveAt(dac2.Count);
  4419. //}
  4420. }
  4421. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4422. string otherFeeStr = "";
  4423. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4424. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4425. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4426. if (otherFeeStr.Length > 0)
  4427. {
  4428. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4429. otherFeeStr = $"({otherFeeStr})";
  4430. dic.Add("OtherFeeStr", otherFeeStr);
  4431. }
  4432. foreach (var key in dic.Keys)
  4433. {
  4434. builder.MoveToBookmark(key);
  4435. builder.Write(dic[key]);
  4436. }
  4437. //模板文件名
  4438. string strFileName = $"省级单位出(境)经费报销单.docx";
  4439. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4440. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4441. return Ok(JsonView(true, "成功", new { Url = url }));
  4442. }
  4443. }
  4444. else if (dto.ExportType == 3)
  4445. {
  4446. if (dto.SubTypeId == 1) //团组成员名单
  4447. {
  4448. if (DeleClientList.Count < 1)
  4449. {
  4450. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4451. }
  4452. //获取模板
  4453. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4454. //载入模板
  4455. Document doc = new Document(tempPath);
  4456. DocumentBuilder builder = new DocumentBuilder(doc);
  4457. //获取word里所有表格
  4458. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4459. //获取所填表格的序数
  4460. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4461. var rowStart = tableOne.Rows[0]; //获取第1行
  4462. //循环赋值
  4463. for (int i = 0; i < DeleClientList.Count; i++)
  4464. {
  4465. builder.MoveToCell(0, i + 1, 0, 0);
  4466. builder.Write(DeleClientList[i].Name);
  4467. builder.MoveToCell(0, i + 1, 1, 0);
  4468. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4469. builder.Write(sex);
  4470. builder.MoveToCell(0, i + 1, 2, 0);
  4471. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4472. builder.MoveToCell(0, i + 1, 3, 0);
  4473. builder.Write(DeleClientList[i].Company);
  4474. builder.MoveToCell(0, i + 1, 4, 0);
  4475. builder.Write(DeleClientList[i].Job);
  4476. }
  4477. //删除多余行
  4478. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4479. {
  4480. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4481. }
  4482. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4483. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4484. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4485. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4486. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4487. return Ok(JsonView(true, "成功", new { Url = url }));
  4488. }
  4489. }
  4490. return Ok(JsonView(false, "操作失败!"));
  4491. }
  4492. catch (Exception ex)
  4493. {
  4494. return Ok(JsonView(false, ex.Message));
  4495. }
  4496. }
  4497. /// <summary>
  4498. /// 获取三公费用标准city
  4499. /// </summary>
  4500. /// <param name="placeData"></param>
  4501. /// <param name="nationalTravelFeeId"></param>
  4502. /// <returns></returns>
  4503. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4504. {
  4505. string _city = string.Empty;
  4506. if (placeData.Count < 1) return _city;
  4507. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4508. if (data == null) return _city;
  4509. string country = data.Country;
  4510. string city = data.City;
  4511. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4512. else _city = city;
  4513. return _city;
  4514. }
  4515. /// <summary>
  4516. /// 团组模块 - 出入境费用 - 明细表导出
  4517. /// </summary>
  4518. /// <returns></returns>
  4519. [HttpPost]
  4520. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4521. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4522. {
  4523. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4524. if (data.Code != 0)
  4525. {
  4526. return Ok(JsonView(false, data.Msg));
  4527. }
  4528. return Ok(JsonView(true, data.Msg, data.Data));
  4529. }
  4530. /// <summary>
  4531. /// 团组模块 - 出入境费用 - 一键清空
  4532. /// </summary>
  4533. /// <returns></returns>
  4534. [HttpPost]
  4535. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4536. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4537. {
  4538. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4539. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4540. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4541. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4542. if (_view.Code == 0)
  4543. {
  4544. return Ok(JsonView(true, "操作成功"));
  4545. }
  4546. return Ok(JsonView(false, "操作失败"));
  4547. }
  4548. /// <summary>
  4549. /// 团组模块 - 出入境费用 - 子项删除
  4550. /// </summary>
  4551. /// <returns></returns>
  4552. [HttpPost]
  4553. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4554. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4555. {
  4556. try
  4557. {
  4558. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4559. if (data.Code != 0)
  4560. {
  4561. return Ok(JsonView(false, data.Msg));
  4562. }
  4563. return Ok(JsonView(true, "操作成功!", data.Data));
  4564. }
  4565. catch (Exception ex)
  4566. {
  4567. return Ok(JsonView(false, ex.Message));
  4568. }
  4569. }
  4570. /// <summary>
  4571. /// 团组模块 - 出入境国家费用标准 List
  4572. /// </summary>
  4573. /// <returns></returns>
  4574. [HttpPost]
  4575. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4576. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  4577. {
  4578. try
  4579. {
  4580. Stopwatch sw = new Stopwatch();
  4581. sw.Start();
  4582. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  4583. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4584. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4585. Where gntf.Isdel = 0");
  4586. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  4587. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  4588. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  4589. //foreach (var item in nationalTravel)
  4590. //{
  4591. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  4592. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  4593. // if (otherData != null)
  4594. // {
  4595. // cityData.Remove(otherData);
  4596. // cityData.Add(otherData);
  4597. // }
  4598. // nationalTravelFeeData1.Add(new
  4599. // {
  4600. // Country = item.Country,
  4601. // CityData = cityData
  4602. // });
  4603. //}
  4604. sw.Stop();
  4605. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  4606. }
  4607. catch (Exception ex)
  4608. {
  4609. return Ok(JsonView(false, ex.Message));
  4610. throw;
  4611. }
  4612. }
  4613. /// <summary>
  4614. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  4615. /// </summary>
  4616. /// <returns></returns>
  4617. [HttpPost]
  4618. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4619. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  4620. {
  4621. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  4622. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  4623. List<string> countryData = new List<string>();
  4624. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  4625. countryData = countryData.Distinct().ToList();
  4626. List<dynamic> dataSource = new List<dynamic>();
  4627. foreach (var item in countryData)
  4628. {
  4629. List<string> cityData1 = new List<string>();
  4630. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  4631. var countryData2 = new
  4632. {
  4633. CountryName = item,
  4634. CityData = cityData1
  4635. };
  4636. dataSource.Add(countryData2);
  4637. }
  4638. return Ok(JsonView(true, "查询成功!", dataSource));
  4639. }
  4640. /// <summary>
  4641. /// 团组模块 - 出入境国家费用标准 Page List
  4642. /// </summary>
  4643. /// <returns></returns>
  4644. [HttpPost]
  4645. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4646. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  4647. {
  4648. int portId = dto.PortType;
  4649. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4650. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  4651. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  4652. string whereSql = string.Empty;
  4653. if (!string.IsNullOrEmpty(dto.Country))
  4654. {
  4655. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  4656. }
  4657. if (!string.IsNullOrEmpty(dto.City))
  4658. {
  4659. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  4660. }
  4661. string pageSql = string.Format(@"Select * From (
  4662. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  4663. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  4664. From Grp_NationalTravelFee gntf
  4665. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4666. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4667. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  4668. RefAsync<int> total = 0;
  4669. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  4670. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  4671. }
  4672. /// <summary>
  4673. /// 团组模块 - 出入境国家费用标准 根据城市查询
  4674. /// </summary>
  4675. /// <returns></returns>
  4676. [HttpPost]
  4677. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4678. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  4679. {
  4680. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  4681. int portId = dto.PortType;
  4682. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4683. string whereSql = string.Empty;
  4684. if (!string.IsNullOrEmpty(dto.Country))
  4685. {
  4686. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  4687. }
  4688. if (!string.IsNullOrEmpty(dto.City))
  4689. {
  4690. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  4691. }
  4692. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  4693. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  4694. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  4695. From Grp_NationalTravelFee gntf
  4696. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4697. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4698. Where gntf.Isdel = 0 {0} ", whereSql);
  4699. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  4700. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  4701. }
  4702. /// <summary>
  4703. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  4704. /// </summary>
  4705. /// <returns></returns>
  4706. [HttpPost]
  4707. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4708. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  4709. {
  4710. try
  4711. {
  4712. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  4713. if (data.Code != 0)
  4714. {
  4715. return Ok(JsonView(false, data.Msg));
  4716. }
  4717. return Ok(JsonView(true, "操作成功!", data.Data));
  4718. }
  4719. catch (Exception ex)
  4720. {
  4721. return Ok(JsonView(false, ex.Message));
  4722. }
  4723. }
  4724. /// <summary>
  4725. /// 团组模块 - 出入境国家费用标准 - Del
  4726. /// </summary>
  4727. /// <returns></returns>
  4728. [HttpPost]
  4729. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4730. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  4731. {
  4732. try
  4733. {
  4734. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  4735. {
  4736. Id = dto.Id,
  4737. DeleteUserId = dto.DeleteUserId,
  4738. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  4739. IsDel = 1
  4740. };
  4741. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  4742. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  4743. .WhereColumns(it => new { it.Id })
  4744. .ExecuteCommandAsync();
  4745. if (delStatus <= 0)
  4746. {
  4747. return Ok(JsonView(false, "删除失败!"));
  4748. }
  4749. return Ok(JsonView(true, "操作成功!"));
  4750. }
  4751. catch (Exception ex)
  4752. {
  4753. return Ok(JsonView(false, ex.Message));
  4754. }
  4755. }
  4756. #endregion
  4757. #region 签证费用录入
  4758. /// <summary>
  4759. /// 根据diid查询签证费用列表
  4760. /// </summary>
  4761. /// <param name="dto"></param>
  4762. /// <returns></returns>
  4763. [HttpPost]
  4764. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4765. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  4766. {
  4767. try
  4768. {
  4769. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  4770. if (groupData.Code != 0)
  4771. {
  4772. return Ok(JsonView(false, groupData.Msg));
  4773. }
  4774. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4775. }
  4776. catch (Exception ex)
  4777. {
  4778. return Ok(JsonView(false, ex.Message));
  4779. }
  4780. }
  4781. /// <summary>
  4782. /// 根据签证费用Id查询单条数据及c表数据
  4783. /// </summary>
  4784. /// <param name="dto"></param>
  4785. /// <returns></returns>
  4786. [HttpPost]
  4787. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4788. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  4789. {
  4790. try
  4791. {
  4792. Result groupData = await _visaPriceRep.PostVisaById(dto);
  4793. if (groupData.Code != 0)
  4794. {
  4795. return Ok(JsonView(false, groupData.Msg));
  4796. }
  4797. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4798. }
  4799. catch (Exception ex)
  4800. {
  4801. return Ok(JsonView(false, ex.Message));
  4802. }
  4803. }
  4804. /// <summary>
  4805. /// 签证费用删除
  4806. /// </summary>
  4807. /// <param name="dto"></param>
  4808. /// <returns></returns>
  4809. [HttpPost]
  4810. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4811. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  4812. {
  4813. _sqlSugar.BeginTran();
  4814. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  4815. if (!res)
  4816. {
  4817. _sqlSugar.RollbackTran();
  4818. return Ok(JsonView(false, "删除失败"));
  4819. }
  4820. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  4821. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  4822. .SetColumns(a => new Grp_CreditCardPayment()
  4823. {
  4824. IsDel = 1,
  4825. DeleteUserId = dto.DeleteUserId,
  4826. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4827. }).ExecuteCommand();
  4828. if (resSub < 1)
  4829. {
  4830. _sqlSugar.RollbackTran();
  4831. return Ok(JsonView(false, "删除失败"));
  4832. }
  4833. _sqlSugar.CommitTran();
  4834. return Ok(JsonView(true, "删除成功!"));
  4835. }
  4836. /// <summary>
  4837. /// 签证费用录入下拉框初始化
  4838. /// </summary>
  4839. /// <returns></returns>
  4840. [HttpPost]
  4841. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4842. public async Task<IActionResult> VisaPriceAddSelect()
  4843. {
  4844. try
  4845. {
  4846. //支付方式
  4847. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  4848. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  4849. //币种
  4850. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  4851. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  4852. //乘客类型
  4853. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  4854. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  4855. //卡类型
  4856. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  4857. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  4858. var data = new
  4859. {
  4860. Payment = _Payment,
  4861. CurrencyList = _CurrencyList,
  4862. PassengerType = _PassengerType,
  4863. BankCard = _BankCard
  4864. };
  4865. return Ok(JsonView(true, "查询成功!", data));
  4866. }
  4867. catch (Exception ex)
  4868. {
  4869. return Ok(JsonView(false, "程序错误!"));
  4870. throw;
  4871. }
  4872. }
  4873. /// <summary>
  4874. /// 签证费用录入操作(Status:1.新增,2.修改)
  4875. /// </summary>
  4876. /// <param name="dto"></param>
  4877. /// <returns></returns>
  4878. [HttpPost]
  4879. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4880. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  4881. {
  4882. try
  4883. {
  4884. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  4885. if (groupData.Code != 0)
  4886. {
  4887. return Ok(JsonView(false, groupData.Msg));
  4888. }
  4889. #region 应用推送
  4890. try
  4891. {
  4892. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  4893. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  4894. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  4895. }
  4896. catch (Exception ex)
  4897. {
  4898. }
  4899. #endregion
  4900. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4901. }
  4902. catch (Exception ex)
  4903. {
  4904. return Ok(JsonView(false, ex.Message));
  4905. }
  4906. }
  4907. #endregion
  4908. #region op费用录入
  4909. /// <summary>
  4910. /// 根据diid查询op费用列表
  4911. /// </summary>
  4912. /// <param name="dto"></param>
  4913. /// <returns></returns>
  4914. [HttpPost]
  4915. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4916. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  4917. {
  4918. try
  4919. {
  4920. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  4921. if (groupData.Code != 0)
  4922. {
  4923. return Ok(JsonView(false, groupData.Msg));
  4924. }
  4925. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4926. }
  4927. catch (Exception ex)
  4928. {
  4929. return Ok(JsonView(false, ex.Message));
  4930. }
  4931. }
  4932. /// <summary>
  4933. /// 根据op费用Id查询单条数据及c表数据
  4934. /// </summary>
  4935. /// <param name="dto"></param>
  4936. /// <returns></returns>
  4937. [HttpPost]
  4938. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4939. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  4940. {
  4941. try
  4942. {
  4943. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  4944. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  4945. var data = new
  4946. {
  4947. CarTouristGuideGround = _groupData,
  4948. CreditCardPayment = _creditCardPayment
  4949. };
  4950. return Ok(JsonView(true, "查询成功!", data));
  4951. }
  4952. catch (Exception ex)
  4953. {
  4954. return Ok(JsonView(false, "程序错误!"));
  4955. }
  4956. }
  4957. /// <summary>
  4958. /// op费用删除
  4959. /// </summary>
  4960. /// <param name="dto"></param>
  4961. /// <returns></returns>
  4962. [HttpPost]
  4963. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4964. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  4965. {
  4966. try
  4967. {
  4968. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  4969. if (!res)
  4970. {
  4971. return Ok(JsonView(false, "删除失败"));
  4972. }
  4973. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  4974. {
  4975. IsDel = 1,
  4976. DeleteUserId = dto.DeleteUserId,
  4977. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4978. }).ExecuteCommandAsync();
  4979. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  4980. {
  4981. IsDel = 1,
  4982. DeleteUserId = dto.DeleteUserId,
  4983. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4984. }).ExecuteCommandAsync();
  4985. return Ok(JsonView(true, "删除成功!"));
  4986. }
  4987. catch (Exception ex)
  4988. {
  4989. return Ok(JsonView(false, "程序错误!"));
  4990. throw;
  4991. }
  4992. }
  4993. /// <summary>
  4994. /// op费用录入操作(Status:1.新增,2.修改)
  4995. /// </summary>
  4996. /// <param name="dto"></param>
  4997. /// <returns></returns>
  4998. [HttpPost]
  4999. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5000. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5001. {
  5002. try
  5003. {
  5004. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5005. if (groupData.Code != 0)
  5006. {
  5007. return Ok(JsonView(false, groupData.Msg));
  5008. }
  5009. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5010. }
  5011. catch (Exception ex)
  5012. {
  5013. return Ok(JsonView(false, ex.Message));
  5014. }
  5015. }
  5016. /// <summary>
  5017. /// 填写费用详细页面初始化绑定
  5018. /// </summary>
  5019. /// <param name="dto"></param>
  5020. /// <returns></returns>
  5021. [HttpPost]
  5022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5023. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5024. {
  5025. try
  5026. {
  5027. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5028. if (groupData.Code != 0)
  5029. {
  5030. return Ok(JsonView(false, groupData.Msg));
  5031. }
  5032. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5033. }
  5034. catch (Exception ex)
  5035. {
  5036. return Ok(JsonView(false, ex.Message));
  5037. }
  5038. }
  5039. /// <summary>
  5040. /// 根据op费用Id查询详细数据
  5041. /// </summary>
  5042. /// <param name="dto"></param>
  5043. /// <returns></returns>
  5044. [HttpPost]
  5045. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5046. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5047. {
  5048. try
  5049. {
  5050. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5051. if (groupData.Code != 0)
  5052. {
  5053. return Ok(JsonView(false, groupData.Msg));
  5054. }
  5055. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5056. }
  5057. catch (Exception ex)
  5058. {
  5059. return Ok(JsonView(false, ex.Message));
  5060. }
  5061. }
  5062. /// <summary>
  5063. /// OP费用录入填写详情
  5064. /// </summary>
  5065. /// <param name="dto"></param>
  5066. /// <returns></returns>
  5067. [HttpPost]
  5068. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5069. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5070. {
  5071. try
  5072. {
  5073. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5074. if (groupData.Code != 0)
  5075. {
  5076. return Ok(JsonView(false, groupData.Msg));
  5077. }
  5078. #region 应用推送
  5079. try
  5080. {
  5081. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5082. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5083. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5084. }
  5085. catch (Exception ex)
  5086. {
  5087. }
  5088. #endregion
  5089. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5090. }
  5091. catch (Exception ex)
  5092. {
  5093. return Ok(JsonView(false, ex.Message));
  5094. }
  5095. }
  5096. /// <summary>
  5097. /// 获取三公详细所有城市
  5098. /// </summary>
  5099. /// <returns></returns>
  5100. [HttpGet]
  5101. public IActionResult OpCarCityResult()
  5102. {
  5103. var jw = JsonView(false);
  5104. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5105. {
  5106. x.Id,
  5107. x.Country,
  5108. x.City,
  5109. }).ToList();
  5110. if (data.Count > 0)
  5111. {
  5112. jw = JsonView(true, "获取成功!", data);
  5113. }
  5114. else
  5115. {
  5116. jw.Msg = "城市数据为空!";
  5117. jw.Data = new string[0];
  5118. }
  5119. return Ok(jw);
  5120. }
  5121. #region OP行程单
  5122. /// <summary>
  5123. /// OP行程单初始化
  5124. /// </summary>
  5125. /// <param name="dto"></param>
  5126. /// <returns></returns>
  5127. [HttpPost]
  5128. public IActionResult InitOpTravel(InitOpTravelDto dto)
  5129. {
  5130. var jw = JsonView(false);
  5131. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  5132. var group = groupList.First();
  5133. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  5134. if (group == null)
  5135. {
  5136. jw.Msg = "暂无团组!";
  5137. return Ok(jw);
  5138. }
  5139. group = groupList.Find(x => x.Id == diid);
  5140. if (group == null)
  5141. {
  5142. jw.Msg = "请输入正确的团组ID!";
  5143. return Ok(jw);
  5144. }
  5145. string city = string.Empty;
  5146. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  5147. if (blackCode.Count > 0)
  5148. {
  5149. var black = blackCode.First();
  5150. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  5151. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  5152. if (blackSp.Length > 0)
  5153. {
  5154. try
  5155. {
  5156. var cityArrCode = new List<string>(20);
  5157. foreach (var item in blackSp)
  5158. {
  5159. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  5160. var IndexSelect = itemSp[2];
  5161. var cityArrCodeLength = cityArrCode.Count - 1;
  5162. var startCity = IndexSelect.Substring(0, 3);
  5163. if (cityArrCodeLength > 0)
  5164. {
  5165. var arrEndCity = cityArrCode[cityArrCodeLength];
  5166. if (arrEndCity != startCity)
  5167. {
  5168. cityArrCode.Add(startCity.ToUpper());
  5169. }
  5170. }
  5171. else
  5172. {
  5173. cityArrCode.Add(startCity.ToUpper());
  5174. }
  5175. var endCity = IndexSelect.Substring(3, 3);
  5176. cityArrCode.Add(endCity.ToUpper());
  5177. }
  5178. var cityThree = string.Empty;
  5179. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  5180. cityThree = cityThree.TrimEnd(',');
  5181. if (string.IsNullOrWhiteSpace(cityThree))
  5182. {
  5183. throw new
  5184. Exception("error");
  5185. }
  5186. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  5187. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  5188. foreach (var item in cityArrCode)
  5189. {
  5190. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  5191. if (find != null)
  5192. {
  5193. city += find.City + "/";
  5194. }
  5195. else
  5196. {
  5197. city += item + "三字码未收入/";
  5198. }
  5199. }
  5200. city = city.TrimEnd('/');
  5201. }
  5202. catch (Exception e)
  5203. {
  5204. city = "黑屏代码格式不正确!";
  5205. }
  5206. }
  5207. }
  5208. else
  5209. {
  5210. city = "未录入黑屏代码";
  5211. }
  5212. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  5213. {
  5214. Date = x.Date,
  5215. Days = x.Days,
  5216. Diffgroup = x.Diffgroup,
  5217. Diid = x.Diid,
  5218. Traffic_First = x.Traffic_First,
  5219. Traffic_Second = x.Traffic_Second,
  5220. Trip = x.Trip,
  5221. WeekDay = x.WeekDay,
  5222. Id = x.Id
  5223. }).ToList();
  5224. jw.Data = new
  5225. {
  5226. groupList = groupList.Select(x => new
  5227. {
  5228. x.Id,
  5229. x.TeamName,
  5230. x.TourCode
  5231. }).ToList(),
  5232. groupInfo = new
  5233. {
  5234. group.VisitDays,
  5235. group.TourCode,
  5236. group.VisitPNumber,
  5237. group.TeamName,
  5238. city
  5239. },
  5240. OpTravelList
  5241. };
  5242. jw.Code = 200;
  5243. jw.Msg = "操作成功!";
  5244. return Ok(jw);
  5245. }
  5246. /// <summary>
  5247. /// 删除团组行程单
  5248. /// </summary>
  5249. /// <returns></returns>
  5250. [HttpPost]
  5251. public IActionResult DelTravel(DelOpTravelDto dto)
  5252. {
  5253. var jw = JsonView(false);
  5254. if (dto.UserId <= 0 || dto.Diid <= 0)
  5255. {
  5256. jw.Msg = "请输入正确的参数!";
  5257. return Ok(jw);
  5258. }
  5259. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  5260. .SetColumns(x => new Grp_TravelList
  5261. {
  5262. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5263. DeleteUserId = dto.UserId,
  5264. IsDel = 1,
  5265. }).ExecuteCommand();
  5266. jw = JsonView(true);
  5267. return Ok(jw);
  5268. }
  5269. /// <summary>
  5270. /// 行程单保存
  5271. /// </summary>
  5272. /// <returns></returns>
  5273. [HttpPost]
  5274. public IActionResult TravelSave(TravelSaveDto dto)
  5275. {
  5276. var jw = JsonView(false);
  5277. if (dto.Arr.Count > 0)
  5278. {
  5279. try
  5280. {
  5281. _sqlSugar.BeginTran();
  5282. foreach (var item in dto.Arr)
  5283. {
  5284. if (item.Id == 0)
  5285. {
  5286. throw new Exception("请传入正确的Id");
  5287. }
  5288. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  5289. .SetColumns(x => new Grp_TravelList
  5290. {
  5291. Trip = item.Trip
  5292. }).ExecuteCommand();
  5293. }
  5294. _sqlSugar.CommitTran();
  5295. jw = JsonView(true);
  5296. }
  5297. catch (Exception ex)
  5298. {
  5299. _sqlSugar.RollbackTran();
  5300. jw.Msg = "程序异常!" + ex.Message;
  5301. }
  5302. }
  5303. else
  5304. {
  5305. jw.Msg = "请传入正确的参数!";
  5306. }
  5307. return Ok(jw);
  5308. }
  5309. /// <summary>
  5310. /// 导出行程单
  5311. /// </summary>
  5312. /// <param name="dto"></param>
  5313. /// <returns></returns>
  5314. [HttpPost]
  5315. public IActionResult ExportTravel(InitOpTravelDto dto)
  5316. {
  5317. var jw = JsonView(false);
  5318. //数据源
  5319. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  5320. int diid = 0;
  5321. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  5322. if (Find == null)
  5323. {
  5324. jw.Msg = "请选择正确的团组!";
  5325. return Ok(jw);
  5326. }
  5327. else
  5328. {
  5329. diid = Find.Id;
  5330. }
  5331. DataTable dtBlack = null;
  5332. try
  5333. {
  5334. dtBlack = GetTableByBlackCode(diid);
  5335. }
  5336. catch (Exception)
  5337. {
  5338. jw.Msg = "机票黑屏代码有误!";
  5339. return Ok(jw);
  5340. }
  5341. string CityStr1 = "";
  5342. List<string> countriesList = new List<string>();
  5343. List<string> cityList = new List<string>();
  5344. string countriesIntroduction = "";
  5345. string cityIntroduction = "";
  5346. string timeDifference = "";
  5347. string currExchangeRate = "";
  5348. string txt_itemPrepare = "";
  5349. string txt_specialReminder = "";
  5350. string txt_cGPrecautions = "";
  5351. string txt_yGCG = "";
  5352. string txt_conduct = "";
  5353. string txt_commonEnglish = "";
  5354. if (dtBlack == null && (dtBlack.Rows[0]["Day"] == null || dtBlack.Rows[0]["Day"].ToString() == ""))
  5355. {
  5356. //提示
  5357. //PublicCode.GetAlertMsg(this, GetType(), dt.Rows[dt.Rows.Count - 1]["Error"].ToString());
  5358. }
  5359. else
  5360. {
  5361. //创建三字码示例
  5362. Res_ThreeCode t = new Res_ThreeCode();
  5363. //城市缓存
  5364. string city = "";
  5365. //出访城市
  5366. for (int i = 0; i < dtBlack.Rows.Count; i++)
  5367. {
  5368. if ((i + 1) < dtBlack.Rows.Count && dtBlack.Rows[i]["Three"].ToString() == dtBlack.Rows[i + 1]["Three"].ToString())
  5369. {
  5370. continue;
  5371. }
  5372. if (dtBlack.Rows.Count > 0 && (dtBlack.Rows[i]["Three"].ToString() != null && dtBlack.Rows[i]["Three"].ToString() != ""))
  5373. {
  5374. //出发城市
  5375. string cityTemp = dtBlack.Rows[i]["Three"].ToString().Replace("/", string.Empty).Substring(0, 3);
  5376. t = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three == cityTemp && x.IsDel == 0);
  5377. if (t != null)
  5378. {
  5379. city = city + "/" + t.City;
  5380. }
  5381. else
  5382. {
  5383. city = city + "/【" + cityTemp + "未收录,请联系机票同事录入】";
  5384. }
  5385. if (i == dtBlack.Rows.Count - 1)
  5386. {
  5387. //抵达城市
  5388. cityTemp = dtBlack.Rows[i]["Three"].ToString().Replace("/", string.Empty).Substring(3, 3);
  5389. t = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three == cityTemp && x.IsDel == 0);
  5390. if (t != null)
  5391. {
  5392. city = city + "/" + t.City;
  5393. }
  5394. else
  5395. {
  5396. city = city + "/【" + cityTemp + "未收录,请联系机票同事录入】";
  5397. }
  5398. }
  5399. }
  5400. }
  5401. if (city != "" && city != null)
  5402. {
  5403. string[] cityStr2 = city.Split('/');
  5404. string[] strs = cityStr2.Distinct().ToArray(); ;
  5405. string str = "";
  5406. foreach (var s in strs)
  5407. {
  5408. str += s + "/";
  5409. }
  5410. str = str.TrimStart('/');
  5411. str = str.TrimEnd('/');
  5412. //lblTourCity.Text = "去重前:" + city.TrimStart('/') + "\n 去重后:" + str;
  5413. CityStr1 = city.TrimStart('/');
  5414. }
  5415. // 行程repeater
  5416. if (GetByDiid(diid).Count > 0)
  5417. {
  5418. _travelList = GetByDiid(diid).Where(x => x.Issel == 1 && x.IsDel == 0).ToList();
  5419. }
  5420. else
  5421. {
  5422. //生成该时间段日期
  5423. List<string> timeList = GetTimeListByDataTable(dtBlack);
  5424. if (timeList != null)
  5425. {
  5426. string[] str = new string[timeList.Count];
  5427. //rpData.DataSource = str;
  5428. //rpData.DataBind();
  5429. }
  5430. }
  5431. }
  5432. //创建数据源Table
  5433. DataTable dtSource = new DataTable();
  5434. dtSource.Columns.Add("Days", typeof(string));
  5435. dtSource.Columns.Add("Date", typeof(string));
  5436. dtSource.Columns.Add("Week", typeof(string));
  5437. dtSource.Columns.Add("Traffic", typeof(string));
  5438. dtSource.Columns.Add("Trip", typeof(string));
  5439. //获取数据,放到datatable
  5440. foreach (var item in _travelList)
  5441. {
  5442. DataRow dr = dtSource.NewRow();
  5443. dr["Days"] = item.Days;
  5444. dr["Date"] = item.Date;
  5445. dr["Week"] = item.WeekDay;
  5446. dr["Traffic"] = item.Traffic_First
  5447. + "\r\n"
  5448. + item.Traffic_Second;
  5449. if (item.Trip.Replace("(此地区为黄热病地区,请注意打疫苗)", "").Length < 15)
  5450. {
  5451. item.Trip += @"
  5452. 08:00 早餐于酒店;
  5453. 09:00 公务活动;
  5454. 10:30 公务活动;
  5455. 12:00 午餐于当地餐厅;
  5456. 14:00 公务活动;
  5457. 16:00 公务活动;
  5458. 18:00 晚餐于当地餐厅;
  5459. 19:00 入住酒店休息;";
  5460. }
  5461. dr["Trip"] = item.Trip;
  5462. dtSource.Rows.Add(dr);
  5463. }
  5464. //lblTeamName.Text = di.TourCode;
  5465. //lblVisitDays.Text = di.VisitDays.ToString();
  5466. //lblVisitDays2.Text = di.VisitDays.ToString();
  5467. //lblPNumber.Text = di.VisitPNumber.ToString();
  5468. //lblGroup.Text = di.TeamName.ToString();
  5469. Dictionary<string, string> dic = new Dictionary<string, string>();
  5470. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  5471. dic.Add("City", CityStr1);
  5472. dic.Add("Days", Find.VisitDays.ToString());
  5473. dic.Add("DeleCode", Find.TourCode);
  5474. dic.Add("Pnum", Find.VisitPNumber.ToString());
  5475. dic.Add("Pnum2", Find.VisitPNumber.ToString());
  5476. List<Crm_DeleClient> leader = GetByDiidClient(Find.Id);
  5477. if (leader != null && leader.Count > 0)
  5478. {
  5479. dic.Add("Leader", GetByDiidClient(Find.Id)[0].LastName + GetByDiidClient(Find.Id)[0].FirstName);
  5480. }
  5481. else
  5482. {
  5483. dic.Add("Leader", "");
  5484. }
  5485. dic.Add("Pnum3", Find.VisitPNumber.ToString());
  5486. int UserId = 253;
  5487. dic.Add("OP", "");
  5488. dic.Add("OPTel", "");
  5489. //dic.Add("OP", "OP姓名");
  5490. //dic.Add("OPTel", "OP手机号码");
  5491. string countriesStr = "";
  5492. countriesList.ForEach(s => countriesStr += s + "、");
  5493. countriesStr = countriesStr.TrimEnd('、');
  5494. string cityStr = "";
  5495. cityList.ForEach(s => cityStr += s + "、");
  5496. cityStr = cityStr.TrimEnd('、');
  5497. //下方数据
  5498. dic.Add("selCountries", countriesStr == null ? "" : countriesStr);
  5499. dic.Add("selCity", cityStr == null ? "" : cityStr);
  5500. dic.Add("countriesIntroduction", countriesIntroduction == null ? "" : countriesIntroduction);
  5501. dic.Add("CityIntroduction", cityIntroduction == null ? "" : cityIntroduction);
  5502. dic.Add("timeDifference", timeDifference == null ? "" : timeDifference);
  5503. dic.Add("currExchangeRate", currExchangeRate == null ? "" : currExchangeRate);
  5504. dic.Add("temperature", "");
  5505. dic.Add("txt_itemPrepare", txt_itemPrepare == null ? "" : txt_itemPrepare);
  5506. dic.Add("txt_specialReminder", txt_specialReminder == null ? "" : txt_specialReminder);
  5507. dic.Add("txt_cGPrecautions", txt_cGPrecautions == null ? "" : txt_cGPrecautions);
  5508. dic.Add("txt_yGCG", txt_yGCG == null ? "" : txt_yGCG);
  5509. dic.Add("txt_conduct", txt_conduct == null ? "" : txt_conduct);
  5510. dic.Add("txt_commonEnglish", txt_commonEnglish == null ? "" : txt_commonEnglish);
  5511. //模板路径
  5512. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  5513. //载入模板
  5514. Document doc = null;
  5515. DocumentBuilder builder = null;
  5516. try
  5517. {
  5518. //载入模板
  5519. doc = new Document(tempPath);
  5520. builder = new DocumentBuilder(doc);
  5521. }
  5522. catch (Exception)
  5523. {
  5524. jw.Msg = "模板位置不存在!";
  5525. return Ok(jw);
  5526. }
  5527. foreach (var key in dic.Keys)
  5528. {
  5529. Bookmark bookmark = doc.Range.Bookmarks[key];
  5530. if (bookmark != null)
  5531. {
  5532. builder.MoveToBookmark(key);
  5533. builder.Write(dic[key]);
  5534. }
  5535. }
  5536. //获取word里所有表格
  5537. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5538. //获取所填表格的序数
  5539. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5540. try
  5541. {
  5542. //循环赋值
  5543. for (int i = 0; i < dtSource.Rows.Count; i++)
  5544. {
  5545. builder.MoveToCell(0, i + 1, 0, 0);
  5546. builder.Write(dtSource.Rows[i]["Days"].ToString());
  5547. builder.MoveToCell(0, i + 1, 1, 0);
  5548. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  5549. builder.MoveToCell(0, i + 1, 2, 0);
  5550. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  5551. var trip = dtSource.Rows[i]["Trip"].ToString();
  5552. builder.MoveToCell(0, i + 1, 3, 0);
  5553. builder.Write(trip);
  5554. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  5555. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  5556. // 获取特定索引的段落
  5557. Paragraph paragraph = (Paragraph)paragraphs[0];
  5558. Run run = paragraph.Runs[0];
  5559. Aspose.Words.Font font = run.Font;
  5560. font.Name = "黑体";
  5561. //设置双休红色
  5562. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  5563. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  5564. paragraph = (Paragraph)paragraphs[1];
  5565. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  5566. {
  5567. run = paragraph.Runs[0];
  5568. font = run.Font;
  5569. font.Color = Color.Red;
  5570. }
  5571. }
  5572. }
  5573. catch (Exception ex)
  5574. {
  5575. }
  5576. //删除多余行
  5577. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  5578. {
  5579. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  5580. }
  5581. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  5582. if (!Directory.Exists(savePath))
  5583. {
  5584. try
  5585. {
  5586. Directory.CreateDirectory(savePath);
  5587. }
  5588. catch
  5589. {
  5590. }
  5591. }
  5592. string path = savePath + Find.TeamName + "出访日程.docx";
  5593. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程.docx";
  5594. try
  5595. {
  5596. doc.Save(path, Aspose.Words.SaveFormat.Doc);
  5597. jw = JsonView(true, "导出成功", ftpPath);
  5598. }
  5599. catch (Exception)
  5600. {
  5601. jw = JsonView(false);
  5602. }
  5603. return Ok(jw);
  5604. }
  5605. /// <summary>
  5606. ///根据机票黑屏代码整理DataTable
  5607. /// </summary>
  5608. /// <param name="diid"></param>
  5609. /// <returns></returns>
  5610. DataTable GetTableByBlackCode(int diid)
  5611. {
  5612. //黑屏代码信息
  5613. List<Air_TicketBlackCode> listcode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.DiId == diid && x.IsDel == 0).ToList();
  5614. //测试数据为序号,航班号,起飞日期,三字码,起飞时刻,到达时刻,出发航站楼,到达航站楼,机型,飞行时间
  5615. //1.3U8391 TU17NOV CTUCAI 0220 0715 T1 T2 330 10H55M
  5616. DataTable dt = new DataTable();
  5617. dt.Columns.Add("Fliagtcode", typeof(string)); //航班号
  5618. dt.Columns.Add("Date", typeof(string));//起飞日期
  5619. dt.Columns.Add("Three", typeof(string));//三字码
  5620. dt.Columns.Add("StartTime", typeof(string));//起飞时刻
  5621. dt.Columns.Add("EndTime", typeof(string));//到达时刻
  5622. dt.Columns.Add("StartBuilding", typeof(string));//出发航站楼
  5623. dt.Columns.Add("EndBuilding", typeof(string));//到达航站楼
  5624. dt.Columns.Add("AirModel", typeof(string)); //机型
  5625. dt.Columns.Add("FlightTime", typeof(string));//飞行时间
  5626. dt.Columns.Add("Day", typeof(string));//整理的起飞日期;作为排序依据
  5627. dt.Columns.Add("ArrivedDate", typeof(string));//整理的到达日期
  5628. dt.Columns.Add("Error", typeof(string));//整理的到达日期
  5629. dt.Columns.Add("Sign", typeof(string));//标识:0表示为原生黑屏代码、1表示“+1”新增的黑屏代码
  5630. //判断是否录入黑屏代码
  5631. if (listcode.Count() == 0 || listcode == null)
  5632. {
  5633. dt.Rows.Add(null, null, null, null, null, null, null, null, null, null, null, "黑屏代码未录入!", null);
  5634. }
  5635. else
  5636. {
  5637. //读取单段黑屏代码
  5638. for (int i = 0; i < listcode.Count; i++)
  5639. {
  5640. //去除序号
  5641. string[] CodeList = Regex.Split(listcode[i].BlackCode, "\\d+\\.", RegexOptions.IgnoreCase);
  5642. //去除多余空格,方法一Linq扩展方法
  5643. CodeList = CodeList.Where(str => str != "").ToArray();
  5644. CodeList = CodeList.Where(str => str != " ").ToArray();
  5645. //年
  5646. int year = Convert.ToInt32(DateTime.Now.Year.ToString());
  5647. //读取单条黑屏代码
  5648. for (int j = 0; j < CodeList.Count(); j++)
  5649. {
  5650. //去除多余空格,方法二使用Split()方法进行分割,分割有一个选项是RemoveEmptyEntries
  5651. CodeList[j] = CodeList[j].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty).TrimStart().TrimEnd();
  5652. string[] Info = CodeList[j].Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5653. //string[] Info = CodeList[j].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty)
  5654. // .TrimStart().TrimEnd().Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5655. //去除多余空格
  5656. Info = Info.Where(str => str != "").ToArray();
  5657. Info = Info.Where(str => str != " ").ToArray();
  5658. //判断黑屏代码是否正确拆分; 理应拆成9段
  5659. if (Info.Count() < 9)
  5660. {
  5661. dt.Rows.Add(null, null, null, null, null, null, null, null, null, null, null, "本团组第" + (i + 1) + "段黑屏代码中第" + (j + 1) + " 条有误,请联系机票同事核对", null);
  5662. }
  5663. else
  5664. {
  5665. try
  5666. {
  5667. //月
  5668. int month = Convert.ToInt32(GetLonger(Info[1].Substring(4, 3)));
  5669. //日
  5670. int day = Convert.ToInt32(Info[1].Substring(2, 2));
  5671. #region 逐一比较月份,判断是否翻年;逐一比较三字码顶真,判断是否跑错机场
  5672. if (j > 0)
  5673. {
  5674. string[] Temp = CodeList[j - 1].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty)
  5675. .TrimStart().TrimEnd().Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5676. Temp = Temp.Where(str => str != "").ToArray();
  5677. Temp = Temp.Where(str => str != " ").ToArray();
  5678. int monthTemp = Convert.ToInt32(GetLonger(Temp[1].Substring(4, 3)));
  5679. // 如果相邻月份之差小于0,则证明次一条年份需+1
  5680. if (month - monthTemp < 0)
  5681. {
  5682. year = year + 1;
  5683. }
  5684. //如果相邻代码三字码不顶真,提醒
  5685. string FootThree = Temp[2].Substring(3, 3);
  5686. string HeadThree = Info[2].Substring(0, 3);
  5687. if (FootThree != HeadThree)
  5688. {
  5689. //DelegationInfoService s = new DelegationInfoService();
  5690. //UsersService us = new UsersService();
  5691. //GroupsTaskAssignmentService gts = new GroupsTaskAssignmentService();
  5692. //77 行程
  5693. List<Grp_GroupsTaskAssignment> list2 = _sqlSugar.Queryable<Grp_GroupsTaskAssignment>().Where(x => x.CTId == 77 && x.DIId == diid && x.IsDel == 0).ToList();
  5694. foreach (var temp in list2)
  5695. {
  5696. //if (temp.UId != 21)
  5697. //SendAndReturn(us.GetUsersByID(temp.UId).Email,
  5698. // "黑屏代码提醒",
  5699. // s.GetDelegationInfoByID(diid).TeamName + "的机票黑屏代码中,相邻航段的三字码不连续,请查看!");
  5700. }
  5701. //85 机票预订
  5702. List<Grp_GroupsTaskAssignment> list6 = _sqlSugar.Queryable<Grp_GroupsTaskAssignment>().Where(x => x.CTId == 85 && x.DIId == diid && x.IsDel == 0).ToList();
  5703. foreach (var temp in list6)
  5704. {
  5705. //if (temp.UId != 21)
  5706. //SendAndReturn(us.GetUsersByID(temp.UId).Email,
  5707. // "黑屏代码提醒",
  5708. // s.GetDelegationInfoByID(diid).TeamName + "的机票黑屏代码中,相邻航段的三字码不连续,请查看!");
  5709. }
  5710. }
  5711. }
  5712. #endregion
  5713. #region 判断到达日期是否需要加1
  5714. if (Info[4].Contains("+"))
  5715. {
  5716. //日期+1
  5717. day = day + 1;
  5718. //判断是否进入下一月
  5719. if (day > Convert.ToInt32(GetDaysByMonth(Info[1].Substring(4, 3), year)))
  5720. {
  5721. day = day - Convert.ToInt32(GetDaysByMonth(Info[1].Substring(4, 3), year));
  5722. month = month + 1;
  5723. //判断是否进入下一年
  5724. if (month > 12)
  5725. {
  5726. month = month - 12;
  5727. year = year + 1;
  5728. }
  5729. }
  5730. //月份整理格式
  5731. string monthTemp = month.ToString();
  5732. if (month < 10)
  5733. {
  5734. monthTemp = "0" + monthTemp;
  5735. }
  5736. //日期整理格式
  5737. string daytemp = day.ToString();
  5738. if (day < 10)
  5739. {
  5740. daytemp = "0" + daytemp;
  5741. }
  5742. string temp = Info[4].Split('+')[0];
  5743. //添加起飞数据
  5744. dt.Rows.Add(Info[0],
  5745. Info[1],
  5746. Info[2],
  5747. Info[3],
  5748. temp,
  5749. Info[5],
  5750. Info[6],
  5751. Info[7],
  5752. Info[8],
  5753. year + "-" + GetLonger(Info[1].Substring(4, 3)) + "-" + Info[1].Substring(2, 2),
  5754. year + "-" + monthTemp + "-" + daytemp,
  5755. "",
  5756. "0");
  5757. //加1天,添加到达数据
  5758. dt.Rows.Add(Info[0],
  5759. Info[1].Replace(Info[1].Substring(2, 2), daytemp),
  5760. Info[2],
  5761. Info[3],
  5762. temp,
  5763. Info[5],
  5764. Info[6],
  5765. Info[7],
  5766. Info[8],
  5767. year + "-" + monthTemp + "-" + daytemp,
  5768. year + "-" + monthTemp + "-" + daytemp,
  5769. "",
  5770. "1");
  5771. }
  5772. else
  5773. {
  5774. //月份整理格式
  5775. string monthTemp = month.ToString();
  5776. if (month < 10)
  5777. {
  5778. monthTemp = "0" + monthTemp;
  5779. }
  5780. //日期整理格式
  5781. string daytemp = day.ToString();
  5782. if (day < 10)
  5783. {
  5784. daytemp = "0" + daytemp;
  5785. }
  5786. dt.Rows.Add(Info[0],
  5787. Info[1],
  5788. Info[2],
  5789. Info[3],
  5790. Info[4],
  5791. Info[5],
  5792. Info[6],
  5793. Info[7],
  5794. Info[8],
  5795. year + "-" + monthTemp + "-" + daytemp,
  5796. year + "-" + monthTemp + "-" + daytemp,
  5797. "",
  5798. "0");
  5799. }
  5800. #endregion
  5801. }
  5802. catch (Exception ex)
  5803. {
  5804. string exstr = ex.Message.ToString();
  5805. }
  5806. }
  5807. }
  5808. //排序
  5809. dt.DefaultView.Sort = "Day asc";
  5810. dt = dt.DefaultView.ToTable();
  5811. }
  5812. }
  5813. return dt;
  5814. }
  5815. /// <summary>
  5816. /// 根据团组编号查询信息
  5817. /// </summary>
  5818. /// <returns>返回空或者对象信息</returns>
  5819. List<Grp_TravelList> GetByDiid(int Diid)
  5820. {
  5821. //调用获取单个对象的方法
  5822. return _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == Diid && x.IsDel == 0).ToList();
  5823. }
  5824. /// <summary>
  5825. /// 20210816
  5826. /// 根据datatable生成某一时间段的日期
  5827. /// </summary>
  5828. /// <param name="dt">黑屏代码生成的datatable</param>
  5829. /// <returns></returns>
  5830. List<string> GetTimeListByDataTable(DataTable dt)
  5831. {
  5832. if (dt.Rows[0]["Day"].ToString() != "")
  5833. {
  5834. DateTime datestart = Convert.ToDateTime(dt.Rows[0]["Day"].ToString());
  5835. DateTime dateend = Convert.ToDateTime(dt.Rows[dt.Rows.Count - 1]["ArrivedDate"].ToString());
  5836. List<string> timeList = new List<string>();
  5837. while (datestart <= dateend)
  5838. {
  5839. timeList.Add(datestart.ToString("yyyy-MM-dd"));
  5840. datestart = datestart.AddDays(1);
  5841. }
  5842. return timeList;
  5843. }
  5844. return null;
  5845. }
  5846. /// <summary>
  5847. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  5848. /// </summary>
  5849. /// <param name="num"></param>
  5850. /// <returns></returns>
  5851. string GetNum(string num)
  5852. {
  5853. string str = "";
  5854. switch (num)
  5855. {
  5856. case "1":
  5857. str = "一";
  5858. break;
  5859. case "2":
  5860. str = "二";
  5861. break;
  5862. case "3":
  5863. str = "三";
  5864. break;
  5865. case "4":
  5866. str = "四";
  5867. break;
  5868. case "5":
  5869. str = "五";
  5870. break;
  5871. case "6":
  5872. str = "六";
  5873. break;
  5874. case "7":
  5875. str = "七";
  5876. break;
  5877. case "8":
  5878. str = "八";
  5879. break;
  5880. case "9":
  5881. str = "九";
  5882. break;
  5883. case "10":
  5884. str = "十";
  5885. break;
  5886. case "11":
  5887. str = "十一";
  5888. break;
  5889. case "12":
  5890. str = "十二";
  5891. break;
  5892. case "一":
  5893. str = "1";
  5894. break;
  5895. case "二":
  5896. str = "2";
  5897. break;
  5898. case "三":
  5899. str = "3";
  5900. break;
  5901. case "四":
  5902. str = "4";
  5903. break;
  5904. case "五":
  5905. str = "5";
  5906. break;
  5907. case "六":
  5908. str = "6";
  5909. break;
  5910. case "七":
  5911. str = "7";
  5912. break;
  5913. case "八":
  5914. str = "8";
  5915. break;
  5916. case "九":
  5917. str = "9";
  5918. break;
  5919. case "十":
  5920. str = "10";
  5921. break;
  5922. case "十一":
  5923. str = "11";
  5924. break;
  5925. case "十二":
  5926. str = "12";
  5927. break;
  5928. }
  5929. return str;
  5930. }
  5931. List<Crm_DeleClient> GetByDiidClient(int DIID)
  5932. {
  5933. return _sqlSugar.Queryable<Crm_DeleClient>().Where(x => x.DiId == DIID && x.IsDel == 0).ToList();
  5934. }
  5935. /// <summary>
  5936. /// 根据星期,月份的缩写,转换成数字或者全称
  5937. /// 根据币种中文名称返回币种代码
  5938. /// 根据数字返回机型型号【2、3开头的就是空客,比如空客320,7开头的就是波音,比如波音777】
  5939. /// 20210903贾文滔
  5940. /// </summary>
  5941. /// <param name="startDate"></param>
  5942. /// <param name="endDate"></param>
  5943. /// <returns></returns>
  5944. string GetLonger(string temp)
  5945. {
  5946. string str = "";
  5947. switch (temp.ToUpper())
  5948. {
  5949. case "美元":
  5950. str = "USD";
  5951. break;
  5952. case "日元":
  5953. str = "JPY";
  5954. break;
  5955. case "英镑":
  5956. str = "GBP";
  5957. break;
  5958. case "欧元":
  5959. str = "EUR";
  5960. break;
  5961. case "港币":
  5962. str = "HKD";
  5963. break;
  5964. case "MO":
  5965. str = "星期一";
  5966. break;
  5967. case "TU":
  5968. str = "星期二";
  5969. break;
  5970. case "WE":
  5971. str = "星期三";
  5972. break;
  5973. case "TH":
  5974. str = "星期四";
  5975. break;
  5976. case "FR":
  5977. str = "星期五";
  5978. break;
  5979. case "SA":
  5980. str = "星期六";
  5981. break;
  5982. case "SU":
  5983. str = "星期天";
  5984. break;
  5985. case "JAN":
  5986. str = "01";
  5987. break;
  5988. case "FEB":
  5989. str = "02";
  5990. break;
  5991. case "MAR":
  5992. str = "03";
  5993. break;
  5994. case "APR":
  5995. str = "04";
  5996. break;
  5997. case "MAY":
  5998. str = "05";
  5999. break;
  6000. case "JUN":
  6001. str = "06";
  6002. break;
  6003. case "JUL":
  6004. str = "07";
  6005. break;
  6006. case "AUG":
  6007. str = "08";
  6008. break;
  6009. case "SEP":
  6010. str = "09";
  6011. break;
  6012. case "OCT":
  6013. str = "10";
  6014. break;
  6015. case "NOV":
  6016. str = "11";
  6017. break;
  6018. case "DEC":
  6019. str = "12";
  6020. break;
  6021. case "MONDAY":
  6022. str = "星期一";
  6023. break;
  6024. case "TUESDAY":
  6025. str = "星期二";
  6026. break;
  6027. case "WEDNESDAY":
  6028. str = "星期三";
  6029. break;
  6030. case "THURSDAY":
  6031. str = "星期四";
  6032. break;
  6033. case "FRIDAY":
  6034. str = "星期五";
  6035. break;
  6036. case "SATURDAY":
  6037. str = "星期六";
  6038. break;
  6039. case "SUNDAY":
  6040. str = "星期日";
  6041. break;
  6042. case "01":
  6043. str = "JAN";
  6044. break;
  6045. case "02":
  6046. str = "FEB";
  6047. break;
  6048. case "03":
  6049. str = "MAR";
  6050. break;
  6051. case "04":
  6052. str = "APR";
  6053. break;
  6054. case "05":
  6055. str = "MAY";
  6056. break;
  6057. case "06":
  6058. str = "JUN";
  6059. break;
  6060. case "07":
  6061. str = "JUL";
  6062. break;
  6063. case "08":
  6064. str = "AUG";
  6065. break;
  6066. case "09":
  6067. str = "SEP";
  6068. break;
  6069. case "10":
  6070. str = "OCT";
  6071. break;
  6072. case "11":
  6073. str = "NOV";
  6074. break;
  6075. case "12":
  6076. str = "DEC";
  6077. break;
  6078. case "2":
  6079. str = "空客A";
  6080. break;
  6081. case "3":
  6082. str = "空客A";
  6083. break;
  6084. case "7":
  6085. str = "波音";
  6086. break;
  6087. }
  6088. return str;
  6089. }
  6090. /// <summary>
  6091. /// 根据月份返回天数
  6092. /// </summary>
  6093. /// <param name="temp"></param>
  6094. /// <returns></returns>
  6095. string GetDaysByMonth(string Month, int year)
  6096. {
  6097. string str = "";
  6098. //判断是否是闰年
  6099. if (DateTime.IsLeapYear(year) == false)
  6100. {
  6101. switch (Month.ToUpper())
  6102. {
  6103. case "JAN":
  6104. str = "31";
  6105. break;
  6106. case "FEB":
  6107. str = "28";
  6108. break;
  6109. case "MAR":
  6110. str = "31";
  6111. break;
  6112. case "APR":
  6113. str = "30";
  6114. break;
  6115. case "MAY":
  6116. str = "31";
  6117. break;
  6118. case "JUN":
  6119. str = "30";
  6120. break;
  6121. case "JUL":
  6122. str = "31";
  6123. break;
  6124. case "AUG":
  6125. str = "31";
  6126. break;
  6127. case "SEP":
  6128. str = "30";
  6129. break;
  6130. case "OCT":
  6131. str = "31";
  6132. break;
  6133. case "NOV":
  6134. str = "30";
  6135. break;
  6136. case "DEC":
  6137. str = "31";
  6138. break;
  6139. case "01":
  6140. str = "31";
  6141. break;
  6142. case "02":
  6143. str = "28";
  6144. break;
  6145. case "03":
  6146. str = "31";
  6147. break;
  6148. case "04":
  6149. str = "30";
  6150. break;
  6151. case "05":
  6152. str = "31";
  6153. break;
  6154. case "06":
  6155. str = "30";
  6156. break;
  6157. case "07":
  6158. str = "31";
  6159. break;
  6160. case "08":
  6161. str = "31";
  6162. break;
  6163. case "09":
  6164. str = "30";
  6165. break;
  6166. case "10":
  6167. str = "31";
  6168. break;
  6169. case "11":
  6170. str = "30";
  6171. break;
  6172. case "12":
  6173. str = "31";
  6174. break;
  6175. }
  6176. }
  6177. else
  6178. {
  6179. switch (Month.ToUpper())
  6180. {
  6181. case "JAN":
  6182. str = "31";
  6183. break;
  6184. case "FEB":
  6185. str = "29";
  6186. break;
  6187. case "MAR":
  6188. str = "31";
  6189. break;
  6190. case "APR":
  6191. str = "30";
  6192. break;
  6193. case "MAY":
  6194. str = "31";
  6195. break;
  6196. case "JUN":
  6197. str = "30";
  6198. break;
  6199. case "JUL":
  6200. str = "31";
  6201. break;
  6202. case "AUG":
  6203. str = "31";
  6204. break;
  6205. case "SEP":
  6206. str = "30";
  6207. break;
  6208. case "OCT":
  6209. str = "31";
  6210. break;
  6211. case "NOV":
  6212. str = "30";
  6213. break;
  6214. case "DEC":
  6215. str = "31";
  6216. break;
  6217. case "01":
  6218. str = "31";
  6219. break;
  6220. case "02":
  6221. str = "29";
  6222. break;
  6223. case "03":
  6224. str = "31";
  6225. break;
  6226. case "04":
  6227. str = "30";
  6228. break;
  6229. case "05":
  6230. str = "31";
  6231. break;
  6232. case "06":
  6233. str = "30";
  6234. break;
  6235. case "07":
  6236. str = "31";
  6237. break;
  6238. case "08":
  6239. str = "31";
  6240. break;
  6241. case "09":
  6242. str = "30";
  6243. break;
  6244. case "10":
  6245. str = "31";
  6246. break;
  6247. case "11":
  6248. str = "30";
  6249. break;
  6250. case "12":
  6251. str = "31";
  6252. break;
  6253. }
  6254. }
  6255. return str;
  6256. }
  6257. #endregion
  6258. #endregion
  6259. #region 团组成本
  6260. /// <summary>
  6261. /// 团组成本数据初始化
  6262. /// </summary>
  6263. /// <param name="dto"></param>
  6264. /// <returns></returns>
  6265. [HttpPost]
  6266. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6267. {
  6268. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6269. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6270. WHEN COUNT(*) >= 0 THEN 'True'
  6271. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6272. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6273. ").ToList(); //团组列表
  6274. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6275. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6276. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6277. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6278. if (groupinfoValue != null)
  6279. {
  6280. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6281. var spArr = new string[1] { countryArr };
  6282. if (countryArr.Contains("|"))
  6283. {
  6284. spArr = countryArr.Split("|");
  6285. }
  6286. else if (countryArr.Contains("、"))
  6287. {
  6288. spArr = countryArr.Split("、");
  6289. }
  6290. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6291. {
  6292. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6293. if (dbQueryCountry != null)
  6294. {
  6295. visaCountryInfoArr.Add(dbQueryCountry);
  6296. }
  6297. }
  6298. }
  6299. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6300. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6301. var create = _GroupCostRepository.
  6302. CreateGroupCostByBlackCode(dto.Diid);
  6303. if (groupCost.Count == 0 && create.Code == 0)
  6304. {
  6305. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6306. }
  6307. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6308. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6309. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6310. groupCostMap = groupCostMap.Select(x =>
  6311. {
  6312. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6313. {
  6314. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6315. }
  6316. return x;
  6317. }).ToList();
  6318. //GroupCostParameter.Add(new
  6319. // Grp_GroupCostParameter());
  6320. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6321. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0 ).Count() > 0;
  6322. return Ok(JsonView(new
  6323. {
  6324. groupList,
  6325. groupInfo,
  6326. groupChecks,
  6327. groupCost = groupCostMap,
  6328. hotelNumber,
  6329. GroupCostParameter = GroupCostParameterMap,
  6330. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6331. {
  6332. x.VisaCountry,
  6333. x.VisaPrice,
  6334. x.Id,
  6335. }).ToList(),
  6336. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6337. blackCodeIsTrue = create.Code == 0 ? true : false,
  6338. hotelIsTrue = hotelIsTrue,
  6339. })) ;
  6340. }
  6341. /// <summary>
  6342. /// 团组成本信息保存
  6343. /// </summary>
  6344. /// <param name="dto"></param>
  6345. /// <returns></returns>
  6346. [HttpPost]
  6347. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6348. {
  6349. if (dto.Diid <= 0 || dto.Userid <= 0)
  6350. {
  6351. return Ok(JsonView(false));
  6352. }
  6353. JsonView jw = null;
  6354. bool isTrue = false;
  6355. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6356. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6357. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6358. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6359. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6360. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6361. try
  6362. {
  6363. _sqlSugar.BeginTran();
  6364. isTrue = await _GroupCostRepository.
  6365. SaveGroupCostList(Grp_groups, dto.Diid,dto.Userid); //列表
  6366. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6367. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6368. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6369. _sqlSugar.CommitTran();
  6370. jw = JsonView(true, "保存成功!", isTrue);
  6371. }
  6372. catch (Exception)
  6373. {
  6374. _sqlSugar.RollbackTran();
  6375. jw = JsonView(false);
  6376. }
  6377. return Ok(jw);
  6378. }
  6379. /// <summary>
  6380. /// 司兼导数据
  6381. /// </summary>
  6382. /// <param name="dto"></param>
  6383. /// <returns></returns>
  6384. [HttpPost]
  6385. public IActionResult GetCarGuides(CarGuidesDto dto)
  6386. {
  6387. JsonView jw = null;
  6388. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6389. jw = JsonView(true, "获取成功!", Data);
  6390. return Ok(jw);
  6391. }
  6392. /// <summary>
  6393. /// 导游数据
  6394. /// </summary>
  6395. /// <param name="dto"></param>
  6396. /// <returns></returns>
  6397. [HttpPost]
  6398. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6399. {
  6400. JsonView jw = null;
  6401. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6402. // 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
  6403. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6404. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6405. jw = JsonView(true, "获取成功!", Data);
  6406. return Ok(jw);
  6407. }
  6408. /// <summary>
  6409. /// 成本车数据
  6410. /// </summary>
  6411. /// <param name="dto"></param>
  6412. /// <returns></returns>
  6413. [HttpPost]
  6414. public IActionResult GetCarInfo(CarGuidesDto dto)
  6415. {
  6416. JsonView jw = null;
  6417. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6418. jw = JsonView(true, "获取成功!", Data);
  6419. return Ok(jw);
  6420. }
  6421. /// <summary>
  6422. /// 景点数据
  6423. /// </summary>
  6424. /// <param name="dto"></param>
  6425. /// <returns></returns>
  6426. [HttpPost]
  6427. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6428. {
  6429. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6430. return Ok(JsonView(true, "获取成功!", Data));
  6431. }
  6432. /// <summary>
  6433. /// 成本通知
  6434. /// </summary>
  6435. /// <param name="dto"></param>
  6436. /// <returns></returns>
  6437. [HttpPost]
  6438. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6439. {
  6440. if (dto.Diid < 0)
  6441. {
  6442. return Ok(JsonView(false));
  6443. }
  6444. JsonView jw = null;
  6445. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6446. if (GroupCostParameter != null)
  6447. {
  6448. int IsShare = 0;
  6449. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6450. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6451. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6452. string msg = string.Empty;
  6453. if (isTrue)
  6454. {
  6455. if (IsShare == 0)
  6456. {
  6457. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6458. }
  6459. else
  6460. {
  6461. #region 企微通知对应岗位用户
  6462. try
  6463. {
  6464. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6465. }
  6466. catch (Exception ex)
  6467. {
  6468. }
  6469. #endregion
  6470. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6471. }
  6472. jw = JsonView(isTrue, msg, new { IsShare });
  6473. }
  6474. else
  6475. {
  6476. msg = "修改失败!";
  6477. jw = JsonView(isTrue, msg);
  6478. }
  6479. }
  6480. else
  6481. {
  6482. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6483. }
  6484. return Ok(jw);
  6485. }
  6486. /// <summary>
  6487. /// 导出收款账单
  6488. /// </summary>
  6489. /// <param name="dto"></param>
  6490. /// <returns></returns>
  6491. [HttpPost]
  6492. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6493. {
  6494. if (dto.Diid == 0)
  6495. {
  6496. return Ok(JsonView(false, "请传递团组id"));
  6497. }
  6498. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6499. if (deleInfo.Code != 0)
  6500. {
  6501. return Ok(JsonView(false, "团组信息查询失败!"));
  6502. }
  6503. var di = deleInfo.Data as DelegationInfoWebView;
  6504. if (di != null)
  6505. {
  6506. //文件名
  6507. string strFileName = di.TeamName + "-收款账单.doc";
  6508. //获取模板
  6509. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6510. //载入模板
  6511. Document doc = new Document(tmppath);
  6512. decimal TotalPrice = 0.00M;
  6513. string itemStr = string.Empty;
  6514. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6515. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6516. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6517. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6518. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6519. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6520. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6521. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6522. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6523. foreach (var cost in groupCostType)
  6524. {
  6525. var List = cost.ToList();
  6526. if (cost.Key == "A")
  6527. {
  6528. foreach (var ListItem in List)
  6529. {
  6530. if (ListItem.number > 0)
  6531. {
  6532. if (ListItem.code.Contains("TBR"))
  6533. {
  6534. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6535. }
  6536. else
  6537. {
  6538. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6539. }
  6540. TotalPrice += (ListItem.number * ListItem.price);
  6541. }
  6542. }
  6543. }
  6544. else
  6545. {
  6546. itemStr = itemStr.Insert(0, "A段\r\n");
  6547. itemStr += "B段\r\n";
  6548. foreach (var ListItem in List)
  6549. {
  6550. if (ListItem.number > 0)
  6551. {
  6552. if (ListItem.code.Contains("TBR"))
  6553. {
  6554. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6555. }
  6556. else
  6557. {
  6558. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6559. }
  6560. TotalPrice += (ListItem.number * ListItem.price);
  6561. }
  6562. }
  6563. }
  6564. }
  6565. #region 替换Word模板书签内容
  6566. Dictionary<string, string> marks = new Dictionary<string, string>();
  6567. marks.Add("To", di.ClientUnit);//付款方
  6568. marks.Add("ToTel", di.TellPhone);//付款方电话
  6569. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6570. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6571. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6572. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6573. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6574. marks.Add("WeChat", "WeChat");//微信号 di.WeChat;
  6575. marks.Add("PayItemContent", itemStr);//详细信息
  6576. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6577. #endregion
  6578. ////注
  6579. //if (doc.Range.Bookmarks["Attention"] != null)
  6580. //{
  6581. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6582. // mark.Text = frList[0].Attention;
  6583. //}
  6584. foreach (var item in marks.Keys)
  6585. {
  6586. if (doc.Range.Bookmarks[item] != null)
  6587. {
  6588. Bookmark mark = doc.Range.Bookmarks[item];
  6589. mark.Text = marks[item];
  6590. }
  6591. }
  6592. byte[] bytes = null;
  6593. using (MemoryStream stream = new MemoryStream())
  6594. {
  6595. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6596. bytes = stream.ToArray();
  6597. }
  6598. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6599. return Ok(JsonView(true, "", new
  6600. {
  6601. Data = bytes,
  6602. strFileName,
  6603. }));
  6604. }
  6605. else
  6606. {
  6607. return Ok(JsonView(false, "团组信息不存在!"));
  6608. }
  6609. }
  6610. /// <summary>
  6611. /// 导出团组成本
  6612. /// </summary>
  6613. /// <param name="dto"></param>
  6614. /// <returns></returns>
  6615. [HttpPost]
  6616. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6617. {
  6618. var jw = JsonView(false);
  6619. if (dto.Diid == 0)
  6620. {
  6621. return Ok(JsonView(false, "请传递团组id"));
  6622. }
  6623. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6624. if (deleInfo.Code != 0)
  6625. {
  6626. return Ok(JsonView(false, "团组信息查询失败!"));
  6627. }
  6628. var di = deleInfo.Data as DelegationInfoWebView;
  6629. if (di == null)
  6630. {
  6631. return Ok(JsonView(false, "团组信息查询失败!"));
  6632. }
  6633. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6634. WorkbookDesigner designer = new WorkbookDesigner();
  6635. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6636. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6637. for (int i = 0; i < List_GC.Count; i++)
  6638. {
  6639. GroupCost_Excel gc = new GroupCost_Excel();
  6640. gc.Id = List_GC[i].Id;
  6641. gc.Diid = List_GC[i].Diid.ToString();
  6642. gc.DAY = List_GC[i].DAY;
  6643. string week = "";
  6644. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6645. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6646. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6647. gc.ITIN = List_GC[i].ITIN;
  6648. gc.CarType = List_GC[i].CarType;
  6649. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6650. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6651. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6652. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6653. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6654. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6655. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6656. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6657. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6658. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6659. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6660. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6661. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6662. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6663. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6664. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6665. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6666. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6667. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6668. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6669. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6670. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6671. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6672. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6673. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6674. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6675. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6676. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6677. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6678. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6679. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6680. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6681. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6682. List_GC1.Add(gc);
  6683. }
  6684. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6685. dt.TableName = "TB";
  6686. //报表标题等不用dt的值
  6687. designer.SetDataSource("TeamName", dto.title.TeamName);
  6688. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6689. designer.SetDataSource("Tax", dto.title.Tax);
  6690. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6691. designer.SetDataSource("Currency", dto.title.Currency);
  6692. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6693. designer.SetDataSource("Rate", dto.title.Rate);
  6694. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6695. var Aparams = hotels.Find(x => x.Type == "Default");
  6696. if (Aparams == null)
  6697. {
  6698. return Ok(jw);
  6699. }
  6700. //酒店数量
  6701. var txtSGRNumber = Aparams.SGR.ToString();
  6702. var txtTBRNumber = Aparams.TBR.ToString();
  6703. var txtJSESNumber = Aparams.JSES.ToString();
  6704. var txtSUITENumbe = Aparams.SUITE.ToString();
  6705. if (dto.costType == "B")
  6706. {
  6707. Aparams = hotels.Find(x => x.Type == "A");
  6708. var Bparams = hotels.Find(x => x.Type == "B");
  6709. if (Aparams == null || Bparams == null)
  6710. {
  6711. return Ok(jw);
  6712. }
  6713. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6714. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6715. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6716. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6717. }
  6718. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6719. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6720. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6721. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6722. var ws = designer.Workbook.Worksheets[0];
  6723. int Row = List_GC.Count;
  6724. int startIndex = 11;
  6725. int HideRows = 0;
  6726. List<int> hideRowsList = new List<int>();
  6727. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6728. #region A段left数据
  6729. var left = dto.leftInfo.Find(x => x.Type == "A");
  6730. if (left == null)
  6731. {
  6732. return Ok(jw);
  6733. }
  6734. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6735. if (leftBindData != null)
  6736. {
  6737. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6738. designer.SetDataSource("VisaRS", leftBindData.rs);
  6739. designer.SetDataSource("VisaXS", leftBindData.xs);
  6740. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6741. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6742. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6743. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6744. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6745. }
  6746. else
  6747. {
  6748. hideRowsList.Add(Row + startIndex + HideRows);
  6749. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6750. }
  6751. HideRows += 2;
  6752. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6753. if (leftBindData != null)
  6754. {
  6755. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6756. designer.SetDataSource("BXRS", leftBindData.rs);
  6757. designer.SetDataSource("BXXS", leftBindData.xs);
  6758. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6759. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6760. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6761. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6762. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6763. }
  6764. else
  6765. {
  6766. hideRowsList.Add(Row + startIndex + HideRows);
  6767. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6768. }
  6769. HideRows += 2;
  6770. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6771. if (leftBindData != null)
  6772. {
  6773. designer.SetDataSource("HSDRCB", leftBindData.cb);
  6774. designer.SetDataSource("HSRS", leftBindData.rs);
  6775. designer.SetDataSource("HSXS", leftBindData.xs);
  6776. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6777. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6778. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6779. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6780. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6781. }
  6782. else
  6783. {
  6784. hideRowsList.Add(Row + startIndex + HideRows);
  6785. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6786. }
  6787. HideRows += 2;
  6788. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  6789. if (leftBindData != null)
  6790. {
  6791. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  6792. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  6793. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  6794. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6795. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6796. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6797. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6798. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6799. }
  6800. else
  6801. {
  6802. hideRowsList.Add(Row + startIndex + HideRows);
  6803. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6804. }
  6805. HideRows += 2;
  6806. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  6807. if (leftBindData != null)
  6808. {
  6809. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  6810. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  6811. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  6812. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6813. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6814. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6815. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6816. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6817. }
  6818. else
  6819. {
  6820. hideRowsList.Add(Row + startIndex + HideRows);
  6821. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6822. }
  6823. HideRows += 2;
  6824. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  6825. if (leftBindData != null)
  6826. {
  6827. ////TBR
  6828. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  6829. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  6830. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  6831. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6832. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6833. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6834. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6835. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6836. }
  6837. else
  6838. {
  6839. hideRowsList.Add(Row + startIndex + HideRows);
  6840. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6841. }
  6842. HideRows += 2;
  6843. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  6844. if (leftBindData != null)
  6845. {
  6846. ////SGR
  6847. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  6848. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  6849. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  6850. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6851. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6852. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6853. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6854. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6855. }
  6856. else
  6857. {
  6858. hideRowsList.Add(Row + startIndex + HideRows);
  6859. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6860. }
  6861. HideRows += 2;
  6862. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  6863. if (leftBindData != null)
  6864. {
  6865. ////JS/ES
  6866. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  6867. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  6868. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  6869. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6870. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6871. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6872. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6873. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6874. }
  6875. else
  6876. {
  6877. hideRowsList.Add(Row + startIndex + HideRows);
  6878. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6879. }
  6880. HideRows += 2;
  6881. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  6882. if (leftBindData != null)
  6883. {
  6884. ////SUITE
  6885. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  6886. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  6887. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  6888. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6889. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6890. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6891. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6892. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6893. }
  6894. else
  6895. {
  6896. hideRowsList.Add(Row + startIndex + HideRows);
  6897. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6898. }
  6899. HideRows += 2;
  6900. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  6901. if (leftBindData != null)
  6902. {
  6903. designer.SetDataSource("DJDRCB", leftBindData.cb);
  6904. designer.SetDataSource("DJRS", leftBindData.rs);
  6905. designer.SetDataSource("DJXS", leftBindData.xs);
  6906. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6907. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6908. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6909. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6910. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6911. }
  6912. else
  6913. {
  6914. hideRowsList.Add(Row + startIndex + HideRows);
  6915. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6916. }
  6917. HideRows += 2;
  6918. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  6919. if (leftBindData != null)
  6920. {
  6921. designer.SetDataSource("HCPCB", leftBindData.cb);
  6922. designer.SetDataSource("HCPRS", leftBindData.rs);
  6923. designer.SetDataSource("HCPXS", leftBindData.xs);
  6924. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6925. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6926. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6927. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6928. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6929. }
  6930. else
  6931. {
  6932. hideRowsList.Add(Row + startIndex + HideRows);
  6933. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6934. }
  6935. HideRows += 2;
  6936. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  6937. if (leftBindData != null)
  6938. {
  6939. designer.SetDataSource("CPCB", leftBindData.cb);
  6940. designer.SetDataSource("CPRS", leftBindData.rs);
  6941. designer.SetDataSource("CPXS", leftBindData.xs);
  6942. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6943. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6944. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6945. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6946. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6947. }
  6948. else
  6949. {
  6950. hideRowsList.Add(Row + startIndex + HideRows);
  6951. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6952. }
  6953. HideRows += 2;
  6954. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  6955. if (leftBindData != null)
  6956. {
  6957. designer.SetDataSource("GWDRCD", leftBindData.cb);
  6958. designer.SetDataSource("GWRS", leftBindData.rs);
  6959. designer.SetDataSource("GWXS", leftBindData.xs);
  6960. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6961. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6962. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6963. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6964. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6965. }
  6966. else
  6967. {
  6968. hideRowsList.Add(Row + startIndex + HideRows);
  6969. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6970. }
  6971. HideRows += 2;
  6972. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  6973. if (leftBindData != null)
  6974. {
  6975. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  6976. designer.SetDataSource("LYJRS", leftBindData.rs);
  6977. designer.SetDataSource("LYJXS", leftBindData.xs);
  6978. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6979. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6980. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6981. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6982. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6983. }
  6984. else
  6985. {
  6986. hideRowsList.Add(Row + startIndex + HideRows);
  6987. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6988. }
  6989. #endregion
  6990. #region A段Right信息
  6991. var right = dto.rightInfo.Find(x => x.Type == "A");
  6992. if (right == null)
  6993. {
  6994. return Ok(jw);
  6995. }
  6996. HideRows += 4;
  6997. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  6998. if (rightBindData != null)
  6999. {
  7000. //经济舱 + 双人间 TBR
  7001. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7002. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7003. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7004. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7005. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7006. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7007. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7008. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7009. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7010. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7011. }
  7012. else
  7013. {
  7014. hideRowsList.Add(Row + startIndex + HideRows);
  7015. }
  7016. HideRows += 2;
  7017. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7018. if (rightBindData != null)
  7019. {
  7020. //经济舱 + 单人间 SGR
  7021. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7022. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7023. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7024. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7025. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7026. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7027. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7028. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7029. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7030. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7031. }
  7032. else
  7033. {
  7034. hideRowsList.Add(Row + startIndex + HideRows);
  7035. }
  7036. HideRows += 2;
  7037. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7038. if (rightBindData != null)
  7039. {
  7040. //公务舱 + 单人间 SGR
  7041. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7042. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7043. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7044. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7045. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7046. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7047. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7048. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7049. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7050. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7051. }
  7052. else
  7053. {
  7054. hideRowsList.Add(Row + startIndex + HideRows);
  7055. }
  7056. HideRows += 2;
  7057. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7058. if (rightBindData != null)
  7059. {
  7060. //公务舱 + 小套房 JSES
  7061. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7062. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7063. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7064. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7065. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7066. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7067. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7068. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7069. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7070. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7071. }
  7072. else
  7073. {
  7074. hideRowsList.Add(Row + startIndex + HideRows);
  7075. }
  7076. HideRows += 2;
  7077. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7078. if (rightBindData != null)
  7079. {
  7080. //公务舱 + 小套房 JSES
  7081. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7082. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7083. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7084. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7085. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7086. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7087. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7088. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7089. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7090. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7091. }
  7092. else
  7093. {
  7094. hideRowsList.Add(Row + startIndex + HideRows);
  7095. }
  7096. HideRows += 2;
  7097. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7098. if (rightBindData != null)
  7099. {
  7100. //经济舱 + 大套房
  7101. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7102. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7103. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7104. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7105. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7106. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7107. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7108. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7109. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7110. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7111. }
  7112. else
  7113. {
  7114. hideRowsList.Add(Row + startIndex + HideRows);
  7115. }
  7116. #endregion
  7117. #region B段标题清空
  7118. designer.SetDataSource("CostBDRCB", "");
  7119. designer.SetDataSource("CostBRS", "");
  7120. designer.SetDataSource("CostBXS", "");
  7121. designer.SetDataSource("CostBZCB", "");
  7122. designer.SetDataSource("CostBDRBJ", "");
  7123. designer.SetDataSource("CostBZBJ", "");
  7124. designer.SetDataSource("CostBDRLR", "");
  7125. designer.SetDataSource("CostBZLR", "");
  7126. designer.SetDataSource("CostBDRCBOM", "");
  7127. designer.SetDataSource("CostBRSOM", "");
  7128. designer.SetDataSource("CostBZCBOM", "");
  7129. designer.SetDataSource("CostBDRBJOM", "");
  7130. designer.SetDataSource("CostBZBJOM", "");
  7131. designer.SetDataSource("CostBDRLROM", "");
  7132. designer.SetDataSource("CostBZLROM", "");
  7133. #endregion
  7134. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7135. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7136. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7137. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7138. designer.SetDataSource("DJName", "地接(CNY)");
  7139. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7140. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7141. designer.SetDataSource("GWName", "公务(CNY)");
  7142. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7143. designer.SetDataSource("LYJName", "零用金(CNY)");
  7144. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7145. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7146. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7147. designer.SetDataSource("BXName", "保险(CNY)");
  7148. designer.SetDataSource("VisaName", "签证(CNY)");
  7149. #region B段基本数据
  7150. if (dto.costType == "B")
  7151. {
  7152. left = dto.leftInfo.Find(x => x.Type == "B");
  7153. if (left == null)
  7154. {
  7155. return Ok(jw);
  7156. }
  7157. #region B段left数据
  7158. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7159. if (leftBindData != null)
  7160. {
  7161. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7162. designer.SetDataSource("BHSRS", leftBindData.rs);
  7163. designer.SetDataSource("BHSXS", leftBindData.xs);
  7164. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7165. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7166. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7167. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7168. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7169. }
  7170. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7171. if (leftBindData != null)
  7172. {
  7173. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7174. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7175. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7176. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7177. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7178. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7179. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7180. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7181. }
  7182. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7183. if (leftBindData != null)
  7184. {
  7185. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7186. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7187. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7188. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7189. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7190. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7191. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7192. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7193. }
  7194. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7195. if (leftBindData != null)
  7196. {
  7197. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7198. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7199. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7200. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7201. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7202. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7203. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7204. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7205. }
  7206. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7207. if (leftBindData != null)
  7208. {
  7209. designer.SetDataSource("BCPCB", leftBindData.cb);
  7210. designer.SetDataSource("BCPRS", leftBindData.rs);
  7211. designer.SetDataSource("BCPXS", leftBindData.xs);
  7212. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7213. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7214. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7215. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7216. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7217. }
  7218. //TBR
  7219. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7220. if (leftBindData != null)
  7221. {
  7222. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7223. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7224. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7225. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7226. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7227. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7228. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7229. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7230. }
  7231. //SGR
  7232. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7233. if (leftBindData != null)
  7234. {
  7235. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7236. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7237. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7238. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7239. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7240. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7241. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7242. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7243. }
  7244. //JS/ES
  7245. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7246. if (leftBindData != null)
  7247. {
  7248. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7249. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7250. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7251. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7252. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7253. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7254. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7255. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7256. }
  7257. //SUITE
  7258. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7259. if (leftBindData != null)
  7260. {
  7261. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7262. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7263. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7264. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7265. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7266. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7267. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7268. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7269. }
  7270. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7271. if (leftBindData != null)
  7272. {
  7273. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7274. designer.SetDataSource("BDJRS", leftBindData.rs);
  7275. designer.SetDataSource("BDJXS", leftBindData.xs);
  7276. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7277. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7278. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7279. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7280. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7281. }
  7282. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7283. if (leftBindData != null)
  7284. {
  7285. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7286. designer.SetDataSource("BGWRS", leftBindData.rs);
  7287. designer.SetDataSource("BGWXS", leftBindData.xs);
  7288. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7289. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7290. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7291. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7292. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7293. }
  7294. #region 优化方案
  7295. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7296. //excelBind.Add("零用金", new {
  7297. //cb="",
  7298. //rs="",
  7299. //xs ="",
  7300. //zcb = "",
  7301. //});
  7302. #endregion
  7303. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7304. if (leftBindData != null)
  7305. {
  7306. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7307. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7308. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7309. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7310. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7311. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7312. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7313. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7314. }
  7315. #endregion
  7316. #region B段Right信息
  7317. right = dto.rightInfo.Find(x => x.Type == "B");
  7318. if (right == null)
  7319. {
  7320. return Ok(jw);
  7321. }
  7322. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7323. if (rightBindData != null)
  7324. {
  7325. //经济舱 + 双人间 TBR
  7326. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7327. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7328. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7329. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7330. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7331. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7332. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7333. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7334. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7335. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7336. }
  7337. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7338. if (rightBindData != null)
  7339. {
  7340. //经济舱 + 单人间 SGR
  7341. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7342. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7343. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7344. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7345. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7346. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7347. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7348. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7349. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7350. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7351. }
  7352. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7353. if (rightBindData != null)
  7354. {
  7355. //公务舱 + 单人间 SGR
  7356. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7357. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7358. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7359. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7360. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7361. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7362. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7363. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7364. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7365. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7366. }
  7367. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7368. if (rightBindData != null)
  7369. {
  7370. //公务舱 + 小套房 JSES
  7371. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7372. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7373. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7374. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7375. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7376. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7377. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7378. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7379. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7380. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7381. }
  7382. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7383. if (rightBindData != null)
  7384. {
  7385. //公务舱 + 小套房 JSES
  7386. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7387. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7388. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7389. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7390. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7391. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7392. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7393. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7394. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7395. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7396. }
  7397. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7398. if (rightBindData != null)
  7399. {
  7400. //经济舱 + 大套房
  7401. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7402. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7403. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7404. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7405. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7406. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7407. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7408. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7409. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7410. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7411. }
  7412. #endregion
  7413. #region 标题
  7414. designer.SetDataSource("CostBDRCB", "单人成本");
  7415. designer.SetDataSource("CostBRS", "人数");
  7416. designer.SetDataSource("CostBXS", "系数");
  7417. designer.SetDataSource("CostBZCB", "总成本");
  7418. designer.SetDataSource("CostBDRBJ", "单人报价");
  7419. designer.SetDataSource("CostBZBJ", "总报价");
  7420. designer.SetDataSource("CostBDRLR", "单人利润");
  7421. designer.SetDataSource("CostBZLR", "总利润");
  7422. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7423. designer.SetDataSource("CostBRSOM", "人数");
  7424. designer.SetDataSource("CostBZCBOM", "总成本");
  7425. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7426. designer.SetDataSource("CostBZBJOM", "总报价");
  7427. designer.SetDataSource("CostBDRLROM", "单人利润");
  7428. designer.SetDataSource("CostBZLROM", "总利润");
  7429. #endregion
  7430. }
  7431. #endregion
  7432. designer.SetDataSource("TzZCB2", TzZCB2);
  7433. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7434. designer.SetDataSource("TzZLR2", TzZLR2);
  7435. string[] dataSourceKeys = new string[]
  7436. {
  7437. "VF",
  7438. "TGS",
  7439. "TGOF",
  7440. "TGM",
  7441. "TGA",
  7442. "TGTF",
  7443. "TGEF",
  7444. "CFM",
  7445. "CFOF",
  7446. "B",
  7447. "L",
  7448. "D",
  7449. "TBR",
  7450. "SGR",
  7451. "JSES",
  7452. "Suite",
  7453. "TV",
  7454. "1L",
  7455. "IF",
  7456. "EF",
  7457. "BRF",
  7458. "TE",
  7459. "TGT",
  7460. "DRVT",
  7461. "PC",
  7462. "TLF",
  7463. "ECT"
  7464. };
  7465. foreach (var item in dataSourceKeys)
  7466. {
  7467. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7468. if (find != null)
  7469. {
  7470. designer.SetDataSource(item, find.text);
  7471. }
  7472. else
  7473. {
  7474. designer.SetDataSource(item, 0);
  7475. }
  7476. }
  7477. designer.SetDataSource(dt);
  7478. //根据数据源处理生成报表内容
  7479. designer.Process();
  7480. designer.Workbook.Worksheets[0].Name = "清单";
  7481. Worksheet sheet = designer.Workbook.Worksheets[0];
  7482. foreach (var Rowindex in hideRowsList)
  7483. {
  7484. ws.Cells.HideRows(Rowindex, 2);
  7485. }
  7486. byte[] bytes = null;
  7487. string strFileName = di.TeamName + "-团组-成本.xls";
  7488. using (MemoryStream stream = new MemoryStream())
  7489. {
  7490. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7491. bytes = stream.ToArray();
  7492. }
  7493. return Ok(JsonView(true, "", new
  7494. {
  7495. Data = bytes,
  7496. strFileName,
  7497. }));
  7498. }
  7499. /// <summary>
  7500. /// 导出客户报表
  7501. /// </summary>
  7502. /// <returns></returns>
  7503. [HttpPost]
  7504. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7505. {
  7506. var jw = JsonView(false);
  7507. if (dto.Diid == 0)
  7508. {
  7509. return Ok(JsonView(false, "请传递团组id"));
  7510. }
  7511. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7512. if (deleInfo.Code != 0)
  7513. {
  7514. return Ok(JsonView(false, "团组信息查询失败!"));
  7515. }
  7516. var di = deleInfo.Data as DelegationInfoWebView;
  7517. if (di == null)
  7518. {
  7519. return Ok(JsonView(false, "团组信息查询失败!"));
  7520. }
  7521. //文件名
  7522. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7523. //获取模板
  7524. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7525. //载入模板
  7526. Document doc = new Document(tmppath);
  7527. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7528. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7529. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7530. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7531. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7532. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7533. if (AParameter == null)
  7534. {
  7535. return Ok(JsonView(false, "系数不存在!"));
  7536. }
  7537. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7538. , TzAirDesc, TzZCost;
  7539. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7540. = TzAirDesc = TzZCost = string.Empty;
  7541. TzNumber = AParameter.CostTypenumber.ToString();
  7542. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7543. CarGuides1 = dto.CarGuides1;
  7544. Meal = dto.Meal;
  7545. SubsidizedMeals = dto.SubsidizedMeals;
  7546. NightRepair = dto.NightRepair;
  7547. AttractionsTickets = dto.AttractionsTickets;
  7548. MiscellaneousFees = dto.MiscellaneousFees;
  7549. ATip = dto.ATip;
  7550. TzHotelDesc = "";
  7551. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7552. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7553. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7554. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7555. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7556. TzAirDesc = "";
  7557. TzZCost = dto.TzZCost;
  7558. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7559. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7560. var index = 1;
  7561. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7562. foreach (var item in TzHotelDescArr)
  7563. {
  7564. if (AinfoArr != null)
  7565. {
  7566. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7567. if (Ainfo != null)
  7568. {
  7569. if (int.Parse(Ainfo.rs) <= 0)
  7570. {
  7571. continue;
  7572. }
  7573. var hotelText = string.Empty;
  7574. switch (item)
  7575. {
  7576. case "SGR":
  7577. hotelText = "单人间";
  7578. break;
  7579. case "JSES":
  7580. hotelText = "小套房";
  7581. break;
  7582. case "SUITE":
  7583. hotelText = "套房";
  7584. break;
  7585. case "TBR":
  7586. hotelText = "双人间";
  7587. break;
  7588. }
  7589. if (item != "TBR")
  7590. {
  7591. 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";
  7592. }
  7593. else
  7594. {
  7595. 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";
  7596. }
  7597. index++;
  7598. }
  7599. }
  7600. }
  7601. index = 1;
  7602. foreach (var item in TzAirDescArr)
  7603. {
  7604. if (AinfoArr != null)
  7605. {
  7606. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7607. if (Ainfo != null)
  7608. {
  7609. if (int.Parse(Ainfo.rs) <= 0)
  7610. {
  7611. continue;
  7612. }
  7613. 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";
  7614. index++;
  7615. }
  7616. }
  7617. }
  7618. if (dto.costType == "B")
  7619. {
  7620. if (BParameter == null)
  7621. {
  7622. return Ok(JsonView(false, "B段系数不存在!"));
  7623. }
  7624. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7625. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7626. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7627. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7628. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7629. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7630. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7631. foreach (var item in TzHotelDescArr)
  7632. {
  7633. if (AinfoArr != null)
  7634. {
  7635. TzHotelDesc += "B段信息 \r\n";
  7636. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7637. if (Ainfo != null)
  7638. {
  7639. if (int.Parse(Ainfo.rs) <= 0)
  7640. {
  7641. continue;
  7642. }
  7643. var hotelText = string.Empty;
  7644. switch (item)
  7645. {
  7646. case "SGR":
  7647. hotelText = "单人间";
  7648. break;
  7649. case "JSES":
  7650. hotelText = "小套房";
  7651. break;
  7652. case "SUITE":
  7653. hotelText = "套房";
  7654. break;
  7655. case "TBR":
  7656. hotelText = "双人间";
  7657. break;
  7658. }
  7659. if (item != "TBR")
  7660. {
  7661. 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";
  7662. }
  7663. else
  7664. {
  7665. 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";
  7666. }
  7667. index++;
  7668. }
  7669. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7670. }
  7671. }
  7672. index = 1;
  7673. foreach (var item in TzAirDescArr)
  7674. {
  7675. if (AinfoArr != null)
  7676. {
  7677. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7678. if (Ainfo != null)
  7679. {
  7680. if (int.Parse(Ainfo.rs) <= 0)
  7681. {
  7682. continue;
  7683. }
  7684. 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";
  7685. index++;
  7686. }
  7687. }
  7688. }
  7689. }
  7690. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7691. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7692. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7693. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7694. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7695. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7696. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7697. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7698. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7699. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7700. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7701. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7702. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7703. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7704. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7705. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7706. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7707. DickeyValue.Add("TzZCost", TzZCost);
  7708. foreach (var key in DickeyValue.Keys)
  7709. {
  7710. if (doc.Range.Bookmarks[key] != null)
  7711. {
  7712. Bookmark mark = doc.Range.Bookmarks[key];
  7713. mark.Text = DickeyValue[key];
  7714. }
  7715. }
  7716. byte[] bytes = null;
  7717. string strFileName = di.TeamName + "-客户报价.doc";
  7718. using (MemoryStream stream = new MemoryStream())
  7719. {
  7720. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7721. bytes = stream.ToArray();
  7722. }
  7723. return Ok(JsonView(true, "", new
  7724. {
  7725. Data = bytes,
  7726. strFileName,
  7727. }));
  7728. }
  7729. /// <summary>
  7730. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7731. /// </summary>
  7732. /// <param name="dto"></param>
  7733. /// <returns></returns>
  7734. [HttpPost]
  7735. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7736. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7737. {
  7738. try
  7739. {
  7740. #region 参数验证
  7741. if (dto.DiId < 0)
  7742. {
  7743. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7744. }
  7745. List<int> cTableIds = new List<int>() {
  7746. 76 ,//酒店预订
  7747. 77 ,//行程
  7748. 79 ,//车/导游地接
  7749. 80 ,//签证
  7750. 81 ,//邀请/公务活
  7751. 82 ,//团组客户保险
  7752. 85 ,//机票预订
  7753. 98 ,//其他款项
  7754. 285 ,//收款退还
  7755. 751 ,//酒店早餐
  7756. 1015 // 超支费用
  7757. };
  7758. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7759. {
  7760. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7761. }
  7762. #endregion
  7763. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7764. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7765. if (_GroupCostParameters.Count <= 0)
  7766. {
  7767. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7768. }
  7769. if (_GroupCostParameters[0].IsShare == 0)
  7770. {
  7771. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7772. }
  7773. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7774. //处理date为空问题
  7775. if (_GroupCosts.Count > 0)
  7776. {
  7777. for (int i = 0; i < _GroupCosts.Count; i++)
  7778. {
  7779. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  7780. {
  7781. if (i > 0)
  7782. {
  7783. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  7784. }
  7785. }
  7786. }
  7787. }
  7788. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  7789. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  7790. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  7791. string currCode = "";
  7792. #region currCode 验证
  7793. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  7794. if (isInt)
  7795. {
  7796. var currData = currDatas.Find(it => it.Id == intCurrency);
  7797. if (currData != null)
  7798. {
  7799. currCode = currData.Name;
  7800. }
  7801. }
  7802. else
  7803. {
  7804. currCode = _GroupCostParameters[0].Currency.Trim();
  7805. }
  7806. #endregion
  7807. //op,酒店单段模式存储
  7808. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  7809. {
  7810. CurrencyCode = currCode,
  7811. Rate = _GroupCostParameters[0].Rate,
  7812. CostType = _GroupCostParameters[0].CostType,
  7813. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  7814. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  7815. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  7816. };
  7817. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  7818. if (_GroupCostParameters.Count == 2)
  7819. {
  7820. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  7821. }
  7822. foreach (var item in _GroupCostParameters)
  7823. {
  7824. decimal _rate = 1;
  7825. decimal _rate1 = item.Rate;
  7826. decimal _scale = 1;
  7827. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  7828. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  7829. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  7830. //if (userInfo != null)
  7831. //{
  7832. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  7833. // {
  7834. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  7835. // {
  7836. // _scale = 1.00M;
  7837. // }
  7838. // }
  7839. //}
  7840. #endregion
  7841. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  7842. {
  7843. CurrencyCode = currCode,
  7844. Rate = _rate1,
  7845. CostType = item.CostType,
  7846. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  7847. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  7848. CostTypeNumber = item.CostTypenumber
  7849. };
  7850. if (_GroupCostParameters.Count > 1)
  7851. {
  7852. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  7853. }
  7854. else
  7855. {
  7856. modulePromptInfo.CostTypeNumber = item.LYJRS;
  7857. }
  7858. if (dto.CTable == 79)//
  7859. {
  7860. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  7861. modulePromptInfo.TotalCost = item.DJCB;
  7862. }
  7863. List<string> costTypes = new List<string>() { "A", "B" };
  7864. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  7865. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  7866. if (_GroupCostsDuplicates.Count() == 1)
  7867. {
  7868. _GroupCostsTypeData = _GroupCosts;
  7869. }
  7870. else
  7871. {
  7872. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  7873. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  7874. }
  7875. /*
  7876. * 76 酒店预订
  7877. * 77 行程
  7878. * 79 车/导游地接
  7879. * 80 签证
  7880. * 81 邀请/公务活动
  7881. * 82 团组客户保险
  7882. * 85 机票预订
  7883. * 98 其他款项
  7884. * 285 收款退还
  7885. * 751 酒店早餐
  7886. * 1015 超支费用
  7887. */
  7888. switch (dto.CTable)
  7889. {
  7890. case 76: // 酒店预订
  7891. _ModuleSubPromptInfo.AddRange(
  7892. _GroupCostsTypeData.Select(it => new
  7893. {
  7894. it.DAY,
  7895. it.Date,
  7896. it.ACCON,
  7897. it.ITIN,
  7898. it.SGR,
  7899. it.TBR,
  7900. it.JS_ES,
  7901. it.Suite
  7902. })
  7903. );
  7904. break;
  7905. case 79: // 车/导游地接
  7906. _ModuleSubPromptInfo.AddRange(
  7907. _GroupCostsTypeData.Select(it => new
  7908. {
  7909. Date = it.Date, //日期
  7910. CarFee = (it.CarCost + it.CFM + it.CFOF) * _rate * _scale, //车费用
  7911. GuideFee = (it.TGS + it.TGOF + it.TGM + it.TGA + it.TGTF + it.TGEF) * _rate * _scale, //导游费用
  7912. MealFee = (it.B + it.L + it.D) * _rate * _scale, //餐食费
  7913. TicketFee = it.EF * _rate * _scale, //门票费
  7914. TipFee = (it.TGTips + it.DRVTips) * _rate * _scale, //小费
  7915. AirportTransferFee = 0.00M,
  7916. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  7917. TravelSupplies = it.TE * _rate * _scale, //出行物资
  7918. LeadersFee = it.TLF * _rate * _scale, //领队费
  7919. CarFee1 = it.CarCost * _rate * _scale,
  7920. CarType = it.CarType, //车型
  7921. SpentCash = it.PC * _rate * _scale, //零用金
  7922. })
  7923. );
  7924. break;
  7925. case 85: // 机票
  7926. List<dynamic> datas = new List<dynamic>();
  7927. datas.Add(
  7928. new
  7929. {
  7930. AirType = "经济舱",
  7931. AirNum = item.JJCRS,
  7932. AirDRCB = item.JJCCB,
  7933. AirZCB = (item.JJCRS * item.JJCCB)
  7934. }
  7935. );
  7936. datas.Add(
  7937. new
  7938. {
  7939. AirType = "公务舱",
  7940. AirNum = item.GWCRS,
  7941. AirDRCB = item.GWCCB,
  7942. AirZCB = (item.GWCRS * item.GWCCB)
  7943. }
  7944. );
  7945. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7946. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  7947. modulePromptInfo.Data = new {
  7948. airFeeData = datas,
  7949. airInitData = initDatas
  7950. };
  7951. _ModulePromptInfos.Add(modulePromptInfo);
  7952. break;
  7953. default:
  7954. break;
  7955. }
  7956. }
  7957. if (dto.CTable != 85)
  7958. {
  7959. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  7960. _ModulePromptInfos.Add(_ModulePromptInfo);
  7961. }
  7962. _view.ModulePromptInfos = _ModulePromptInfos;
  7963. return Ok(JsonView(true, "操作成功!", _view));
  7964. }
  7965. catch (Exception ex)
  7966. {
  7967. return Ok(JsonView(false, ex.Message));
  7968. }
  7969. }
  7970. /// <summary>
  7971. /// 根据黑屏代码重新生成行程
  7972. /// </summary>
  7973. /// <param name="dto"></param>
  7974. /// <returns></returns>
  7975. [HttpPost]
  7976. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  7977. {
  7978. var jw = JsonView(false);
  7979. var Create =_GroupCostRepository.
  7980. CreateGroupCostByBlackCode(dto.Diid);
  7981. jw.Msg = Create.Msg;
  7982. if (Create.Code == 0)
  7983. {
  7984. jw.Code = 200;
  7985. jw.Data = new
  7986. {
  7987. groupCost = Create.Data,
  7988. blackCodeIsTrue = true
  7989. };
  7990. }
  7991. else
  7992. {
  7993. jw.Code = 400;
  7994. jw.Data = new
  7995. {
  7996. groupCost = Create.Data,
  7997. blackCodeIsTrue = false,
  7998. };
  7999. }
  8000. return Ok(jw);
  8001. }
  8002. /// <summary>
  8003. /// 成本获取OP历史车费用
  8004. /// </summary>
  8005. /// <param name="dto"></param>
  8006. /// <returns></returns>
  8007. [HttpPost]
  8008. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8009. {
  8010. var jw = JsonView(false);
  8011. try
  8012. {
  8013. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8014. //获取现有所有车的数据
  8015. if (!dto.Param.IsNullOrWhiteSpace())
  8016. {
  8017. string sql = $@"
  8018. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8019. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8020. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8021. WHERE gctggr.IsDel = 0 and gctggrc.SId = 91 AND gdi.IsDel = 0 AND gctggrc.Price != 0 AND (ssd.Id in (1061,1069) or ssd.Id is NULL) AND gctggr.ServiceStartTime is not null
  8022. AND gctggr.ServiceEndTime is not NULL
  8023. ORDER by gctggrc.id DESC
  8024. ";
  8025. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8026. var numeberResult = await Task.Run(() =>
  8027. {
  8028. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8029. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8030. return numberArr;
  8031. });
  8032. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8033. foreach (var item in numeberResult)
  8034. {
  8035. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8036. {
  8037. Country = "数据异常!",
  8038. City = string.Empty,
  8039. };
  8040. item.Area = find.Country + " " + find.City;
  8041. }
  8042. dbResult.AddRange(numeberResult);
  8043. if (dto.Param.Contains("、"))
  8044. {
  8045. var sp = dto.Param.Split("、");
  8046. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8047. .Where(x =>
  8048. {
  8049. return System.Array.Exists(sp, e =>
  8050. {
  8051. bool where = false;
  8052. if (x.Area != null)
  8053. {
  8054. where = x.Area.Contains(e);
  8055. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8056. {
  8057. return false;
  8058. }
  8059. }
  8060. if (x.PriceName != null && !where)
  8061. {
  8062. where = x.PriceName.Contains(e);
  8063. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8064. {
  8065. return false;
  8066. }
  8067. }
  8068. return where;
  8069. });
  8070. }).ToList();
  8071. }
  8072. else
  8073. {
  8074. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8075. .Where(x =>
  8076. {
  8077. bool where = false;
  8078. if (x.Area != null)
  8079. {
  8080. where = x.Area.Contains(dto.Param);
  8081. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8082. {
  8083. return false;
  8084. }
  8085. }
  8086. if (x.PriceName != null && !where)
  8087. {
  8088. where = x.PriceName.Contains(dto.Param);
  8089. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8090. {
  8091. return false;
  8092. }
  8093. }
  8094. return where;
  8095. }
  8096. )
  8097. .ToList();
  8098. }
  8099. }
  8100. var view = dbResult.Select(x => {
  8101. decimal dp = 0.00M;
  8102. var startB = DateTime.TryParse(x.Start.ToString(),out DateTime startD);
  8103. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8104. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8105. {
  8106. if (startB && endB)
  8107. {
  8108. var timesp = endD.Subtract(startD);
  8109. if ((timesp.Days + 1) != 0 )
  8110. {
  8111. dp = x.Price / (timesp.Days + 1);
  8112. }
  8113. }
  8114. }
  8115. else
  8116. {
  8117. dp = x.Price;
  8118. }
  8119. return new
  8120. {
  8121. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8122. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8123. x.Area,
  8124. x.id,
  8125. price = x.Price.ToString("F2"),
  8126. x.PriceName,
  8127. x.PriceContent,
  8128. x.TeamName,
  8129. x.DatePrice,
  8130. dayPrice = dp.ToString("F2"),
  8131. };
  8132. }).OrderByDescending(x=>x.id).ToList();
  8133. jw = JsonView(true, "获取成功!", view);
  8134. }
  8135. catch (Exception e)
  8136. {
  8137. jw = JsonView(false,e.Message);
  8138. }
  8139. return Ok(jw);
  8140. }
  8141. #endregion
  8142. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8143. /// <summary>
  8144. /// 酒店预订
  8145. /// 酒店费用列表 根据团组Id查询
  8146. /// </summary>
  8147. /// <param name="_dto"></param>
  8148. /// <returns></returns>
  8149. [HttpPost]
  8150. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8151. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8152. {
  8153. #region 参数验证
  8154. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8155. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8156. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8157. #region 团组操作权限验证 76 酒店预定模块
  8158. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8159. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8160. #endregion
  8161. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8162. #region 页面操作权限验证
  8163. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8164. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8165. #endregion
  8166. #endregion
  8167. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8168. }
  8169. /// <summary>
  8170. /// 酒店预订
  8171. /// 基础数据
  8172. /// </summary>
  8173. /// <param name="_dto"></param>
  8174. /// <returns></returns>
  8175. [HttpPost]
  8176. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8177. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8178. {
  8179. #region 参数验证
  8180. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8181. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8182. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8183. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8184. #region 页面操作权限验证
  8185. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8186. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8187. #endregion
  8188. #region 团组操作权限验证 76 酒店预定模块
  8189. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8190. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8191. #endregion
  8192. #endregion
  8193. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8194. }
  8195. /// <summary>
  8196. /// 酒店预订
  8197. /// 创建 入住卷号码
  8198. /// </summary>
  8199. /// <param name="_dto"></param>
  8200. /// <returns></returns>
  8201. [HttpPost]
  8202. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8203. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8204. {
  8205. try
  8206. {
  8207. #region 参数验证
  8208. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8209. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8210. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8211. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8212. #region 页面操作权限验证
  8213. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8214. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8215. #endregion
  8216. #region 团组操作权限验证 76 酒店预定模块
  8217. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8218. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8219. #endregion
  8220. #endregion
  8221. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8222. if (data.Code != 0)
  8223. {
  8224. return Ok(JsonView(false, data.Msg));
  8225. }
  8226. return Ok(JsonView(true, data.Msg, data.Data));
  8227. }
  8228. catch (Exception ex)
  8229. {
  8230. return Ok(JsonView(false, ex.Message));
  8231. }
  8232. }
  8233. /// <summary>
  8234. /// 酒店预订
  8235. /// 详情
  8236. /// </summary>
  8237. /// <param name="_dto"></param>
  8238. /// <returns></returns>
  8239. [HttpPost]
  8240. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8241. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8242. {
  8243. #region 参数验证
  8244. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8245. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8246. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8247. #region 团组操作权限验证 76 酒店预定模块
  8248. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8249. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8250. #endregion
  8251. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8252. #region 页面操作权限验证
  8253. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8254. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8255. #endregion
  8256. #endregion
  8257. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8258. }
  8259. /// <summary>
  8260. /// 酒店预订
  8261. /// Add Or Edit
  8262. /// </summary>
  8263. /// <param name="_dto"></param>
  8264. /// <returns></returns>
  8265. [HttpPost]
  8266. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8267. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8268. {
  8269. #region 参数验证
  8270. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8271. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8272. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8273. #region 团组操作权限验证 76 酒店预定模块
  8274. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8275. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8276. #endregion
  8277. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8278. #region 页面操作权限验证
  8279. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8280. if (_dto.Id == 0) // Add
  8281. {
  8282. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8283. }
  8284. else if (_dto.Id > 1) // Edit
  8285. {
  8286. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8287. }else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8288. #endregion
  8289. #endregion
  8290. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8291. if (_view.Code != 200)
  8292. {
  8293. return Ok(_view);
  8294. }
  8295. #region 应用推送
  8296. //try
  8297. //{
  8298. // int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8299. // int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8300. // await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8301. //}
  8302. //catch (Exception ex)
  8303. //{
  8304. //}
  8305. #endregion
  8306. return Ok(_view);
  8307. }
  8308. /// <summary>
  8309. /// 酒店预订
  8310. /// Del
  8311. /// </summary>
  8312. /// <param name="_dto"></param>
  8313. /// <returns></returns>
  8314. [HttpPost]
  8315. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8316. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8317. {
  8318. #region 参数验证
  8319. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8320. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8321. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8322. #region 团组操作权限验证 76 酒店预定模块
  8323. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8324. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8325. #endregion
  8326. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8327. #region 页面操作权限验证
  8328. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8329. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8330. #endregion
  8331. #endregion
  8332. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8333. }
  8334. /// <summary>
  8335. /// 酒店预订
  8336. /// 生成VOUCHER
  8337. /// 2024.05.06 之前版本
  8338. /// </summary>
  8339. /// <param name="_dto"></param>
  8340. /// <returns></returns>
  8341. [HttpPost]
  8342. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8343. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8344. {
  8345. try
  8346. {
  8347. #region 参数验证
  8348. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8349. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8350. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8351. #region 团组操作权限验证 76 酒店预定模块
  8352. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8353. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8354. #endregion
  8355. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8356. #region 页面操作权限验证
  8357. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8358. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8359. #endregion
  8360. #endregion
  8361. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8362. //判断数据是否完整
  8363. if (hr != null)
  8364. {
  8365. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8366. {
  8367. string strFileName = "HotelStatement/";
  8368. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8369. if (dele != null)
  8370. strFileName += dele.TourCode;
  8371. //载入模板
  8372. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8373. Document doc = new Document(sss);
  8374. DocumentBuilder builder = new DocumentBuilder(doc);
  8375. #region 替换Word模板书签内容
  8376. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8377. //入住卷预定号码
  8378. if (doc.Range.Bookmarks["VNO"] != null)
  8379. {
  8380. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8381. mark.Text = hr.CheckNumber;
  8382. }
  8383. //酒店时间
  8384. if (doc.Range.Bookmarks["Date"] != null)
  8385. {
  8386. Bookmark mark = doc.Range.Bookmarks["Date"];
  8387. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8388. }
  8389. //团号
  8390. if (doc.Range.Bookmarks["TNo"] != null)
  8391. {
  8392. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8393. mark.Text = dele.TourCode;
  8394. }
  8395. //预定号码
  8396. if (doc.Range.Bookmarks["BookingId"] != null)
  8397. {
  8398. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8399. mark.Text = hr.ReservationsNo;
  8400. }
  8401. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8402. {
  8403. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8404. mark.Text = hr.DetermineNo;
  8405. }
  8406. //酒店城市
  8407. if (doc.Range.Bookmarks["City"] != null)
  8408. {
  8409. Bookmark mark = doc.Range.Bookmarks["City"];
  8410. mark.Text = hr.City;
  8411. }
  8412. //酒店名称
  8413. if (doc.Range.Bookmarks["HName"] != null)
  8414. {
  8415. Bookmark mark = doc.Range.Bookmarks["HName"];
  8416. mark.Text = hr.HotelName;
  8417. }
  8418. //酒店地址
  8419. if (doc.Range.Bookmarks["Address"] != null)
  8420. {
  8421. Bookmark mark = doc.Range.Bookmarks["Address"];
  8422. mark.Text = hr.HotelAddress;
  8423. }
  8424. //酒店电话
  8425. if (doc.Range.Bookmarks["Tel"] != null)
  8426. {
  8427. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8428. mark.Text = hr.HotelTel;
  8429. }
  8430. //酒店传真
  8431. if (doc.Range.Bookmarks["Fax"] != null)
  8432. {
  8433. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8434. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8435. {
  8436. mark.Text = hr.HotelFax;
  8437. }
  8438. }
  8439. //入住时间
  8440. if (doc.Range.Bookmarks["CIn"] != null)
  8441. {
  8442. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8443. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8444. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8445. }
  8446. //退房时间
  8447. if (doc.Range.Bookmarks["COut"] != null)
  8448. {
  8449. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8450. Bookmark mark = doc.Range.Bookmarks["COut"];
  8451. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8452. }
  8453. //客户名称
  8454. if (doc.Range.Bookmarks["GName"] != null)
  8455. {
  8456. string guestName = "";
  8457. string[] clients = new string[] { };
  8458. if (hr.GuestName.Contains(","))
  8459. {
  8460. clients = hr.GuestName.Split(",");
  8461. }
  8462. else
  8463. {
  8464. clients = new string[] { hr.GuestName };
  8465. }
  8466. List<int> clientIds_int = new List<int>();
  8467. if (clients.Length > 0)
  8468. {
  8469. foreach (var item in clients)
  8470. {
  8471. if (item.IsNumeric())
  8472. {
  8473. clientIds_int.Add(int.Parse(item));
  8474. }
  8475. }
  8476. }
  8477. if (clientIds_int.Count > 0)
  8478. {
  8479. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8480. foreach (var client in _clientDatas)
  8481. {
  8482. //男
  8483. if (client.Sex == 0) guestName += $"Mr.";
  8484. //女
  8485. else if (client.Sex == 1) guestName += $"Ms.";
  8486. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8487. {
  8488. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8489. }
  8490. //guestName += $"{client.Pinyin},";
  8491. }
  8492. if (guestName.Length > 0)
  8493. {
  8494. guestName = guestName.Substring(0, guestName.Length - 1);
  8495. }
  8496. }
  8497. else
  8498. {
  8499. guestName = hr.GuestName;
  8500. }
  8501. Bookmark mark = doc.Range.Bookmarks["GName"];
  8502. mark.Text = guestName;
  8503. }
  8504. //房间介绍
  8505. if (doc.Range.Bookmarks["ROOM"] != null)
  8506. {
  8507. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8508. mark.Text = hr.RoomExplanation;
  8509. }
  8510. //报价描述
  8511. if (doc.Range.Bookmarks["NOTE"] != null)
  8512. {
  8513. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8514. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8515. if (ss != null)
  8516. mark.Text = ss.Name;
  8517. }
  8518. //入住时间
  8519. if (doc.Range.Bookmarks["CheckIn"] != null)
  8520. {
  8521. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8522. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8523. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8524. }
  8525. //退房时间
  8526. if (doc.Range.Bookmarks["CheckOut"] != null)
  8527. {
  8528. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8529. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8530. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8531. }
  8532. //日期
  8533. if (doc.Range.Bookmarks["DT"] != null)
  8534. {
  8535. Bookmark mark = doc.Range.Bookmarks["DT"];
  8536. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8537. }
  8538. //名称
  8539. if (doc.Range.Bookmarks["VName"] != null)
  8540. {
  8541. Bookmark mark = doc.Range.Bookmarks["VName"];
  8542. mark.Text = hr.HotelName;
  8543. }
  8544. //号码
  8545. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8546. {
  8547. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8548. mark.Text = hr.CheckNumber;
  8549. }
  8550. #endregion
  8551. strFileName += "VOUCHER.doc";
  8552. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8553. doc.Save(fileDir);
  8554. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8555. return Ok(JsonView(true, "操作成功!", Url));
  8556. }
  8557. else
  8558. {
  8559. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8560. }
  8561. }
  8562. else
  8563. {
  8564. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8565. }
  8566. }
  8567. catch (Exception ex)
  8568. {
  8569. return Ok(JsonView(false, ex.Message));
  8570. }
  8571. }
  8572. /// <summary>
  8573. /// 酒店预订
  8574. /// 生成VOUCHER
  8575. /// 2024.05.06 之后版本
  8576. /// </summary>
  8577. /// <param name="_dto"></param>
  8578. /// <returns></returns>
  8579. [HttpPost]
  8580. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8581. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8582. {
  8583. #region 参数验证
  8584. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8585. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8586. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8587. #region 团组操作权限验证 76 酒店预定模块
  8588. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8589. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8590. #endregion
  8591. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8592. #region 页面操作权限验证
  8593. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8594. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8595. #endregion
  8596. #endregion
  8597. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8598. //判断数据是否完整
  8599. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8600. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8601. string strFileName = "HotelStatement/";
  8602. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8603. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8604. #region 数据处理
  8605. List<int> guestIds = new List<int>();
  8606. int index = 0;
  8607. foreach (var item in hrDtas)
  8608. {
  8609. if (item.GuestName.Contains(","))
  8610. {
  8611. string[] guestIdArr = item.GuestName.Split(',');
  8612. foreach (var guestIdStr in guestIdArr)
  8613. {
  8614. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8615. if (guestBool)
  8616. {
  8617. guestIds.Add(guestId);
  8618. }
  8619. }
  8620. }
  8621. else guestNames += item.GuestName;
  8622. var voucherInfo = new HotelVoucherInfoView()
  8623. {
  8624. HotelName = item.HotelName,
  8625. CheckInDate = item.CheckInDate,
  8626. CheckOutDate = item.CheckOutDate,
  8627. ConfirmationNumber = item.DetermineNo.Trim(),
  8628. RoomType = item.RoomExplanation
  8629. };
  8630. vouchers.Add(voucherInfo);
  8631. }
  8632. if (guestIds.Count > 0)
  8633. {
  8634. guestIds = guestIds.Distinct().ToList();
  8635. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8636. if (guestDatas.Count > 0)
  8637. {
  8638. guestNames = "";
  8639. foreach (var guest in guestDatas)
  8640. {
  8641. string guestName = "";
  8642. if (guest.Sex == 0) guestName += @"MR.";
  8643. else if (guest.Sex == 1) guestName += @"MS.";
  8644. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8645. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8646. guestNames += @$"{guestName.Trim()}、";
  8647. }
  8648. if (guestNames.Length > 0)
  8649. {
  8650. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8651. }
  8652. }
  8653. }
  8654. #endregion
  8655. //载入模板
  8656. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8657. Document doc = new Document(sss);
  8658. DocumentBuilder builder = new DocumentBuilder(doc);
  8659. if (doc.Range.Bookmarks["GuestName"] != null)
  8660. {
  8661. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  8662. mark.Text = guestNames;
  8663. }
  8664. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8665. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  8666. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  8667. for (int i = 1; i <= vouchers.Count; i++)
  8668. {
  8669. HotelVoucherInfoView hviv = vouchers[i - 1];
  8670. builder.MoveToCell(0, i, 0, 0);
  8671. builder.Write(hviv.HotelName);
  8672. builder.MoveToCell(0, i, 1, 0);
  8673. builder.Write(hviv.CheckInDate);
  8674. builder.MoveToCell(0, i, 2, 0);
  8675. builder.Write(hviv.CheckOutDate);
  8676. builder.MoveToCell(0, i, 3, 0);
  8677. builder.Write(hviv.RoomType);
  8678. builder.MoveToCell(0, i, 4, 0);
  8679. builder.Write(hviv.ConfirmationNumber);
  8680. }
  8681. //删除多余行
  8682. int currRowIndex = vouchers.Count + 1;
  8683. int delRows = 21 - currRowIndex;
  8684. if (delRows > 0)
  8685. {
  8686. for (int i = 0; i < delRows; i++)
  8687. {
  8688. table.Rows.RemoveAt(currRowIndex);
  8689. //cultivateRowIndex++;
  8690. }
  8691. }
  8692. strFileName += "VOUCHER.docx";
  8693. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8694. doc.Save(fileDir);
  8695. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8696. return Ok(JsonView(true, "操作成功!", Url));
  8697. }
  8698. /// <summary>
  8699. /// 酒店预订
  8700. /// 生成 预定成本 Excel
  8701. /// </summary>
  8702. /// <param name="_dto"></param>
  8703. /// <returns></returns>
  8704. [HttpPost]
  8705. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8706. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  8707. {
  8708. #region 参数验证
  8709. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  8710. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  8711. if (!vadalitorRes.IsValid)
  8712. {
  8713. var errors = new StringBuilder();
  8714. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  8715. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  8716. }
  8717. #region 团组操作权限验证 76 酒店预定模块
  8718. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8719. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8720. #endregion
  8721. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8722. #region 页面操作权限验证
  8723. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8724. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8725. #endregion
  8726. #endregion
  8727. decimal _rate = 1.00M;
  8728. string _currency = "";
  8729. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  8730. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8731. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  8732. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  8733. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  8734. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  8735. {
  8736. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  8737. }
  8738. _currency = _GroupCostParameter.Currency;
  8739. bool isIntType = int.TryParse(_currency, out int currId);
  8740. if (isIntType)
  8741. {
  8742. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  8743. }
  8744. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  8745. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  8746. if (currInfo == null)
  8747. {
  8748. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  8749. }
  8750. if (!_currency.ToUpper().Equals("CNY"))
  8751. {
  8752. _rate = _GroupCostParameter.Rate;
  8753. }
  8754. _rate = currInfo.Rate;
  8755. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8756. string strFileName = "HotelStatement/";
  8757. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8758. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  8759. #region 数据处理
  8760. foreach (var item in hrDtas)
  8761. {
  8762. var ccpInfo = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  8763. string roomCurr = currDatas.Find(it => it.Id == ccpInfo.PaymentCurrency)?.Name ?? "";
  8764. string singleRoomFeeStr = string.Empty,
  8765. doubleRoomFeeStr = string.Empty,
  8766. suiteRoomFeeStr = string.Empty,
  8767. otherRoomFeeStr = string.Empty,
  8768. payMoneyStr = string.Empty,
  8769. cardPriceStr = string.Empty;
  8770. if (roomCurr.Equals(_currency))
  8771. {
  8772. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  8773. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  8774. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  8775. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  8776. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  8777. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  8778. }
  8779. else
  8780. {
  8781. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  8782. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  8783. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  8784. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  8785. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  8786. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  8787. }
  8788. string breakfastPriceStr = string.Empty,
  8789. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  8790. governmentRentStr = string.Empty,
  8791. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  8792. cityTaxStrStr = string.Empty,
  8793. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  8794. //if (breakfastCurrency.Equals(_currency))
  8795. //{
  8796. // breakfastPriceStr = $"{item.BreakfastPrice.ToString("#0.00")} ({_currency})";
  8797. //}
  8798. //if (governmentRentCurrency.Equals(_currency))
  8799. //{
  8800. // governmentRentStr = $"{item.GovernmentRent.ToString("#0.00")} ({_currency})";
  8801. //}
  8802. //if (cityTaxStrCurrency.Equals(_currency))
  8803. //{
  8804. // cityTaxStrStr = $"{item.CityTax.ToString("#0.00")} ({_currency})";
  8805. //}
  8806. breakfastPriceStr = $"{item.BreakfastPrice.ToString("#0.00")} {_currency}";
  8807. governmentRentStr = $"{item.GovernmentRent.ToString("#0.00")} {_currency}";
  8808. cityTaxStrStr = $"{item.CityTax.ToString("#0.00")} {_currency}";
  8809. pcfds.Add(new HotelReservations_PCFD_View()
  8810. {
  8811. City = item.City,
  8812. HotelName = item.HotelName,
  8813. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  8814. // SingleRoomCount = item.SingleRoomCount,
  8815. SingleRoomPrice = singleRoomFeeStr,
  8816. // DoubleRoomCount = item.DoubleRoomCount,
  8817. DoubleRoomPrice = doubleRoomFeeStr,
  8818. //SuiteRoomCount = item.SuiteRoomCount,
  8819. SuiteRoomPrice = suiteRoomFeeStr,
  8820. OtherRoomPrice = otherRoomFeeStr,
  8821. //OtherRoomCount = item.OtherRoomCount,
  8822. BreakfastPrice = breakfastPriceStr,
  8823. GovernmentRent = governmentRentStr,
  8824. CityTax = cityTaxStrStr,
  8825. RoomExplanation = item.RoomExplanation,
  8826. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == ccpInfo.PayDId).First()?.Name ?? "",
  8827. PayTime = ccpInfo.ConsumptionDate,
  8828. BankNo = ccpInfo.BankNo,
  8829. PayMoney = payMoneyStr,
  8830. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  8831. ConsumptionPatterns = ccpInfo.ConsumptionPatterns,
  8832. CardPrice = cardPriceStr,
  8833. Remark = ccpInfo.Remark
  8834. });
  8835. }
  8836. #endregion
  8837. //载入模板
  8838. WorkbookDesigner designer = new WorkbookDesigner();
  8839. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  8840. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  8841. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  8842. designer.SetDataSource("TourNo", groupInfo.TourCode);
  8843. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  8844. designer.SetDataSource("Opertor", userInfo.CnName);
  8845. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  8846. dt.TableName = "ViewMyHotelReservations";
  8847. designer.SetDataSource(dt);
  8848. designer.Process();
  8849. string fileName = ($"HotelReservation/{groupInfo.TeamName}_酒店预订成本_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls").Replace(":", "");
  8850. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  8851. designer.Workbook.Save(serverPath);
  8852. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  8853. #region 删除指定行
  8854. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true,cpDel=true, remarkDel = true;
  8855. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  8856. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  8857. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  8858. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  8859. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  8860. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  8861. cssIndex = dt.Columns["CityTax"].Ordinal,
  8862. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  8863. remarkIndex = dt.Columns["Remark"].Ordinal;
  8864. //删除指定列
  8865. foreach (DataRow item in dt.Rows)
  8866. {
  8867. string singleStr = item["SingleRoomPrice"].ToString();
  8868. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  8869. if (containsDigitButNotZero1) singleDel = false;
  8870. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  8871. string doubleStr = item["DoubleRoomPrice"].ToString();
  8872. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  8873. if (containsDigitButNotZero2) doubleDel = false;
  8874. string suiteStr = item["SuiteRoomPrice"].ToString();
  8875. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  8876. if (containsDigitButNotZero3) suiteDel = false;
  8877. string otherStr = item["OtherRoomPrice"].ToString();
  8878. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  8879. if (containsDigitButNotZero4) otherDel = false;
  8880. string zcStr = item["BreakfastPrice"].ToString();
  8881. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  8882. if (containsDigitButNotZero5) zcDel = false;
  8883. string dsStr = item["GovernmentRent"].ToString();
  8884. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  8885. if (containsDigitButNotZero6) dsDel = false;
  8886. string cssStr = item["CityTax"].ToString();
  8887. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  8888. if (containsDigitButNotZero7) cssDel = false;
  8889. string cpStr = item["ConsumptionPatterns"].ToString();
  8890. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  8891. string remarkStr = item["Remark"].ToString();
  8892. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  8893. }
  8894. DeleteColumn(serverPath, remarkIndex, remarkDel);
  8895. DeleteColumn(serverPath, cpIndex, cpDel);
  8896. DeleteColumn(serverPath, dsIndex, dsDel);
  8897. DeleteColumn(serverPath, cssIndex, cssDel);
  8898. DeleteColumn(serverPath, zcIndex, zcDel);
  8899. DeleteColumn(serverPath, otherIndex, otherDel);
  8900. DeleteColumn(serverPath, suiteIndex, suiteDel);
  8901. DeleteColumn(serverPath, doubleIndex, doubleDel);
  8902. DeleteColumn(serverPath, singleIndex, singleDel);
  8903. #endregion
  8904. //只保留第一个表格
  8905. DeleteSheet(serverPath);
  8906. return Ok(JsonView(true, "操作成功", url = rst));
  8907. }
  8908. /// <summary>
  8909. /// 删除指定列
  8910. /// </summary>
  8911. /// <param name="file"></param>
  8912. /// <param name="columnIndex"></param>
  8913. /// <param name="isDel"></param>
  8914. private void DeleteColumn(string file, int columnIndex,bool isDel)
  8915. {
  8916. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  8917. //wb.Save(file);
  8918. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  8919. if (sheet1 != null)
  8920. {
  8921. if (isDel)
  8922. {
  8923. Cells cells = sheet1.Cells;
  8924. cells.DeleteColumn(columnIndex);
  8925. }
  8926. }
  8927. wb.Save(file);
  8928. }
  8929. /// <summary>
  8930. /// 删除sheet
  8931. /// </summary>
  8932. /// <param name="file"></param>
  8933. /// <param name="sheetName"></param>
  8934. private void DeleteSheet(string file, string sheetName="")
  8935. {
  8936. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  8937. //wb.Save(file);
  8938. List<string> sheets = new List<string>();
  8939. foreach (var item in wb.Worksheets)
  8940. {
  8941. sheets.Add(item.Name);
  8942. }
  8943. if (sheets.Count > 0)
  8944. {
  8945. sheets.RemoveAt(0);//不删除第一个sheet
  8946. foreach (var item in sheets)
  8947. {
  8948. wb.Worksheets.RemoveAt(item);
  8949. }
  8950. }
  8951. wb.Save(file);
  8952. }
  8953. /// <summary>
  8954. /// 酒店预订
  8955. /// 确认单
  8956. /// </summary>
  8957. /// <param name="_dto"></param>
  8958. /// <returns></returns>
  8959. [HttpPost]
  8960. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8961. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  8962. {
  8963. try
  8964. {
  8965. #region 参数验证
  8966. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8967. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8968. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8969. #region 团组操作权限验证 76 酒店预定模块
  8970. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8971. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8972. #endregion
  8973. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8974. #region 页面操作权限验证
  8975. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8976. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8977. #endregion
  8978. #endregion
  8979. //团组信息
  8980. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  8981. //酒店数据
  8982. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  8983. if (listhoteldata.Count < 0)
  8984. {
  8985. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  8986. }
  8987. //利datatable存储
  8988. DataTable dt = new DataTable();
  8989. dt.Columns.Add("CheckInDate", typeof(string));
  8990. dt.Columns.Add("City", typeof(string));
  8991. dt.Columns.Add("Hotel", typeof(string));
  8992. dt.Columns.Add("Room", typeof(string));
  8993. for (int i = 0; i < listhoteldata.Count; i++)
  8994. {
  8995. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  8996. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  8997. while (dayStart < dayEnd)
  8998. {
  8999. string temp = "";
  9000. DataRow row = dt.NewRow();
  9001. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9002. row["City"] = listhoteldata[i].City;
  9003. row["Hotel"] = listhoteldata[i].HotelName;
  9004. if (listhoteldata[i].SingleRoomCount > 0)
  9005. {
  9006. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9007. }
  9008. if (listhoteldata[i].DoubleRoomCount > 0)
  9009. {
  9010. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9011. }
  9012. if (listhoteldata[i].SuiteRoomCount > 0)
  9013. {
  9014. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9015. }
  9016. if (listhoteldata[i].OtherRoomCount > 0)
  9017. {
  9018. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9019. }
  9020. row["Room"] = temp;
  9021. dt.Rows.Add(row);
  9022. dayStart = dayStart.AddDays(1);
  9023. }
  9024. }
  9025. Dictionary<string, string> dic = new Dictionary<string, string>();
  9026. dic.Add("Dele", di.TeamName);
  9027. dic.Add("City", di.VisitCountry);
  9028. //模板路径
  9029. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9030. //载入模板
  9031. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9032. DocumentBuilder builder = new DocumentBuilder(doc);
  9033. foreach (var key in dic.Keys)
  9034. {
  9035. builder.MoveToBookmark(key);
  9036. builder.Write(dic[key]);
  9037. }
  9038. //获取word里所有表格
  9039. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9040. //获取所填表格的序数
  9041. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9042. var rowStart = tableOne.Rows[0]; //获取第1行
  9043. //循环赋值
  9044. for (int i = 0; i < dt.Rows.Count; i++)
  9045. {
  9046. builder.MoveToCell(0, i + 1, 0, 0);
  9047. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9048. builder.MoveToCell(0, i + 1, 1, 0);
  9049. builder.Write(dt.Rows[i]["City"].ToString());
  9050. builder.MoveToCell(0, i + 1, 2, 0);
  9051. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9052. builder.MoveToCell(0, i + 1, 3, 0);
  9053. builder.Write(dt.Rows[i]["Room"].ToString());
  9054. }
  9055. //删除多余行
  9056. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9057. {
  9058. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9059. }
  9060. string strFileName = di.TeamName + "酒店确认单.doc";
  9061. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9062. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9063. return Ok(JsonView(true, "成功", url));
  9064. }
  9065. catch (Exception ex)
  9066. {
  9067. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9068. }
  9069. }
  9070. #endregion
  9071. #region 团组状态
  9072. /// <summary>
  9073. /// 团组状态列表 Page
  9074. /// </summary>
  9075. /// <param name="dto">团组列表请求dto</param>
  9076. /// <returns></returns>
  9077. [HttpPost]
  9078. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9079. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9080. {
  9081. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9082. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9083. {
  9084. string sqlWhere = string.Empty;
  9085. if (dto.IsSure == 0) //未完成
  9086. {
  9087. sqlWhere += string.Format(@" And IsSure = 0");
  9088. }
  9089. else if (dto.IsSure == 1) //已完成
  9090. {
  9091. sqlWhere += string.Format(@" And IsSure = 1");
  9092. }
  9093. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9094. {
  9095. string tj = dto.SearchCriteria;
  9096. 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}%')",
  9097. tj, tj, tj, tj, tj);
  9098. }
  9099. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9100. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9101. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9102. From (
  9103. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9104. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9105. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9106. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9107. From Grp_DelegationInfo gdi
  9108. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9109. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9110. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9111. Where gdi.IsDel = 0 {0}
  9112. ) temp ", sqlWhere);
  9113. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9114. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9115. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9116. }
  9117. else
  9118. {
  9119. return Ok(JsonView(false, "查询失败"));
  9120. }
  9121. }
  9122. /// <summary>
  9123. /// 团组状态
  9124. /// 设置操作完成
  9125. /// </summary>
  9126. /// <param name="dto">团组列表请求dto</param>
  9127. /// <returns></returns>
  9128. [HttpPost]
  9129. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9130. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9131. {
  9132. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9133. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9134. {
  9135. Id = dto.Id,
  9136. IsSure = 1
  9137. };
  9138. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9139. .UpdateColumns(it => new { it.IsSure })
  9140. .WhereColumns(it => new { it.Id })
  9141. .ExecuteCommandAsync();
  9142. if (result > 0)
  9143. {
  9144. return Ok(JsonView(true, "操作完成!"));
  9145. }
  9146. return Ok(JsonView(false, "操作失败!"));
  9147. }
  9148. #endregion
  9149. #region 保险费用录入
  9150. /// <summary>
  9151. /// 根据团组Id查询保险费用列表
  9152. /// </summary>
  9153. /// <param name="dto"></param>
  9154. /// <returns></returns>
  9155. [HttpPost]
  9156. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9157. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9158. {
  9159. try
  9160. {
  9161. Result groupData = await _customersRep.CustomersByDiId(dto);
  9162. if (groupData.Code != 0)
  9163. {
  9164. return Ok(JsonView(false, groupData.Msg));
  9165. }
  9166. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9167. }
  9168. catch (Exception ex)
  9169. {
  9170. return Ok(JsonView(false, ex.Message));
  9171. }
  9172. }
  9173. /// <summary>
  9174. /// 根据保险费用Id查询保险费用详细
  9175. /// </summary>
  9176. /// <param name="dto"></param>
  9177. /// <returns></returns>
  9178. [HttpPost]
  9179. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9180. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9181. {
  9182. try
  9183. {
  9184. Result groupData = await _customersRep.CustomersById(dto);
  9185. if (groupData.Code != 0)
  9186. {
  9187. return Ok(JsonView(false, groupData.Msg));
  9188. }
  9189. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9190. }
  9191. catch (Exception ex)
  9192. {
  9193. return Ok(JsonView(false, ex.Message));
  9194. }
  9195. }
  9196. /// <summary>
  9197. /// 保险费用录入页面初始化绑定
  9198. /// </summary>
  9199. /// <param name="dto"></param>
  9200. /// <returns></returns>
  9201. [HttpPost]
  9202. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9203. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9204. {
  9205. try
  9206. {
  9207. Result groupData = await _customersRep.CustomersInitialize(dto);
  9208. if (groupData.Code != 0)
  9209. {
  9210. return Ok(JsonView(false, groupData.Msg));
  9211. }
  9212. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9213. }
  9214. catch (Exception ex)
  9215. {
  9216. return Ok(JsonView(false, ex.Message));
  9217. }
  9218. }
  9219. /// <summary>
  9220. /// 保险费用操作(Status:1.新增,2.修改)
  9221. /// </summary>
  9222. /// <param name="dto"></param>
  9223. /// <returns></returns>
  9224. [HttpPost]
  9225. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9226. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9227. {
  9228. try
  9229. {
  9230. Result groupData = await _customersRep.OpCustomers(dto);
  9231. if (groupData.Code != 0)
  9232. {
  9233. return Ok(JsonView(false, groupData.Msg));
  9234. }
  9235. #region 应用推送
  9236. try
  9237. {
  9238. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9239. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9240. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9241. }
  9242. catch (Exception ex)
  9243. {
  9244. }
  9245. #endregion
  9246. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9247. }
  9248. catch (Exception ex)
  9249. {
  9250. return Ok(JsonView(false, ex.Message));
  9251. }
  9252. }
  9253. /// <summary>
  9254. /// 保险文件上传
  9255. /// </summary>
  9256. /// <param name="file"></param>
  9257. /// <returns></returns>
  9258. [HttpPost]
  9259. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9260. public async Task<IActionResult> UploadCus(IFormFile file)
  9261. {
  9262. try
  9263. {
  9264. if (file != null)
  9265. {
  9266. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9267. //文件名称
  9268. string projectFileName = file.FileName;
  9269. //上传的文件的路径
  9270. string filePath = "";
  9271. if (!Directory.Exists(fileDir))
  9272. {
  9273. Directory.CreateDirectory(fileDir);
  9274. }
  9275. //上传的文件的路径
  9276. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9277. using (FileStream fs = System.IO.File.Create(filePath))
  9278. {
  9279. file.CopyTo(fs);
  9280. fs.Flush();
  9281. }
  9282. return Ok(JsonView(true, "上传成功!", projectFileName));
  9283. }
  9284. else
  9285. {
  9286. return Ok(JsonView(false, "上传失败!"));
  9287. }
  9288. }
  9289. catch (Exception ex)
  9290. {
  9291. return Ok(JsonView(false, "程序错误!"));
  9292. throw;
  9293. }
  9294. }
  9295. /// <summary>
  9296. /// 保险删除指定文件
  9297. /// </summary>
  9298. /// <param name="dto"></param>
  9299. /// <returns></returns>
  9300. [HttpPost]
  9301. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9302. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9303. {
  9304. try
  9305. {
  9306. string filePath = "";
  9307. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9308. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9309. //int id = 0;
  9310. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9311. // 删除该文件
  9312. try
  9313. {
  9314. System.IO.File.Delete(filePath);
  9315. 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()
  9316. {
  9317. Attachment = "",
  9318. }).ExecuteCommandAsync();
  9319. if (result != 0)
  9320. {
  9321. return Ok(JsonView(true, "成功!"));
  9322. }
  9323. else
  9324. {
  9325. return Ok(JsonView(false, "失败!"));
  9326. }
  9327. }
  9328. catch (Exception)
  9329. {
  9330. 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()
  9331. {
  9332. Attachment = "",
  9333. }).ExecuteCommandAsync();
  9334. if (result != 0)
  9335. {
  9336. return Ok(JsonView(true, "成功!"));
  9337. }
  9338. else
  9339. {
  9340. return Ok(JsonView(false, "失败!"));
  9341. }
  9342. }
  9343. }
  9344. catch (Exception ex)
  9345. {
  9346. return Ok(JsonView(false, "程序错误!"));
  9347. throw;
  9348. }
  9349. }
  9350. /// <summary>
  9351. /// 保险费用操作(删除)
  9352. /// </summary>
  9353. /// <param name="dto"></param>
  9354. /// <returns></returns>
  9355. [HttpPost]
  9356. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9357. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9358. {
  9359. try
  9360. {
  9361. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9362. if (!res)
  9363. {
  9364. return Ok(JsonView(false, "删除失败"));
  9365. }
  9366. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9367. {
  9368. IsDel = 1,
  9369. DeleteUserId = dto.DeleteUserId,
  9370. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9371. }).ExecuteCommandAsync();
  9372. return Ok(JsonView(true, "删除成功!"));
  9373. }
  9374. catch (Exception ex)
  9375. {
  9376. return Ok(JsonView(false, "程序错误!"));
  9377. throw;
  9378. }
  9379. }
  9380. #endregion
  9381. #region 接团客户名单 PageId 104
  9382. /// <summary>
  9383. /// 接团客户名单
  9384. /// 迁移数据(慎用!)
  9385. /// </summary>
  9386. /// <param name="dto"></param>
  9387. /// <returns></returns>
  9388. [HttpPost]
  9389. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9390. public async Task<IActionResult> PostTourClientListChange()
  9391. {
  9392. try
  9393. {
  9394. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9395. //var groupClinetData1
  9396. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9397. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9398. int updateCount = 0;
  9399. if (oldOAClientList.Count > 0)
  9400. {
  9401. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9402. _sqlSugar.BeginTran();
  9403. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9404. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9405. foreach (var item in oldOAClientList)
  9406. {
  9407. int comId = 0;
  9408. string format = "yyyy-MM-dd HH:mm:ss";
  9409. string data11 = "1990-01-01 00:00";
  9410. var data1 = IsValidDate(item.OPdate, format);
  9411. if (data1) data11 = item.OPdate;
  9412. //客户公司验证
  9413. if (!string.IsNullOrEmpty(item.Company))
  9414. {
  9415. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9416. if (clientComInfo == null) // add
  9417. {
  9418. var addInfo = new Crm_CustomerCompany()
  9419. {
  9420. CompanyAbbreviation = "",
  9421. CompanyFullName = item.Company,
  9422. Address = "",
  9423. PostCodes = "",
  9424. LastedOpUserId = item.OPer,
  9425. LastedOpDt = Convert.ToDateTime(data11),
  9426. CreateUserId = item.OPer,
  9427. CreateTime = Convert.ToDateTime(data11),
  9428. IsDel = 0
  9429. };
  9430. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9431. if (comId1 > 0) comId = comId1;
  9432. }
  9433. else comId = clientComInfo.Id;
  9434. }
  9435. //客户人员验证
  9436. int clientId = 0;
  9437. string name = item.LastName + item.Name;
  9438. if (!string.IsNullOrEmpty(name))
  9439. {
  9440. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9441. if (clientInfo == null)
  9442. {
  9443. DateTime? dateTime = null;
  9444. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9445. if (isDt) dateTime = birthDayDt;
  9446. var addInfo1 = new Crm_DeleClient()
  9447. {
  9448. CrmCompanyId = comId,
  9449. DiId = -1,
  9450. LastName = item.LastName,
  9451. FirstName = item.Name,
  9452. OldName = "",
  9453. Pinyin = item.Pinyin,
  9454. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9455. Marriage = 0,
  9456. Phone = item.Phone,
  9457. Job = item.Job,
  9458. BirthDay = dateTime
  9459. };
  9460. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9461. if (clientId1 > 0) clientId = clientId1;
  9462. }
  9463. else clientId = clientInfo.Id;
  9464. }
  9465. if (clientId < 1)
  9466. {
  9467. continue;
  9468. }
  9469. int airType = 0;
  9470. if (item.AirType == "超经舱") airType = 459;
  9471. else if (item.AirType == "公务舱") airType = 458;
  9472. else if (item.AirType == "经济舱") airType = 460;
  9473. else if (item.AirType == "其他") airType = 565;
  9474. else if (item.AirType == "头等舱") airType = 457;
  9475. var _TourClientListEntity = new Grp_TourClientList()
  9476. {
  9477. DiId = item.Diid,
  9478. ClientId = clientId,
  9479. CreateUserId = item.OPer,
  9480. CreateTime = Convert.ToDateTime(data11),
  9481. Remark = item.Remark,
  9482. IsDel = item.Isdel,
  9483. ShippingSpaceTypeId = airType,
  9484. ShippingSpaceSpecialNeeds = item.AirRemark,
  9485. HotelSpecialNeeds = item.RoomType
  9486. };
  9487. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9488. if (_TourClientList > 0)
  9489. {
  9490. updateCount++;
  9491. }
  9492. }
  9493. _sqlSugar.CommitTran();
  9494. }
  9495. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9496. }
  9497. catch (Exception ex)
  9498. {
  9499. _sqlSugar.RollbackTran();
  9500. return Ok(JsonView(false, ex.Message));
  9501. }
  9502. return Ok(JsonView(true));
  9503. }
  9504. private bool IsValidDate(string dateString, string format)
  9505. {
  9506. DateTime dateValue;
  9507. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9508. return valid;
  9509. }
  9510. /// <summary>
  9511. /// 接团客户名单
  9512. /// 根据团组Id查询List
  9513. /// </summary>
  9514. /// <param name="dto"></param>
  9515. /// <returns></returns>
  9516. [HttpPost]
  9517. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9518. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9519. {
  9520. #region 参数验证
  9521. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9522. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9523. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9524. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9525. #region 页面操作权限验证
  9526. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9527. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9528. #endregion
  9529. #endregion
  9530. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9531. if (viewData.Code != 0)
  9532. {
  9533. return Ok(JsonView(false, viewData.Msg));
  9534. }
  9535. return Ok(JsonView(viewData.Data));
  9536. }
  9537. /// <summary>
  9538. /// 接团客户名单
  9539. /// 基础数据 Init
  9540. /// </summary>
  9541. /// <param name="_dto"></param>
  9542. /// <returns></returns>
  9543. [HttpPost]
  9544. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9545. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9546. {
  9547. #region 参数验证
  9548. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9549. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9550. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9551. #region 页面操作权限验证
  9552. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9553. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9554. #endregion
  9555. #endregion
  9556. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9557. if (viewData.Code != 0)
  9558. {
  9559. return Ok(JsonView(false, viewData.Msg));
  9560. }
  9561. return Ok(JsonView(viewData.Data));
  9562. }
  9563. /// <summary>
  9564. /// 接团客户名单
  9565. /// 根据 Id查询 Details
  9566. /// </summary>
  9567. /// <param name="_dto"></param>
  9568. /// <returns></returns>
  9569. [HttpPost]
  9570. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9571. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9572. {
  9573. #region 参数验证
  9574. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9575. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9576. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9577. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9578. #region 页面操作权限验证
  9579. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9580. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9581. #endregion
  9582. #endregion
  9583. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9584. if (viewData.Code != 0)
  9585. {
  9586. return Ok(JsonView(false, viewData.Msg));
  9587. }
  9588. return Ok(JsonView(viewData.Data));
  9589. }
  9590. /// <summary>
  9591. /// 接团客户名单
  9592. /// Add Or Edit
  9593. /// </summary>
  9594. /// <param name="_dto"></param>
  9595. /// <returns></returns>
  9596. [HttpPost]
  9597. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9598. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9599. {
  9600. #region 参数验证
  9601. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9602. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9603. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9604. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9605. #region 页面操作权限验证
  9606. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9607. if (_dto.Id == 0) //添加
  9608. {
  9609. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9610. }
  9611. else if (_dto.Id >= 0) //修改
  9612. {
  9613. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9614. }
  9615. #endregion
  9616. #endregion
  9617. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9618. if (viewData.Code != 0)
  9619. {
  9620. return Ok(JsonView(false, viewData.Msg));
  9621. }
  9622. return Ok(JsonView(true));
  9623. }
  9624. /// <summary>
  9625. /// 接团客户名单
  9626. /// AddMultiple(添加多个)
  9627. /// </summary>
  9628. /// <param name="_dto"></param>
  9629. /// <returns></returns>
  9630. [HttpPost]
  9631. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9632. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9633. {
  9634. #region 参数验证
  9635. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9636. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9637. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9638. #region 页面操作权限验证
  9639. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9640. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9641. #endregion
  9642. #endregion
  9643. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9644. if (viewData.Code != 0)
  9645. {
  9646. return Ok(JsonView(false, viewData.Msg));
  9647. }
  9648. return Ok(JsonView(true));
  9649. }
  9650. /// <summary>
  9651. /// 接团客户名单
  9652. /// Del
  9653. /// </summary>
  9654. /// <param name="_dto"></param>
  9655. /// <returns></returns>
  9656. [HttpPost]
  9657. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9658. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9659. {
  9660. #region 参数验证
  9661. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9662. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9663. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9664. #region 页面操作权限验证
  9665. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9666. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9667. #endregion
  9668. #endregion
  9669. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  9670. if (viewData.Code != 0)
  9671. {
  9672. return Ok(JsonView(false, viewData.Msg));
  9673. }
  9674. return Ok(JsonView(true));
  9675. }
  9676. /// <summary>
  9677. /// 接团客户名单
  9678. /// 文件下载 客户名单
  9679. /// </summary>
  9680. /// <param name="_dto"></param>
  9681. /// <returns></returns>
  9682. [HttpPost]
  9683. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9684. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  9685. {
  9686. #region 参数验证
  9687. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9688. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9689. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  9690. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9691. #region 页面操作权限验证
  9692. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9693. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9694. #endregion
  9695. #endregion
  9696. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  9697. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  9698. From Grp_TourClientList tcl
  9699. Left Join
  9700. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  9701. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  9702. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  9703. From Crm_DeleClient dc
  9704. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  9705. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  9706. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  9707. Where dc.IsDel = 0) temp
  9708. On temp.DcId =tcl.ClientId
  9709. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  9710. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  9711. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  9712. //载入模板
  9713. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  9714. if (_dto.Language == 1)
  9715. {
  9716. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  9717. }
  9718. //载入模板
  9719. var doc = new Document(tempPath);
  9720. DocumentBuilder builder = new DocumentBuilder(doc);
  9721. //获取word里所有表格
  9722. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9723. //获取所填表格的序数
  9724. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9725. var rowStart = tableOne.Rows[0]; //获取第1行
  9726. if (_dto.Language == 0)
  9727. {
  9728. //循环赋值
  9729. for (int i = 0; i < DcList.Count; i++)
  9730. {
  9731. builder.MoveToCell(0, i + 1, 0, 0);
  9732. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  9733. builder.MoveToCell(0, i + 1, 1, 0);
  9734. int sex = DcList[i].Sex;
  9735. string sexStr = string.Empty;
  9736. if (sex == 0) sexStr = "男";
  9737. else if (sex == 1) sexStr = "女";
  9738. else sexStr = "未设置";
  9739. builder.Write(sexStr);
  9740. builder.MoveToCell(0, i + 1, 2, 0);
  9741. string birthDay = DcList[i].BirthDay;
  9742. string birthDayStr = string.Empty;
  9743. if (!string.IsNullOrEmpty(birthDay))
  9744. {
  9745. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  9746. }
  9747. builder.Write(birthDayStr);
  9748. builder.MoveToCell(0, i + 1, 3, 0);
  9749. string company = "";
  9750. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9751. {
  9752. company = DcList[i].CompanyFullName.ToString();
  9753. }
  9754. builder.Write(company);
  9755. builder.MoveToCell(0, i + 1, 4, 0);
  9756. builder.Write(DcList[i].Job);
  9757. }
  9758. }
  9759. else if (_dto.Language == 1)
  9760. {
  9761. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  9762. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  9763. //循环赋值
  9764. for (int i = 0; i < DcList.Count; i++)
  9765. {
  9766. string PYName = "";
  9767. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  9768. {
  9769. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  9770. string PY_First = DcList[i].Pinyin.Split('/')[1];
  9771. PYName = PY_First + " " + PY_Last;
  9772. }
  9773. else
  9774. {
  9775. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  9776. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  9777. PYName = PY_First + " " + PY_Last;
  9778. }
  9779. builder.MoveToCell(0, i + 1, 0, 0);
  9780. builder.Write(PYName);
  9781. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  9782. builder.MoveToCell(0, i + 1, 1, 0);
  9783. builder.Write(sex);
  9784. DateTime birthDt;
  9785. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  9786. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : "";
  9787. builder.MoveToCell(0, i + 1, 2, 0);
  9788. builder.Write(birthday);
  9789. string company = "";
  9790. try
  9791. {
  9792. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9793. {
  9794. //查询对照表
  9795. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  9796. if (tempCec != null)
  9797. {
  9798. company = tempCec.enName;
  9799. }
  9800. //翻译
  9801. else
  9802. {
  9803. company = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].CompanyFullName.ToString().Trim());
  9804. }
  9805. }
  9806. }
  9807. catch (Exception)
  9808. {
  9809. }
  9810. builder.MoveToCell(0, i + 1, 3, 0);
  9811. builder.Write(company);
  9812. string job = "";
  9813. try
  9814. {
  9815. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  9816. {
  9817. //查询对照表
  9818. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  9819. if (tempPec != null)
  9820. {
  9821. job = tempPec.enName;
  9822. }
  9823. //翻译
  9824. else
  9825. {
  9826. job = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].Job.ToString().Trim());
  9827. }
  9828. }
  9829. }
  9830. catch (Exception ex)
  9831. {
  9832. }
  9833. builder.MoveToCell(0, i + 1, 4, 0);
  9834. builder.Write(job);
  9835. }
  9836. }
  9837. //删除多余行
  9838. while (tableOne.Rows.Count > DcList.Count + 1)
  9839. {
  9840. tableOne.Rows.RemoveAt(DcList.Count + 1);
  9841. }
  9842. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  9843. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  9844. doc.Save(fileDir);
  9845. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  9846. return Ok(JsonView(true, "操作成功!", Url));
  9847. }
  9848. #endregion
  9849. #region 团组倒推表
  9850. /// <summary>
  9851. /// 倒推表基础数据
  9852. /// Init
  9853. /// </summary>
  9854. /// <param name="dto"></param>
  9855. /// <returns></returns>
  9856. [HttpPost]
  9857. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9858. public async Task<IActionResult> PostInvertedListInit()
  9859. {
  9860. var viewData = await _invertedListRep._Init();
  9861. if (viewData.Code != 0)
  9862. {
  9863. return Ok(JsonView(false, viewData.Msg));
  9864. }
  9865. return Ok(JsonView(viewData.Data));
  9866. }
  9867. /// <summary>
  9868. /// 倒推表
  9869. /// Info
  9870. /// </summary>
  9871. /// <param name="dto"></param>
  9872. /// <returns></returns>
  9873. [HttpPost]
  9874. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9875. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  9876. {
  9877. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  9878. if (viewData.Code != 0)
  9879. {
  9880. return Ok(JsonView(false, viewData.Msg));
  9881. }
  9882. return Ok(JsonView(viewData.Data));
  9883. }
  9884. /// <summary>
  9885. /// 倒推表
  9886. /// Create
  9887. /// </summary>
  9888. /// <param name="dto"></param>
  9889. /// <returns></returns>
  9890. [HttpPost]
  9891. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9892. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  9893. {
  9894. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  9895. if (viewData.Code != 0)
  9896. {
  9897. return Ok(JsonView(false, viewData.Msg));
  9898. }
  9899. return Ok(JsonView(viewData.Data));
  9900. }
  9901. /// <summary>
  9902. /// 倒推表
  9903. /// Update
  9904. /// </summary>
  9905. /// <param name="dto"></param>
  9906. /// <returns></returns>
  9907. [HttpPost]
  9908. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9909. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  9910. {
  9911. var viewData = await _invertedListRep._Update(dto);
  9912. if (viewData.Code != 0)
  9913. {
  9914. return Ok(JsonView(false, viewData.Msg));
  9915. }
  9916. return Ok(JsonView(viewData.Data));
  9917. }
  9918. /// <summary>
  9919. /// 倒推表
  9920. /// File Download
  9921. /// </summary>
  9922. /// <param name="dto"></param>
  9923. /// <returns></returns>
  9924. [HttpPost]
  9925. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9926. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  9927. {
  9928. var info2 = await _invertedListRep._Info(1, dto.DiId);
  9929. if (info2.Code != 0)
  9930. {
  9931. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  9932. }
  9933. var info1 = info2.Data as InvertedListInfoView;
  9934. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  9935. string teamName = "";
  9936. if (info != null) teamName = info.TeamName;
  9937. //载入模板
  9938. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  9939. DocumentBuilder builder = new DocumentBuilder(doc);
  9940. //利用键值对存放数据
  9941. Dictionary<string, string> dic = new Dictionary<string, string>();
  9942. dic.Add("TeamName", teamName);
  9943. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  9944. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  9945. dic.Add("BPRemark", info1.ApprovalDataRemark);
  9946. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  9947. dic.Add("SQRemark", info1.ApprovalRemark);
  9948. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  9949. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  9950. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  9951. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  9952. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  9953. dic.Add("QZRemark", info1.VisaInformationRemark);
  9954. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  9955. dic.Add("SQQZRemark", info1.SendVisaRemark);
  9956. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  9957. dic.Add("CQRemark", info1.IssueVisaRemark);
  9958. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  9959. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  9960. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  9961. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  9962. #region 填充word模板书签内容
  9963. foreach (var key in dic.Keys)
  9964. {
  9965. builder.MoveToBookmark(key);
  9966. builder.Write(dic[key]);
  9967. }
  9968. #endregion
  9969. var fileDir = AppSettingsHelper.Get("WordBasePath");
  9970. string fileName = $"{teamName}团出行准备流程表.doc";
  9971. string filePath = fileDir + $@"InvertedList/{fileName}";
  9972. doc.Save(filePath);
  9973. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  9974. return Ok(JsonView(true, "操作成功!", Url));
  9975. }
  9976. #endregion
  9977. #region 三公签证费用(签证费、代办费)
  9978. /// <summary>
  9979. /// 三公签证费用(签证费、代办费)
  9980. /// List
  9981. /// </summary>
  9982. /// <returns></returns>
  9983. [HttpPost]
  9984. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9985. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  9986. {
  9987. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  9988. if (_view.Code != 0)
  9989. {
  9990. return Ok(JsonView(false, _view.Msg));
  9991. }
  9992. return Ok(JsonView(true, "操作成功!", _view.Data));
  9993. }
  9994. /// <summary>
  9995. /// 三公签证费用(签证费、代办费)
  9996. /// Add Or Update
  9997. /// </summary>
  9998. /// <returns></returns>
  9999. [HttpPost]
  10000. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10001. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10002. {
  10003. var _view = await _visaFeeInfoRep._Update(_dto);
  10004. if (_view.Code != 0)
  10005. {
  10006. return Ok(JsonView(false, _view.Msg));
  10007. }
  10008. return Ok(JsonView(true, _view.Msg));
  10009. }
  10010. #endregion
  10011. #region 酒店询价
  10012. /// <summary>
  10013. /// 酒店询价
  10014. /// Init
  10015. /// </summary>
  10016. /// <param name="dto"></param>
  10017. /// <returns></returns>
  10018. [HttpPost]
  10019. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10020. public async Task<IActionResult> PostHotelInquiryInit()
  10021. {
  10022. var res = await _hotelInquiryRep._Init();
  10023. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10024. return Ok(JsonView(true, res.Msg, res.Data));
  10025. }
  10026. /// <summary>
  10027. /// 酒店询价
  10028. /// page Item
  10029. /// </summary>
  10030. /// <param name="_dto"></param>
  10031. /// <returns></returns>
  10032. [HttpPost]
  10033. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10034. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10035. {
  10036. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex,_dto.PageSize,_dto.PortType,_dto.DiId);
  10037. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10038. var view = res.Data as PageDataViewBase;
  10039. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10040. }
  10041. /// <summary>
  10042. /// 酒店询价
  10043. /// info
  10044. /// </summary>
  10045. /// <param name="_dto"></param>
  10046. /// <returns></returns>
  10047. [HttpPost]
  10048. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10049. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10050. {
  10051. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10052. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10053. return Ok(JsonView(true, res.Msg, res.Data));
  10054. }
  10055. /// <summary>
  10056. /// 酒店询价
  10057. /// Add Or Edit
  10058. /// </summary>
  10059. /// <param name="_dto"></param>
  10060. /// <returns></returns>
  10061. [HttpPost]
  10062. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10063. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10064. {
  10065. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10066. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10067. return Ok(JsonView(true, res.Msg, res.Data));
  10068. }
  10069. /// <summary>
  10070. /// 酒店询价
  10071. /// Del
  10072. /// </summary>
  10073. /// <param name="_dto"></param>
  10074. /// <returns></returns>
  10075. [HttpPost]
  10076. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10077. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10078. {
  10079. var res = await _hotelInquiryRep._Del(_dto.Id,_dto.DeleteUserId);
  10080. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10081. return Ok(JsonView(true, res.Msg, res.Data));
  10082. }
  10083. #endregion
  10084. // /// <summary>
  10085. // ///
  10086. // /// </summary>
  10087. // /// <param name="_dto"></param>
  10088. // /// <returns></returns>
  10089. // [HttpPost]
  10090. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10091. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  10092. // {
  10093. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  10094. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  10095. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  10096. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  10097. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  10098. // dic_psg.Add("客人", 974);
  10099. // dic_psg.Add("司机", 975);
  10100. // dic_psg.Add("导游", 976);
  10101. // dic_psg.Add("公司内部人员", 977);
  10102. // dic_psg.Add("司机/导游/公司内部人员", 978);
  10103. // foreach (var item in list_visa)
  10104. // {
  10105. // Grp_VisaInfo temp = new Grp_VisaInfo();
  10106. // temp.Id = item.Id;
  10107. // temp.DIId = item.DIId;
  10108. // temp.VisaClient = item.VisaClient;
  10109. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  10110. // temp.VisaCurrency = item.VisaCurrency;
  10111. // temp.IsThird = item.IsThird;
  10112. // if (dic_psg.ContainsKey(item.PassengerType))
  10113. // {
  10114. // temp.PassengerType = dic_psg[item.PassengerType];
  10115. // }
  10116. // else {
  10117. // temp.PassengerType = -1;
  10118. // }
  10119. // temp.VisaNumber = item.VisaNumber;
  10120. // temp.VisaFreeNumber = item.VisaFreeNumber;
  10121. // temp.CreateUserId = item.Operators;
  10122. // DateTime dt_ct;
  10123. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  10124. // if (b_ct)
  10125. // {
  10126. // temp.CreateTime = dt_ct;
  10127. // }
  10128. // else
  10129. // {
  10130. // temp.CreateTime = DateTime.Now;
  10131. // }
  10132. // temp.DeleteTime = "";
  10133. // temp.DeleteUserId = 0;
  10134. // temp.Remark = item.Remark;
  10135. // if (string.IsNullOrEmpty(temp.Remark)) {
  10136. // temp.Remark = "";
  10137. // }
  10138. // temp.IsDel = item.IsDel;
  10139. // temp.VisaDescription = item.VisaAttachment;
  10140. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  10141. //([Id]
  10142. // ,[DIId]
  10143. // ,[VisaClient]
  10144. // ,[VisaPrice]
  10145. // ,[VisaCurrency]
  10146. // ,[IsThird]
  10147. // ,[PassengerType]
  10148. // ,[VisaNumber]
  10149. // ,[VisaFreeNumber]
  10150. // ,[CreateUserId]
  10151. // ,[CreateTime]
  10152. // ,[DeleteTime]
  10153. // ,[DeleteUserId]
  10154. // ,[Remark]
  10155. // ,[IsDel]
  10156. // ,[visaDescription])
  10157. // VALUES
  10158. // ({0},{1},'{2}',{3},{4}
  10159. //,{5},{6},{7},{8},{9}
  10160. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  10161. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  10162. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  10163. //);
  10164. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  10165. // }
  10166. // return Ok(JsonView(true, "操作成功!"));
  10167. // }
  10168. /// <summary>
  10169. /// 123132123
  10170. /// </summary>
  10171. /// <param name="_dto"></param>
  10172. /// <returns></returns>
  10173. [HttpPost]
  10174. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10175. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  10176. {
  10177. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  10178. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  10179. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  10180. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  10181. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  10182. dicDetail.Add(789, 1034);
  10183. dicDetail.Add(790, 1035);
  10184. dicDetail.Add(791, 1036);
  10185. dicDetail.Add(792, 1037);
  10186. dicDetail.Add(793, 1038);
  10187. dicDetail.Add(794, 1039);
  10188. dicDetail.Add(795, 1040);
  10189. dicDetail.Add(796, 1041);
  10190. dicDetail.Add(797, 1042);
  10191. dicDetail.Add(798, 1043);
  10192. dicDetail.Add(801, 1044);
  10193. dicDetail.Add(802, 1045);
  10194. dicDetail.Add(803, 1046);
  10195. Dictionary<int, int> dic = new Dictionary<int, int>();
  10196. dic.Add(806, 1027);
  10197. dic.Add(807, 1028);
  10198. dic.Add(808, 1029);
  10199. dic.Add(809, 1030);
  10200. dic.Add(810, 1031);
  10201. dic.Add(811, 1032);
  10202. dic.Add(812, 1033);
  10203. foreach (var item in list_visa)
  10204. {
  10205. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  10206. temp.Coefficient = item.coefficient;
  10207. DateTime dtCrt;
  10208. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  10209. if (b1)
  10210. {
  10211. temp.CreateTime = dtCrt;
  10212. }
  10213. else
  10214. {
  10215. temp.CreateTime = DateTime.Now;
  10216. }
  10217. temp.CreateUserId = item.Operators;
  10218. temp.DeleteTime = "";
  10219. temp.DeleteUserId = 0;
  10220. temp.DiId = int.Parse(item.DIID);
  10221. temp.FilePath = item.FilePath;
  10222. temp.IsDel = item.IsDel;
  10223. temp.Price = item.Price;
  10224. temp.PriceCount = 1;
  10225. temp.PriceCurrency = item.Currency;
  10226. int detailId = 0;
  10227. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  10228. {
  10229. detailId = dicDetail[item.PriceTypeDetail];
  10230. }
  10231. temp.PriceDetailType = detailId;
  10232. temp.PriceDt = DateTime.Now;
  10233. temp.PriceName = item.PriceName;
  10234. temp.PriceSum = item.Price;
  10235. int tid = 0;
  10236. if (dic.ContainsKey(item.PriceType))
  10237. {
  10238. tid = dic[item.PriceType];
  10239. }
  10240. temp.PriceType = tid;
  10241. temp.Remark = item.Remark;
  10242. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  10243. }
  10244. return Ok(JsonView(true, "操作成功!"));
  10245. }
  10246. }
  10247. }