GroupsController.cs 627 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. using NPOI.HSSF.Util;
  78. using NPOI.HSSF.UserModel;
  79. using NPOI.SS.UserModel;
  80. using NPOI.XSSF.UserModel;
  81. using MySqlX.XDevAPI.Relational;
  82. using SqlSugar.Extensions;
  83. using Table = Aspose.Words.Tables.Table;
  84. using Aspose.Cells.Tables;
  85. using NPOI.SS.Util;
  86. using RestSharp.Extensions;
  87. using Microsoft.AspNetCore.WebUtilities;
  88. using K4os.Compression.LZ4.Internal;
  89. using static Pipelines.Sockets.Unofficial.SocketConnection;
  90. using System.Diagnostics.PerformanceData;
  91. using System.Drawing.Printing;
  92. using OASystem.Domain.Dtos.FileDto;
  93. using Microsoft.VisualBasic;
  94. using Microsoft.EntityFrameworkCore.Query.Internal;
  95. namespace OASystem.API.Controllers
  96. {
  97. /// <summary>
  98. /// 团组相关
  99. /// </summary>
  100. //[Authorize]
  101. [Route("api/[controller]/[action]")]
  102. public class GroupsController : ControllerBase
  103. {
  104. private readonly GrpScheduleRepository _grpScheduleRep;
  105. private readonly IMapper _mapper;
  106. private readonly DelegationInfoRepository _groupRepository;
  107. private readonly TaskAssignmentRepository _taskAssignmentRep;
  108. private readonly AirTicketResRepository _airTicketResRep;
  109. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  110. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  111. private readonly DelegationEnDataRepository _delegationEnDataRep;
  112. private readonly DelegationVisaRepository _delegationVisaRep;
  113. private readonly VisaPriceRepository _visaPriceRep;
  114. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  115. private readonly HotelPriceRepository _hotelPriceRep;
  116. private readonly CustomersRepository _customersRep;
  117. private readonly MessageRepository _message;
  118. private readonly SqlSugarClient _sqlSugar;
  119. private readonly TourClientListRepository _tourClientListRep;
  120. private readonly TeamRateRepository _teamRateRep;
  121. #region 成本相关
  122. private readonly CheckBoxsRepository _checkBoxs;
  123. private readonly GroupCostRepository _GroupCostRepository;
  124. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  125. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  126. #endregion
  127. private readonly SetDataRepository _setDataRep;
  128. private string url;
  129. private string path;
  130. private readonly EnterExitCostRepository _enterExitCostRep;
  131. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  132. private readonly UsersRepository _usersRep;
  133. private readonly IJuHeApiService _juHeApi;
  134. private readonly InvertedListRepository _invertedListRep;
  135. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  136. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  137. private readonly ThreeCodeRepository _threeCodeRepository;
  138. private readonly HotelInquiryRepository _hotelInquiryRep;
  139. private readonly FeeAuditRepository _feeAuditRep;
  140. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  141. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  142. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  143. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  144. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  145. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  146. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  147. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  148. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  149. {
  150. _mapper = mapper;
  151. _grpScheduleRep = grpScheduleRep;
  152. _groupRepository = groupRepository;
  153. _taskAssignmentRep = taskAssignmentRep;
  154. _airTicketResRep = airTicketResRep;
  155. _sqlSugar = sqlSugar;
  156. url = AppSettingsHelper.Get("ExcelBaseUrl");
  157. path = AppSettingsHelper.Get("ExcelBasePath");
  158. if (!System.IO.Directory.Exists(path))
  159. {
  160. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  161. }
  162. _decreasePaymentsRep = decreasePaymentsRep;
  163. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  164. _delegationEnDataRep = delegationEnDataRep;
  165. _enterExitCostRep = enterExitCostRep;
  166. _delegationVisaRep = delegationVisaRep;
  167. _message = message;
  168. _visaPriceRep = visaPriceRep;
  169. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  170. _checkBoxs = checkBoxs;
  171. _GroupCostRepository = GroupCostRepository;
  172. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  173. _GroupCostParameterRepository = GroupCostParameterRepository;
  174. _hotelPriceRep = hotelPriceRep;
  175. _customersRep = customersRep;
  176. _setDataRep = setDataRep;
  177. _tourClientListRep = tourClientListRep;
  178. _teamRateRep = teamRateRep;
  179. _hubContext = hubContext;
  180. _usersRep = usersRep;
  181. _juHeApi = juHeApi;
  182. _invertedListRep = invertedListRep;
  183. _visaFeeInfoRep = visaFeeInfoRep;
  184. _ticketBlackCodeRep = ticketBlackCodeRep;
  185. _hotelInquiryRep = hotelInquiryRep;
  186. _threeCodeRepository = threeCodeRepository;
  187. _feeAuditRep = feeAuditRep;
  188. }
  189. #region 流程管控
  190. /// <summary>
  191. /// 获取团组流程管控信息
  192. /// </summary>
  193. /// <param name="paras">参数Json字符串</param>
  194. /// <returns></returns>
  195. [HttpPost]
  196. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  197. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  198. {
  199. if (string.IsNullOrEmpty(_jsonDto.Paras))
  200. {
  201. return Ok(JsonView(false, "参数为空"));
  202. }
  203. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  204. if (_ScheduleDto != null)
  205. {
  206. if (_ScheduleDto.SearchType == 2)//获取列表
  207. {
  208. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  209. return Ok(JsonView(_grpScheduleViewList));
  210. }
  211. else//获取对象
  212. {
  213. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  214. if (_grpScheduleView != null)
  215. {
  216. return Ok(JsonView(_grpScheduleView));
  217. }
  218. }
  219. }
  220. else
  221. {
  222. return Ok(JsonView(false, "参数反序列化失败"));
  223. }
  224. return Ok(JsonView(false, "暂无数据!"));
  225. }
  226. /// <summary>
  227. /// 修改团组流程管控详细表数据
  228. /// </summary>
  229. /// <param name="paras"></param>
  230. /// <returns></returns>
  231. [HttpPost]
  232. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  233. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  234. {
  235. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  236. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  237. .SetColumns(it => it.Duty == _detail.Duty)
  238. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  239. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  240. .SetColumns(it => it.JobContent == _detail.JobContent)
  241. .SetColumns(it => it.Remark == _detail.Remark)
  242. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  243. .Where(s => s.Id == dto.Id)
  244. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  245. .ExecuteCommandAsync();
  246. if (result > 0)
  247. {
  248. return Ok(JsonView(true, "保存成功!"));
  249. }
  250. return Ok(JsonView(false, "保存失败!"));
  251. }
  252. /// <summary>
  253. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  254. /// </summary>
  255. /// <param name="dto"></param>
  256. /// <returns></returns>
  257. [HttpPost]
  258. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  259. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  260. {
  261. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  262. _detail.IsDel = 1;
  263. _detail.DeleteUserId = dto.Duty;
  264. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  265. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  266. .SetColumns(it => it.IsDel == _detail.IsDel)
  267. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  268. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  269. .Where(it => it.Id == dto.Id)
  270. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  271. //.WhereColumns(s => s.Id == dto.Id)
  272. .ExecuteCommandAsync();
  273. if (result > 0)
  274. {
  275. return Ok(JsonView(true, "删除成功!"));
  276. }
  277. return Ok(JsonView(false, "删除失败!"));
  278. }
  279. /// <summary>
  280. /// 增加团组流程管控详细表数据
  281. /// </summary>
  282. /// <param name="dto"></param>
  283. /// <returns></returns>
  284. [HttpPost]
  285. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  286. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  287. {
  288. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  289. if (DateTime.Now < _detail.ExpectBeginDt)
  290. {
  291. _detail.StepStatus = 0;
  292. }
  293. else
  294. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  295. _detail.StepStatus = 1;
  296. }
  297. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  298. if (result > 0)
  299. {
  300. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  301. return Ok(JsonView(true, "添加成功!", _result));
  302. }
  303. return Ok(JsonView(false, "添加失败!"));
  304. }
  305. #endregion
  306. #region 团组基本信息
  307. /// <summary>
  308. /// 接团信息列表
  309. /// </summary>
  310. /// <param name="dto">团组列表请求dto</param>
  311. /// <returns></returns>
  312. [HttpPost]
  313. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  314. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  315. {
  316. var groupData = await _groupRepository.GetGroupList(dto);
  317. if (groupData.Code != 0)
  318. {
  319. return Ok(JsonView(false, groupData.Msg));
  320. }
  321. return Ok(JsonView(groupData.Data));
  322. }
  323. /// <summary>
  324. /// 接团信息列表 Page
  325. /// </summary>
  326. /// <param name="dto">团组列表请求dto</param>
  327. /// <returns></returns>
  328. [HttpPost]
  329. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  330. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  331. {
  332. #region 参数验证
  333. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  334. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  335. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  336. #region 页面操作权限验证
  337. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  338. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  339. #endregion
  340. #endregion
  341. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  342. {
  343. string sqlWhere = string.Empty;
  344. if (dto.IsSure == 0) //未完成
  345. {
  346. sqlWhere += string.Format(@" And IsSure = 0");
  347. }
  348. else if (dto.IsSure == 1) //已完成
  349. {
  350. sqlWhere += string.Format(@" And IsSure = 1");
  351. }
  352. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  353. {
  354. string tj = dto.SearchCriteria;
  355. 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}%')",
  356. tj, tj, tj, tj, tj);
  357. }
  358. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  359. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  360. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  361. JietuanOperator,IsSure,CreateTime
  362. From (
  363. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  364. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  365. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  366. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  367. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  368. From Grp_DelegationInfo gdi
  369. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  370. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  371. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  372. Where gdi.IsDel = 0 {0}
  373. ) temp", sqlWhere);
  374. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  375. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  376. #region 处理所属部门
  377. /*
  378. * 1.sq 和 gyy 等显示 市场部
  379. * 2.王鸽和主管及张总还有管理员号统一国交部
  380. * 2-1. 4 管理员 ,21 张海麟
  381. */
  382. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  383. List<int> userIds1 = new List<int>() { 4, 21 };
  384. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  385. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  386. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  387. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  388. .ToList();
  389. foreach (var item in _DelegationList)
  390. {
  391. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  392. }
  393. #endregion
  394. var _view = new
  395. {
  396. PageFuncAuth = pageFunAuthView,
  397. Data = _DelegationList
  398. };
  399. return Ok(JsonView(true, "查询成功!", _view, total));
  400. }
  401. else
  402. {
  403. return Ok(JsonView(false, "查询失败"));
  404. }
  405. }
  406. /// <summary>
  407. /// 团组列表
  408. /// </summary>
  409. /// <returns></returns>
  410. [HttpPost]
  411. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  412. {
  413. #region 参数验证
  414. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  415. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  416. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  417. #region 页面操作权限验证
  418. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  419. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  420. #endregion
  421. #endregion
  422. if (dto.PortType != 1 && dto.PortType != 2)
  423. {
  424. return Ok(JsonView(false, "查询失败!"));
  425. }
  426. string orderbyStr = "order by gdi.CreateTime Desc";
  427. string sqlWhere = string.Empty;
  428. if (dto.IsSure == 0) //未完成
  429. {
  430. sqlWhere += string.Format(@" And IsSure = 0");
  431. }
  432. else if (dto.IsSure == 1) //已完成
  433. {
  434. sqlWhere += string.Format(@" And IsSure = 1");
  435. }
  436. //团组类型
  437. if (dto.TeamDid > 0)
  438. {
  439. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  440. }
  441. //团组名称
  442. if (!string.IsNullOrEmpty(dto.TeamName))
  443. {
  444. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  445. }
  446. //客户名称
  447. if (!string.IsNullOrEmpty(dto.ClientName))
  448. {
  449. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  450. }
  451. //客户单位
  452. if (!string.IsNullOrEmpty(dto.ClientUnit))
  453. {
  454. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  455. }
  456. //出访时间
  457. if (!string.IsNullOrEmpty(dto.visitDataTime))
  458. {
  459. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  460. orderbyStr = "order by gdi.VisitDate";
  461. }
  462. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  463. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  464. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  465. JietuanOperator,IsSure,CreateTime
  466. From (
  467. Select row_number() over({0}) as Row_Number,
  468. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  469. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  470. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  471. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  472. From Grp_DelegationInfo gdi
  473. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  474. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  475. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  476. Where gdi.IsDel = 0 {1}
  477. ) temp ", orderbyStr, sqlWhere);
  478. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  479. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  480. #region 处理所属部门
  481. /*
  482. * 1.sq 和 gyy 等显示 市场部
  483. * 2.王鸽和主管及张总还有管理员号统一国交部
  484. * 2-1. 4 管理员 ,21 张海麟
  485. */
  486. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  487. List<int> userIds1 = new List<int>() { 4, 21 };
  488. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  489. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  490. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  491. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  492. .ToList();
  493. foreach (var item in _DelegationList)
  494. {
  495. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  496. }
  497. #endregion
  498. var _view = new
  499. {
  500. PageFuncAuth = pageFunAuthView,
  501. Data = _DelegationList
  502. };
  503. return Ok(JsonView(true, "查询成功!", _view, total));
  504. }
  505. /// <summary>
  506. /// 接团信息详情
  507. /// </summary>
  508. /// <param name="dto">团组info请求dto</param>
  509. /// <returns></returns>
  510. [HttpPost]
  511. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  512. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  513. {
  514. var groupData = await _groupRepository.GetGroupInfo(dto);
  515. if (groupData.Code != 0)
  516. {
  517. return Ok(JsonView(false, groupData.Msg));
  518. }
  519. return Ok(JsonView(groupData.Data));
  520. }
  521. /// <summary>
  522. /// 接团信息 编辑添加
  523. /// 基础信息数据源
  524. /// </summary>
  525. /// <param name="dto"></param>
  526. /// <returns></returns>
  527. [HttpPost]
  528. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  529. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  530. {
  531. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  532. if (groupData.Code != 0)
  533. {
  534. return Ok(JsonView(false, groupData.Msg));
  535. }
  536. return Ok(JsonView(groupData.Data));
  537. }
  538. /// <summary>
  539. /// 接团信息 操作(增改)
  540. /// </summary>
  541. /// <param name="dto"></param>
  542. /// <returns></returns>
  543. [HttpPost]
  544. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  545. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  546. {
  547. try
  548. {
  549. var groupData = await _groupRepository.GroupOperation(dto);
  550. if (groupData.Code != 0)
  551. {
  552. return Ok(JsonView(false, groupData.Msg));
  553. }
  554. int diId = 0;
  555. //添加时 默认加入团组汇率
  556. if (dto.Status == 1) //添加
  557. {
  558. diId = groupData.Data;
  559. //添加默认币种
  560. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  561. //默认分配权限
  562. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  563. //消息提示 王鸽 主管号
  564. List<int> _managerIds = new List<int>() { 22, 32 };
  565. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  566. if (userIds.Count > 0)
  567. {
  568. userIds.Add(208);
  569. //创建团组管控
  570. GroupStepForDelegation.CreateWorkStep(diId);
  571. //发送消息
  572. string groupName = dto.TeamName;
  573. string createGroupUser = string.Empty;
  574. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  575. if (userInfo != null) createGroupUser = userInfo.CnName;
  576. string title = $"系统通知";
  577. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  578. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  579. }
  580. //默认创建倒推表
  581. await _invertedListRep._Create(dto.UserId, diId);
  582. }
  583. else if (dto.Status == 2)
  584. {
  585. diId = dto.Id;
  586. }
  587. return Ok(JsonView(true, "操作成功!", diId));
  588. }
  589. catch (Exception ex)
  590. {
  591. Logs("[response]" + JsonConvert.SerializeObject(dto));
  592. Logs(ex.Message);
  593. return Ok(JsonView(false, ex.Message));
  594. }
  595. }
  596. /// <summary>
  597. /// 接团流程操作(增改)
  598. /// 安卓端使用 建团时添加客户名单
  599. /// </summary>
  600. /// <param name="dto"></param>
  601. /// <returns></returns>
  602. [HttpPost]
  603. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  604. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  605. {
  606. try
  607. {
  608. #region 参数验证
  609. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  610. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  611. #region 页面操作权限验证
  612. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  613. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  614. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  615. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  616. #endregion
  617. #endregion
  618. _sqlSugar.BeginTran();
  619. var _dto = new GroupOperationDto();
  620. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  621. var groupData = await _groupRepository.GroupOperation(_dto);
  622. if (groupData.Code != 0)
  623. {
  624. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  625. }
  626. int diId = 0;
  627. //添加时 默认加入团组汇率
  628. if (dto.Status == 1) //添加
  629. {
  630. diId = groupData.Data;
  631. //添加默认币种
  632. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  633. //默认分配权限
  634. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  635. //消息提示 王鸽 主管号
  636. List<int> _managerIds = new List<int>() { 22, 32 };
  637. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  638. if (userIds.Count > 0)
  639. {
  640. userIds.Add(208);
  641. //创建团组管控
  642. GroupStepForDelegation.CreateWorkStep(diId);
  643. //发送消息
  644. string groupName = dto.TeamName;
  645. string createGroupUser = string.Empty;
  646. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  647. if (userInfo != null) createGroupUser = userInfo.CnName;
  648. string title = $"系统通知";
  649. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  650. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  651. }
  652. }
  653. if (dto.Status == 2)
  654. {
  655. diId = dto.Id;
  656. if (diId == 0)
  657. {
  658. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  659. }
  660. }
  661. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  662. if (viewData.Code != 0)
  663. {
  664. _sqlSugar.RollbackTran();
  665. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  666. }
  667. _sqlSugar.CommitTran();
  668. return Ok(JsonView(true, "添加成功"));
  669. }
  670. catch (Exception ex)
  671. {
  672. _sqlSugar.RollbackTran();
  673. return Ok(JsonView(false, ex.Message));
  674. }
  675. }
  676. /// <summary>
  677. /// 接团信息 操作(删除)
  678. /// </summary>
  679. /// <param name="dto"></param>
  680. /// <returns></returns>
  681. [HttpPost]
  682. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  683. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  684. {
  685. try
  686. {
  687. var groupData = await _groupRepository.GroupDel(dto);
  688. if (groupData.Code != 0)
  689. {
  690. return Ok(JsonView(false, groupData.Msg));
  691. }
  692. return Ok(JsonView(true));
  693. }
  694. catch (Exception ex)
  695. {
  696. Logs("[response]" + JsonConvert.SerializeObject(dto));
  697. Logs(ex.Message);
  698. return Ok(JsonView(false, ex.Message));
  699. }
  700. }
  701. /// <summary>
  702. /// 获取团组销售报价号
  703. /// 团组添加时 使用
  704. /// </summary>
  705. /// <returns></returns>
  706. [HttpPost]
  707. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  708. public async Task<IActionResult> GetGroupSalesQuoteNo()
  709. {
  710. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  711. if (groupData.Code != 0)
  712. {
  713. return Ok(JsonView(false, groupData.Msg));
  714. }
  715. object salesQuoteNo = new
  716. {
  717. SalesQuoteNo = groupData.Data
  718. };
  719. return Ok(JsonView(salesQuoteNo));
  720. }
  721. /// <summary>
  722. /// 设置确认出团
  723. /// </summary>
  724. /// <param name="dto"></param>
  725. /// <returns></returns>
  726. [HttpPost]
  727. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  728. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  729. {
  730. var groupData = await _groupRepository.ConfirmationGroup(dto);
  731. if (groupData.Code != 0)
  732. {
  733. return Ok(JsonView(false, groupData.Msg));
  734. }
  735. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  736. #region OA消息推送
  737. try
  738. {
  739. string groupName = groupInfo.TeamName;
  740. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  741. List<int> userIds = new List<int>();
  742. listUser.ForEach(s => userIds.Add(s.Id));
  743. string title = $"系统通知";
  744. string content = $"团组[{groupName}]已确认出团!";
  745. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  746. }
  747. catch (Exception ex)
  748. {
  749. }
  750. #endregion
  751. #region 应用推送
  752. try
  753. {
  754. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  755. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  756. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  757. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  758. {
  759. List<string> userList = new List<string>() { users.QiyeChatUserId };
  760. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  761. }
  762. }
  763. catch (Exception ex)
  764. {
  765. }
  766. #endregion
  767. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  768. return Ok(JsonView(true, "操作成功!", groupData.Data));
  769. }
  770. /// <summary>
  771. /// 获取团组名称data And 签证国别Data
  772. /// </summary>
  773. /// <param name="dto"></param>
  774. /// <returns></returns>
  775. [HttpPost]
  776. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  777. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  778. {
  779. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  780. if (groupData.Code != 0)
  781. {
  782. return Ok(JsonView(false, groupData.Msg));
  783. }
  784. return Ok(JsonView(groupData.Data));
  785. }
  786. /// <summary>
  787. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  788. /// </summary>
  789. /// <returns></returns>
  790. [HttpPost]
  791. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  792. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  793. {
  794. try
  795. {
  796. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  797. if (groupData.Code != 0)
  798. {
  799. return Ok(JsonView(false, groupData.Msg));
  800. }
  801. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  802. }
  803. catch (Exception ex)
  804. {
  805. return Ok(JsonView(false, "程序错误!"));
  806. throw;
  807. }
  808. }
  809. #endregion
  810. #region 团组&签证
  811. /// <summary>
  812. /// 根据团组Id获取签证客户信息List
  813. /// </summary>
  814. /// <param name="dto">请求dto</param>
  815. /// <returns></returns>
  816. [HttpPost]
  817. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  818. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  819. {
  820. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  821. if (groupData.Code != 0)
  822. {
  823. return Ok(JsonView(false, groupData.Msg));
  824. }
  825. return Ok(JsonView(groupData.Data));
  826. }
  827. /// <summary>
  828. /// IOS获取团组签证拍照上传进度01(团组列表)
  829. /// </summary>
  830. /// <param name="dto">请求dto</param>
  831. /// <returns></returns>
  832. [HttpPost]
  833. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  834. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  835. {
  836. if (dto == null)
  837. {
  838. return Ok(JsonView(false, "参数为空"));
  839. }
  840. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  841. return Ok(JsonView(visaList));
  842. }
  843. /// <summary>
  844. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  845. /// </summary>
  846. /// <returns></returns>
  847. [HttpPost]
  848. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  849. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  850. {
  851. if (dto == null)
  852. {
  853. return Ok(JsonView(false, "请求错误:"));
  854. }
  855. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  856. return Ok(JsonView(list));
  857. }
  858. /// <summary>
  859. /// IOS获取团组签证拍照上传进度03(相册)
  860. /// </summary>
  861. /// <returns></returns>
  862. [HttpPost]
  863. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  864. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  865. {
  866. if (dto == null)
  867. {
  868. return Ok(JsonView(false, "请求错误:"));
  869. }
  870. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  871. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  872. list.ForEach(s => s.url = url);
  873. return Ok(JsonView(list));
  874. }
  875. /// <summary>
  876. /// IOS获取团组签证拍照上传进度04(图片上传)
  877. /// </summary>
  878. /// <param name="dto"></param>
  879. /// <returns></returns>
  880. [HttpPost]
  881. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  882. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  883. {
  884. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  885. //if (!string.IsNullOrEmpty(result))
  886. //{
  887. //}
  888. //else {
  889. // return Ok(JsonView(false, "上传失败"));
  890. //}
  891. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  892. int sucNum = 0;
  893. try
  894. {
  895. foreach (var item in dto.base64DataList)
  896. {
  897. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  898. string result = decodeBase64ToImage(item, imageName);
  899. if (!string.IsNullOrEmpty(result))
  900. {
  901. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  902. pic.CreateUserId = dto.CreateUserId;
  903. pic.PicName = imageName;
  904. pic.PicPath = result;
  905. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  906. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  907. if (insertResult > 0)
  908. {
  909. sucNum++;
  910. }
  911. }
  912. }
  913. }
  914. catch (Exception ex)
  915. {
  916. return Ok(JsonView(false, ex.Message));
  917. }
  918. string msg = string.Format(@"成功上传{0}张", sucNum);
  919. return Ok(JsonView(true, msg));
  920. }
  921. private string decodeBase64ToImage(string base64DataURL, string imgName)
  922. {
  923. string filename = "";//声明一个string类型的相对路径
  924. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  925. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  926. try//会有异常抛出,try,catch一下
  927. {
  928. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  929. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  930. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  931. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  932. //文件名称
  933. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  934. //上传的文件的路径
  935. string filePath = "";
  936. if (!Directory.Exists(fileDir))
  937. {
  938. Directory.CreateDirectory(fileDir);
  939. }
  940. //上传的文件的路径
  941. filePath = fileDir + filename;
  942. //string url = HttpRuntime.AppDomainAppPath.ToString();
  943. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  944. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  945. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  946. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  947. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  948. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  949. ms.Close();//关闭当前流,并释放所有与之关联的资源
  950. bitmap.Dispose();
  951. }
  952. catch (Exception e)
  953. {
  954. string massage = e.Message;
  955. Logs("IOS图片上传Error:" + massage);
  956. //filename = e.Message;
  957. }
  958. return filename;//返回相对路径
  959. }
  960. /// <summary>
  961. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  962. /// </summary>
  963. /// <param name="dto"></param>
  964. /// <returns></returns>
  965. [HttpPost]
  966. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  967. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  968. {
  969. if (dto == null)
  970. {
  971. return Ok(JsonView(false, "请求错误:"));
  972. }
  973. string msg = "参数错误";
  974. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  975. {
  976. try
  977. {
  978. //_delegationVisaRep.BeginTran();
  979. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  980. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  981. .Where(s => s.Id == dto.visaProgressCustomerId)
  982. .ExecuteCommandAsync();
  983. if (updCount > 0 && dto.publishCode == 1)
  984. {
  985. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  986. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  987. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  988. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  989. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  990. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  991. if (groupData == null)
  992. {
  993. _delegationVisaRep.RollbackTran();
  994. }
  995. string title = string.Format(@"[签证进度更新]");
  996. string content = string.Format(@"测试文本");
  997. bool rst = await _message.AddMsg(new MessageDto()
  998. {
  999. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  1000. IssuerId = dto.publisher,
  1001. Title = title,
  1002. Content = content,
  1003. ReleaseTime = DateTime.Now,
  1004. UIdList = new List<int> {
  1005. 234
  1006. }
  1007. });
  1008. if (rst)
  1009. {
  1010. return Ok(JsonView(true, "发送通知成功"));
  1011. }
  1012. }
  1013. //_delegationVisaRep.CommitTran();
  1014. }
  1015. catch (Exception)
  1016. {
  1017. //_delegationVisaRep.RollbackTran();
  1018. }
  1019. }
  1020. return Ok(JsonView(true, msg));
  1021. }
  1022. #endregion
  1023. #region 团组任务分配
  1024. /// <summary>
  1025. /// 团组任务分配初始化
  1026. /// </summary>
  1027. /// <param name="dto"></param>
  1028. /// <returns></returns>
  1029. [HttpPost]
  1030. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1031. public async Task<IActionResult> GetTaskAssignmen()
  1032. {
  1033. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1034. if (groupData.Code != 0)
  1035. {
  1036. return Ok(JsonView(false, groupData.Msg));
  1037. }
  1038. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1039. }
  1040. /// <summary>
  1041. /// 团组任务分配查询
  1042. /// </summary>
  1043. /// <param name="dto"></param>
  1044. /// <returns></returns>
  1045. [HttpPost]
  1046. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1047. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1048. {
  1049. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1050. if (groupData.Code != 0)
  1051. {
  1052. return Ok(JsonView(false, groupData.Msg));
  1053. }
  1054. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1055. }
  1056. /// <summary>
  1057. /// 团组任务分配操作
  1058. /// </summary>
  1059. /// <param name="dto"></param>
  1060. /// <returns></returns>
  1061. [HttpPost]
  1062. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1063. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1064. {
  1065. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1066. if (groupData.Code != 0)
  1067. {
  1068. return Ok(JsonView(false, groupData.Msg));
  1069. }
  1070. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1071. }
  1072. #endregion
  1073. #region 团组费用审核
  1074. /// <summary>
  1075. /// 费用审核
  1076. /// 团组列表 Page
  1077. /// </summary>
  1078. /// <param name="_dto">团组列表请求dto</param>
  1079. /// <returns></returns>
  1080. [HttpPost]
  1081. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1082. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1083. {
  1084. #region 参数验证
  1085. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1086. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1087. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1088. #region 页面操作权限验证
  1089. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1090. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1091. #endregion
  1092. #endregion
  1093. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1094. {
  1095. string sqlWhere = string.Empty;
  1096. if (_dto.IsSure == 0) //未完成
  1097. {
  1098. sqlWhere += string.Format(@" And IsSure = 0");
  1099. }
  1100. else if (_dto.IsSure == 1) //已完成
  1101. {
  1102. sqlWhere += string.Format(@" And IsSure = 1");
  1103. }
  1104. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1105. {
  1106. string tj = _dto.SearchCriteria;
  1107. 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}%')",
  1108. tj, tj, tj, tj, tj);
  1109. }
  1110. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1111. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1112. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1113. From (
  1114. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1115. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1116. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1117. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1118. From Grp_DelegationInfo gdi
  1119. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1120. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1121. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1122. Where gdi.IsDel = 0 {0}
  1123. ) temp ", sqlWhere);
  1124. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1125. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1126. var _view = new
  1127. {
  1128. PageFuncAuth = pageFunAuthView,
  1129. Data = _DelegationList
  1130. };
  1131. return Ok(JsonView(true, "查询成功!", _view, total));
  1132. }
  1133. else
  1134. {
  1135. return Ok(JsonView(false, "查询失败"));
  1136. }
  1137. }
  1138. /// <summary>
  1139. /// 获取团组费用审核
  1140. /// </summary>
  1141. /// <param name="paras">参数Json字符串</param>
  1142. /// <returns></returns>
  1143. [HttpPost]
  1144. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1145. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1146. {
  1147. try
  1148. {
  1149. #region 参数验证
  1150. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1151. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1152. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1153. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1154. #region 页面操作权限验证
  1155. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1156. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1157. #endregion
  1158. #endregion
  1159. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1160. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1161. #region 费用清单
  1162. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1163. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1164. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1165. List<Grp_CreditCardPayment> entityList = _groupRepository
  1166. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1167. .Where(exp.ToExpression())
  1168. .ToList();
  1169. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1170. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1171. /*
  1172. * 76://酒店预订
  1173. */
  1174. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1175. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1176. .ToListAsync();
  1177. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1178. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1179. .ToListAsync();
  1180. /*
  1181. * 79://车/导游地接
  1182. */
  1183. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1184. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1185. .ToListAsync();
  1186. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1187. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1188. .ToListAsync();
  1189. /*
  1190. * 80: //签证
  1191. */
  1192. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1193. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1194. .ToListAsync();
  1195. /*
  1196. *81: //邀请/公务活动
  1197. */
  1198. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1199. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1200. .ToListAsync();
  1201. /*
  1202. * 82: //团组客户保险
  1203. */
  1204. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1205. /*
  1206. * Lable = 85 机票预订
  1207. */
  1208. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1209. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1210. .ToListAsync();
  1211. /*
  1212. * 85 机票预定
  1213. */
  1214. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1215. /*
  1216. * 98 其他款项
  1217. */
  1218. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1219. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1220. .ToListAsync();
  1221. /*
  1222. * 285:收款退还
  1223. */
  1224. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1225. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1226. .ToListAsync();
  1227. /*
  1228. * 1015: //超支费用
  1229. */
  1230. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1231. /*
  1232. * 币种信息
  1233. */
  1234. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1235. /*
  1236. * 车/导游地接 费用类型
  1237. */
  1238. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1239. /*
  1240. * 车/导游地接 费用类型
  1241. */
  1242. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1243. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1244. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1245. /*
  1246. * 用户信息
  1247. */
  1248. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1249. /*
  1250. * 费用模块
  1251. */
  1252. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1253. string priceModule = string.Empty;
  1254. if (sdPriceName != null)
  1255. {
  1256. priceModule = sdPriceName.Name;
  1257. }
  1258. /*
  1259. * 成本信息
  1260. */
  1261. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1262. decimal _groupRate = 0.0000M;
  1263. string _groupCurrencyCode = "-";
  1264. if (groupCost != null)
  1265. {
  1266. _groupRate = groupCost.Rate;
  1267. if (int.TryParse(groupCost.Currency, out int _currency))
  1268. {
  1269. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1270. }
  1271. else _groupCurrencyCode = groupCost.Currency;
  1272. }
  1273. string costContentSql = $"Select * From Grp_GroupCost";
  1274. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1275. //处理日期为空的天数
  1276. for (int i = 0; i < groupCostDetails.Count; i++)
  1277. if (i != 0)
  1278. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1279. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1280. /*
  1281. * 处理详情数据
  1282. */
  1283. foreach (var entity in entityList)
  1284. {
  1285. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1286. _detail.Id = entity.Id;
  1287. _detail.PriceName = priceModule;
  1288. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1289. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1290. /*
  1291. * 应付款金额
  1292. */
  1293. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1294. string PaymentCurrency_WaitPay = "Unknown";
  1295. string hotelCurrncyCode = "Unknown";
  1296. string hotelCurrncyName = "Unknown";
  1297. if (sdPaymentCurrency_WaitPay != null)
  1298. {
  1299. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1300. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1301. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1302. if (hotelCurrncyCode.Equals("CNY"))
  1303. {
  1304. entity.DayRate = 1.0000M;
  1305. }
  1306. }
  1307. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1308. /*
  1309. * 此次付款金额
  1310. */
  1311. decimal CurrPayStr = 0;
  1312. if (entity.PayPercentage == 0)
  1313. {
  1314. if (entity.PayThenMoney != 0)
  1315. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1316. }
  1317. else
  1318. {
  1319. if (entity.PayMoney != 0)
  1320. {
  1321. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1322. }
  1323. }
  1324. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1325. /*
  1326. * 剩余尾款
  1327. */
  1328. decimal BalanceStr = 0;
  1329. if (CurrPayStr != 0)
  1330. {
  1331. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1332. BalanceStr = 0;
  1333. else
  1334. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1335. }
  1336. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1337. /*
  1338. * Bus名称
  1339. */
  1340. _detail.BusName = "待增加";
  1341. /*
  1342. *费用所属
  1343. */
  1344. switch (entity.CTable)
  1345. {
  1346. case 76://酒店预订
  1347. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1348. if (hotelReservations != null)
  1349. {
  1350. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1351. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1352. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1353. string roomFeeStr = "", roomFeestr1 = "";
  1354. //是否比较房型价格
  1355. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1356. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1357. if (hotelReservations.SingleRoomPrice > 0)
  1358. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1359. if (hotelReservations.DoubleRoomPrice > 0)
  1360. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1361. if (hotelReservations.SuiteRoomPrice > 0)
  1362. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1363. if (hotelReservations.OtherRoomPrice > 0)
  1364. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1365. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1366. else roomFeeStr += " 0.00 * 0";
  1367. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1368. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1369. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1370. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1371. /*
  1372. * 费用类型
  1373. * 1:房费
  1374. * 2:早餐
  1375. * 3:地税
  1376. * 4:城市税
  1377. * </summary>
  1378. */
  1379. //地税
  1380. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1381. if (governmentRentData != null)
  1382. {
  1383. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1384. governmentRentFee = governmentRentData.Price;
  1385. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1386. if (governmentRentCurrData != null)
  1387. {
  1388. governmentRentCode = governmentRentCurrData.Name;
  1389. governmentRentName = $"({governmentRentCurrData.Remark})";
  1390. }
  1391. }
  1392. //城市税
  1393. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1394. if (cityTaxData != null)
  1395. {
  1396. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1397. cityTaxFee = cityTaxData.Price;
  1398. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1399. if (cityTaxCurrData != null)
  1400. {
  1401. cityTaxCode = cityTaxCurrData.Name;
  1402. cityTaxName = $"({cityTaxCurrData.Remark})";
  1403. }
  1404. }
  1405. //酒店早餐
  1406. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1407. if (breakfastData != null)
  1408. {
  1409. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1410. breakfastFee = breakfastData.Price;
  1411. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1412. if (breakfastCurrData != null)
  1413. {
  1414. breakfastCode = breakfastCurrData.Name;
  1415. breakfastName = $"({breakfastCurrData.Remark})";
  1416. }
  1417. }
  1418. //房间费用
  1419. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1420. if (roomData != null)
  1421. {
  1422. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1423. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1424. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1425. roomFee = roomData.Price;
  1426. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1427. if (roomCurrData != null)
  1428. {
  1429. roomCode = roomCurrData.Name;
  1430. roomName = $"({roomCurrData.Remark})";
  1431. }
  1432. }
  1433. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1434. string hotelCostStr = "";
  1435. decimal hotelCsotTotal = 0.00M;
  1436. if (groupCost != null)
  1437. {
  1438. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1439. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1440. }
  1441. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1442. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1443. string hotelCost_day = "";
  1444. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1445. foreach (var item in hotelCostDetails1)
  1446. {
  1447. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1448. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1449. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1450. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1451. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1452. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1453. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1454. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1455. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1456. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1457. hotelCost_day += @$"</br>";
  1458. }
  1459. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1460. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1461. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1462. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1463. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1464. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1465. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1466. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1467. $"房间说明: {hotelReservations.Remark} <br/>" +
  1468. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1469. $"{hotelBreakfastStr}" +
  1470. $"{hotelGovernmentRentStr}" +
  1471. $"{hotelCityTaxStr}";
  1472. _detail.PriceNameContent = hotelReservations.HotelName;
  1473. }
  1474. break;
  1475. case 79://车/导游地接
  1476. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1477. if (touristGuideGroundReservations != null)
  1478. {
  1479. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1480. {
  1481. _detail.BusName = touristGuideGroundReservations.BusName;
  1482. }
  1483. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1484. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1485. //if (isInt)
  1486. //{
  1487. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1488. // if (cityInfo != null)
  1489. // {
  1490. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1491. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1492. // if (carFeeItem != null)
  1493. // {
  1494. // nameContent += $@"({carFeeItem.Name})";
  1495. // }
  1496. // _detail.PriceNameContent = nameContent;
  1497. // }
  1498. //}
  1499. //else
  1500. //{
  1501. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1502. //}
  1503. var touristGuideGroundReservationsContents =
  1504. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1505. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1506. foreach (var item in touristGuideGroundReservationsContents)
  1507. {
  1508. string typeName = "Unknown";
  1509. string carCurrencyCode = "Unknown";
  1510. string carCurrencyName = "Unknown";
  1511. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1512. if (carTypeData != null) typeName = carTypeData.Name;
  1513. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1514. if (currencyData != null)
  1515. {
  1516. carCurrencyCode = currencyData.Name;
  1517. carCurrencyName = currencyData.Remark;
  1518. }
  1519. string opCostStr = string.Empty;
  1520. decimal opCostTypePrice = 0.00M;
  1521. #region 处理成本各项费用
  1522. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1523. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1524. if (opCost.Count > 0)
  1525. {
  1526. switch (item.SId)
  1527. {
  1528. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1529. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1530. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1531. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1532. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1533. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1534. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1535. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1536. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1537. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1538. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1539. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1540. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1541. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1542. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1543. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1544. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1545. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1546. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1547. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1548. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1549. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1550. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1551. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1552. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1553. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1554. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1555. }
  1556. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1557. }
  1558. #endregion
  1559. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1560. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1561. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1562. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1563. }
  1564. _detail.PriceMsgContent = priceMsg;
  1565. }
  1566. break;
  1567. case 80: //签证
  1568. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1569. if (visaInfo != null)
  1570. {
  1571. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1572. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1573. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1574. }
  1575. break;
  1576. case 81: //邀请/公务活动
  1577. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1578. if (_ioa != null)
  1579. {
  1580. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1581. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1582. sendCurrName = "Unknown", //快递费用币种 Name
  1583. sendCurrCode = "Unknown", //快递费用币种 Code
  1584. eventsCurrName = "Unknown", //公务活动费币种 Name
  1585. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1586. translateCurrName = "Unknown", //公务翻译费 Name
  1587. translateCurrCode = "Unknown"; //公务翻译费 Code
  1588. #region 处理费用币种
  1589. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1590. if (inviteCurrData != null)
  1591. {
  1592. inviteCurrName = inviteCurrData.Remark;
  1593. inviteCurrCode = inviteCurrData.Name;
  1594. }
  1595. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1596. if (sendCurrData != null)
  1597. {
  1598. sendCurrName = sendCurrData.Remark;
  1599. sendCurrCode = sendCurrData.Name;
  1600. }
  1601. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1602. if (eventsCurrData != null)
  1603. {
  1604. eventsCurrName = eventsCurrData.Remark;
  1605. eventsCurrCode = eventsCurrData.Name;
  1606. }
  1607. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1608. if (translateCurrData != null)
  1609. {
  1610. translateCurrName = translateCurrData.Remark;
  1611. translateCurrCode = translateCurrData.Name;
  1612. }
  1613. #endregion
  1614. _detail.PriceNameContent = _ioa.InviterArea;
  1615. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1616. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1617. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1618. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1619. $@"备注:" + _ioa.Remark + "<br/>";
  1620. }
  1621. break;
  1622. case 82: //团组客户保险
  1623. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1624. if (customers != null)
  1625. {
  1626. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1627. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1628. }
  1629. break;
  1630. case 85: //机票预订
  1631. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1632. if (jpRes != null)
  1633. {
  1634. string FlightsDescription = jpRes.FlightsDescription;
  1635. string PriceDescription = jpRes.PriceDescription;
  1636. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1637. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1638. }
  1639. break;
  1640. case 98://其他款项
  1641. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1642. if (gdpRes != null)
  1643. {
  1644. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1645. _detail.PriceNameContent = gdpRes.PriceName;
  1646. }
  1647. break;
  1648. case 285://收款退还
  1649. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1650. if (refundAndOtherMoney != null)
  1651. {
  1652. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1653. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1654. }
  1655. break;
  1656. case 751://酒店早餐
  1657. break;
  1658. case 1015://超支费用
  1659. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1660. if (groupExtraCost != null)
  1661. {
  1662. _detail.PriceNameContent = groupExtraCost.PriceName;
  1663. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1664. }
  1665. break;
  1666. default:
  1667. break;
  1668. }
  1669. /*
  1670. * 申请人
  1671. */
  1672. string operatorName = " - ";
  1673. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1674. if (_opUser != null)
  1675. {
  1676. operatorName = _opUser.CnName;
  1677. }
  1678. _detail.OperatorName = operatorName;
  1679. /*
  1680. * 审核人
  1681. */
  1682. string auditOperatorName = "Unknown";
  1683. if (entity.AuditGMOperate == 0)
  1684. auditOperatorName = " - ";
  1685. else if (entity.AuditGMOperate == 4)
  1686. auditOperatorName = "自动审核";
  1687. else
  1688. {
  1689. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1690. if (_adUser != null)
  1691. {
  1692. auditOperatorName = _adUser.CnName;
  1693. }
  1694. }
  1695. _detail.AuditOperatorName = auditOperatorName;
  1696. /*
  1697. * 超预算比例
  1698. */
  1699. string overBudgetStr = "";
  1700. if (entity.ExceedBudget == -1)
  1701. overBudgetStr = sdPriceName.Name + "尚无预算";
  1702. else if (entity.ExceedBudget == 0)
  1703. {
  1704. if (entity.CTable == 76 || entity.CTable == 79)
  1705. {
  1706. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1707. else overBudgetStr = "超预算";
  1708. }
  1709. else
  1710. {
  1711. overBudgetStr = "未超预算";
  1712. }
  1713. }
  1714. else
  1715. overBudgetStr = entity.ExceedBudget.ToString("P");
  1716. _detail.OverBudget = overBudgetStr;
  1717. /*
  1718. * 费用总计
  1719. */
  1720. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1721. {
  1722. CurrencyId = entity.PaymentCurrency,
  1723. CurrencyName = PaymentCurrency_WaitPay,
  1724. AmountPayable = entity.PayMoney,
  1725. ThisPayment = CurrPayStr,
  1726. BalancePayment = BalanceStr,
  1727. AuditedFunds = CurrPayStr
  1728. });
  1729. _detail.IsAuditGM = entity.IsAuditGM;
  1730. detailList.Add(_detail);
  1731. }
  1732. #endregion
  1733. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1734. /*
  1735. * 下方描述处理
  1736. */
  1737. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1738. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1739. if (ccpCurrencyPrice != null)
  1740. {
  1741. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1742. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1743. }
  1744. else
  1745. {
  1746. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1747. }
  1748. string amountPayableStr = string.Format(@"应付款总金额: ");
  1749. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1750. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1751. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1752. foreach (var item in nonDuplicat)
  1753. {
  1754. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1755. if (strs.Count > 0)
  1756. {
  1757. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1758. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1759. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1760. //单独处理此次付款金额
  1761. if (item.CurrencyId == 836) //人民币
  1762. {
  1763. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1764. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1765. }
  1766. else
  1767. {
  1768. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1769. }
  1770. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1771. //单独处理已审核费用
  1772. if (item.CurrencyId == 836) //人民币
  1773. {
  1774. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1775. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1776. }
  1777. else
  1778. {
  1779. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1780. }
  1781. }
  1782. }
  1783. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1784. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1785. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1786. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1787. var _view1 = new
  1788. {
  1789. PageFuncAuth = pageFunAuthView,
  1790. Data = _view
  1791. };
  1792. return Ok(JsonView(_view1));
  1793. }
  1794. catch (Exception ex)
  1795. {
  1796. return Ok(JsonView(false, ex.Message));
  1797. }
  1798. }
  1799. /// <summary>
  1800. /// 费用审核
  1801. /// 修改团组费用审核状态
  1802. /// </summary>
  1803. /// <param name="_dto">参数Json字符串</param>
  1804. /// <returns></returns>
  1805. [HttpPost]
  1806. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1807. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1808. {
  1809. #region 参数验证
  1810. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1811. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1812. #endregion
  1813. #region 页面操作权限验证
  1814. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1815. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1816. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1817. #endregion
  1818. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1819. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1820. DateTime dtNow = DateTime.Now;
  1821. _groupRepository.BeginTran();
  1822. int rst = 0;
  1823. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1824. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1825. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1826. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1827. List<dynamic> msgDatas = new List<dynamic>();
  1828. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1829. foreach (var item in idList)
  1830. {
  1831. int CreditId = int.Parse(item);
  1832. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1833. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1834. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1835. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1836. .Where(s => s.Id == CreditId)
  1837. .ExecuteCommandAsync();
  1838. if (result < 1)
  1839. {
  1840. rst = -1;
  1841. _groupRepository.RollbackTran();
  1842. return Ok(JsonView(false, "操作失败并回滚!"));
  1843. }
  1844. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1845. if (creditData != null)
  1846. {
  1847. #region 应用通知配置
  1848. try
  1849. {
  1850. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1851. }
  1852. catch (Exception ex)
  1853. {
  1854. }
  1855. #endregion
  1856. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1857. string groupNameStr = string.Empty;
  1858. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1859. if (groupData != null) groupNameStr = groupData.TeamName;
  1860. string creditTypeStr = string.Empty;
  1861. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1862. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1863. string creditCurrency = string.Empty;
  1864. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1865. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1866. if (creditCurrency.Equals("CNY"))
  1867. {
  1868. creditData.DayRate = 1.0000M;
  1869. }
  1870. if (creditData.PayPercentage == 0.00M)
  1871. {
  1872. creditData.PayPercentage = 100M;
  1873. }
  1874. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1875. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1876. string msgContent = "";
  1877. if (creditCurrency.Equals("CNY"))
  1878. {
  1879. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1880. }
  1881. else
  1882. {
  1883. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1884. }
  1885. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1886. }
  1887. }
  1888. if (rst == 0)
  1889. {
  1890. _groupRepository.CommitTran();
  1891. foreach (var item in msgDatas)
  1892. {
  1893. //发送消息
  1894. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1895. }
  1896. #region 应用推送
  1897. try
  1898. {
  1899. foreach (var ccpId in dic_ccp_user.Keys)
  1900. {
  1901. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1902. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1903. }
  1904. }
  1905. catch (Exception)
  1906. {
  1907. }
  1908. #endregion
  1909. return Ok(JsonView(true, "操作成功!"));
  1910. }
  1911. return Ok(JsonView(false, "操作失败!"));
  1912. }
  1913. #endregion
  1914. #region 机票费用录入
  1915. /// <summary>
  1916. /// 机票录入当前登录人可操作团组
  1917. /// </summary>
  1918. /// <param name="dto"></param>
  1919. /// <returns></returns>
  1920. [HttpPost]
  1921. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1922. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1923. {
  1924. try
  1925. {
  1926. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1927. if (groupData.Code != 0)
  1928. {
  1929. return Ok(JsonView(false, groupData.Msg));
  1930. }
  1931. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1932. }
  1933. catch (Exception ex)
  1934. {
  1935. return Ok(JsonView(false, "程序错误!"));
  1936. throw;
  1937. }
  1938. }
  1939. /// <summary>
  1940. /// 机票费用录入列表
  1941. /// </summary>
  1942. /// <param name="dto"></param>
  1943. /// <returns></returns>
  1944. [HttpPost]
  1945. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1946. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1947. {
  1948. try
  1949. {
  1950. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1951. if (groupData.Code != 0)
  1952. {
  1953. return Ok(JsonView(false, groupData.Msg));
  1954. }
  1955. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1956. }
  1957. catch (Exception ex)
  1958. {
  1959. return Ok(JsonView(false, ex.Message));
  1960. throw;
  1961. }
  1962. }
  1963. /// <summary>
  1964. /// 根据id查询费用录入信息
  1965. /// </summary>
  1966. /// <param name="dto"></param>
  1967. /// <returns></returns>
  1968. [HttpPost]
  1969. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1970. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1971. {
  1972. try
  1973. {
  1974. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1975. if (groupData.Code != 0)
  1976. {
  1977. return Ok(JsonView(false, groupData.Msg));
  1978. }
  1979. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1980. }
  1981. catch (Exception ex)
  1982. {
  1983. return Ok(JsonView(false, "程序错误!"));
  1984. throw;
  1985. }
  1986. }
  1987. /// <summary>
  1988. /// 机票费用录入操作(Status:1.新增,2.修改)
  1989. /// </summary>
  1990. /// <param name="dto"></param>
  1991. /// <returns></returns>
  1992. [HttpPost]
  1993. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1994. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1995. {
  1996. try
  1997. {
  1998. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1999. if (groupData.Code != 0)
  2000. {
  2001. return Ok(JsonView(false, groupData.Msg));
  2002. }
  2003. #region 应用推送
  2004. try
  2005. {
  2006. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2007. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2008. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2009. }
  2010. catch (Exception ex)
  2011. {
  2012. }
  2013. #endregion
  2014. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2015. }
  2016. catch (Exception ex)
  2017. {
  2018. return Ok(JsonView(false, "程序错误!"));
  2019. throw;
  2020. }
  2021. }
  2022. /// <summary>
  2023. /// 根据舱位类型查询接团客户名单信息
  2024. /// </summary>
  2025. /// <param name="dto"></param>
  2026. /// <returns></returns>
  2027. [HttpPost]
  2028. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2029. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2030. {
  2031. try
  2032. {
  2033. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2034. if (crm_Groups.Count != 0)
  2035. {
  2036. List<dynamic> Customer = new List<dynamic>();
  2037. foreach (var item in crm_Groups)
  2038. {
  2039. var data = new
  2040. {
  2041. Id = item.Id,
  2042. Pinyin = item.Pinyin,
  2043. Name = item.LastName + item.FirstName
  2044. };
  2045. Customer.Add(data);
  2046. }
  2047. return Ok(JsonView(true, "查询成功!", Customer));
  2048. }
  2049. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2050. }
  2051. catch (Exception ex)
  2052. {
  2053. return Ok(JsonView(false, "程序错误!"));
  2054. throw;
  2055. }
  2056. }
  2057. /// <summary>
  2058. /// 根据团号获取客户信息
  2059. /// </summary>
  2060. /// <param name="dto"></param>
  2061. /// <returns></returns>
  2062. [HttpPost]
  2063. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2064. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2065. {
  2066. var jw = JsonView(false);
  2067. if (dto.DIID < 1)
  2068. {
  2069. jw.Msg += "请输入正确的diid";
  2070. return Ok(jw);
  2071. }
  2072. var arr = getSimplClientList(dto.DIID);
  2073. jw = JsonView(true, "获取成功!", arr);
  2074. return Ok(jw);
  2075. }
  2076. private List<SimplClientInfo> getSimplClientList(int diId)
  2077. {
  2078. 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);
  2079. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2080. return arr;
  2081. }
  2082. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2083. {
  2084. string result = origin;
  2085. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2086. {
  2087. string[] temparr = origin.Split(',');
  2088. string fistrStr = temparr[0];
  2089. int count = temparr.Count();
  2090. int tempId;
  2091. bool success = int.TryParse(fistrStr, out tempId);
  2092. if (success)
  2093. {
  2094. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2095. if (tempInfo != null)
  2096. {
  2097. if (count > 1)
  2098. {
  2099. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2100. }
  2101. else
  2102. {
  2103. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2104. }
  2105. }
  2106. }
  2107. }
  2108. return result;
  2109. }
  2110. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2111. {
  2112. string result = origin;
  2113. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2114. {
  2115. string[] temparr = origin.Split(',');
  2116. result = "";
  2117. foreach (var item in temparr)
  2118. {
  2119. int tempId;
  2120. bool success = int.TryParse(item, out tempId);
  2121. if (success)
  2122. {
  2123. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2124. if (tempInfo != null)
  2125. {
  2126. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2127. }
  2128. }
  2129. }
  2130. }
  2131. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2132. return result;
  2133. }
  2134. /// <summary>
  2135. /// 机票费用录入,删除
  2136. /// </summary>
  2137. /// <param name="dto"></param>
  2138. /// <returns></returns>
  2139. [HttpPost]
  2140. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2141. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2142. {
  2143. try
  2144. {
  2145. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2146. if (res)
  2147. {
  2148. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2149. {
  2150. IsDel = 1,
  2151. DeleteUserId = dto.DeleteUserId,
  2152. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2153. }).ExecuteCommandAsync();
  2154. return Ok(JsonView(true, "删除成功!"));
  2155. }
  2156. return Ok(JsonView(false, "删除失败!"));
  2157. }
  2158. catch (Exception ex)
  2159. {
  2160. return Ok(JsonView(false, "程序错误!"));
  2161. throw;
  2162. }
  2163. }
  2164. /// <summary>
  2165. /// 导出机票录入报表
  2166. /// </summary>
  2167. /// <param name="dto"></param>
  2168. /// <returns></returns>
  2169. [HttpPost]
  2170. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2171. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2172. {
  2173. try
  2174. {
  2175. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2176. if (groupData.Code != 0)
  2177. {
  2178. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2179. }
  2180. else
  2181. {
  2182. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2183. if (AirTicketReservations.Count != 0)
  2184. {
  2185. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2186. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2187. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2188. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2189. WorkbookDesigner designer = new WorkbookDesigner();
  2190. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2191. decimal countCost = 0;
  2192. foreach (var item in AirTicketReservations)
  2193. {
  2194. #region 处理客人姓名
  2195. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2196. item.ClientName = clientNames;
  2197. #endregion
  2198. if (item.BankType == "其他")
  2199. {
  2200. item.BankNo = "--";
  2201. }
  2202. else
  2203. {
  2204. if (!string.IsNullOrEmpty(item.BankType))
  2205. {
  2206. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2207. }
  2208. }
  2209. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2210. item.Price = System.Decimal.Round(item.Price, 2);
  2211. countCost += Convert.ToDecimal(item.Price);
  2212. }
  2213. designer.SetDataSource("Export", AirTicketReservations);
  2214. designer.SetDataSource("ExportDiCode", diCode);
  2215. designer.SetDataSource("ExportDiName", diName);
  2216. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2217. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2218. designer.Process();
  2219. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2220. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2221. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2222. return Ok(JsonView(true, "成功", url = rst));
  2223. }
  2224. else
  2225. {
  2226. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2227. }
  2228. }
  2229. }
  2230. catch (Exception ex)
  2231. {
  2232. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2233. throw;
  2234. }
  2235. }
  2236. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2237. /// <summary>
  2238. /// 行程单导出
  2239. /// </summary>
  2240. /// <param name="dto"></param>
  2241. /// <returns></returns>
  2242. [HttpPost]
  2243. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2244. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2245. {
  2246. try
  2247. {
  2248. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2249. if (groupData.Code != 0)
  2250. {
  2251. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2252. }
  2253. else
  2254. {
  2255. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2256. if (dto.Language == "CN")
  2257. {
  2258. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2259. DocumentBuilder builder = new DocumentBuilder(doc);
  2260. int tableIndex = 0;//表格索引
  2261. //得到文档中的第一个表格
  2262. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2263. foreach (var item in _AirTicketReservations)
  2264. {
  2265. #region 处理固定数据
  2266. string[] FlightsCode = item.FlightsCode.Split('/');
  2267. if (FlightsCode.Length != 0)
  2268. {
  2269. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2270. if (_AirCompany != null)
  2271. {
  2272. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2273. }
  2274. else
  2275. {
  2276. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2277. }
  2278. }
  2279. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2280. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2281. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2282. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2283. string name = "";
  2284. foreach (string clientName in nameArray)
  2285. {
  2286. if (!name.Contains(clientName))
  2287. {
  2288. name += clientName + ",";
  2289. }
  2290. }
  2291. if (!string.IsNullOrWhiteSpace(name))
  2292. {
  2293. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2294. }
  2295. else
  2296. {
  2297. table.Range.Bookmarks["ClientName"].Text = "--";
  2298. }
  2299. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2300. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2301. table.Range.Bookmarks["JointTicket"].Text = "--";
  2302. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2303. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2304. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2305. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2306. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2307. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2308. #endregion
  2309. #region 循环数据处理
  2310. List<AirInfo> airs = new List<AirInfo>();
  2311. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2312. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2313. for (int i = 0; i < FlightsCode.Length; i++)
  2314. {
  2315. AirInfo air = new AirInfo();
  2316. string[] tempstr = DayArray[i]
  2317. .Replace("\r\n", string.Empty)
  2318. .Replace("\\r\\n", string.Empty)
  2319. .TrimStart().TrimEnd()
  2320. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2321. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2322. string starCity = "";
  2323. if (star_Three != null)
  2324. {
  2325. starCity = star_Three.AirPort;
  2326. }
  2327. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2328. string EndCity = "";
  2329. if (End_Three != null)
  2330. {
  2331. EndCity = End_Three.AirPort;
  2332. }
  2333. air.Destination = starCity + "/" + EndCity;
  2334. air.Flight = FlightsCode[i];
  2335. air.SeatingClass = item.CTypeName;
  2336. string dateTime = tempstr[2];
  2337. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2338. air.FlightDate = DateTemp;
  2339. air.DepartureTime = tempstr[5];
  2340. air.LandingTime = tempstr[6];
  2341. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2342. air.TicketStatus = "--";
  2343. air.Luggage = "--";
  2344. air.DepartureTerminal = "--";
  2345. air.LandingTerminal = "--";
  2346. airs.Add(air);
  2347. }
  2348. int row = 13;
  2349. for (int i = 0; i < airs.Count; i++)
  2350. {
  2351. if (airs.Count > 2)
  2352. {
  2353. for (int j = 0; j < airs.Count - 2; j++)
  2354. {
  2355. var CopyRow = table.Rows[12].Clone(true);
  2356. table.Rows.Add(CopyRow);
  2357. }
  2358. }
  2359. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2360. int index = 0;
  2361. foreach (PropertyInfo property in properties)
  2362. {
  2363. string value = property.GetValue(airs[i]).ToString();
  2364. Cell ishcel0 = table.Rows[row].Cells[index];
  2365. Paragraph p = new Paragraph(doc);
  2366. string s = value;
  2367. p.AppendChild(new Run(doc, s));
  2368. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2369. ishcel0.AppendChild(p);
  2370. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2371. index++;
  2372. }
  2373. row++;
  2374. }
  2375. #endregion
  2376. Paragraph lastParagraph = new Paragraph(doc);
  2377. //第一个表格末尾加段落
  2378. table.ParentNode.InsertAfter(lastParagraph, table);
  2379. //复制第一个表格
  2380. Table cloneTable = (Table)table.Clone(true);
  2381. //在文档末尾段落后面加入复制的表格
  2382. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2383. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2384. {
  2385. int rownewsIndex = 13;
  2386. for (int i = 0; i < 2; i++)
  2387. {
  2388. var CopyRow = table.Rows[12].Clone(true);
  2389. table.Rows.RemoveAt(13);
  2390. table.Rows.Add(CopyRow);
  2391. rownewsIndex++;
  2392. }
  2393. }
  2394. else
  2395. {
  2396. table.Rows.RemoveAt(12);
  2397. }
  2398. cloneTable.Rows.RemoveAt(12);
  2399. }
  2400. if (_AirTicketReservations.Count != 0)
  2401. {
  2402. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2403. if (FlightsCode.Length != 0)
  2404. {
  2405. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2406. if (_AirCompany != null)
  2407. {
  2408. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2409. }
  2410. else
  2411. {
  2412. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2413. }
  2414. }
  2415. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2416. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2417. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2418. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2419. string name = "";
  2420. foreach (string clientName in nameArray)
  2421. {
  2422. if (!name.Contains(clientName))
  2423. {
  2424. name += clientName + ",";
  2425. }
  2426. }
  2427. if (!string.IsNullOrWhiteSpace(name))
  2428. {
  2429. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2430. }
  2431. else
  2432. {
  2433. table.Range.Bookmarks["ClientName"].Text = "--";
  2434. }
  2435. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2436. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2437. table.Range.Bookmarks["JointTicket"].Text = "--";
  2438. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2439. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2440. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2441. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2442. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2443. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2444. }
  2445. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2446. //保存合并后的文档
  2447. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2448. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2449. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2450. return Ok(JsonView(true, "成功!", rst));
  2451. }
  2452. else
  2453. {
  2454. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2455. DocumentBuilder builder = new DocumentBuilder(doc);
  2456. int tableIndex = 0;//表格索引
  2457. //得到文档中的第一个表格
  2458. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2459. List<string> texts = new List<string>();
  2460. foreach (var item in _AirTicketReservations)
  2461. {
  2462. string[] FlightsCode = item.FlightsCode.Split('/');
  2463. if (FlightsCode.Length != 0)
  2464. {
  2465. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2466. if (_AirCompany != null)
  2467. {
  2468. if (!transDic.ContainsKey(_AirCompany.CnName))
  2469. {
  2470. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2471. }
  2472. }
  2473. else
  2474. {
  2475. if (!transDic.ContainsKey("--"))
  2476. {
  2477. transDic.Add("--", "--");
  2478. }
  2479. }
  2480. }
  2481. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2482. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2483. string name = "";
  2484. foreach (string clientName in nameArray)
  2485. {
  2486. name += clientName + ",";
  2487. }
  2488. if (!texts.Contains(name))
  2489. {
  2490. texts.Add(name);
  2491. }
  2492. List<AirInfo> airs = new List<AirInfo>();
  2493. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2494. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2495. for (int i = 0; i < FlightsCode.Length; i++)
  2496. {
  2497. AirInfo air = new AirInfo();
  2498. string[] tempstr = DayArray[i]
  2499. .Replace("\r\n", string.Empty)
  2500. .Replace("\\r\\n", string.Empty)
  2501. .TrimStart().TrimEnd()
  2502. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2503. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2504. if (star_Three != null)
  2505. {
  2506. if (!transDic.ContainsKey(star_Three.AirPort))
  2507. {
  2508. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2509. }
  2510. }
  2511. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2512. if (End_Three != null)
  2513. {
  2514. if (!transDic.ContainsKey(End_Three.AirPort))
  2515. {
  2516. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2517. }
  2518. }
  2519. if (!texts.Contains(item.CTypeName))
  2520. {
  2521. texts.Add(item.CTypeName);
  2522. }
  2523. }
  2524. }
  2525. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2526. if (transData.Count > 0)
  2527. {
  2528. foreach (TranslateResult item in transData)
  2529. {
  2530. if (!transDic.ContainsKey(item.Query))
  2531. {
  2532. transDic.Add(item.Query, item.Translation);
  2533. }
  2534. }
  2535. }
  2536. foreach (var item in _AirTicketReservations)
  2537. {
  2538. #region 处理固定数据
  2539. string[] FlightsCode = item.FlightsCode.Split('/');
  2540. if (FlightsCode.Length != 0)
  2541. {
  2542. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2543. if (_AirCompany != null)
  2544. {
  2545. string str = "--";
  2546. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2547. if (!string.IsNullOrEmpty(translateResult))
  2548. {
  2549. str = translateResult;
  2550. str = _airTicketResRep.Processing(str);
  2551. }
  2552. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2553. }
  2554. else
  2555. {
  2556. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2557. }
  2558. }
  2559. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2560. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2561. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2562. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2563. string names = "";
  2564. foreach (string clientName in nameArray)
  2565. {
  2566. names += clientName + ",";
  2567. }
  2568. if (!string.IsNullOrWhiteSpace(names))
  2569. {
  2570. string str = "--";
  2571. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2572. if (!string.IsNullOrEmpty(translateResult))
  2573. {
  2574. str = translateResult;
  2575. str = _airTicketResRep.Processing(str);
  2576. }
  2577. table.Range.Bookmarks["ClientName"].Text = str;
  2578. }
  2579. else
  2580. {
  2581. table.Range.Bookmarks["ClientName"].Text = "--";
  2582. }
  2583. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2584. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2585. table.Range.Bookmarks["JointTicket"].Text = "--";
  2586. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2587. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2588. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2589. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2590. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2591. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2592. #endregion
  2593. #region 循环数据处理
  2594. List<AirInfo> airs = new List<AirInfo>();
  2595. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2596. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2597. for (int i = 0; i < FlightsCode.Length; i++)
  2598. {
  2599. AirInfo air = new AirInfo();
  2600. string[] tempstr = DayArray[i]
  2601. .Replace("\r\n", string.Empty)
  2602. .Replace("\\r\\n", string.Empty)
  2603. .TrimStart().TrimEnd()
  2604. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2605. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2606. string starCity = "";
  2607. if (star_Three != null)
  2608. {
  2609. string str2 = "--";
  2610. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2611. if (!string.IsNullOrEmpty(translateResult2))
  2612. {
  2613. str2 = translateResult2;
  2614. str2 = _airTicketResRep.Processing(str2);
  2615. }
  2616. starCity = str2;
  2617. }
  2618. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2619. string EndCity = "";
  2620. if (End_Three != null)
  2621. {
  2622. string str1 = "--";
  2623. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2624. if (!string.IsNullOrEmpty(translateResult1))
  2625. {
  2626. str1 = translateResult1;
  2627. str1 = _airTicketResRep.Processing(str1);
  2628. }
  2629. EndCity = str1;
  2630. }
  2631. air.Destination = starCity + "/" + EndCity;
  2632. air.Flight = FlightsCode[i];
  2633. string str = "--";
  2634. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2635. if (!string.IsNullOrEmpty(translateResult))
  2636. {
  2637. str = translateResult;
  2638. str = _airTicketResRep.Processing(str);
  2639. }
  2640. air.SeatingClass = str;
  2641. string dateTime = tempstr[2];
  2642. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2643. air.FlightDate = DateTemp;
  2644. air.DepartureTime = tempstr[5];
  2645. air.LandingTime = tempstr[6];
  2646. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2647. air.TicketStatus = "--";
  2648. air.Luggage = "--";
  2649. air.DepartureTerminal = "--";
  2650. air.LandingTerminal = "--";
  2651. airs.Add(air);
  2652. }
  2653. int row = 13;
  2654. for (int i = 0; i < airs.Count; i++)
  2655. {
  2656. if (airs.Count > 2)
  2657. {
  2658. for (int j = 0; j < airs.Count - 2; j++)
  2659. {
  2660. var CopyRow = table.Rows[12].Clone(true);
  2661. table.Rows.Add(CopyRow);
  2662. }
  2663. }
  2664. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2665. int index = 0;
  2666. foreach (PropertyInfo property in properties)
  2667. {
  2668. string value = property.GetValue(airs[i]).ToString();
  2669. Cell ishcel0 = table.Rows[row].Cells[index];
  2670. Paragraph p = new Paragraph(doc);
  2671. string s = value;
  2672. p.AppendChild(new Run(doc, s));
  2673. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2674. ishcel0.AppendChild(p);
  2675. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2676. //ishcel0.CellFormat.VerticalAlignment=
  2677. index++;
  2678. }
  2679. row++;
  2680. }
  2681. #endregion
  2682. Paragraph lastParagraph = new Paragraph(doc);
  2683. //第一个表格末尾加段落
  2684. table.ParentNode.InsertAfter(lastParagraph, table);
  2685. //复制第一个表格
  2686. Table cloneTable = (Table)table.Clone(true);
  2687. //在文档末尾段落后面加入复制的表格
  2688. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2689. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2690. {
  2691. int rownewsIndex = 13;
  2692. for (int i = 0; i < 2; i++)
  2693. {
  2694. var CopyRow = table.Rows[12].Clone(true);
  2695. table.Rows.RemoveAt(13);
  2696. table.Rows.Add(CopyRow);
  2697. rownewsIndex++;
  2698. }
  2699. }
  2700. else
  2701. {
  2702. table.Rows.RemoveAt(12);
  2703. }
  2704. cloneTable.Rows.RemoveAt(12);
  2705. }
  2706. if (_AirTicketReservations.Count != 0)
  2707. {
  2708. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2709. if (FlightsCode.Length != 0)
  2710. {
  2711. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2712. if (_AirCompany != null)
  2713. {
  2714. string str = "--";
  2715. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2716. if (!string.IsNullOrEmpty(translateResult))
  2717. {
  2718. str = translateResult;
  2719. str = _airTicketResRep.Processing(str);
  2720. }
  2721. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2722. }
  2723. else
  2724. {
  2725. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2726. }
  2727. }
  2728. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2729. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2730. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2731. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2732. string names = "";
  2733. foreach (string clientName in nameArray)
  2734. {
  2735. names += clientName + ",";
  2736. }
  2737. if (!string.IsNullOrWhiteSpace(names))
  2738. {
  2739. string str = "--";
  2740. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2741. if (!string.IsNullOrEmpty(translateResult))
  2742. {
  2743. str = translateResult;
  2744. str = _airTicketResRep.Processing(str);
  2745. }
  2746. table.Range.Bookmarks["ClientName"].Text = str;
  2747. }
  2748. else
  2749. {
  2750. table.Range.Bookmarks["ClientName"].Text = "--";
  2751. }
  2752. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2753. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2754. table.Range.Bookmarks["JointTicket"].Text = "--";
  2755. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2756. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2757. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2758. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2759. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2760. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2761. }
  2762. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2763. //保存合并后的文档
  2764. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2765. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2766. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2767. return Ok(JsonView(true, "成功!", rst));
  2768. }
  2769. }
  2770. }
  2771. catch (Exception ex)
  2772. {
  2773. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2774. throw;
  2775. }
  2776. }
  2777. #endregion
  2778. #region 团组增减款项 --> 其他款项
  2779. /// <summary>
  2780. /// 团组增减款项下拉框绑定
  2781. /// </summary>
  2782. /// <param name="dto"></param>
  2783. /// <returns></returns>
  2784. [HttpPost]
  2785. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2786. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2787. {
  2788. #region 参数验证
  2789. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2790. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2791. #endregion
  2792. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2793. }
  2794. /// <summary>
  2795. /// 根据团组Id查询团组增减款项
  2796. /// </summary>
  2797. /// <param name="dto"></param>
  2798. /// <returns></returns>
  2799. [HttpPost]
  2800. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2801. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2802. {
  2803. #region 参数验证
  2804. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2805. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2806. #endregion
  2807. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2808. }
  2809. /// <summary>
  2810. /// 团组增减款项操作(Status:1.新增,2.修改)
  2811. /// </summary>
  2812. /// <param name="dto"></param>
  2813. /// <returns></returns>
  2814. [HttpPost]
  2815. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2816. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2817. {
  2818. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2819. if (groupData.Code != 200)
  2820. {
  2821. return Ok(JsonView(false, groupData.Msg));
  2822. }
  2823. #region 应用推送
  2824. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2825. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2826. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2827. #endregion
  2828. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2829. }
  2830. /// <summary>
  2831. /// 团组增减款项操作 删除
  2832. /// </summary>
  2833. /// <param name="dto"></param>
  2834. /// <returns></returns>
  2835. [HttpPost]
  2836. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2837. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2838. {
  2839. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2840. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2841. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2842. if (res.Code == 0)
  2843. {
  2844. return Ok(JsonView(true, "删除成功!"));
  2845. }
  2846. return Ok(JsonView(false, "删除失败!"));
  2847. }
  2848. /// <summary>
  2849. /// 根据团组增减款项Id查询
  2850. /// </summary>
  2851. /// <param name="dto"></param>
  2852. /// <returns></returns>
  2853. [HttpPost]
  2854. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2855. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2856. {
  2857. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2858. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2859. }
  2860. /// <summary>
  2861. /// 查询供应商名称
  2862. /// </summary>
  2863. /// <param name="dto"></param>
  2864. /// <returns></returns>
  2865. [HttpPost]
  2866. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2867. {
  2868. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2869. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2870. ?? new List<Grp_DecreasePayments>();
  2871. dbResult = dbResult.Distinct(new
  2872. ProductComparer()).ToList();
  2873. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2874. {
  2875. x.Id,
  2876. x.SupplierAddress,
  2877. x.SupplierArea,
  2878. x.SupplierContact,
  2879. x.SupplierContactNumber,
  2880. x.SupplierEmail,
  2881. x.SupplierName,
  2882. x.SupplierSocialAccount,
  2883. x.SupplierTypeId,
  2884. }).ToList());
  2885. return Ok(jw);
  2886. }
  2887. #endregion
  2888. #region 文件上传、删除
  2889. /// <summary>
  2890. /// region 文件上传 可以带参数
  2891. /// </summary>
  2892. /// <param name="file"></param>
  2893. /// <returns></returns>
  2894. [HttpPost]
  2895. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2896. public async Task<IActionResult> UploadProject(IFormFile file)
  2897. {
  2898. try
  2899. {
  2900. var TypeName = Request.Headers["TypeName"].ToString();
  2901. if (file != null)
  2902. {
  2903. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2904. //文件名称
  2905. string projectFileName = file.FileName;
  2906. //上传的文件的路径
  2907. string filePath = "";
  2908. if (TypeName == "A")//A代表团组增减款项
  2909. {
  2910. if (!Directory.Exists(fileDir))
  2911. {
  2912. Directory.CreateDirectory(fileDir);
  2913. }
  2914. //上传的文件的路径
  2915. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2916. }
  2917. else if (TypeName == "B")//B代表商邀相关文件
  2918. {
  2919. if (!Directory.Exists(fileDir))
  2920. {
  2921. Directory.CreateDirectory(fileDir);
  2922. }
  2923. //上传的文件的路径
  2924. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2925. }
  2926. using (FileStream fs = System.IO.File.Create(filePath))
  2927. {
  2928. file.CopyTo(fs);
  2929. fs.Flush();
  2930. }
  2931. return Ok(JsonView(true, "上传成功!", projectFileName));
  2932. }
  2933. else
  2934. {
  2935. return Ok(JsonView(false, "上传失败!"));
  2936. }
  2937. }
  2938. catch (Exception ex)
  2939. {
  2940. return Ok(JsonView(false, "程序错误!"));
  2941. throw;
  2942. }
  2943. }
  2944. /// <summary>
  2945. /// 删除指定文件
  2946. /// </summary>
  2947. /// <param name="dto"></param>
  2948. /// <returns></returns>
  2949. [HttpPost]
  2950. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2951. public async Task<IActionResult> DelFile(DelFileDto dto)
  2952. {
  2953. try
  2954. {
  2955. var TypeName = Request.Headers["TypeName"].ToString();
  2956. string filePath = "";
  2957. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2958. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2959. int id = 0;
  2960. if (TypeName == "A")
  2961. {
  2962. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2963. // 删除该文件
  2964. System.IO.File.Delete(filePath);
  2965. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2966. }
  2967. else if (TypeName == "B")
  2968. {
  2969. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2970. // 删除该文件
  2971. System.IO.File.Delete(filePath);
  2972. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2973. }
  2974. if (id != 0)
  2975. {
  2976. return Ok(JsonView(true, "成功!"));
  2977. }
  2978. else
  2979. {
  2980. return Ok(JsonView(false, "失败!"));
  2981. }
  2982. }
  2983. catch (Exception ex)
  2984. {
  2985. return Ok(JsonView(false, "程序错误!"));
  2986. throw;
  2987. }
  2988. }
  2989. #endregion
  2990. #region 商邀费用录入
  2991. /// <summary>
  2992. /// 根据团组Id查询商邀费用列表
  2993. /// </summary>
  2994. /// <param name="dto"></param>
  2995. /// <returns></returns>
  2996. [HttpPost]
  2997. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2998. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2999. {
  3000. try
  3001. {
  3002. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3003. if (groupData.Code != 0)
  3004. {
  3005. return Ok(JsonView(false, groupData.Msg));
  3006. }
  3007. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3008. }
  3009. catch (Exception ex)
  3010. {
  3011. return Ok(JsonView(false, "程序错误!"));
  3012. throw;
  3013. }
  3014. }
  3015. //
  3016. /// <summary>
  3017. /// 商邀费用 Info Page 基础数据源
  3018. /// </summary>
  3019. /// <param name="dto"></param>
  3020. /// <returns></returns>
  3021. [HttpPost]
  3022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3023. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3024. {
  3025. try
  3026. {
  3027. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3028. if (groupData.Code != 0)
  3029. {
  3030. return Ok(JsonView(false, groupData.Msg));
  3031. }
  3032. return Ok(JsonView(true, "操作成功", groupData.Data));
  3033. }
  3034. catch (Exception ex)
  3035. {
  3036. return Ok(JsonView(false, ex.Message));
  3037. throw;
  3038. }
  3039. }
  3040. /// <summary>
  3041. /// 根据商邀费用ID查询C表和商邀费用数据
  3042. /// </summary>
  3043. /// <param name="dto"></param>
  3044. /// <returns></returns>
  3045. [HttpPost]
  3046. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3047. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3048. {
  3049. try
  3050. {
  3051. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3052. if (groupData.Code != 0)
  3053. {
  3054. return Ok(JsonView(false, groupData.Msg));
  3055. }
  3056. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3057. }
  3058. catch (Exception ex)
  3059. {
  3060. return Ok(JsonView(false, ex.Message));
  3061. throw;
  3062. }
  3063. }
  3064. /// <summary>
  3065. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3066. /// </summary>
  3067. /// <param name="dto"></param>
  3068. /// <returns></returns>
  3069. [HttpPost]
  3070. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3071. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3072. {
  3073. try
  3074. {
  3075. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3076. if (groupData.Code != 0)
  3077. {
  3078. return Ok(JsonView(false, groupData.Msg));
  3079. }
  3080. #region 应用推送
  3081. try
  3082. {
  3083. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3084. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3085. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3086. }
  3087. catch (Exception ex)
  3088. {
  3089. }
  3090. #endregion
  3091. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3092. }
  3093. catch (Exception ex)
  3094. {
  3095. return Ok(JsonView(false, "程序错误!"));
  3096. throw;
  3097. }
  3098. }
  3099. /// <summary>
  3100. /// 商邀删除
  3101. /// </summary>
  3102. /// <param name="dto"></param>
  3103. /// <returns></returns>
  3104. [HttpPost]
  3105. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3106. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3107. {
  3108. try
  3109. {
  3110. _sqlSugar.BeginTran();
  3111. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3112. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3113. {
  3114. IsDel = 1,
  3115. DeleteUserId = dto.DeleteUserId,
  3116. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3117. })
  3118. .Where(it => it.Id == dto.Id)
  3119. .ExecuteCommand();
  3120. if (res1 > 0)
  3121. {
  3122. int _diId = 0;
  3123. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3124. if (_ioaInfo != null)
  3125. {
  3126. _diId = _ioaInfo.DiId;
  3127. }
  3128. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3129. .SetColumns(a => new Grp_CreditCardPayment()
  3130. {
  3131. IsDel = 1,
  3132. DeleteUserId = dto.DeleteUserId,
  3133. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3134. })
  3135. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3136. .ExecuteCommand();
  3137. if (res2 > 0)
  3138. {
  3139. _sqlSugar.CommitTran();
  3140. return Ok(JsonView(true, "删除成功!"));
  3141. }
  3142. }
  3143. _sqlSugar.RollbackTran();
  3144. return Ok(JsonView(false, "删除失败"));
  3145. }
  3146. catch (Exception ex)
  3147. {
  3148. _sqlSugar.RollbackTran();
  3149. return Ok(JsonView(false, ex.Message));
  3150. }
  3151. }
  3152. /// <summary>
  3153. /// 团组模块文件上传
  3154. /// </summary>
  3155. /// <param name="dto"></param>
  3156. /// <returns></returns>
  3157. [HttpPost]
  3158. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3159. {
  3160. var jw = JsonView(false);
  3161. if (dto.Files == null || dto.Files.Count == 0)
  3162. {
  3163. jw.Msg = "无文件信息!";
  3164. return Ok(jw);
  3165. }
  3166. //var nameSp = dto.File.FileName.Split(".");
  3167. //if (nameSp.Length < 2)
  3168. //{
  3169. // jw.Msg = "拓展名称有误!";
  3170. // return Ok(jw);
  3171. //}
  3172. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3173. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3174. //{
  3175. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3176. // return Ok(jw);
  3177. //}
  3178. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3179. if (Ctable == null)
  3180. {
  3181. jw.Msg = "Ctable指向有误!";
  3182. return Ok(jw);
  3183. }
  3184. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3185. if (groupInfo == null)
  3186. {
  3187. jw.Msg = "团组信息不存在!";
  3188. return Ok(jw);
  3189. }
  3190. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3191. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3192. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3193. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3194. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3195. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3196. try
  3197. {
  3198. if (!Directory.Exists(fileBase))
  3199. {
  3200. Directory.CreateDirectory(fileBase);
  3201. }
  3202. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3203. foreach (var fileStream in dto.Files)
  3204. {
  3205. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3206. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3207. {
  3208. Cid = dto.Cid,
  3209. CreateTime = DateTime.Now,
  3210. CreateUserId = dto.Userid,
  3211. Ctable = dto.Ctable,
  3212. Diid = dto.Diid,
  3213. IsDel = 0,
  3214. FilePath = saveFilePath,
  3215. FileName = fileStream.FileName
  3216. };
  3217. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3218. {
  3219. fileStream.CopyTo(fs);
  3220. fs.Flush();
  3221. }
  3222. saveArr.Add(file);
  3223. }
  3224. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3225. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3226. jw = JsonView(true, "保存成功!", new
  3227. {
  3228. count = addResult,
  3229. filesName = saveArr.Select(x => x.FileName)
  3230. }) ;
  3231. }
  3232. catch (Exception ex)
  3233. {
  3234. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3235. {
  3236. count = 0,
  3237. filesName = new string[0],
  3238. }) ;
  3239. }
  3240. return Ok(jw);
  3241. }
  3242. [HttpPost]
  3243. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3244. {
  3245. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid).ToList();
  3246. return Ok(JsonView(true, "success", dbQuery.Select(x => x.FileName)));
  3247. }
  3248. [HttpPost]
  3249. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3250. {
  3251. var jw = JsonView(false);
  3252. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3253. if (groupInfo == null)
  3254. {
  3255. jw.Msg = "团组信息不存在!";
  3256. return Ok(jw);
  3257. }
  3258. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3259. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3260. foreach (var item in dbQuery)
  3261. {
  3262. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3263. {
  3264. byte[] bytes = new byte[fileStream.Length];
  3265. fileStream.Read(bytes, 0, bytes.Length);
  3266. fileStream.Close();
  3267. Stream stream = new MemoryStream(bytes);
  3268. Zips.Add(item.FileName, stream);
  3269. }
  3270. }
  3271. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3272. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3273. if (Zips.Count > 0)
  3274. {
  3275. IOOperatorHelper io = new IOOperatorHelper();
  3276. var byts = io.ConvertZipStream(Zips);
  3277. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3278. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3279. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3280. }
  3281. else
  3282. {
  3283. jw.Msg = "暂无生成文件!";
  3284. }
  3285. return Ok(jw);
  3286. }
  3287. #endregion
  3288. #region 团组英文资料
  3289. /// <summary>
  3290. /// 查询团组英文所有资料
  3291. /// </summary>
  3292. /// <param name="dto"></param>
  3293. /// <returns></returns>
  3294. [HttpPost]
  3295. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3296. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3297. {
  3298. try
  3299. {
  3300. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3301. if (groupData.Code != 0)
  3302. {
  3303. return Ok(JsonView(false, groupData.Msg));
  3304. }
  3305. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3306. }
  3307. catch (Exception ex)
  3308. {
  3309. return Ok(JsonView(false, "程序错误!"));
  3310. throw;
  3311. }
  3312. }
  3313. /// <summary>
  3314. /// 团组英文资料操作(Status:1.新增,2.修改)
  3315. /// </summary>
  3316. /// <param name="dto"></param>
  3317. /// <returns></returns>
  3318. [HttpPost]
  3319. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3320. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3321. {
  3322. try
  3323. {
  3324. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3325. if (groupData.Code != 0)
  3326. {
  3327. return Ok(JsonView(false, groupData.Msg));
  3328. }
  3329. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3330. }
  3331. catch (Exception ex)
  3332. {
  3333. return Ok(JsonView(false, "程序错误!"));
  3334. throw;
  3335. }
  3336. }
  3337. /// <summary>
  3338. /// 团组英文资料Id查询数据
  3339. /// </summary>
  3340. /// <param name="dto"></param>
  3341. /// <returns></returns>
  3342. [HttpPost]
  3343. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3344. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3345. {
  3346. try
  3347. {
  3348. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3349. if (_DelegationEnData != null)
  3350. {
  3351. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3352. }
  3353. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3354. }
  3355. catch (Exception ex)
  3356. {
  3357. return Ok(JsonView(false, "程序错误!"));
  3358. throw;
  3359. }
  3360. }
  3361. /// <summary>
  3362. /// 团组英文资料删除
  3363. /// </summary>
  3364. /// <param name="dto"></param>
  3365. /// <returns></returns>
  3366. [HttpPost]
  3367. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3368. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3369. {
  3370. try
  3371. {
  3372. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3373. if (!res)
  3374. {
  3375. return Ok(JsonView(false, "删除失败"));
  3376. }
  3377. return Ok(JsonView(true, "删除成功!"));
  3378. }
  3379. catch (Exception ex)
  3380. {
  3381. return Ok(JsonView(false, "程序错误!"));
  3382. throw;
  3383. }
  3384. }
  3385. #endregion
  3386. #region 导出邀请函
  3387. /// <summary>
  3388. /// 导出邀请函页面初始化
  3389. /// </summary>
  3390. /// <param name="dto"></param>
  3391. /// <returns></returns>
  3392. [HttpPost]
  3393. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3394. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3395. {
  3396. try
  3397. {
  3398. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3399. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3400. if (dto.DiId == 0)
  3401. {
  3402. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3403. }
  3404. else
  3405. {
  3406. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3407. }
  3408. return Ok(JsonView(true, "查询成功!", new
  3409. {
  3410. deleClient = crm_Deles,
  3411. delegations = grp_Delegations
  3412. }));
  3413. }
  3414. catch (Exception ex)
  3415. {
  3416. return Ok(JsonView(false, "程序错误!"));
  3417. throw;
  3418. }
  3419. }
  3420. /// <summary>
  3421. /// 导出邀请函
  3422. /// </summary>
  3423. /// <param name="dto"></param>
  3424. /// <returns></returns>
  3425. [HttpPost]
  3426. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3427. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3428. {
  3429. #region 参数验证
  3430. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3431. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3432. #endregion
  3433. try
  3434. {
  3435. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3436. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3437. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3438. From Grp_TourClientList tcl
  3439. Left Join
  3440. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3441. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3442. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3443. From Crm_DeleClient dc
  3444. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3445. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3446. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3447. Where dc.IsDel = 0) temp
  3448. On temp.DcId =tcl.ClientId
  3449. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3450. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3451. List<string> texts = new List<string>();
  3452. if (datas.Count != 0)
  3453. {
  3454. foreach (TourClientListDetailsView item in datas)
  3455. {
  3456. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3457. {
  3458. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3459. }
  3460. else
  3461. {
  3462. string name = item.LastName + item.FirstName;
  3463. texts.Add(name);
  3464. }
  3465. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3466. {
  3467. if (!transDic.ContainsKey(item.Job))
  3468. {
  3469. texts.Add(item.Job);
  3470. }
  3471. }
  3472. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3473. {
  3474. texts.Add(item.CompanyFullName);
  3475. }
  3476. }
  3477. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3478. if (transData.Count > 0)
  3479. {
  3480. foreach (TranslateResult item in transData)
  3481. {
  3482. if (!transDic.ContainsKey(item.Query))
  3483. {
  3484. transDic.Add(item.Query, item.Translation);
  3485. }
  3486. }
  3487. }
  3488. List<GuestList> list = new List<GuestList>();
  3489. foreach (TourClientListDetailsView dele in datas)
  3490. {
  3491. GuestList guestList = new GuestList();
  3492. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3493. {
  3494. guestList.Name = dele.Pinyin;
  3495. }
  3496. else
  3497. {
  3498. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3499. guestList.Name = Name;
  3500. }
  3501. if (dele.Sex == 0)
  3502. {
  3503. guestList.Sex = "Male";
  3504. }
  3505. else if (dele.Sex == 1)
  3506. {
  3507. guestList.Sex = "Female";
  3508. }
  3509. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3510. if (!string.IsNullOrEmpty(dele.Job))
  3511. {
  3512. guestList.Job = dele.Job;
  3513. }
  3514. list.Add(guestList);
  3515. }
  3516. //载入模板
  3517. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3518. DocumentBuilder builder = new DocumentBuilder(doc);
  3519. //获取word里所有表格
  3520. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3521. //获取所填表格的序数
  3522. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3523. var rowStart = tableOne.Rows[0]; //获取第1行
  3524. //循环赋值
  3525. for (int i = 0; i < list.Count; i++)
  3526. {
  3527. builder.MoveToCell(0, i + 1, 0, 0);
  3528. builder.Write(list[i].Name.ToString());
  3529. builder.MoveToCell(0, i + 1, 1, 0);
  3530. builder.Write(list[i].Sex.ToString());
  3531. builder.MoveToCell(0, i + 1, 2, 0);
  3532. builder.Write(list[i].DOB.ToString());
  3533. builder.MoveToCell(0, i + 1, 3, 0);
  3534. builder.Write(list[i].Job.ToString());
  3535. }
  3536. //删除多余行
  3537. while (tableOne.Rows.Count > list.Count + 1)
  3538. {
  3539. tableOne.Rows.RemoveAt(list.Count + 1);
  3540. }
  3541. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3542. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3543. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3544. doc.Save(filePath);
  3545. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3546. return Ok(JsonView(true, "操作成功!", Url));
  3547. }
  3548. else
  3549. {
  3550. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3551. }
  3552. }
  3553. catch (Exception ex)
  3554. {
  3555. return Ok(JsonView(false, ex.Message));
  3556. throw;
  3557. }
  3558. }
  3559. #endregion
  3560. #region 团组经理模块 出入境费用
  3561. ///// <summary>
  3562. ///// 团组模块 - 出入境费用
  3563. ///// </summary>
  3564. ///// <returns></returns>
  3565. //[HttpPost]
  3566. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3567. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3568. //{
  3569. // try
  3570. // {
  3571. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3572. // if (data.Code != 0)
  3573. // {
  3574. // return Ok(JsonView(false, data.Msg));
  3575. // }
  3576. // return Ok(JsonView(true, "查询成功!"));
  3577. // }
  3578. // catch (Exception ex)
  3579. // {
  3580. // return Ok(JsonView(false, ex.Message));
  3581. // throw;
  3582. // }
  3583. //}
  3584. /// <summary>
  3585. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3586. /// </summary>
  3587. /// <returns></returns>
  3588. [HttpPost]
  3589. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3590. public async Task<IActionResult> SetDayAndCostAreaChange()
  3591. {
  3592. try
  3593. {
  3594. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3595. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3596. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3597. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3598. foreach (var item in unite) //处理交集数据
  3599. {
  3600. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3601. }
  3602. foreach (var item in merge) //处理差集数据
  3603. {
  3604. int nationalTravelFeeId = 0;
  3605. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3606. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3607. else
  3608. {
  3609. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3610. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3611. }
  3612. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3613. }
  3614. //只更新dayAndCost 的 nationalTravelFeeId;
  3615. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3616. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3617. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3618. }
  3619. catch (Exception ex)
  3620. {
  3621. return Ok(JsonView(false, ex.Message));
  3622. throw;
  3623. }
  3624. }
  3625. /// <summary>
  3626. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3627. /// </summary>
  3628. /// <returns></returns>
  3629. [HttpPost]
  3630. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3631. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3632. {
  3633. try
  3634. {
  3635. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3636. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3637. //SetDataInfoView
  3638. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3639. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3640. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3641. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3642. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3643. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3644. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3645. //默认币种显示
  3646. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3647. {
  3648. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3649. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3650. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3651. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3652. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3653. };
  3654. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3655. if (_currencyRate.Count > 0)
  3656. {
  3657. foreach (var item in _currencyInfos)
  3658. {
  3659. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3660. if (rateInfo != null)
  3661. {
  3662. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3663. rate1 *= 1.035M;
  3664. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3665. }
  3666. }
  3667. }
  3668. return Ok(JsonView(true, "查询成功!", new
  3669. {
  3670. GroupNameData = groupNameData.Data,
  3671. CurrencyData = _CurrencyData,
  3672. WordTypeData = _WordTypeData,
  3673. ExcelTypeData = _ExcelTypeData,
  3674. CurrencyInit = _currencyInfos
  3675. }));
  3676. }
  3677. catch (Exception ex)
  3678. {
  3679. return Ok(JsonView(false, ex.Message));
  3680. throw;
  3681. }
  3682. }
  3683. /// <summary>
  3684. /// 团组模块 - 出入境费用
  3685. /// 实时汇率 tips
  3686. /// 签证费用 tips
  3687. /// </summary>
  3688. /// <returns></returns>
  3689. [HttpPost]
  3690. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3691. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3692. {
  3693. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3694. //默认币种显示
  3695. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3696. {
  3697. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3698. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3699. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3700. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3701. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3702. };
  3703. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3704. List<dynamic> reteInfos = new List<dynamic>();
  3705. if (_currencyRate.Count > 0)
  3706. {
  3707. foreach (var item in _currencyInfos)
  3708. {
  3709. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3710. if (rateInfo != null)
  3711. {
  3712. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3713. decimal rate1 = item.Rate;
  3714. rate1 *= 1.03M;
  3715. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3716. reteInfos.Add(new
  3717. {
  3718. currCode = item.CurrencyCode,
  3719. currName = item.CurrencyName,
  3720. rate = rate2,
  3721. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3722. });
  3723. }
  3724. }
  3725. }
  3726. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3727. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3728. return Ok(JsonView(true, "查询成功!", new
  3729. {
  3730. //GroupNameData = groupNameData.Data,
  3731. visaData = visaData.Data,
  3732. airData = airData.Data,
  3733. reteInfos = reteInfos
  3734. }));
  3735. }
  3736. /// <summary>
  3737. /// 团组模块 - 出入境费用 - Info
  3738. /// </summary>
  3739. /// <returns></returns>
  3740. [HttpPost]
  3741. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3742. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3743. {
  3744. try
  3745. {
  3746. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3747. if (data.Code != 0)
  3748. {
  3749. return Ok(JsonView(false, data.Msg));
  3750. }
  3751. return Ok(JsonView(true, "查询成功!", data.Data));
  3752. }
  3753. catch (Exception ex)
  3754. {
  3755. return Ok(JsonView(false, ex.Message));
  3756. }
  3757. }
  3758. /// <summary>
  3759. /// 团组模块 - 出入境费用 - Add And Update
  3760. /// </summary>
  3761. /// <returns></returns>
  3762. [HttpPost]
  3763. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3764. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3765. {
  3766. try
  3767. {
  3768. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3769. if (data.Code != 0)
  3770. {
  3771. return Ok(JsonView(false, data.Msg));
  3772. }
  3773. //生成默认文件pdf并且通知人员
  3774. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3775. {
  3776. DiId = dto.DiId,
  3777. ExportType = 1,
  3778. SubTypeId = 1005
  3779. }, "pdf");
  3780. //发送通知
  3781. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3782. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3783. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3784. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3785. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3786. return Ok(JsonView(true, data.Msg, data.Data));
  3787. }
  3788. catch (Exception ex)
  3789. {
  3790. return Ok(JsonView(false, ex.Message));
  3791. }
  3792. }
  3793. /// <summary>
  3794. /// 团组模块 - 出入境费用 - Confirm 费用
  3795. /// </summary>
  3796. /// <returns></returns>
  3797. [HttpPost]
  3798. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3799. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3800. {
  3801. //TODO:测试完毕需把对应的用户ID更改
  3802. //1、数据表添加字段
  3803. //2、更改字段接口()
  3804. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3805. //3、确认成功 给财务发送消息
  3806. if (_view.Code == 200)
  3807. {
  3808. if (dto.Type == 1)
  3809. {
  3810. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  3811. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  3812. }
  3813. }
  3814. return Ok(_view);
  3815. }
  3816. /// <summary>
  3817. /// 团组模块 - 出入境费用 - File downlaod
  3818. /// </summary>
  3819. /// <param name="dto"></param>
  3820. /// <returns></returns>
  3821. [HttpPost]
  3822. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3823. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3824. {
  3825. try
  3826. {
  3827. if (dto.DiId < 1)
  3828. {
  3829. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3830. }
  3831. if (dto.ExportType < 1)
  3832. {
  3833. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3834. }
  3835. if (dto.SubTypeId < 1)
  3836. {
  3837. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3838. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3839. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3840. 3 团组成员名单 1 团组成员名单"));
  3841. }
  3842. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3843. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3844. if (_EnterExitCosts == null)
  3845. {
  3846. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3847. }
  3848. //数据源
  3849. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3850. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3851. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3852. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3853. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3854. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3855. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3856. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3857. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3858. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3859. .Select((tcl, dc, cc) => new
  3860. {
  3861. Name = dc.LastName + dc.FirstName,
  3862. Sex = dc.Sex,
  3863. Birthday = dc.BirthDay,
  3864. Company = cc.CompanyFullName,
  3865. Job = dc.Job
  3866. })
  3867. .ToList();
  3868. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3869. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3870. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3871. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3872. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3873. if (dto.ExportType == 1) //明细表
  3874. {
  3875. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3876. {
  3877. //获取模板
  3878. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3879. //载入模板
  3880. Document doc = new Document(tempPath);
  3881. DocumentBuilder builder = new DocumentBuilder(doc);
  3882. //利用键值对存放数据
  3883. Dictionary<string, string> dic = new Dictionary<string, string>();
  3884. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3885. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3886. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3887. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3888. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3889. string row1_1 = "";
  3890. if (_EnterExitCosts.Visa > 0)
  3891. {
  3892. //insidePayTotal += _EnterExitCosts.Visa;
  3893. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3894. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3895. {
  3896. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3897. }
  3898. }
  3899. string row1_2 = "";
  3900. if (_EnterExitCosts.YiMiao > 0)
  3901. {
  3902. //insidePayTotal += _EnterExitCosts.YiMiao;
  3903. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3904. }
  3905. if (_EnterExitCosts.HeSuan > 0)
  3906. {
  3907. //insidePayTotal += _EnterExitCosts.HeSuan;
  3908. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  3909. }
  3910. if (_EnterExitCosts.Service > 0)
  3911. {
  3912. //insidePayTotal += _EnterExitCosts.Service;
  3913. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  3914. }
  3915. string row1_3 = "";
  3916. if (_EnterExitCosts.Safe > 0)
  3917. {
  3918. //insidePayTotal += _EnterExitCosts.Safe;
  3919. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  3920. }
  3921. if (_EnterExitCosts.Ticket > 0)
  3922. {
  3923. //insidePayTotal += _EnterExitCosts.Ticket;
  3924. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  3925. }
  3926. string row1 = "";
  3927. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  3928. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  3929. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  3930. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  3931. dic.Add("Row1Str", row1);
  3932. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  3933. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  3934. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3935. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  3936. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3937. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  3938. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  3939. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  3940. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  3941. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  3942. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  3943. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  3944. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  3945. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  3946. #region 填充word模板书签内容
  3947. foreach (var key in dic.Keys)
  3948. {
  3949. builder.MoveToBookmark(key);
  3950. builder.Write(dic[key]);
  3951. }
  3952. #endregion
  3953. #region 填充word表格内容
  3954. ////获读取指定表格方法二
  3955. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3956. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3957. for (int i = 0; i < dac1.Count; i++)
  3958. {
  3959. Grp_DayAndCost dac = dac1[i];
  3960. if (dac == null) continue;
  3961. builder.MoveToCell(0, i, 0, 0);
  3962. builder.Write("第" + dac.Days.ToString() + "晚:");
  3963. builder.MoveToCell(0, i, 1, 0);
  3964. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  3965. //builder.Write(dac.Place == null ? "" : dac.Place);
  3966. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3967. builder.MoveToCell(0, i, 2, 0);
  3968. builder.Write("费用标准:");
  3969. string curr = "";
  3970. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3971. if (currData != null)
  3972. {
  3973. curr = currData.Name;
  3974. }
  3975. builder.MoveToCell(0, i, 3, 0);
  3976. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3977. builder.MoveToCell(0, i, 4, 0);
  3978. builder.Write("费用小计:");
  3979. builder.MoveToCell(0, i, 5, 0);
  3980. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3981. }
  3982. //删除多余行
  3983. while (table1.Rows.Count > dac1.Count)
  3984. {
  3985. table1.Rows.RemoveAt(dac1.Count);
  3986. }
  3987. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  3988. for (int i = 0; i < dac2.Count; i++)
  3989. {
  3990. Grp_DayAndCost dac = dac2[i];
  3991. if (dac == null) continue;
  3992. builder.MoveToCell(1, i, 0, 0);
  3993. builder.Write("第" + dac.Days.ToString() + "天:");
  3994. builder.MoveToCell(1, i, 1, 0);
  3995. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3996. builder.MoveToCell(1, i, 2, 0);
  3997. builder.Write("费用标准:");
  3998. string curr = "";
  3999. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4000. if (currData != null)
  4001. {
  4002. curr = currData.Name;
  4003. }
  4004. builder.MoveToCell(1, i, 3, 0);
  4005. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4006. builder.MoveToCell(1, i, 4, 0);
  4007. builder.Write("费用小计:");
  4008. builder.MoveToCell(1, i, 5, 0);
  4009. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4010. }
  4011. //删除多余行
  4012. while (table2.Rows.Count > dac2.Count)
  4013. {
  4014. table2.Rows.RemoveAt(dac2.Count);
  4015. }
  4016. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4017. for (int i = 0; i < dac3.Count; i++)
  4018. {
  4019. Grp_DayAndCost dac = dac3[i];
  4020. if (dac == null) continue;
  4021. builder.MoveToCell(2, i, 0, 0);
  4022. builder.Write("第" + dac.Days.ToString() + "天:");
  4023. builder.MoveToCell(2, i, 1, 0);
  4024. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4025. builder.MoveToCell(2, i, 2, 0);
  4026. builder.Write("费用标准:");
  4027. string curr = "";
  4028. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4029. if (currData != null)
  4030. {
  4031. curr = currData.Name;
  4032. }
  4033. builder.MoveToCell(2, i, 3, 0);
  4034. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4035. builder.MoveToCell(2, i, 4, 0);
  4036. builder.Write("费用小计:");
  4037. builder.MoveToCell(2, i, 5, 0);
  4038. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4039. }
  4040. //删除多余行
  4041. while (table3.Rows.Count > dac3.Count)
  4042. {
  4043. table3.Rows.RemoveAt(dac3.Count);
  4044. }
  4045. #endregion
  4046. //文件名
  4047. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4048. AsposeHelper.removewatermark_v2180();
  4049. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4050. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4051. return Ok(JsonView(true, "成功", new { Url = url }));
  4052. }
  4053. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4054. {
  4055. //获取模板
  4056. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4057. //载入模板
  4058. Document doc = new Document(tempPath);
  4059. DocumentBuilder builder = new DocumentBuilder(doc);
  4060. Dictionary<string, string> dic = new Dictionary<string, string>();
  4061. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4062. {
  4063. List<string> list = new List<string>();
  4064. try
  4065. {
  4066. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4067. foreach (var item in spilitArr)
  4068. {
  4069. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4070. var depCode = spDotandEmpty[2].Substring(0, 3);
  4071. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4072. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4073. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4074. list.Add(depName);
  4075. list.Add(arrName);
  4076. }
  4077. list = list.Distinct().ToList();
  4078. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4079. }
  4080. catch (Exception)
  4081. {
  4082. dic.Add("ReturnCode", "行程录入不正确!");
  4083. }
  4084. }
  4085. else
  4086. {
  4087. dic.Add("ReturnCode", "未录入行程!");
  4088. }
  4089. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4090. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4091. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4092. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4093. {
  4094. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4095. dic.Add("Day", sp.Days.ToString());
  4096. }
  4097. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4098. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4099. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4100. //dic.Add("Names", Names);
  4101. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4102. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4103. decimal dac1totalPrice = 0.00M;
  4104. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4105. foreach (var dac in dac1)
  4106. {
  4107. if (dac.SubTotal == 0.00M)
  4108. {
  4109. continue;
  4110. }
  4111. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4112. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4113. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4114. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4115. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4116. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4117. builder.Write(currency);//币种
  4118. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4119. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4120. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4121. builder.Write("");//人数
  4122. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4123. builder.Write("");//天数
  4124. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4125. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4126. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4127. decimal rate = 0.00M;
  4128. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4129. builder.Write(rate.ToString("#0.0000"));//汇率
  4130. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4131. decimal rbmPrice = dac.SubTotal;
  4132. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4133. accommodationStartIndex++;
  4134. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4135. }
  4136. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4137. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4138. {
  4139. table1.Rows.RemoveAt(i - 1);
  4140. foodandotherStartIndex--;
  4141. }
  4142. if (dac2.Count == dac3.Count)//国家 币种 金额
  4143. {
  4144. for (int i = 0; i < dac2.Count; i++)
  4145. {
  4146. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4147. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4148. }
  4149. }
  4150. decimal dac2totalPrice = 0.00M;
  4151. foreach (var dac in dac2)
  4152. {
  4153. if (dac.SubTotal == 0)
  4154. {
  4155. continue;
  4156. }
  4157. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4158. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4159. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4160. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4161. builder.Write(currency);//币种
  4162. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4163. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4164. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4165. builder.Write("");//人数
  4166. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4167. builder.Write("");//天数
  4168. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4169. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4170. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4171. decimal rate = 0.00M;
  4172. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4173. builder.Write(rate.ToString("#0.0000"));//汇率
  4174. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4175. decimal rbmPrice = dac.SubTotal;
  4176. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4177. foodandotherStartIndex++;
  4178. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4179. }
  4180. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4181. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4182. {
  4183. table1.Rows.RemoveAt(i - 1);
  4184. }
  4185. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4186. string otherFeeStr = "";
  4187. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4188. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4189. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4190. if (otherFeeStr.Length > 0)
  4191. {
  4192. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4193. otherFeeStr = $"({otherFeeStr})";
  4194. dic.Add("OtherFeeStr", otherFeeStr);
  4195. }
  4196. //总计
  4197. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4198. //国际旅费
  4199. string outsideJJ = "";
  4200. string allPriceJJ = "";
  4201. if (_EnterExitCosts.SumJJC == 1)
  4202. {
  4203. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4204. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4205. }
  4206. string outsideGW = "";
  4207. string allPriceGW = "";
  4208. if (_EnterExitCosts.SumGWC == 1)
  4209. {
  4210. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4211. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4212. }
  4213. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4214. {
  4215. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4216. dic.Add("InTravelPrice", InTravelPriceStr);
  4217. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4218. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4219. }
  4220. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4221. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4222. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4223. foreach (var key in dic.Keys)
  4224. {
  4225. builder.MoveToBookmark(key);
  4226. builder.Write(dic[key]);
  4227. }
  4228. //模板文件名
  4229. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4230. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4231. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4232. return Ok(JsonView(true, "成功", new { Url = url }));
  4233. }
  4234. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4235. {
  4236. //获取模板
  4237. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4238. //载入模板
  4239. WorkbookDesigner designer = new WorkbookDesigner();
  4240. designer.Workbook = new Workbook(tempPath);
  4241. Dictionary<string, string> dic = new Dictionary<string, string>();
  4242. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4243. {
  4244. List<string> list = new List<string>();
  4245. try
  4246. {
  4247. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4248. foreach (var item in spilitArr)
  4249. {
  4250. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4251. var depCode = spDotandEmpty[2].Substring(0, 3);
  4252. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4253. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4254. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4255. list.Add(depName);
  4256. list.Add(arrName);
  4257. }
  4258. list = list.Distinct().ToList();
  4259. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4260. }
  4261. catch (Exception)
  4262. {
  4263. dic.Add("ReturnCode", "行程录入不正确!");
  4264. }
  4265. }
  4266. else
  4267. {
  4268. dic.Add("ReturnCode", "未录入行程!");
  4269. }
  4270. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4271. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4272. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4273. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4274. {
  4275. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4276. dic.Add("Day", sp.Days.ToString());
  4277. }
  4278. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4279. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4280. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4281. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4282. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4283. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4284. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4285. designer.SetDataSource("Name", Names);
  4286. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4287. designer.SetDataSource("Day", dic["Day"] + "天");
  4288. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4289. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4290. int startIndex = 10;
  4291. const int startIndexcopy = 10;
  4292. if (dac2.Count == dac3.Count)//国家 币种 金额
  4293. {
  4294. for (int i = 0; i < dac2.Count; i++)
  4295. {
  4296. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4297. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4298. }
  4299. }
  4300. DataTable dtdac1 = new DataTable();
  4301. List<string> place = new List<string>();
  4302. dtdac1.Columns.AddRange(new DataColumn[] {
  4303. new DataColumn(){ ColumnName = "city"},
  4304. new DataColumn(){ ColumnName = "curr"},
  4305. new DataColumn(){ ColumnName = "criterion"},
  4306. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4307. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4308. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4309. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4310. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4311. });
  4312. DataTable dtdac2 = new DataTable();
  4313. dtdac2.Columns.AddRange(new DataColumn[] {
  4314. new DataColumn(){ ColumnName = "city"},
  4315. new DataColumn(){ ColumnName = "curr"},
  4316. new DataColumn(){ ColumnName = "criterion"},
  4317. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4318. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4319. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4320. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4321. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4322. });
  4323. dtdac1.TableName = "tb1";
  4324. dtdac2.TableName = "tb2";
  4325. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4326. foreach (var item in dac1)
  4327. {
  4328. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4329. if (place.Contains(item.Place))
  4330. {
  4331. continue;
  4332. }
  4333. DataRow row = dtdac1.NewRow();
  4334. row["city"] = item.Place;
  4335. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4336. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4337. row["curr"] = currency;
  4338. row["rate"] = rate.ToString("#0.0000");
  4339. row["criterion"] = item.Cost.ToString("#0.00");
  4340. row["number"] = 1;
  4341. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4342. //row["costRMB"] = rbmPrice;
  4343. dtdac1.Rows.Add(row);
  4344. place.Add(item.Place);
  4345. }
  4346. place = new List<string>();
  4347. foreach (var item in dac2)
  4348. {
  4349. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4350. if (place.Contains(item.Place))
  4351. {
  4352. continue;
  4353. }
  4354. DataRow row = dtdac2.NewRow();
  4355. row["city"] = item.Place;
  4356. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4357. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4358. row["curr"] = currency;
  4359. row["rate"] = rate.ToString("#0.0000");
  4360. row["criterion"] = item.Cost.ToString("#0.00");
  4361. row["number"] = 1;
  4362. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4363. //row["cost"] = item.SubTotal;
  4364. //row["costRMB"] = rbmPrice;
  4365. dtdac2.Rows.Add(row);
  4366. place.Add(item.Place);
  4367. //dac2totalPrice += rbmPrice;
  4368. }
  4369. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4370. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4371. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4372. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4373. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4374. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4375. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4376. string cellStr = $" 5.其他费用(";
  4377. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4378. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4379. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4380. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4381. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4382. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4383. if (cellStr.Length > 8)
  4384. {
  4385. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4386. }
  4387. cellStr += ")";
  4388. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4389. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4390. decimal pxFee = dac4.Sum(it => it.Cost);
  4391. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4392. string celllastStr1 = "";
  4393. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4394. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4395. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4396. celllastStr1 += $",国际旅费 元";
  4397. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4398. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4399. designer.SetDataSource("cell4Str", cell4Str);
  4400. designer.SetDataSource("cellStr", cellStr);
  4401. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4402. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4403. designer.SetDataSource("celllastStr", celllastStr);
  4404. Workbook wb = designer.Workbook;
  4405. var sheet = wb.Worksheets[0];
  4406. //绑定datatable数据集
  4407. designer.SetDataSource(dtdac1);
  4408. designer.SetDataSource(dtdac2);
  4409. designer.Process();
  4410. var rowStart = dtdac1.Rows.Count;
  4411. while (rowStart > 0)
  4412. {
  4413. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4414. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4415. startIndex++;
  4416. rowStart--;
  4417. }
  4418. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4419. startIndex += 1; //总计行
  4420. rowStart = dtdac2.Rows.Count;
  4421. while (rowStart > 0)
  4422. {
  4423. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4424. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4425. startIndex++;
  4426. rowStart--;
  4427. }
  4428. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4429. wb.CalculateFormula(true);
  4430. //模板文件名
  4431. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4432. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4433. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4434. return Ok(JsonView(true, "成功", new { Url = url }));
  4435. }
  4436. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4437. {
  4438. //获取模板
  4439. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4440. //载入模板
  4441. Document doc = new Document(tempPath);
  4442. DocumentBuilder builder = new DocumentBuilder(doc);
  4443. Dictionary<string, string> dic = new Dictionary<string, string>();
  4444. dic.Add("GroupName", _DelegationInfo.TeamName);
  4445. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4446. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4447. string missionLeaderJob = "";//负责人job
  4448. int groupNumber = 0; //团人数
  4449. if (DeleClientList.Count > 0)
  4450. {
  4451. missionLeader = DeleClientList[0]?.Name ?? "";
  4452. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4453. }
  4454. dic.Add("MissionLeader", missionLeader); //团负责人
  4455. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4456. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4457. #region MyRegion
  4458. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4459. //{
  4460. // List<string> list = new List<string>();
  4461. // try
  4462. // {
  4463. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4464. // foreach (var item in spilitArr)
  4465. // {
  4466. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4467. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4468. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4469. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4470. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4471. // list.Add(depName);
  4472. // list.Add(arrName);
  4473. // }
  4474. // list = list.Distinct().ToList();
  4475. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4476. // }
  4477. // catch (Exception)
  4478. // {
  4479. // dic.Add("ReturnCode", "行程录入不正确!");
  4480. // }
  4481. //}
  4482. //else
  4483. //{
  4484. // dic.Add("ReturnCode", "未录入行程!");
  4485. //}
  4486. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4487. dic.Add("ReturnCode", string.Join("、", countrys));
  4488. #endregion
  4489. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4490. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4491. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4492. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4493. //{
  4494. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4495. // dic.Add("Day", sp.Days.ToString());
  4496. //}
  4497. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4498. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4499. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4500. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4501. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4502. //培训人员名单
  4503. int cultivateRowIndex = 7;
  4504. foreach (var item in DeleClientList)
  4505. {
  4506. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4507. builder.Write(item.Name);
  4508. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4509. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4510. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4511. string birthDay = "";
  4512. if (item.Birthday != null)
  4513. {
  4514. DateTime dt = Convert.ToDateTime(item.Birthday);
  4515. birthDay = $"{dt.Year}.{dt.Month}";
  4516. }
  4517. builder.Write(birthDay);
  4518. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4519. builder.Write(item.Company);
  4520. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4521. builder.Write(item.Job);
  4522. cultivateRowIndex++;
  4523. }
  4524. //删除多余行
  4525. //cultivateRowIndex -= 2;
  4526. int delRows = 10 + 7 - cultivateRowIndex;
  4527. if (delRows > 0)
  4528. {
  4529. for (int i = 0; i < delRows; i++)
  4530. {
  4531. table1.Rows.RemoveAt(cultivateRowIndex);
  4532. //cultivateRowIndex++;
  4533. }
  4534. }
  4535. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4536. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4537. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4538. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4539. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4540. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4541. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4542. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4543. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4544. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4545. //其他费用
  4546. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4547. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4548. //其他费用合计
  4549. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4550. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4551. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4552. //公务舱合计
  4553. //国际旅费
  4554. string outsideJJ = "";
  4555. string allPriceJJ = "";
  4556. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4557. {
  4558. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4559. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4560. }
  4561. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4562. {
  4563. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4564. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4565. }
  4566. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4567. {
  4568. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4569. dic.Add("AirFeeTotal", airFeeTotalStr);
  4570. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4571. dic.Add("FeeTotal", feeTotalStr);
  4572. }
  4573. foreach (var key in dic.Keys)
  4574. {
  4575. builder.MoveToBookmark(key);
  4576. builder.Write(dic[key]);
  4577. }
  4578. //模板文件名
  4579. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4580. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4581. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4582. return Ok(JsonView(true, "成功", new { Url = url }));
  4583. }
  4584. }
  4585. else if (dto.ExportType == 2) //表格
  4586. {
  4587. //利用键值对存放数据
  4588. Dictionary<string, string> dic = new Dictionary<string, string>();
  4589. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4590. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4591. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4592. dic.Add("Day", sp.Days.ToString());
  4593. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4594. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4595. {
  4596. //获取模板
  4597. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4598. //载入模板
  4599. Document doc = new Document(tempPath);
  4600. DocumentBuilder builder = new DocumentBuilder(doc);
  4601. dic.Add("TeamName", _DelegationInfo.TeamName);
  4602. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4603. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4604. string missionLeaderName = "",
  4605. missionLeaderJob = "";
  4606. if (DeleClientList.Count > 0)
  4607. {
  4608. missionLeaderName = DeleClientList[0].Name;
  4609. missionLeaderJob = DeleClientList[0].Job;
  4610. }
  4611. dic.Add("MissionLeaderName", missionLeaderName);
  4612. dic.Add("MissionLeaderJob", missionLeaderJob);
  4613. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4614. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4615. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4616. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4617. int rowCount = 10;//总人数行
  4618. int startRowIndex = 7; //起始行
  4619. for (int i = 0; i < DeleClientList.Count; i++)
  4620. {
  4621. builder.MoveToCell(0, startRowIndex, 0, 0);
  4622. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4623. builder.MoveToCell(0, startRowIndex, 1, 0);
  4624. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4625. builder.Write(sex);//性别
  4626. builder.MoveToCell(0, startRowIndex, 2, 0);
  4627. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4628. builder.MoveToCell(0, startRowIndex, 3, 0);
  4629. builder.Write(DeleClientList[i].Company);//工作单位
  4630. builder.MoveToCell(0, startRowIndex, 4, 0);
  4631. builder.Write(DeleClientList[i].Job);//职务及级别
  4632. builder.MoveToCell(0, startRowIndex, 5, 0);
  4633. builder.Write("");//人员属性
  4634. builder.MoveToCell(0, startRowIndex, 6, 0);
  4635. builder.Write("");//上次出国时间
  4636. startRowIndex++;
  4637. }
  4638. int nullRow = rowCount - DeleClientList.Count;//空行
  4639. for (int i = 0; i < nullRow; i++)
  4640. {
  4641. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4642. }
  4643. foreach (var key in dic.Keys)
  4644. {
  4645. builder.MoveToBookmark(key);
  4646. builder.Write(dic[key]);
  4647. }
  4648. //模板文件名
  4649. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4650. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4651. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4652. return Ok(JsonView(true, "成功", new { Url = url }));
  4653. }
  4654. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4655. {
  4656. //获取模板
  4657. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4658. //载入模板
  4659. Document doc = new Document(tempPath);
  4660. DocumentBuilder builder = new DocumentBuilder(doc);
  4661. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4662. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4663. dic.Add("Names", Names);
  4664. int accommodationRows = 12, foodandotherRows = 12;
  4665. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4666. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4667. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4668. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4669. int accommodationStartIndex = 6;
  4670. decimal dac1totalPrice = 0.00M;
  4671. foreach (var dac in dac1)
  4672. {
  4673. if (dac.SubTotal == 0)
  4674. {
  4675. continue;
  4676. }
  4677. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4678. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4679. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4680. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4681. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4682. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4683. builder.Write(currency);//币种
  4684. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4685. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4686. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4687. builder.Write("");//人数
  4688. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4689. builder.Write("");//天数
  4690. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4691. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4692. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4693. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4694. builder.Write(rate.ToString("#0.0000"));//汇率
  4695. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4696. decimal rbmPrice = rate * dac.SubTotal;
  4697. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4698. accommodationStartIndex++;
  4699. dac1totalPrice += rbmPrice;
  4700. }
  4701. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4702. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4703. builder.Write("小计");
  4704. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4705. builder.Write(dac1totalPrice.ToString("#0.00"));
  4706. accommodationStartIndex++;
  4707. int nullRow = accommodationRows - dac1.Count;
  4708. //删除空行
  4709. //if (nullRow > 0)
  4710. //{
  4711. // int rowIndex = accommodationStartIndex;
  4712. // for (int i = 0; i < nullRow; i++)
  4713. // {
  4714. // Row row = table1.Rows[rowIndex];
  4715. // row.Remove();
  4716. // rowIndex++;
  4717. // }
  4718. //}
  4719. if (dac2.Count == dac3.Count)//国家 币种 金额
  4720. {
  4721. for (int i = 0; i < dac2.Count; i++)
  4722. {
  4723. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4724. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4725. }
  4726. }
  4727. int foodandotherStartIndex = 19;//
  4728. decimal dac2totalPrice = 0.00M;
  4729. foreach (var dac in dac2)
  4730. {
  4731. if (dac.SubTotal == 0)
  4732. {
  4733. continue;
  4734. }
  4735. //foodandotherStartIndex = 12;
  4736. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4737. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4738. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4739. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4740. builder.Write(currency);//币种
  4741. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4742. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4743. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4744. builder.Write("");//人数
  4745. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4746. builder.Write("");//天数
  4747. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4748. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4749. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4750. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4751. builder.Write(rate.ToString("#0.0000"));//汇率
  4752. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4753. decimal rbmPrice = rate * dac.SubTotal;
  4754. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4755. foodandotherStartIndex++;
  4756. dac2totalPrice += rbmPrice;
  4757. }
  4758. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4759. //删除空行
  4760. if (dac2.Count < foodandotherRows)
  4761. {
  4762. //int nullRow = accommodationRows - dac2.Count;
  4763. //while (table2.Rows.Count > dac2.Count)
  4764. //{
  4765. // table2.Rows.RemoveAt(dac2.Count);
  4766. //}
  4767. }
  4768. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4769. string otherFeeStr = "";
  4770. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4771. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4772. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4773. if (otherFeeStr.Length > 0)
  4774. {
  4775. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4776. otherFeeStr = $"({otherFeeStr})";
  4777. dic.Add("OtherFeeStr", otherFeeStr);
  4778. }
  4779. foreach (var key in dic.Keys)
  4780. {
  4781. builder.MoveToBookmark(key);
  4782. builder.Write(dic[key]);
  4783. }
  4784. //模板文件名
  4785. string strFileName = $"省级单位出(境)经费报销单.docx";
  4786. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4787. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4788. return Ok(JsonView(true, "成功", new { Url = url }));
  4789. }
  4790. }
  4791. else if (dto.ExportType == 3)
  4792. {
  4793. if (dto.SubTypeId == 1) //团组成员名单
  4794. {
  4795. if (DeleClientList.Count < 1)
  4796. {
  4797. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4798. }
  4799. //获取模板
  4800. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4801. //载入模板
  4802. Document doc = new Document(tempPath);
  4803. DocumentBuilder builder = new DocumentBuilder(doc);
  4804. //获取word里所有表格
  4805. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4806. //获取所填表格的序数
  4807. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4808. var rowStart = tableOne.Rows[0]; //获取第1行
  4809. //循环赋值
  4810. for (int i = 0; i < DeleClientList.Count; i++)
  4811. {
  4812. builder.MoveToCell(0, i + 1, 0, 0);
  4813. builder.Write(DeleClientList[i].Name);
  4814. builder.MoveToCell(0, i + 1, 1, 0);
  4815. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4816. builder.Write(sex);
  4817. builder.MoveToCell(0, i + 1, 2, 0);
  4818. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4819. builder.MoveToCell(0, i + 1, 3, 0);
  4820. builder.Write(DeleClientList[i].Company);
  4821. builder.MoveToCell(0, i + 1, 4, 0);
  4822. builder.Write(DeleClientList[i].Job);
  4823. }
  4824. //删除多余行
  4825. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4826. {
  4827. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4828. }
  4829. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4830. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4831. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4832. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4833. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4834. return Ok(JsonView(true, "成功", new { Url = url }));
  4835. }
  4836. }
  4837. return Ok(JsonView(false, "操作失败!"));
  4838. }
  4839. catch (Exception ex)
  4840. {
  4841. return Ok(JsonView(false, ex.Message));
  4842. }
  4843. }
  4844. /// <summary>
  4845. /// 获取三公费用标准city
  4846. /// </summary>
  4847. /// <param name="placeData"></param>
  4848. /// <param name="nationalTravelFeeId"></param>
  4849. /// <returns></returns>
  4850. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4851. {
  4852. string _city = string.Empty;
  4853. if (placeData.Count < 1) return _city;
  4854. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4855. if (data == null) return _city;
  4856. string country = data.Country;
  4857. string city = data.City;
  4858. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4859. else _city = city;
  4860. return _city;
  4861. }
  4862. /// <summary>
  4863. /// 团组模块 - 出入境费用 - 明细表导出
  4864. /// </summary>
  4865. /// <returns></returns>
  4866. [HttpPost]
  4867. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4868. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4869. {
  4870. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4871. if (data.Code != 0)
  4872. {
  4873. return Ok(JsonView(false, data.Msg));
  4874. }
  4875. return Ok(JsonView(true, data.Msg, data.Data));
  4876. }
  4877. /// <summary>
  4878. /// 团组模块 - 出入境费用 - 一键清空
  4879. /// </summary>
  4880. /// <returns></returns>
  4881. [HttpPost]
  4882. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4883. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4884. {
  4885. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4886. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4887. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4888. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4889. if (_view.Code == 0)
  4890. {
  4891. return Ok(JsonView(true, "操作成功"));
  4892. }
  4893. return Ok(JsonView(false, "操作失败"));
  4894. }
  4895. /// <summary>
  4896. /// 团组模块 - 出入境费用 - 子项删除
  4897. /// </summary>
  4898. /// <returns></returns>
  4899. [HttpPost]
  4900. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4901. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4902. {
  4903. try
  4904. {
  4905. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4906. if (data.Code != 0)
  4907. {
  4908. return Ok(JsonView(false, data.Msg));
  4909. }
  4910. return Ok(JsonView(true, "操作成功!", data.Data));
  4911. }
  4912. catch (Exception ex)
  4913. {
  4914. return Ok(JsonView(false, ex.Message));
  4915. }
  4916. }
  4917. /// <summary>
  4918. /// 团组模块 - 出入境国家费用标准 List
  4919. /// </summary>
  4920. /// <returns></returns>
  4921. [HttpPost]
  4922. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4923. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  4924. {
  4925. try
  4926. {
  4927. Stopwatch sw = new Stopwatch();
  4928. sw.Start();
  4929. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  4930. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4931. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4932. Where gntf.Isdel = 0");
  4933. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  4934. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  4935. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  4936. //foreach (var item in nationalTravel)
  4937. //{
  4938. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  4939. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  4940. // if (otherData != null)
  4941. // {
  4942. // cityData.Remove(otherData);
  4943. // cityData.Add(otherData);
  4944. // }
  4945. // nationalTravelFeeData1.Add(new
  4946. // {
  4947. // Country = item.Country,
  4948. // CityData = cityData
  4949. // });
  4950. //}
  4951. sw.Stop();
  4952. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  4953. }
  4954. catch (Exception ex)
  4955. {
  4956. return Ok(JsonView(false, ex.Message));
  4957. throw;
  4958. }
  4959. }
  4960. /// <summary>
  4961. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  4962. /// </summary>
  4963. /// <returns></returns>
  4964. [HttpPost]
  4965. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4966. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  4967. {
  4968. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  4969. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  4970. List<string> countryData = new List<string>();
  4971. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  4972. countryData = countryData.Distinct().ToList();
  4973. List<dynamic> dataSource = new List<dynamic>();
  4974. foreach (var item in countryData)
  4975. {
  4976. List<string> cityData1 = new List<string>();
  4977. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  4978. var countryData2 = new
  4979. {
  4980. CountryName = item,
  4981. CityData = cityData1
  4982. };
  4983. dataSource.Add(countryData2);
  4984. }
  4985. return Ok(JsonView(true, "查询成功!", dataSource));
  4986. }
  4987. /// <summary>
  4988. /// 团组模块 - 出入境国家费用标准 Page List
  4989. /// </summary>
  4990. /// <returns></returns>
  4991. [HttpPost]
  4992. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4993. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  4994. {
  4995. int portId = dto.PortType;
  4996. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4997. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  4998. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  4999. string whereSql = string.Empty;
  5000. if (!string.IsNullOrEmpty(dto.Country))
  5001. {
  5002. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5003. }
  5004. if (!string.IsNullOrEmpty(dto.City))
  5005. {
  5006. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5007. }
  5008. string pageSql = string.Format(@"Select * From (
  5009. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5010. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5011. From Grp_NationalTravelFee gntf
  5012. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5013. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5014. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5015. RefAsync<int> total = 0;
  5016. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5017. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5018. }
  5019. /// <summary>
  5020. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5021. /// </summary>
  5022. /// <returns></returns>
  5023. [HttpPost]
  5024. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5025. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5026. {
  5027. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5028. int portId = dto.PortType;
  5029. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5030. string whereSql = string.Empty;
  5031. if (!string.IsNullOrEmpty(dto.Country))
  5032. {
  5033. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5034. }
  5035. if (!string.IsNullOrEmpty(dto.City))
  5036. {
  5037. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5038. }
  5039. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5040. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5041. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5042. From Grp_NationalTravelFee gntf
  5043. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5044. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5045. Where gntf.Isdel = 0 {0} ", whereSql);
  5046. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5047. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5048. }
  5049. /// <summary>
  5050. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5051. /// </summary>
  5052. /// <returns></returns>
  5053. [HttpPost]
  5054. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5055. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5056. {
  5057. try
  5058. {
  5059. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5060. if (data.Code != 0)
  5061. {
  5062. return Ok(JsonView(false, data.Msg));
  5063. }
  5064. return Ok(JsonView(true, "操作成功!", data.Data));
  5065. }
  5066. catch (Exception ex)
  5067. {
  5068. return Ok(JsonView(false, ex.Message));
  5069. }
  5070. }
  5071. /// <summary>
  5072. /// 团组模块 - 出入境国家费用标准 - Del
  5073. /// </summary>
  5074. /// <returns></returns>
  5075. [HttpPost]
  5076. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5077. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5078. {
  5079. try
  5080. {
  5081. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5082. {
  5083. Id = dto.Id,
  5084. DeleteUserId = dto.DeleteUserId,
  5085. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5086. IsDel = 1
  5087. };
  5088. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5089. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5090. .WhereColumns(it => new { it.Id })
  5091. .ExecuteCommandAsync();
  5092. if (delStatus <= 0)
  5093. {
  5094. return Ok(JsonView(false, "删除失败!"));
  5095. }
  5096. return Ok(JsonView(true, "操作成功!"));
  5097. }
  5098. catch (Exception ex)
  5099. {
  5100. return Ok(JsonView(false, ex.Message));
  5101. }
  5102. }
  5103. #endregion
  5104. #region 签证费用录入
  5105. /// <summary>
  5106. /// 根据diid查询签证费用列表
  5107. /// </summary>
  5108. /// <param name="dto"></param>
  5109. /// <returns></returns>
  5110. [HttpPost]
  5111. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5112. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5113. {
  5114. try
  5115. {
  5116. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5117. if (groupData.Code != 0)
  5118. {
  5119. return Ok(JsonView(false, groupData.Msg));
  5120. }
  5121. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5122. }
  5123. catch (Exception ex)
  5124. {
  5125. return Ok(JsonView(false, ex.Message));
  5126. }
  5127. }
  5128. /// <summary>
  5129. /// 根据签证费用Id查询单条数据及c表数据
  5130. /// </summary>
  5131. /// <param name="dto"></param>
  5132. /// <returns></returns>
  5133. [HttpPost]
  5134. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5135. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5136. {
  5137. try
  5138. {
  5139. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5140. if (groupData.Code != 0)
  5141. {
  5142. return Ok(JsonView(false, groupData.Msg));
  5143. }
  5144. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5145. }
  5146. catch (Exception ex)
  5147. {
  5148. return Ok(JsonView(false, ex.Message));
  5149. }
  5150. }
  5151. /// <summary>
  5152. /// 签证费用删除
  5153. /// </summary>
  5154. /// <param name="dto"></param>
  5155. /// <returns></returns>
  5156. [HttpPost]
  5157. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5158. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5159. {
  5160. _sqlSugar.BeginTran();
  5161. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5162. if (!res)
  5163. {
  5164. _sqlSugar.RollbackTran();
  5165. return Ok(JsonView(false, "删除失败"));
  5166. }
  5167. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5168. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5169. .SetColumns(a => new Grp_CreditCardPayment()
  5170. {
  5171. IsDel = 1,
  5172. DeleteUserId = dto.DeleteUserId,
  5173. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5174. }).ExecuteCommand();
  5175. if (resSub < 1)
  5176. {
  5177. _sqlSugar.RollbackTran();
  5178. return Ok(JsonView(false, "删除失败"));
  5179. }
  5180. _sqlSugar.CommitTran();
  5181. return Ok(JsonView(true, "删除成功!"));
  5182. }
  5183. /// <summary>
  5184. /// 签证费用录入下拉框初始化
  5185. /// </summary>
  5186. /// <returns></returns>
  5187. [HttpPost]
  5188. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5189. public async Task<IActionResult> VisaPriceAddSelect()
  5190. {
  5191. try
  5192. {
  5193. //支付方式
  5194. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5195. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5196. //币种
  5197. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5198. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5199. //乘客类型
  5200. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5201. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5202. //卡类型
  5203. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5204. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5205. var data = new
  5206. {
  5207. Payment = _Payment,
  5208. CurrencyList = _CurrencyList,
  5209. PassengerType = _PassengerType,
  5210. BankCard = _BankCard
  5211. };
  5212. return Ok(JsonView(true, "查询成功!", data));
  5213. }
  5214. catch (Exception ex)
  5215. {
  5216. return Ok(JsonView(false, "程序错误!"));
  5217. throw;
  5218. }
  5219. }
  5220. /// <summary>
  5221. /// 签证费用录入操作(Status:1.新增,2.修改)
  5222. /// </summary>
  5223. /// <param name="dto"></param>
  5224. /// <returns></returns>
  5225. [HttpPost]
  5226. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5227. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5228. {
  5229. try
  5230. {
  5231. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5232. if (groupData.Code != 0)
  5233. {
  5234. return Ok(JsonView(false, groupData.Msg));
  5235. }
  5236. #region 应用推送
  5237. try
  5238. {
  5239. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5240. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5241. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5242. }
  5243. catch (Exception ex)
  5244. {
  5245. }
  5246. #endregion
  5247. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5248. }
  5249. catch (Exception ex)
  5250. {
  5251. return Ok(JsonView(false, ex.Message));
  5252. }
  5253. }
  5254. #endregion
  5255. #region op费用录入
  5256. /// <summary>
  5257. /// 根据diid查询op费用列表
  5258. /// </summary>
  5259. /// <param name="dto"></param>
  5260. /// <returns></returns>
  5261. [HttpPost]
  5262. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5263. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5264. {
  5265. try
  5266. {
  5267. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5268. if (groupData.Code != 0)
  5269. {
  5270. return Ok(JsonView(false, groupData.Msg));
  5271. }
  5272. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5273. }
  5274. catch (Exception ex)
  5275. {
  5276. return Ok(JsonView(false, ex.Message));
  5277. }
  5278. }
  5279. /// <summary>
  5280. /// 根据op费用Id查询单条数据及c表数据
  5281. /// </summary>
  5282. /// <param name="dto"></param>
  5283. /// <returns></returns>
  5284. [HttpPost]
  5285. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5286. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5287. {
  5288. try
  5289. {
  5290. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5291. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5292. var data = new
  5293. {
  5294. CarTouristGuideGround = _groupData,
  5295. CreditCardPayment = _creditCardPayment
  5296. };
  5297. return Ok(JsonView(true, "查询成功!", data));
  5298. }
  5299. catch (Exception ex)
  5300. {
  5301. return Ok(JsonView(false, "程序错误!"));
  5302. }
  5303. }
  5304. /// <summary>
  5305. /// op费用删除
  5306. /// </summary>
  5307. /// <param name="dto"></param>
  5308. /// <returns></returns>
  5309. [HttpPost]
  5310. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5311. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5312. {
  5313. try
  5314. {
  5315. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5316. if (!res)
  5317. {
  5318. return Ok(JsonView(false, "删除失败"));
  5319. }
  5320. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5321. {
  5322. IsDel = 1,
  5323. DeleteUserId = dto.DeleteUserId,
  5324. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5325. }).ExecuteCommandAsync();
  5326. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5327. {
  5328. IsDel = 1,
  5329. DeleteUserId = dto.DeleteUserId,
  5330. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5331. }).ExecuteCommandAsync();
  5332. return Ok(JsonView(true, "删除成功!"));
  5333. }
  5334. catch (Exception ex)
  5335. {
  5336. return Ok(JsonView(false, "程序错误!"));
  5337. throw;
  5338. }
  5339. }
  5340. /// <summary>
  5341. /// op费用录入操作(Status:1.新增,2.修改)
  5342. /// </summary>
  5343. /// <param name="dto"></param>
  5344. /// <returns></returns>
  5345. [HttpPost]
  5346. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5347. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5348. {
  5349. try
  5350. {
  5351. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5352. if (groupData.Code != 0)
  5353. {
  5354. return Ok(JsonView(false, groupData.Msg));
  5355. }
  5356. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5357. }
  5358. catch (Exception ex)
  5359. {
  5360. return Ok(JsonView(false, ex.Message));
  5361. }
  5362. }
  5363. /// <summary>
  5364. /// 填写费用详细页面初始化绑定
  5365. /// </summary>
  5366. /// <param name="dto"></param>
  5367. /// <returns></returns>
  5368. [HttpPost]
  5369. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5370. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5371. {
  5372. try
  5373. {
  5374. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5375. if (groupData.Code != 0)
  5376. {
  5377. return Ok(JsonView(false, groupData.Msg));
  5378. }
  5379. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5380. }
  5381. catch (Exception ex)
  5382. {
  5383. return Ok(JsonView(false, ex.Message));
  5384. }
  5385. }
  5386. /// <summary>
  5387. /// 根据op费用Id查询详细数据
  5388. /// </summary>
  5389. /// <param name="dto"></param>
  5390. /// <returns></returns>
  5391. [HttpPost]
  5392. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5393. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5394. {
  5395. try
  5396. {
  5397. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5398. if (groupData.Code != 0)
  5399. {
  5400. return Ok(JsonView(false, groupData.Msg));
  5401. }
  5402. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5403. }
  5404. catch (Exception ex)
  5405. {
  5406. return Ok(JsonView(false, ex.Message));
  5407. }
  5408. }
  5409. /// <summary>
  5410. /// OP费用录入填写详情
  5411. /// </summary>
  5412. /// <param name="dto"></param>
  5413. /// <returns></returns>
  5414. [HttpPost]
  5415. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5416. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5417. {
  5418. try
  5419. {
  5420. #region 参数校验
  5421. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5422. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5423. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5424. #endregion
  5425. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5426. if (groupData.Code != 0)
  5427. {
  5428. return Ok(JsonView(false, groupData.Msg));
  5429. }
  5430. //自动审核
  5431. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5432. #region 应用推送
  5433. try
  5434. {
  5435. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5436. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5437. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5438. }
  5439. catch (Exception ex)
  5440. {
  5441. }
  5442. #endregion
  5443. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5444. }
  5445. catch (Exception ex)
  5446. {
  5447. return Ok(JsonView(false, ex.Message));
  5448. }
  5449. }
  5450. /// <summary>
  5451. /// 获取三公详细所有城市
  5452. /// </summary>
  5453. /// <returns></returns>
  5454. [HttpGet]
  5455. public IActionResult OpCarCityResult()
  5456. {
  5457. var jw = JsonView(false);
  5458. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5459. {
  5460. x.Id,
  5461. x.Country,
  5462. x.City,
  5463. }).ToList();
  5464. if (data.Count > 0)
  5465. {
  5466. jw = JsonView(true, "获取成功!", data);
  5467. }
  5468. else
  5469. {
  5470. jw.Msg = "城市数据为空!";
  5471. jw.Data = new string[0];
  5472. }
  5473. return Ok(jw);
  5474. }
  5475. /// <summary>
  5476. /// 导出地接费用明细
  5477. /// </summary>
  5478. /// <param name="dto"></param>
  5479. /// <returns></returns>
  5480. [HttpPost]
  5481. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5482. {
  5483. var jw = JsonView(false);
  5484. if (dto.Diid < 1)
  5485. {
  5486. jw.Msg = "请输入正确的diid!";
  5487. return Ok(jw);
  5488. }
  5489. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5490. if (group == null)
  5491. {
  5492. jw.Msg = "未找到团组信息!";
  5493. return Ok(jw);
  5494. }
  5495. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5496. if (localGuideArr.Count == 0)
  5497. {
  5498. jw.Msg = "该团组暂无地接信息!";
  5499. return Ok(jw);
  5500. }
  5501. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5502. var overspendSoure = new Dictionary<int, int>
  5503. {
  5504. { 91, 982 }, //车
  5505. { 92 , 1059} ,//导游
  5506. { 994 , 1073}, //翻译
  5507. { 988 , 1074 }, //早餐
  5508. { 93 , 1075 }, //午餐
  5509. { 989 , 1076 }, //晚餐
  5510. };
  5511. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5512. foreach (var groupArr in localGroup)
  5513. {
  5514. var keyValue = groupArr.Key;
  5515. if (int.TryParse(keyValue, out int cityid))
  5516. {
  5517. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5518. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5519. }
  5520. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5521. foreach (var item in groupArr)
  5522. {
  5523. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5524. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5525. new Grp_CarTouristGuideGroundReservationsContentExtend
  5526. {
  5527. Count = a.Count,
  5528. CreateTime = a.CreateTime,
  5529. CreateUserId = a.CreateUserId,
  5530. CTGGRId = a.CTGGRId,
  5531. Currency = a.Currency,
  5532. DatePrice = a.DatePrice,
  5533. DeleteTime = a.DeleteTime,
  5534. DeleteUserId = a.DeleteUserId,
  5535. DiId = a.DiId,
  5536. Id = a.Id,
  5537. IsDel = a.IsDel,
  5538. Price = a.Price,
  5539. PriceContent = a.PriceContent,
  5540. Remark = a.Remark,
  5541. SId = a.SId,
  5542. SidName = b.Name,
  5543. Units = a.Units,
  5544. }
  5545. ).ToList();
  5546. if (content.Count > 0)
  5547. {
  5548. contentArr.Add(content);
  5549. }
  5550. }
  5551. //open excel
  5552. //set excel
  5553. //save excel
  5554. try
  5555. {
  5556. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5557. IWorkbook workbook;
  5558. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5559. {
  5560. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5561. }
  5562. else
  5563. {
  5564. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5565. }
  5566. ISheet sheet = workbook.GetSheetAt(0);
  5567. var rowStartIndex = 2;
  5568. var clounmCount = 10;
  5569. var initStyleRow = sheet.GetRow(2);
  5570. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5571. //var overspendArrDetail =
  5572. var existsId = new List<CarCompare>();
  5573. var lastElem = arr.Last();
  5574. var thisSid = -1;
  5575. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5576. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5577. {
  5578. Name = "未知币种!",
  5579. Remark = "未知币种!",
  5580. };
  5581. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5582. Action cloneRowFn = () =>
  5583. {
  5584. rowStartIndex++;
  5585. var cloneRow = sheet.CreateRow(rowStartIndex);
  5586. // 复制样式
  5587. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5588. {
  5589. ICell sourceCell = initStyleRow.GetCell(i);
  5590. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5591. // 确保单元格存在样式
  5592. if (sourceCell.CellStyle != null)
  5593. {
  5594. targetCell.CellStyle = sourceCell.CellStyle;
  5595. }
  5596. }
  5597. };
  5598. var mergeRow = () =>
  5599. {
  5600. for (int i = 2; i < sheet.LastRowNum; i++)
  5601. {
  5602. var row = sheet.GetRow(i);
  5603. var cellFirst = row.GetCell(0);
  5604. var thisIndex = i + 1;
  5605. while (thisIndex < sheet.LastRowNum)
  5606. {
  5607. var nextRow = sheet.GetRow(thisIndex);
  5608. var nextCellFirst = nextRow.GetCell(0);
  5609. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5610. {
  5611. thisIndex++;
  5612. }
  5613. else
  5614. {
  5615. break;
  5616. }
  5617. }
  5618. thisIndex--;
  5619. if (thisIndex != i)
  5620. {
  5621. //合并row
  5622. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5623. i, // 起始行索引(0-based)
  5624. thisIndex, // 结束行索引(0-based)
  5625. 0, // 起始列索引(0-based)
  5626. 0 // 结束列索引(0-based)
  5627. );
  5628. sheet.AddMergedRegion(cellRangeAddress);
  5629. i = thisIndex;
  5630. }
  5631. }
  5632. };
  5633. var chaoshiNumber = 0;
  5634. var totalNumber = 0.00M;
  5635. string lastStr = "";
  5636. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5637. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5638. {
  5639. b.IsAuditGM,
  5640. x.Id,
  5641. x.Area,
  5642. b.PayPercentage,
  5643. b.PayMoney,
  5644. }).ToList();
  5645. string yesPayment = "", noPayment = "";
  5646. foreach (var item in queryCarArrByCityAndDiid)
  5647. {
  5648. if (item.IsAuditGM == 1)
  5649. {
  5650. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5651. }
  5652. else
  5653. {
  5654. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5655. }
  5656. }
  5657. lastStr = yesPayment + noPayment;
  5658. foreach (var item in arr)
  5659. {
  5660. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5661. {
  5662. if (thisSid != item.SId)
  5663. {
  5664. if (thisSid == -1)
  5665. {
  5666. thisSid = item.SId;
  5667. }
  5668. else
  5669. {
  5670. //合并小计行
  5671. //创建合并区域的实例
  5672. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5673. rowStartIndex, // 起始行索引(0-based)
  5674. rowStartIndex, // 结束行索引(0-based)
  5675. 0, // 起始列索引(0-based)
  5676. 3 // 结束列索引(0-based)
  5677. );
  5678. sheet.AddMergedRegion(cellRangeAddress);
  5679. var CellStyle = workbook.CreateCellStyle();
  5680. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5681. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5682. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5683. for (int i = 0; i <= clounmCount; i++)
  5684. {
  5685. if (i > 6)
  5686. {
  5687. var CellStyle1 = workbook.CreateCellStyle();
  5688. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5689. IFont Font = workbook.CreateFont(); // 创建字体
  5690. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5691. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5692. CellStyle1.SetFont(Font);
  5693. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5694. }
  5695. else
  5696. {
  5697. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5698. }
  5699. }
  5700. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5701. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5702. //超时合计
  5703. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5704. //超时数
  5705. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5706. //超时合计费用
  5707. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5708. thisSid = item.SId;
  5709. cloneRowFn();
  5710. chaoshiNumber = 0;
  5711. totalNumber = 0;
  5712. }
  5713. }
  5714. IRow row = sheet.GetRow(rowStartIndex);
  5715. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5716. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5717. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5718. if (isOpenOverspendSoure)
  5719. {
  5720. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5721. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5722. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5723. }
  5724. for (int i = 0; i <= clounmCount; i++)
  5725. {
  5726. var cell = row.GetCell(i);
  5727. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5728. if (cell == null)
  5729. {
  5730. cell = row.CreateCell(i);
  5731. }
  5732. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5733. fontRed.CloneStyleFrom(cell.CellStyle);
  5734. IFont Font = workbook.CreateFont(); // 创建字体
  5735. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5736. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5737. fontRed.SetFont(Font);
  5738. byte[] rgb = new byte[3] { 255, 242, 204 };
  5739. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5740. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5741. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5742. if (workbook is XSSFWorkbook)
  5743. {
  5744. BackgroundColor255_242_204.FillForegroundColor = 0;
  5745. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5746. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5747. }
  5748. else
  5749. {
  5750. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5751. }
  5752. if (i == 1 || i > 6)
  5753. {
  5754. if (i > 6)
  5755. {
  5756. fontRed.FillForegroundColor = 0;
  5757. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5758. fontRed.FillPattern = FillPattern.SolidForeground;
  5759. }
  5760. cell.CellStyle = fontRed;
  5761. }
  5762. if (i > 2 && i < 7)
  5763. {
  5764. cell.CellStyle = BackgroundColor255_242_204;
  5765. }
  5766. cell.SetCellValue(setCellValue); //写入单元格
  5767. }
  5768. if (overspendSoure.ContainsKey(thisSid))
  5769. {
  5770. var overspendId = overspendSoure[thisSid];
  5771. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5772. }
  5773. cloneRowFn();
  5774. existsId.Add(new CarCompare
  5775. {
  5776. DataPrice = item.DatePrice.ObjToDate(),
  5777. Sid = item.SId
  5778. });
  5779. }
  5780. if (item.Equals(lastElem))
  5781. {
  5782. //合并小计行
  5783. //创建合并区域的实例
  5784. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5785. rowStartIndex, // 起始行索引(0-based)
  5786. rowStartIndex, // 结束行索引(0-based)
  5787. 0, // 起始列索引(0-based)
  5788. 3 // 结束列索引(0-based)
  5789. );
  5790. sheet.AddMergedRegion(cellRangeAddress);
  5791. var CellStyle = workbook.CreateCellStyle();
  5792. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5793. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5794. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5795. for (int i = 0; i <= clounmCount; i++)
  5796. {
  5797. if (i > 6)
  5798. {
  5799. var CellStyle1 = workbook.CreateCellStyle();
  5800. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5801. IFont Font = workbook.CreateFont(); // 创建字体
  5802. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5803. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5804. CellStyle1.SetFont(Font);
  5805. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5806. }
  5807. else
  5808. {
  5809. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5810. }
  5811. }
  5812. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5813. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5814. //超时合计
  5815. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5816. //超时数
  5817. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5818. //超时合计费用
  5819. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5820. cloneRowFn();
  5821. // 创建合并区域的实例
  5822. cellRangeAddress = new CellRangeAddress(
  5823. rowStartIndex, // 起始行索引(0-based)
  5824. rowStartIndex, // 结束行索引(0-based)
  5825. 0, // 起始列索引(0-based)
  5826. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  5827. );
  5828. // 添加合并区域
  5829. sheet.AddMergedRegion(cellRangeAddress);
  5830. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  5831. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  5832. }
  5833. }
  5834. mergeRow();
  5835. // 保存修改后的Excel文件到新文件
  5836. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  5837. // new FileStream(newFilePath, FileMode.CreateNew)
  5838. using (var stream = new MemoryStream())
  5839. {
  5840. workbook.Write(stream, true);
  5841. stream.Flush();
  5842. stream.Seek(0, SeekOrigin.Begin);
  5843. MemoryStream memoryStream = new MemoryStream();
  5844. stream.CopyTo(memoryStream);
  5845. memoryStream.Seek(0, SeekOrigin.Begin);
  5846. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  5847. }
  5848. workbook.Close();
  5849. workbook.Dispose();
  5850. }
  5851. catch (Exception ex)
  5852. {
  5853. jw.Msg = "出现异常!" + ex.Message;
  5854. return Ok(jw);
  5855. }
  5856. }
  5857. if (Zips.Count > 0)
  5858. {
  5859. IOOperatorHelper io = new IOOperatorHelper();
  5860. var byts = io.ConvertZipStream(Zips);
  5861. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  5862. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  5863. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  5864. }
  5865. else
  5866. {
  5867. jw.Msg = "暂无生成文件!";
  5868. }
  5869. return Ok(jw);
  5870. }
  5871. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  5872. {
  5873. string outStr = string.Empty;
  5874. switch (i)
  5875. {
  5876. case 0:
  5877. outStr = arr[0].SidName;
  5878. break;
  5879. case 1:
  5880. outStr = arr[0].DataPriceStr;
  5881. break;
  5882. case 2:
  5883. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  5884. break;
  5885. case 4:
  5886. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  5887. break;
  5888. case 7:
  5889. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5890. {
  5891. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  5892. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  5893. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  5894. }
  5895. break;
  5896. case 8:
  5897. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5898. {
  5899. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  5900. }
  5901. break;
  5902. case 9:
  5903. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5904. {
  5905. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  5906. }
  5907. break;
  5908. case 10:
  5909. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5910. {
  5911. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  5912. }
  5913. break;
  5914. }
  5915. return outStr;
  5916. }
  5917. #region OP行程单
  5918. /// <summary>
  5919. /// OP行程单初始化
  5920. /// </summary>
  5921. /// <param name="dto"></param>
  5922. /// <returns></returns>
  5923. [HttpPost]
  5924. public IActionResult InitOpTravel(InitOpTravelDto dto)
  5925. {
  5926. var jw = JsonView(false);
  5927. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  5928. var group = groupList.First();
  5929. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  5930. if (group == null)
  5931. {
  5932. jw.Msg = "暂无团组!";
  5933. return Ok(jw);
  5934. }
  5935. group = groupList.Find(x => x.Id == diid);
  5936. if (group == null)
  5937. {
  5938. jw.Msg = "请输入正确的团组ID!";
  5939. return Ok(jw);
  5940. }
  5941. string city = string.Empty;
  5942. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  5943. if (blackCode.Count > 0)
  5944. {
  5945. var black = blackCode.First();
  5946. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  5947. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  5948. if (blackSp.Length > 0)
  5949. {
  5950. try
  5951. {
  5952. var cityArrCode = new List<string>(20);
  5953. foreach (var item in blackSp)
  5954. {
  5955. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  5956. var IndexSelect = itemSp[2];
  5957. var cityArrCodeLength = cityArrCode.Count - 1;
  5958. var startCity = IndexSelect.Substring(0, 3);
  5959. if (cityArrCodeLength > 0)
  5960. {
  5961. var arrEndCity = cityArrCode[cityArrCodeLength];
  5962. if (arrEndCity != startCity)
  5963. {
  5964. cityArrCode.Add(startCity.ToUpper());
  5965. }
  5966. }
  5967. else
  5968. {
  5969. cityArrCode.Add(startCity.ToUpper());
  5970. }
  5971. var endCity = IndexSelect.Substring(3, 3);
  5972. cityArrCode.Add(endCity.ToUpper());
  5973. }
  5974. var cityThree = string.Empty;
  5975. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  5976. cityThree = cityThree.TrimEnd(',');
  5977. if (string.IsNullOrWhiteSpace(cityThree))
  5978. {
  5979. throw new
  5980. Exception("error");
  5981. }
  5982. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  5983. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  5984. foreach (var item in cityArrCode)
  5985. {
  5986. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  5987. if (find != null)
  5988. {
  5989. city += find.City + "/";
  5990. }
  5991. else
  5992. {
  5993. city += item + "三字码未收入/";
  5994. }
  5995. }
  5996. city = city.TrimEnd('/');
  5997. }
  5998. catch (Exception e)
  5999. {
  6000. city = "黑屏代码格式不正确!";
  6001. }
  6002. }
  6003. }
  6004. else
  6005. {
  6006. city = "未录入黑屏代码";
  6007. }
  6008. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6009. {
  6010. Date = x.Date,
  6011. Days = x.Days,
  6012. Diffgroup = x.Diffgroup,
  6013. Diid = x.Diid,
  6014. Traffic_First = x.Traffic_First,
  6015. Traffic_Second = x.Traffic_Second,
  6016. Trip = x.Trip,
  6017. WeekDay = x.WeekDay,
  6018. Id = x.Id
  6019. }).ToList();
  6020. jw.Data = new
  6021. {
  6022. groupList = groupList.Select(x => new
  6023. {
  6024. x.Id,
  6025. x.TeamName,
  6026. x.TourCode
  6027. }).ToList(),
  6028. groupInfo = new
  6029. {
  6030. group.VisitDays,
  6031. group.TourCode,
  6032. group.VisitPNumber,
  6033. group.TeamName,
  6034. city
  6035. },
  6036. OpTravelList
  6037. };
  6038. jw.Code = 200;
  6039. jw.Msg = "操作成功!";
  6040. return Ok(jw);
  6041. }
  6042. /// <summary>
  6043. /// 删除团组行程单
  6044. /// </summary>
  6045. /// <returns></returns>
  6046. [HttpPost]
  6047. public IActionResult DelTravel(DelOpTravelDto dto)
  6048. {
  6049. var jw = JsonView(false);
  6050. if (dto.UserId <= 0 || dto.Diid <= 0)
  6051. {
  6052. jw.Msg = "请输入正确的参数!";
  6053. return Ok(jw);
  6054. }
  6055. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6056. .SetColumns(x => new Grp_TravelList
  6057. {
  6058. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6059. DeleteUserId = dto.UserId,
  6060. IsDel = 1,
  6061. }).ExecuteCommand();
  6062. jw = JsonView(true);
  6063. return Ok(jw);
  6064. }
  6065. /// <summary>
  6066. /// 行程单保存
  6067. /// </summary>
  6068. /// <returns></returns>
  6069. [HttpPost]
  6070. public IActionResult TravelSave(TravelSaveDto dto)
  6071. {
  6072. var jw = JsonView(false);
  6073. if (dto.Arr.Count > 0)
  6074. {
  6075. try
  6076. {
  6077. _sqlSugar.BeginTran();
  6078. foreach (var item in dto.Arr)
  6079. {
  6080. if (item.Id == 0)
  6081. {
  6082. throw new Exception("请传入正确的Id");
  6083. }
  6084. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6085. .SetColumns(x => new Grp_TravelList
  6086. {
  6087. Trip = item.Trip
  6088. }).ExecuteCommand();
  6089. }
  6090. _sqlSugar.CommitTran();
  6091. jw = JsonView(true);
  6092. }
  6093. catch (Exception ex)
  6094. {
  6095. _sqlSugar.RollbackTran();
  6096. jw.Msg = "程序异常!" + ex.Message;
  6097. }
  6098. }
  6099. else
  6100. {
  6101. jw.Msg = "请传入正确的参数!";
  6102. }
  6103. return Ok(jw);
  6104. }
  6105. /// <summary>
  6106. /// 导出行程单
  6107. /// </summary>
  6108. /// <param name="dto"></param>
  6109. /// <returns></returns>
  6110. [HttpPost]
  6111. public IActionResult ExportTravel(ExportTravelDto dto)
  6112. {
  6113. var jw = JsonView(false);
  6114. jw.Data = "";
  6115. int diid = 0;
  6116. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6117. if (Find == null)
  6118. {
  6119. jw.Msg = "请选择正确的团组!";
  6120. return Ok(jw);
  6121. }
  6122. else
  6123. {
  6124. diid = Find.Id;
  6125. }
  6126. //数据源
  6127. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6128. DataTable dtBlack = null;
  6129. try
  6130. {
  6131. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6132. }
  6133. catch (Exception)
  6134. {
  6135. jw.Msg = "机票黑屏代码有误!";
  6136. return Ok(jw);
  6137. }
  6138. string CityStr = string.Empty;
  6139. if (dtBlack.Rows.Count == 0)
  6140. {
  6141. jw.Msg = "机票黑屏代码有误!";
  6142. return Ok(jw);
  6143. }
  6144. else
  6145. {
  6146. foreach (DataRow row in dtBlack.Rows)
  6147. {
  6148. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6149. {
  6150. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6151. return Ok(jw);
  6152. }
  6153. }
  6154. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6155. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6156. }
  6157. //创建数据源Table
  6158. DataTable dtSource = new DataTable();
  6159. dtSource.Columns.Add("Days", typeof(string));
  6160. dtSource.Columns.Add("Date", typeof(string));
  6161. dtSource.Columns.Add("Week", typeof(string));
  6162. dtSource.Columns.Add("Traffic", typeof(string));
  6163. dtSource.Columns.Add("Trip", typeof(string));
  6164. //获取数据,放到datatable
  6165. foreach (var item in _travelList)
  6166. {
  6167. DataRow dr = dtSource.NewRow();
  6168. dr["Days"] = item.Days;
  6169. dr["Date"] = item.Date;
  6170. dr["Week"] = item.WeekDay;
  6171. dr["Traffic"] = item.Traffic_First
  6172. + "\r\n"
  6173. + item.Traffic_Second;
  6174. dr["Trip"] = item.Trip;
  6175. dtSource.Rows.Add(dr);
  6176. }
  6177. Dictionary<string, string> dic = new Dictionary<string, string>();
  6178. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6179. dic.Add("City", CityStr);
  6180. dic.Add("Days", Find.VisitDays.ToString());
  6181. dic.Add("DeleCode", Find.TourCode);
  6182. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6183. //模板路径
  6184. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6185. //载入模板
  6186. Document doc = null;
  6187. DocumentBuilder builder = null;
  6188. try
  6189. {
  6190. //载入模板
  6191. doc = new Document(tempPath);
  6192. builder = new DocumentBuilder(doc);
  6193. }
  6194. catch (Exception)
  6195. {
  6196. jw.Msg = "模板位置不存在!";
  6197. return Ok(jw);
  6198. }
  6199. foreach (var key in dic.Keys)
  6200. {
  6201. Bookmark bookmark = doc.Range.Bookmarks[key];
  6202. if (bookmark != null)
  6203. {
  6204. builder.MoveToBookmark(key);
  6205. builder.Write(dic[key]);
  6206. }
  6207. }
  6208. //获取word里所有表格
  6209. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6210. //获取所填表格的序数
  6211. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6212. try
  6213. {
  6214. //循环赋值
  6215. for (int i = 0; i < dtSource.Rows.Count; i++)
  6216. {
  6217. builder.MoveToCell(0, i + 1, 0, 0);
  6218. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6219. builder.MoveToCell(0, i + 1, 1, 0);
  6220. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6221. builder.MoveToCell(0, i + 1, 2, 0);
  6222. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6223. var trip = dtSource.Rows[i]["Trip"].ToString();
  6224. builder.MoveToCell(0, i + 1, 3, 0);
  6225. builder.Write(trip);
  6226. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6227. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6228. // 获取特定索引的段落
  6229. Paragraph paragraph = (Paragraph)paragraphs[0];
  6230. Run run = paragraph.Runs[0];
  6231. Aspose.Words.Font font = run.Font;
  6232. font.Name = "黑体";
  6233. //设置双休红色
  6234. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6235. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6236. paragraph = (Paragraph)paragraphs[1];
  6237. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6238. {
  6239. run = paragraph.Runs[0];
  6240. font = run.Font;
  6241. font.Color = Color.Red;
  6242. }
  6243. }
  6244. }
  6245. catch (Exception ex)
  6246. {
  6247. }
  6248. //删除多余行
  6249. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6250. {
  6251. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6252. }
  6253. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6254. if (!Directory.Exists(savePath))
  6255. {
  6256. try
  6257. {
  6258. Directory.CreateDirectory(savePath);
  6259. }
  6260. catch
  6261. {
  6262. }
  6263. }
  6264. string path = savePath + Find.TeamName + "出访日程";
  6265. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6266. try
  6267. {
  6268. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6269. string postfix = ".docx";
  6270. if (dto.IsPDF == 1)
  6271. {
  6272. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6273. postfix = ".pdf";
  6274. }
  6275. doc.Save(path + postfix, saveFormat);
  6276. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6277. }
  6278. catch (Exception)
  6279. {
  6280. jw = JsonView(false);
  6281. }
  6282. return Ok(jw);
  6283. }
  6284. /// <summary>
  6285. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6286. /// </summary>
  6287. /// <param name="num"></param>
  6288. /// <returns></returns>
  6289. string GetNum(string num)
  6290. {
  6291. string str = "";
  6292. switch (num)
  6293. {
  6294. case "1":
  6295. str = "一";
  6296. break;
  6297. case "2":
  6298. str = "二";
  6299. break;
  6300. case "3":
  6301. str = "三";
  6302. break;
  6303. case "4":
  6304. str = "四";
  6305. break;
  6306. case "5":
  6307. str = "五";
  6308. break;
  6309. case "6":
  6310. str = "六";
  6311. break;
  6312. case "7":
  6313. str = "七";
  6314. break;
  6315. case "8":
  6316. str = "八";
  6317. break;
  6318. case "9":
  6319. str = "九";
  6320. break;
  6321. case "10":
  6322. str = "十";
  6323. break;
  6324. case "11":
  6325. str = "十一";
  6326. break;
  6327. case "12":
  6328. str = "十二";
  6329. break;
  6330. case "一":
  6331. str = "1";
  6332. break;
  6333. case "二":
  6334. str = "2";
  6335. break;
  6336. case "三":
  6337. str = "3";
  6338. break;
  6339. case "四":
  6340. str = "4";
  6341. break;
  6342. case "五":
  6343. str = "5";
  6344. break;
  6345. case "六":
  6346. str = "6";
  6347. break;
  6348. case "七":
  6349. str = "7";
  6350. break;
  6351. case "八":
  6352. str = "8";
  6353. break;
  6354. case "九":
  6355. str = "9";
  6356. break;
  6357. case "十":
  6358. str = "10";
  6359. break;
  6360. case "十一":
  6361. str = "11";
  6362. break;
  6363. case "十二":
  6364. str = "12";
  6365. break;
  6366. }
  6367. return str;
  6368. }
  6369. #endregion
  6370. #endregion
  6371. #region 团组成本
  6372. /// <summary>
  6373. /// 团组成本数据初始化
  6374. /// </summary>
  6375. /// <param name="dto"></param>
  6376. /// <returns></returns>
  6377. [HttpPost]
  6378. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6379. {
  6380. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6381. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6382. WHEN COUNT(*) >= 0 THEN 'True'
  6383. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6384. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6385. ").ToList(); //团组列表
  6386. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6387. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6388. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6389. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6390. if (groupinfoValue != null)
  6391. {
  6392. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6393. var spArr = new string[1] { countryArr };
  6394. if (countryArr.Contains("|"))
  6395. {
  6396. spArr = countryArr.Split("|");
  6397. }
  6398. else if (countryArr.Contains("、"))
  6399. {
  6400. spArr = countryArr.Split("、");
  6401. }
  6402. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6403. {
  6404. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6405. if (dbQueryCountry != null)
  6406. {
  6407. visaCountryInfoArr.Add(dbQueryCountry);
  6408. }
  6409. }
  6410. }
  6411. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6412. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6413. var create = _GroupCostRepository.
  6414. CreateGroupCostByBlackCode(dto.Diid);
  6415. if (groupCost.Count == 0 && create.Code == 0)
  6416. {
  6417. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6418. }
  6419. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6420. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6421. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6422. groupCostMap = groupCostMap.Select(x =>
  6423. {
  6424. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6425. {
  6426. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6427. }
  6428. return x;
  6429. }).ToList();
  6430. //GroupCostParameter.Add(new
  6431. // Grp_GroupCostParameter());
  6432. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6433. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6434. return Ok(JsonView(new
  6435. {
  6436. groupList,
  6437. groupInfo,
  6438. groupChecks,
  6439. groupCost = groupCostMap,
  6440. hotelNumber,
  6441. GroupCostParameter = GroupCostParameterMap,
  6442. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6443. {
  6444. x.VisaCountry,
  6445. x.VisaPrice,
  6446. x.Id,
  6447. }).ToList(),
  6448. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6449. blackCodeIsTrue = create.Code == 0 ? true : false,
  6450. hotelIsTrue = hotelIsTrue,
  6451. }));
  6452. }
  6453. /// <summary>
  6454. /// 团组成本信息保存
  6455. /// </summary>
  6456. /// <param name="dto"></param>
  6457. /// <returns></returns>
  6458. [HttpPost]
  6459. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6460. {
  6461. if (dto.Diid <= 0 || dto.Userid <= 0)
  6462. {
  6463. return Ok(JsonView(false));
  6464. }
  6465. JsonView jw = null;
  6466. bool isTrue = false;
  6467. #region 复制团组成本
  6468. //if (dto.Diid == 2581)
  6469. //{
  6470. // dto.Diid = 2599;
  6471. // dto.CheckBoxs.ForEach(x =>
  6472. // {
  6473. // x.Diid = 2599;
  6474. // });
  6475. // dto.GroupCosts.ForEach(x =>
  6476. // {
  6477. // x.Diid = 2599;
  6478. // });
  6479. // dto.CostTypeHotelNumbers.ForEach(x =>
  6480. // {
  6481. // x.Diid = 2599;
  6482. // });
  6483. // dto.GroupCostParameters.ForEach(x =>
  6484. // {
  6485. // x.DiId = 2599;
  6486. // });
  6487. //}
  6488. #endregion
  6489. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6490. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6491. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6492. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6493. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6494. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6495. try
  6496. {
  6497. _sqlSugar.BeginTran();
  6498. isTrue = await _GroupCostRepository.
  6499. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6500. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6501. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6502. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6503. _sqlSugar.CommitTran();
  6504. jw = JsonView(true, "保存成功!", isTrue);
  6505. }
  6506. catch (Exception)
  6507. {
  6508. _sqlSugar.RollbackTran();
  6509. jw = JsonView(false);
  6510. }
  6511. return Ok(jw);
  6512. }
  6513. /// <summary>
  6514. /// 司兼导数据
  6515. /// </summary>
  6516. /// <param name="dto"></param>
  6517. /// <returns></returns>
  6518. [HttpPost]
  6519. public IActionResult GetCarGuides(CarGuidesDto dto)
  6520. {
  6521. JsonView jw = null;
  6522. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6523. jw = JsonView(true, "获取成功!", Data);
  6524. return Ok(jw);
  6525. }
  6526. /// <summary>
  6527. /// 导游数据
  6528. /// </summary>
  6529. /// <param name="dto"></param>
  6530. /// <returns></returns>
  6531. [HttpPost]
  6532. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6533. {
  6534. JsonView jw = null;
  6535. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6536. // 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
  6537. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6538. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6539. jw = JsonView(true, "获取成功!", Data);
  6540. return Ok(jw);
  6541. }
  6542. /// <summary>
  6543. /// 成本车数据
  6544. /// </summary>
  6545. /// <param name="dto"></param>
  6546. /// <returns></returns>
  6547. [HttpPost]
  6548. public IActionResult GetCarInfo(CarGuidesDto dto)
  6549. {
  6550. JsonView jw = null;
  6551. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6552. jw = JsonView(true, "获取成功!", Data);
  6553. return Ok(jw);
  6554. }
  6555. /// <summary>
  6556. /// 景点数据
  6557. /// </summary>
  6558. /// <param name="dto"></param>
  6559. /// <returns></returns>
  6560. [HttpPost]
  6561. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6562. {
  6563. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6564. return Ok(JsonView(true, "获取成功!", Data));
  6565. }
  6566. /// <summary>
  6567. /// 成本通知
  6568. /// </summary>
  6569. /// <param name="dto"></param>
  6570. /// <returns></returns>
  6571. [HttpPost]
  6572. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6573. {
  6574. if (dto.Diid < 0)
  6575. {
  6576. return Ok(JsonView(false));
  6577. }
  6578. JsonView jw = null;
  6579. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6580. if (GroupCostParameter != null)
  6581. {
  6582. int IsShare = 0;
  6583. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6584. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6585. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6586. string msg = string.Empty;
  6587. if (isTrue)
  6588. {
  6589. if (IsShare == 0)
  6590. {
  6591. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6592. }
  6593. else
  6594. {
  6595. #region 企微通知对应岗位用户
  6596. try
  6597. {
  6598. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6599. }
  6600. catch (Exception ex)
  6601. {
  6602. }
  6603. #endregion
  6604. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6605. }
  6606. jw = JsonView(isTrue, msg, new { IsShare });
  6607. }
  6608. else
  6609. {
  6610. msg = "修改失败!";
  6611. jw = JsonView(isTrue, msg);
  6612. }
  6613. }
  6614. else
  6615. {
  6616. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6617. }
  6618. return Ok(jw);
  6619. }
  6620. /// <summary>
  6621. /// 导出报价单
  6622. /// </summary>
  6623. /// <param name="dto"></param>
  6624. /// <returns></returns>
  6625. [HttpPost]
  6626. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6627. {
  6628. if (dto.Diid == 0)
  6629. {
  6630. return Ok(JsonView(false, "请传递团组id"));
  6631. }
  6632. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6633. if (deleInfo.Code != 0)
  6634. {
  6635. return Ok(JsonView(false, "团组信息查询失败!"));
  6636. }
  6637. var di = deleInfo.Data as DelegationInfoWebView;
  6638. if (di != null)
  6639. {
  6640. //文件名
  6641. string strFileName = di.TeamName + "-收款账单.doc";
  6642. //获取模板
  6643. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6644. //载入模板
  6645. Document doc = new Document(tmppath);
  6646. decimal TotalPrice = 0.00M;
  6647. string itemStr = string.Empty;
  6648. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6649. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6650. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6651. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6652. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6653. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6654. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6655. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6656. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6657. foreach (var cost in groupCostType)
  6658. {
  6659. var List = cost.ToList();
  6660. if (cost.Key == "A")
  6661. {
  6662. foreach (var ListItem in List)
  6663. {
  6664. if (ListItem.number > 0)
  6665. {
  6666. if (ListItem.code.Contains("TBR"))
  6667. {
  6668. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6669. }
  6670. else
  6671. {
  6672. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6673. }
  6674. TotalPrice += (ListItem.number * ListItem.price);
  6675. }
  6676. }
  6677. }
  6678. else
  6679. {
  6680. itemStr = itemStr.Insert(0, "A段\r\n");
  6681. itemStr += "B段\r\n";
  6682. foreach (var ListItem in List)
  6683. {
  6684. if (ListItem.number > 0)
  6685. {
  6686. if (ListItem.code.Contains("TBR"))
  6687. {
  6688. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6689. }
  6690. else
  6691. {
  6692. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6693. }
  6694. TotalPrice += (ListItem.number * ListItem.price);
  6695. }
  6696. }
  6697. }
  6698. }
  6699. #region 替换Word模板书签内容
  6700. Dictionary<string, string> marks = new Dictionary<string, string>();
  6701. marks.Add("To", di.ClientUnit);//付款方
  6702. marks.Add("ToTel", di.TellPhone);//付款方电话
  6703. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6704. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6705. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6706. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6707. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6708. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6709. marks.Add("PayItemContent", itemStr);//详细信息
  6710. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6711. #endregion
  6712. ////注
  6713. //if (doc.Range.Bookmarks["Attention"] != null)
  6714. //{
  6715. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6716. // mark.Text = frList[0].Attention;
  6717. //}
  6718. foreach (var item in marks.Keys)
  6719. {
  6720. if (doc.Range.Bookmarks[item] != null)
  6721. {
  6722. Bookmark mark = doc.Range.Bookmarks[item];
  6723. mark.Text = marks[item];
  6724. }
  6725. }
  6726. byte[] bytes = null;
  6727. using (MemoryStream stream = new MemoryStream())
  6728. {
  6729. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6730. bytes = stream.ToArray();
  6731. }
  6732. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6733. return Ok(JsonView(true, "", new
  6734. {
  6735. Data = bytes,
  6736. strFileName,
  6737. }));
  6738. }
  6739. else
  6740. {
  6741. return Ok(JsonView(false, "团组信息不存在!"));
  6742. }
  6743. }
  6744. /// <summary>
  6745. /// 导出团组成本
  6746. /// </summary>
  6747. /// <param name="dto"></param>
  6748. /// <returns></returns>
  6749. [HttpPost]
  6750. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6751. {
  6752. var jw = JsonView(false);
  6753. if (dto.Diid == 0)
  6754. {
  6755. return Ok(JsonView(false, "请传递团组id"));
  6756. }
  6757. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6758. if (deleInfo.Code != 0)
  6759. {
  6760. return Ok(JsonView(false, "团组信息查询失败!"));
  6761. }
  6762. var di = deleInfo.Data as DelegationInfoWebView;
  6763. if (di == null)
  6764. {
  6765. return Ok(JsonView(false, "团组信息查询失败!"));
  6766. }
  6767. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6768. WorkbookDesigner designer = new WorkbookDesigner();
  6769. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6770. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6771. for (int i = 0; i < List_GC.Count; i++)
  6772. {
  6773. GroupCost_Excel gc = new GroupCost_Excel();
  6774. gc.Id = List_GC[i].Id;
  6775. gc.Diid = List_GC[i].Diid.ToString();
  6776. gc.DAY = List_GC[i].DAY;
  6777. string week = "";
  6778. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6779. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6780. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6781. gc.ITIN = List_GC[i].ITIN;
  6782. gc.CarType = List_GC[i].CarType;
  6783. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6784. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6785. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6786. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6787. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6788. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6789. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6790. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6791. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6792. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6793. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6794. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6795. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6796. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6797. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6798. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6799. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6800. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6801. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6802. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6803. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6804. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6805. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6806. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6807. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6808. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6809. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6810. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6811. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6812. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6813. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6814. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6815. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6816. List_GC1.Add(gc);
  6817. }
  6818. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6819. dt.TableName = "TB";
  6820. //报表标题等不用dt的值
  6821. designer.SetDataSource("TeamName", dto.title.TeamName);
  6822. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6823. designer.SetDataSource("Tax", dto.title.Tax);
  6824. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6825. designer.SetDataSource("Currency", dto.title.Currency);
  6826. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6827. designer.SetDataSource("Rate", dto.title.Rate);
  6828. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6829. var Aparams = hotels.Find(x => x.Type == "Default");
  6830. if (Aparams == null)
  6831. {
  6832. return Ok(jw);
  6833. }
  6834. //酒店数量
  6835. var txtSGRNumber = Aparams.SGR.ToString();
  6836. var txtTBRNumber = Aparams.TBR.ToString();
  6837. var txtJSESNumber = Aparams.JSES.ToString();
  6838. var txtSUITENumbe = Aparams.SUITE.ToString();
  6839. if (dto.costType == "B")
  6840. {
  6841. Aparams = hotels.Find(x => x.Type == "A");
  6842. var Bparams = hotels.Find(x => x.Type == "B");
  6843. if (Aparams == null || Bparams == null)
  6844. {
  6845. return Ok(jw);
  6846. }
  6847. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6848. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6849. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6850. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6851. }
  6852. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6853. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6854. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6855. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6856. var ws = designer.Workbook.Worksheets[0];
  6857. int Row = List_GC.Count;
  6858. int startIndex = 11;
  6859. int HideRows = 0;
  6860. List<int> hideRowsList = new List<int>();
  6861. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6862. #region A段left数据
  6863. var left = dto.leftInfo.Find(x => x.Type == "A");
  6864. if (left == null)
  6865. {
  6866. return Ok(jw);
  6867. }
  6868. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6869. if (leftBindData != null)
  6870. {
  6871. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6872. designer.SetDataSource("VisaRS", leftBindData.rs);
  6873. designer.SetDataSource("VisaXS", leftBindData.xs);
  6874. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6875. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6876. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6877. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6878. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6879. }
  6880. else
  6881. {
  6882. hideRowsList.Add(Row + startIndex + HideRows);
  6883. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6884. }
  6885. HideRows += 2;
  6886. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6887. if (leftBindData != null)
  6888. {
  6889. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6890. designer.SetDataSource("BXRS", leftBindData.rs);
  6891. designer.SetDataSource("BXXS", leftBindData.xs);
  6892. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6893. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6894. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6895. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6896. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6897. }
  6898. else
  6899. {
  6900. hideRowsList.Add(Row + startIndex + HideRows);
  6901. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6902. }
  6903. HideRows += 2;
  6904. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6905. if (leftBindData != null)
  6906. {
  6907. designer.SetDataSource("HSDRCB", leftBindData.cb);
  6908. designer.SetDataSource("HSRS", leftBindData.rs);
  6909. designer.SetDataSource("HSXS", leftBindData.xs);
  6910. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6911. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6912. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6913. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6914. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6915. }
  6916. else
  6917. {
  6918. hideRowsList.Add(Row + startIndex + HideRows);
  6919. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6920. }
  6921. HideRows += 2;
  6922. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  6923. if (leftBindData != null)
  6924. {
  6925. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  6926. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  6927. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  6928. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6929. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6930. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6931. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6932. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6933. }
  6934. else
  6935. {
  6936. hideRowsList.Add(Row + startIndex + HideRows);
  6937. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6938. }
  6939. HideRows += 2;
  6940. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  6941. if (leftBindData != null)
  6942. {
  6943. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  6944. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  6945. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  6946. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6947. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6948. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6949. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6950. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6951. }
  6952. else
  6953. {
  6954. hideRowsList.Add(Row + startIndex + HideRows);
  6955. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6956. }
  6957. HideRows += 2;
  6958. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  6959. if (leftBindData != null)
  6960. {
  6961. ////TBR
  6962. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  6963. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  6964. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  6965. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6966. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6967. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6968. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6969. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6970. }
  6971. else
  6972. {
  6973. hideRowsList.Add(Row + startIndex + HideRows);
  6974. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6975. }
  6976. HideRows += 2;
  6977. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  6978. if (leftBindData != null)
  6979. {
  6980. ////SGR
  6981. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  6982. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  6983. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  6984. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6985. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6986. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6987. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6988. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6989. }
  6990. else
  6991. {
  6992. hideRowsList.Add(Row + startIndex + HideRows);
  6993. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6994. }
  6995. HideRows += 2;
  6996. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  6997. if (leftBindData != null)
  6998. {
  6999. ////JS/ES
  7000. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7001. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7002. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7003. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7004. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7005. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7006. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7007. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7008. }
  7009. else
  7010. {
  7011. hideRowsList.Add(Row + startIndex + HideRows);
  7012. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7013. }
  7014. HideRows += 2;
  7015. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7016. if (leftBindData != null)
  7017. {
  7018. ////SUITE
  7019. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7020. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7021. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7022. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7023. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7024. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7025. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7026. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7027. }
  7028. else
  7029. {
  7030. hideRowsList.Add(Row + startIndex + HideRows);
  7031. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7032. }
  7033. HideRows += 2;
  7034. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7035. if (leftBindData != null)
  7036. {
  7037. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7038. designer.SetDataSource("DJRS", leftBindData.rs);
  7039. designer.SetDataSource("DJXS", leftBindData.xs);
  7040. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7041. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7042. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7043. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7044. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7045. }
  7046. else
  7047. {
  7048. hideRowsList.Add(Row + startIndex + HideRows);
  7049. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7050. }
  7051. HideRows += 2;
  7052. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7053. if (leftBindData != null)
  7054. {
  7055. designer.SetDataSource("HCPCB", leftBindData.cb);
  7056. designer.SetDataSource("HCPRS", leftBindData.rs);
  7057. designer.SetDataSource("HCPXS", leftBindData.xs);
  7058. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7059. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7060. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7061. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7062. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7063. }
  7064. else
  7065. {
  7066. hideRowsList.Add(Row + startIndex + HideRows);
  7067. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7068. }
  7069. HideRows += 2;
  7070. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7071. if (leftBindData != null)
  7072. {
  7073. designer.SetDataSource("CPCB", leftBindData.cb);
  7074. designer.SetDataSource("CPRS", leftBindData.rs);
  7075. designer.SetDataSource("CPXS", leftBindData.xs);
  7076. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7077. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7078. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7079. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7080. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7081. }
  7082. else
  7083. {
  7084. hideRowsList.Add(Row + startIndex + HideRows);
  7085. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7086. }
  7087. HideRows += 2;
  7088. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7089. if (leftBindData != null)
  7090. {
  7091. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7092. designer.SetDataSource("GWRS", leftBindData.rs);
  7093. designer.SetDataSource("GWXS", leftBindData.xs);
  7094. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7095. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7096. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7097. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7098. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7099. }
  7100. else
  7101. {
  7102. hideRowsList.Add(Row + startIndex + HideRows);
  7103. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7104. }
  7105. HideRows += 2;
  7106. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7107. if (leftBindData != null)
  7108. {
  7109. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7110. designer.SetDataSource("LYJRS", leftBindData.rs);
  7111. designer.SetDataSource("LYJXS", leftBindData.xs);
  7112. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7113. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7114. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7115. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7116. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7117. }
  7118. else
  7119. {
  7120. hideRowsList.Add(Row + startIndex + HideRows);
  7121. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7122. }
  7123. #endregion
  7124. #region A段Right信息
  7125. var right = dto.rightInfo.Find(x => x.Type == "A");
  7126. if (right == null)
  7127. {
  7128. return Ok(jw);
  7129. }
  7130. HideRows += 4;
  7131. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7132. if (rightBindData != null)
  7133. {
  7134. //经济舱 + 双人间 TBR
  7135. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7136. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7137. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7138. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7139. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7140. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7141. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7142. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7143. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7144. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7145. }
  7146. else
  7147. {
  7148. hideRowsList.Add(Row + startIndex + HideRows);
  7149. }
  7150. HideRows += 2;
  7151. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7152. if (rightBindData != null)
  7153. {
  7154. //经济舱 + 单人间 SGR
  7155. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7156. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7157. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7158. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7159. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7160. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7161. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7162. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7163. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7164. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7165. }
  7166. else
  7167. {
  7168. hideRowsList.Add(Row + startIndex + HideRows);
  7169. }
  7170. HideRows += 2;
  7171. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7172. if (rightBindData != null)
  7173. {
  7174. //公务舱 + 单人间 SGR
  7175. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7176. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7177. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7178. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7179. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7180. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7181. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7182. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7183. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7184. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7185. }
  7186. else
  7187. {
  7188. hideRowsList.Add(Row + startIndex + HideRows);
  7189. }
  7190. HideRows += 2;
  7191. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7192. if (rightBindData != null)
  7193. {
  7194. //公务舱 + 小套房 JSES
  7195. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7196. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7197. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7198. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7199. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7200. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7201. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7202. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7203. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7204. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7205. }
  7206. else
  7207. {
  7208. hideRowsList.Add(Row + startIndex + HideRows);
  7209. }
  7210. HideRows += 2;
  7211. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7212. if (rightBindData != null)
  7213. {
  7214. //公务舱 + 小套房 JSES
  7215. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7216. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7217. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7218. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7219. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7220. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7221. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7222. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7223. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7224. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7225. }
  7226. else
  7227. {
  7228. hideRowsList.Add(Row + startIndex + HideRows);
  7229. }
  7230. HideRows += 2;
  7231. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7232. if (rightBindData != null)
  7233. {
  7234. //经济舱 + 大套房
  7235. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7236. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7237. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7238. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7239. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7240. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7241. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7242. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7243. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7244. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7245. }
  7246. else
  7247. {
  7248. hideRowsList.Add(Row + startIndex + HideRows);
  7249. }
  7250. #endregion
  7251. #region B段标题清空
  7252. designer.SetDataSource("CostBDRCB", "");
  7253. designer.SetDataSource("CostBRS", "");
  7254. designer.SetDataSource("CostBXS", "");
  7255. designer.SetDataSource("CostBZCB", "");
  7256. designer.SetDataSource("CostBDRBJ", "");
  7257. designer.SetDataSource("CostBZBJ", "");
  7258. designer.SetDataSource("CostBDRLR", "");
  7259. designer.SetDataSource("CostBZLR", "");
  7260. designer.SetDataSource("CostBDRCBOM", "");
  7261. designer.SetDataSource("CostBRSOM", "");
  7262. designer.SetDataSource("CostBZCBOM", "");
  7263. designer.SetDataSource("CostBDRBJOM", "");
  7264. designer.SetDataSource("CostBZBJOM", "");
  7265. designer.SetDataSource("CostBDRLROM", "");
  7266. designer.SetDataSource("CostBZLROM", "");
  7267. #endregion
  7268. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7269. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7270. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7271. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7272. designer.SetDataSource("DJName", "地接(CNY)");
  7273. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7274. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7275. designer.SetDataSource("GWName", "公务(CNY)");
  7276. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7277. designer.SetDataSource("LYJName", "零用金(CNY)");
  7278. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7279. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7280. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7281. designer.SetDataSource("BXName", "保险(CNY)");
  7282. designer.SetDataSource("VisaName", "签证(CNY)");
  7283. #region B段基本数据
  7284. if (dto.costType == "B")
  7285. {
  7286. left = dto.leftInfo.Find(x => x.Type == "B");
  7287. if (left == null)
  7288. {
  7289. return Ok(jw);
  7290. }
  7291. #region B段left数据
  7292. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7293. if (leftBindData != null)
  7294. {
  7295. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7296. designer.SetDataSource("BHSRS", leftBindData.rs);
  7297. designer.SetDataSource("BHSXS", leftBindData.xs);
  7298. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7299. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7300. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7301. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7302. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7303. }
  7304. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7305. if (leftBindData != null)
  7306. {
  7307. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7308. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7309. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7310. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7311. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7312. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7313. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7314. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7315. }
  7316. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7317. if (leftBindData != null)
  7318. {
  7319. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7320. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7321. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7322. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7323. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7324. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7325. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7326. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7327. }
  7328. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7329. if (leftBindData != null)
  7330. {
  7331. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7332. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7333. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7334. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7335. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7336. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7337. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7338. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7339. }
  7340. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7341. if (leftBindData != null)
  7342. {
  7343. designer.SetDataSource("BCPCB", leftBindData.cb);
  7344. designer.SetDataSource("BCPRS", leftBindData.rs);
  7345. designer.SetDataSource("BCPXS", leftBindData.xs);
  7346. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7347. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7348. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7349. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7350. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7351. }
  7352. //TBR
  7353. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7354. if (leftBindData != null)
  7355. {
  7356. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7357. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7358. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7359. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7360. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7361. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7362. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7363. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7364. }
  7365. //SGR
  7366. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7367. if (leftBindData != null)
  7368. {
  7369. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7370. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7371. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7372. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7373. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7374. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7375. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7376. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7377. }
  7378. //JS/ES
  7379. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7380. if (leftBindData != null)
  7381. {
  7382. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7383. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7384. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7385. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7386. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7387. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7388. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7389. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7390. }
  7391. //SUITE
  7392. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7393. if (leftBindData != null)
  7394. {
  7395. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7396. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7397. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7398. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7399. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7400. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7401. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7402. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7403. }
  7404. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7405. if (leftBindData != null)
  7406. {
  7407. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7408. designer.SetDataSource("BDJRS", leftBindData.rs);
  7409. designer.SetDataSource("BDJXS", leftBindData.xs);
  7410. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7411. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7412. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7413. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7414. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7415. }
  7416. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7417. if (leftBindData != null)
  7418. {
  7419. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7420. designer.SetDataSource("BGWRS", leftBindData.rs);
  7421. designer.SetDataSource("BGWXS", leftBindData.xs);
  7422. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7423. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7424. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7425. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7426. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7427. }
  7428. #region 优化方案
  7429. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7430. //excelBind.Add("零用金", new {
  7431. //cb="",
  7432. //rs="",
  7433. //xs ="",
  7434. //zcb = "",
  7435. //});
  7436. #endregion
  7437. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7438. if (leftBindData != null)
  7439. {
  7440. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7441. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7442. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7443. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7444. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7445. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7446. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7447. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7448. }
  7449. #endregion
  7450. #region B段Right信息
  7451. right = dto.rightInfo.Find(x => x.Type == "B");
  7452. if (right == null)
  7453. {
  7454. return Ok(jw);
  7455. }
  7456. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7457. if (rightBindData != null)
  7458. {
  7459. //经济舱 + 双人间 TBR
  7460. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7461. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7462. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7463. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7464. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7465. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7466. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7467. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7468. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7469. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7470. }
  7471. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7472. if (rightBindData != null)
  7473. {
  7474. //经济舱 + 单人间 SGR
  7475. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7476. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7477. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7478. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7479. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7480. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7481. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7482. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7483. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7484. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7485. }
  7486. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7487. if (rightBindData != null)
  7488. {
  7489. //公务舱 + 单人间 SGR
  7490. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7491. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7492. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7493. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7494. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7495. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7496. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7497. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7498. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7499. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7500. }
  7501. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7502. if (rightBindData != null)
  7503. {
  7504. //公务舱 + 小套房 JSES
  7505. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7506. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7507. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7508. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7509. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7510. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7511. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7512. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7513. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7514. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7515. }
  7516. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7517. if (rightBindData != null)
  7518. {
  7519. //公务舱 + 小套房 JSES
  7520. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7521. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7522. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7523. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7524. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7525. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7526. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7527. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7528. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7529. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7530. }
  7531. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7532. if (rightBindData != null)
  7533. {
  7534. //经济舱 + 大套房
  7535. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7536. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7537. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7538. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7539. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7540. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7541. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7542. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7543. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7544. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7545. }
  7546. #endregion
  7547. #region 标题
  7548. designer.SetDataSource("CostBDRCB", "单人成本");
  7549. designer.SetDataSource("CostBRS", "人数");
  7550. designer.SetDataSource("CostBXS", "系数");
  7551. designer.SetDataSource("CostBZCB", "总成本");
  7552. designer.SetDataSource("CostBDRBJ", "单人报价");
  7553. designer.SetDataSource("CostBZBJ", "总报价");
  7554. designer.SetDataSource("CostBDRLR", "单人利润");
  7555. designer.SetDataSource("CostBZLR", "总利润");
  7556. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7557. designer.SetDataSource("CostBRSOM", "人数");
  7558. designer.SetDataSource("CostBZCBOM", "总成本");
  7559. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7560. designer.SetDataSource("CostBZBJOM", "总报价");
  7561. designer.SetDataSource("CostBDRLROM", "单人利润");
  7562. designer.SetDataSource("CostBZLROM", "总利润");
  7563. #endregion
  7564. }
  7565. #endregion
  7566. designer.SetDataSource("TzZCB2", TzZCB2);
  7567. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7568. designer.SetDataSource("TzZLR2", TzZLR2);
  7569. string[] dataSourceKeys = new string[]
  7570. {
  7571. "VF",
  7572. "TGS",
  7573. "TGOF",
  7574. "TGM",
  7575. "TGA",
  7576. "TGTF",
  7577. "TGEF",
  7578. "CFM",
  7579. "CFOF",
  7580. "B",
  7581. "L",
  7582. "D",
  7583. "TBR",
  7584. "SGR",
  7585. "JSES",
  7586. "Suite",
  7587. "TV",
  7588. "1L",
  7589. "IF",
  7590. "EF",
  7591. "BRF",
  7592. "TE",
  7593. "TGT",
  7594. "DRVT",
  7595. "PC",
  7596. "TLF",
  7597. "ECT"
  7598. };
  7599. foreach (var item in dataSourceKeys)
  7600. {
  7601. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7602. if (find != null)
  7603. {
  7604. designer.SetDataSource(item, find.text);
  7605. }
  7606. else
  7607. {
  7608. designer.SetDataSource(item, 0);
  7609. }
  7610. }
  7611. designer.SetDataSource(dt);
  7612. //根据数据源处理生成报表内容
  7613. designer.Process();
  7614. designer.Workbook.Worksheets[0].Name = "清单";
  7615. Worksheet sheet = designer.Workbook.Worksheets[0];
  7616. foreach (var Rowindex in hideRowsList)
  7617. {
  7618. ws.Cells.HideRows(Rowindex, 2);
  7619. }
  7620. byte[] bytes = null;
  7621. string strFileName = di.TeamName + "-团组-成本.xls";
  7622. using (MemoryStream stream = new MemoryStream())
  7623. {
  7624. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7625. bytes = stream.ToArray();
  7626. }
  7627. return Ok(JsonView(true, "", new
  7628. {
  7629. Data = bytes,
  7630. strFileName,
  7631. }));
  7632. }
  7633. /// <summary>
  7634. /// 导出客户报表
  7635. /// </summary>
  7636. /// <returns></returns>
  7637. [HttpPost]
  7638. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7639. {
  7640. var jw = JsonView(false);
  7641. if (dto.Diid == 0)
  7642. {
  7643. return Ok(JsonView(false, "请传递团组id"));
  7644. }
  7645. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7646. if (deleInfo.Code != 0)
  7647. {
  7648. return Ok(JsonView(false, "团组信息查询失败!"));
  7649. }
  7650. var di = deleInfo.Data as DelegationInfoWebView;
  7651. if (di == null)
  7652. {
  7653. return Ok(JsonView(false, "团组信息查询失败!"));
  7654. }
  7655. //文件名
  7656. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7657. //获取模板
  7658. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7659. //载入模板
  7660. Document doc = new Document(tmppath);
  7661. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7662. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7663. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7664. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7665. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7666. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7667. if (AParameter == null)
  7668. {
  7669. return Ok(JsonView(false, "系数不存在!"));
  7670. }
  7671. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7672. , TzAirDesc, TzZCost;
  7673. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7674. = TzAirDesc = TzZCost = string.Empty;
  7675. TzNumber = AParameter.CostTypenumber.ToString();
  7676. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7677. CarGuides1 = dto.CarGuides1;
  7678. Meal = dto.Meal;
  7679. SubsidizedMeals = dto.SubsidizedMeals;
  7680. NightRepair = dto.NightRepair;
  7681. AttractionsTickets = dto.AttractionsTickets;
  7682. MiscellaneousFees = dto.MiscellaneousFees;
  7683. ATip = dto.ATip;
  7684. TzHotelDesc = "";
  7685. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7686. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7687. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7688. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7689. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7690. TzAirDesc = "";
  7691. TzZCost = dto.TzZCost;
  7692. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7693. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7694. var index = 1;
  7695. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7696. foreach (var item in TzHotelDescArr)
  7697. {
  7698. if (AinfoArr != null)
  7699. {
  7700. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7701. if (Ainfo != null)
  7702. {
  7703. if (int.Parse(Ainfo.rs) <= 0)
  7704. {
  7705. continue;
  7706. }
  7707. var hotelText = string.Empty;
  7708. switch (item)
  7709. {
  7710. case "SGR":
  7711. hotelText = "单人间";
  7712. break;
  7713. case "JSES":
  7714. hotelText = "小套房";
  7715. break;
  7716. case "SUITE":
  7717. hotelText = "套房";
  7718. break;
  7719. case "TBR":
  7720. hotelText = "双人间";
  7721. break;
  7722. }
  7723. if (item != "TBR")
  7724. {
  7725. 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";
  7726. }
  7727. else
  7728. {
  7729. 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";
  7730. }
  7731. index++;
  7732. }
  7733. }
  7734. }
  7735. index = 1;
  7736. foreach (var item in TzAirDescArr)
  7737. {
  7738. if (AinfoArr != null)
  7739. {
  7740. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7741. if (Ainfo != null)
  7742. {
  7743. if (int.Parse(Ainfo.rs) <= 0)
  7744. {
  7745. continue;
  7746. }
  7747. 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";
  7748. index++;
  7749. }
  7750. }
  7751. }
  7752. if (dto.costType == "B")
  7753. {
  7754. if (BParameter == null)
  7755. {
  7756. return Ok(JsonView(false, "B段系数不存在!"));
  7757. }
  7758. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7759. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7760. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7761. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7762. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7763. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7764. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7765. foreach (var item in TzHotelDescArr)
  7766. {
  7767. if (AinfoArr != null)
  7768. {
  7769. TzHotelDesc += "B段信息 \r\n";
  7770. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7771. if (Ainfo != null)
  7772. {
  7773. if (int.Parse(Ainfo.rs) <= 0)
  7774. {
  7775. continue;
  7776. }
  7777. var hotelText = string.Empty;
  7778. switch (item)
  7779. {
  7780. case "SGR":
  7781. hotelText = "单人间";
  7782. break;
  7783. case "JSES":
  7784. hotelText = "小套房";
  7785. break;
  7786. case "SUITE":
  7787. hotelText = "套房";
  7788. break;
  7789. case "TBR":
  7790. hotelText = "双人间";
  7791. break;
  7792. }
  7793. if (item != "TBR")
  7794. {
  7795. 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";
  7796. }
  7797. else
  7798. {
  7799. 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";
  7800. }
  7801. index++;
  7802. }
  7803. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7804. }
  7805. }
  7806. index = 1;
  7807. foreach (var item in TzAirDescArr)
  7808. {
  7809. if (AinfoArr != null)
  7810. {
  7811. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7812. if (Ainfo != null)
  7813. {
  7814. if (int.Parse(Ainfo.rs) <= 0)
  7815. {
  7816. continue;
  7817. }
  7818. 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";
  7819. index++;
  7820. }
  7821. }
  7822. }
  7823. }
  7824. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7825. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7826. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7827. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7828. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7829. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7830. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7831. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7832. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7833. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7834. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7835. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7836. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7837. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7838. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7839. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7840. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7841. DickeyValue.Add("TzZCost", TzZCost);
  7842. foreach (var key in DickeyValue.Keys)
  7843. {
  7844. if (doc.Range.Bookmarks[key] != null)
  7845. {
  7846. Bookmark mark = doc.Range.Bookmarks[key];
  7847. mark.Text = DickeyValue[key];
  7848. }
  7849. }
  7850. byte[] bytes = null;
  7851. string strFileName = di.TeamName + "-客户报价.doc";
  7852. using (MemoryStream stream = new MemoryStream())
  7853. {
  7854. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7855. bytes = stream.ToArray();
  7856. }
  7857. return Ok(JsonView(true, "", new
  7858. {
  7859. Data = bytes,
  7860. strFileName,
  7861. }));
  7862. }
  7863. /// <summary>
  7864. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7865. /// </summary>
  7866. /// <param name="dto"></param>
  7867. /// <returns></returns>
  7868. [HttpPost]
  7869. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7870. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7871. {
  7872. try
  7873. {
  7874. #region 参数验证
  7875. if (dto.DiId < 0)
  7876. {
  7877. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7878. }
  7879. List<int> cTableIds = new List<int>() {
  7880. 76 ,//酒店预订
  7881. 77 ,//行程
  7882. 79 ,//车/导游地接
  7883. 80 ,//签证
  7884. 81 ,//邀请/公务活
  7885. 82 ,//团组客户保险
  7886. 85 ,//机票预订
  7887. 98 ,//其他款项
  7888. 285 ,//收款退还
  7889. 751 ,//酒店早餐
  7890. 1015 // 超支费用
  7891. };
  7892. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7893. {
  7894. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7895. }
  7896. #endregion
  7897. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7898. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7899. if (_GroupCostParameters.Count <= 0)
  7900. {
  7901. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7902. }
  7903. if (_GroupCostParameters[0].IsShare == 0)
  7904. {
  7905. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7906. }
  7907. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7908. //处理date为空问题
  7909. if (_GroupCosts.Count > 0)
  7910. {
  7911. for (int i = 0; i < _GroupCosts.Count; i++)
  7912. {
  7913. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  7914. {
  7915. if (i > 0)
  7916. {
  7917. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  7918. }
  7919. }
  7920. }
  7921. }
  7922. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  7923. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  7924. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  7925. string currCode = "";
  7926. #region currCode 验证
  7927. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  7928. if (isInt)
  7929. {
  7930. var currData = currDatas.Find(it => it.Id == intCurrency);
  7931. if (currData != null)
  7932. {
  7933. currCode = currData.Name;
  7934. }
  7935. }
  7936. else
  7937. {
  7938. currCode = _GroupCostParameters[0].Currency.Trim();
  7939. }
  7940. #endregion
  7941. //op,酒店单段模式存储
  7942. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  7943. {
  7944. CurrencyCode = currCode,
  7945. Rate = _GroupCostParameters[0].Rate,
  7946. CostType = _GroupCostParameters[0].CostType,
  7947. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  7948. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  7949. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  7950. };
  7951. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  7952. if (_GroupCostParameters.Count == 2)
  7953. {
  7954. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  7955. }
  7956. foreach (var item in _GroupCostParameters)
  7957. {
  7958. decimal _rate = 1;
  7959. decimal _rate1 = item.Rate;
  7960. decimal _scale = 1;
  7961. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  7962. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  7963. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  7964. //if (userInfo != null)
  7965. //{
  7966. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  7967. // {
  7968. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  7969. // {
  7970. // _scale = 1.00M;
  7971. // }
  7972. // }
  7973. //}
  7974. #endregion
  7975. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  7976. {
  7977. CurrencyCode = currCode,
  7978. Rate = _rate1,
  7979. CostType = item.CostType,
  7980. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  7981. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  7982. CostTypeNumber = item.CostTypenumber
  7983. };
  7984. if (_GroupCostParameters.Count > 1)
  7985. {
  7986. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  7987. }
  7988. else
  7989. {
  7990. modulePromptInfo.CostTypeNumber = item.LYJRS;
  7991. }
  7992. if (dto.CTable == 79)//
  7993. {
  7994. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  7995. modulePromptInfo.TotalCost = item.DJCB;
  7996. }
  7997. List<string> costTypes = new List<string>() { "A", "B" };
  7998. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  7999. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8000. if (_GroupCostsDuplicates.Count() == 1)
  8001. {
  8002. _GroupCostsTypeData = _GroupCosts;
  8003. }
  8004. else
  8005. {
  8006. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8007. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8008. }
  8009. /*
  8010. * 76 酒店预订
  8011. * 77 行程
  8012. * 79 车/导游地接
  8013. * 80 签证
  8014. * 81 邀请/公务活动
  8015. * 82 团组客户保险
  8016. * 85 机票预订
  8017. * 98 其他款项
  8018. * 285 收款退还
  8019. * 751 酒店早餐
  8020. * 1015 超支费用
  8021. */
  8022. switch (dto.CTable)
  8023. {
  8024. case 76: // 酒店预订
  8025. _ModuleSubPromptInfo.AddRange(
  8026. _GroupCostsTypeData.Select(it => new
  8027. {
  8028. it.DAY,
  8029. it.Date,
  8030. it.ACCON,
  8031. it.ITIN,
  8032. it.SGR,
  8033. it.TBR,
  8034. it.JS_ES,
  8035. it.Suite
  8036. })
  8037. );
  8038. break;
  8039. case 79: // 车/导游地接
  8040. _ModuleSubPromptInfo.AddRange(
  8041. _GroupCostsTypeData.Select(it => new
  8042. {
  8043. Date = it.Date, //日期
  8044. CarFee = it.CarCost * _rate * _scale, //车费用
  8045. CarType = it.CarType, //车型
  8046. DriverFee = it.CFS * _rate * _scale, //司机工资
  8047. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8048. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8049. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8050. GuideFee = it.TGS * _rate * _scale, //导游费用
  8051. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8052. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8053. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8054. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8055. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8056. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8057. Breakfast = it.B * _rate * _scale, //早餐费
  8058. Lunch = it.L * _rate * _scale, //午餐费
  8059. Dinner = it.D * _rate * _scale, //晚餐费
  8060. TicketFee = it.EF * _rate * _scale, //门票费
  8061. SpentCash = it.PC * _rate * _scale, //零用金
  8062. LeadersFee = it.TLF * _rate * _scale, //领队费
  8063. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8064. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8065. })
  8066. );
  8067. break;
  8068. case 85: // 机票
  8069. List<dynamic> datas = new List<dynamic>();
  8070. datas.Add(
  8071. new
  8072. {
  8073. AirType = "经济舱",
  8074. AirNum = item.JJCRS,
  8075. AirDRCB = item.JJCCB,
  8076. AirZCB = (item.JJCRS * item.JJCCB)
  8077. }
  8078. );
  8079. datas.Add(
  8080. new
  8081. {
  8082. AirType = "公务舱",
  8083. AirNum = item.GWCRS,
  8084. AirDRCB = item.GWCCB,
  8085. AirZCB = (item.GWCRS * item.GWCCB)
  8086. }
  8087. );
  8088. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8089. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8090. modulePromptInfo.Data = new
  8091. {
  8092. airFeeData = datas,
  8093. airInitData = initDatas
  8094. };
  8095. _ModulePromptInfos.Add(modulePromptInfo);
  8096. break;
  8097. default:
  8098. break;
  8099. }
  8100. }
  8101. if (dto.CTable != 85)
  8102. {
  8103. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8104. _ModulePromptInfos.Add(_ModulePromptInfo);
  8105. }
  8106. _view.ModulePromptInfos = _ModulePromptInfos;
  8107. return Ok(JsonView(true, "操作成功!", _view));
  8108. }
  8109. catch (Exception ex)
  8110. {
  8111. return Ok(JsonView(false, ex.Message));
  8112. }
  8113. }
  8114. /// <summary>
  8115. /// 根据黑屏代码重新生成行程
  8116. /// </summary>
  8117. /// <param name="dto"></param>
  8118. /// <returns></returns>
  8119. [HttpPost]
  8120. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8121. {
  8122. var jw = JsonView(false);
  8123. var Create = _GroupCostRepository.
  8124. CreateGroupCostByBlackCode(dto.Diid);
  8125. jw.Msg = Create.Msg;
  8126. if (Create.Code == 0)
  8127. {
  8128. jw.Code = 200;
  8129. jw.Data = new
  8130. {
  8131. groupCost = Create.Data,
  8132. blackCodeIsTrue = true
  8133. };
  8134. }
  8135. else
  8136. {
  8137. jw.Code = 400;
  8138. jw.Data = new
  8139. {
  8140. groupCost = Create.Data,
  8141. blackCodeIsTrue = false,
  8142. };
  8143. }
  8144. return Ok(jw);
  8145. }
  8146. /// <summary>
  8147. /// 成本获取OP历史车费用
  8148. /// </summary>
  8149. /// <param name="dto"></param>
  8150. /// <returns></returns>
  8151. [HttpPost]
  8152. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8153. {
  8154. var jw = JsonView(false);
  8155. try
  8156. {
  8157. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8158. //获取现有所有车的数据
  8159. if (!dto.Param.IsNullOrWhiteSpace())
  8160. {
  8161. string sql = $@"
  8162. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8163. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8164. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8165. 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
  8166. AND gctggr.ServiceEndTime is not NULL
  8167. ORDER by gctggrc.id DESC
  8168. ";
  8169. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8170. var numeberResult = await Task.Run(() =>
  8171. {
  8172. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8173. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8174. return numberArr;
  8175. });
  8176. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8177. foreach (var item in numeberResult)
  8178. {
  8179. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8180. {
  8181. Country = "数据异常!",
  8182. City = string.Empty,
  8183. };
  8184. item.Area = find.Country + " " + find.City;
  8185. }
  8186. dbResult.AddRange(numeberResult);
  8187. if (dto.Param.Contains("、"))
  8188. {
  8189. var sp = dto.Param.Split("、");
  8190. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8191. .Where(x =>
  8192. {
  8193. return System.Array.Exists(sp, e =>
  8194. {
  8195. bool where = false;
  8196. if (x.Area != null)
  8197. {
  8198. where = x.Area.Contains(e);
  8199. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8200. {
  8201. return false;
  8202. }
  8203. }
  8204. if (x.PriceName != null && !where)
  8205. {
  8206. where = x.PriceName.Contains(e);
  8207. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8208. {
  8209. return false;
  8210. }
  8211. }
  8212. return where;
  8213. });
  8214. }).ToList();
  8215. }
  8216. else
  8217. {
  8218. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8219. .Where(x =>
  8220. {
  8221. bool where = false;
  8222. if (x.Area != null)
  8223. {
  8224. where = x.Area.Contains(dto.Param);
  8225. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8226. {
  8227. return false;
  8228. }
  8229. }
  8230. if (x.PriceName != null && !where)
  8231. {
  8232. where = x.PriceName.Contains(dto.Param);
  8233. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8234. {
  8235. return false;
  8236. }
  8237. }
  8238. return where;
  8239. }
  8240. )
  8241. .ToList();
  8242. }
  8243. }
  8244. var view = dbResult.Select(x =>
  8245. {
  8246. decimal dp = 0.00M;
  8247. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8248. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8249. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8250. {
  8251. if (startB && endB)
  8252. {
  8253. var timesp = endD.Subtract(startD);
  8254. if ((timesp.Days + 1) != 0)
  8255. {
  8256. dp = x.Price / (timesp.Days + 1);
  8257. }
  8258. }
  8259. }
  8260. else
  8261. {
  8262. dp = x.Price;
  8263. }
  8264. return new
  8265. {
  8266. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8267. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8268. x.Area,
  8269. x.id,
  8270. price = x.Price.ToString("F2"),
  8271. x.PriceName,
  8272. x.PriceContent,
  8273. x.TeamName,
  8274. x.DatePrice,
  8275. dayPrice = dp.ToString("F2"),
  8276. };
  8277. }).OrderByDescending(x => x.id).ToList();
  8278. jw = JsonView(true, "获取成功!", view);
  8279. }
  8280. catch (Exception e)
  8281. {
  8282. jw = JsonView(false, e.Message);
  8283. }
  8284. return Ok(jw);
  8285. }
  8286. #endregion
  8287. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8288. /// <summary>
  8289. /// 酒店预订
  8290. /// 酒店费用列表 根据团组Id查询
  8291. /// </summary>
  8292. /// <param name="_dto"></param>
  8293. /// <returns></returns>
  8294. [HttpPost]
  8295. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8296. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8297. {
  8298. #region 参数验证
  8299. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8300. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8301. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8302. #region 团组操作权限验证 76 酒店预定模块
  8303. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8304. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8305. #endregion
  8306. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8307. #region 页面操作权限验证
  8308. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8309. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8310. #endregion
  8311. #endregion
  8312. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8313. }
  8314. /// <summary>
  8315. /// 酒店预订
  8316. /// 基础数据
  8317. /// </summary>
  8318. /// <param name="_dto"></param>
  8319. /// <returns></returns>
  8320. [HttpPost]
  8321. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8322. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8323. {
  8324. #region 参数验证
  8325. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8326. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8327. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8328. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8329. #region 页面操作权限验证
  8330. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8331. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8332. #endregion
  8333. #region 团组操作权限验证 76 酒店预定模块
  8334. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8335. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8336. #endregion
  8337. #endregion
  8338. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8339. }
  8340. /// <summary>
  8341. /// 酒店预订
  8342. /// 创建 入住卷号码
  8343. /// </summary>
  8344. /// <param name="_dto"></param>
  8345. /// <returns></returns>
  8346. [HttpPost]
  8347. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8348. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8349. {
  8350. try
  8351. {
  8352. #region 参数验证
  8353. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8354. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8355. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8356. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8357. #region 页面操作权限验证
  8358. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8359. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8360. #endregion
  8361. #region 团组操作权限验证 76 酒店预定模块
  8362. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8363. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8364. #endregion
  8365. #endregion
  8366. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8367. if (data.Code != 0)
  8368. {
  8369. return Ok(JsonView(false, data.Msg));
  8370. }
  8371. return Ok(JsonView(true, data.Msg, data.Data));
  8372. }
  8373. catch (Exception ex)
  8374. {
  8375. return Ok(JsonView(false, ex.Message));
  8376. }
  8377. }
  8378. /// <summary>
  8379. /// 酒店预订
  8380. /// 详情
  8381. /// </summary>
  8382. /// <param name="_dto"></param>
  8383. /// <returns></returns>
  8384. [HttpPost]
  8385. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8386. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8387. {
  8388. #region 参数验证
  8389. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8390. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8391. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8392. #region 团组操作权限验证 76 酒店预定模块
  8393. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8394. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8395. #endregion
  8396. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8397. #region 页面操作权限验证
  8398. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8399. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8400. #endregion
  8401. #endregion
  8402. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8403. }
  8404. /// <summary>
  8405. /// 酒店预订
  8406. /// Add Or Edit
  8407. /// </summary>
  8408. /// <param name="_dto"></param>
  8409. /// <returns></returns>
  8410. [HttpPost]
  8411. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8412. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8413. {
  8414. #region 参数验证
  8415. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8416. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8417. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8418. #region 团组操作权限验证 76 酒店预定模块
  8419. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8420. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8421. #endregion
  8422. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8423. #region 页面操作权限验证
  8424. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8425. if (_dto.Id == 0) // Add
  8426. {
  8427. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8428. }
  8429. else if (_dto.Id > 1) // Edit
  8430. {
  8431. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8432. }
  8433. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8434. #endregion
  8435. #endregion
  8436. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8437. if (_view.Code != 200)
  8438. {
  8439. return Ok(_view);
  8440. }
  8441. #region 应用推送
  8442. try
  8443. {
  8444. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8445. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8446. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8447. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8448. //自动审核
  8449. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8450. }
  8451. catch (Exception ex)
  8452. {
  8453. }
  8454. #endregion
  8455. return Ok(_view);
  8456. }
  8457. /// <summary>
  8458. /// 酒店预订
  8459. /// Del
  8460. /// </summary>
  8461. /// <param name="_dto"></param>
  8462. /// <returns></returns>
  8463. [HttpPost]
  8464. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8465. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8466. {
  8467. #region 参数验证
  8468. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8469. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8470. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8471. #region 团组操作权限验证 76 酒店预定模块
  8472. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8473. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8474. #endregion
  8475. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8476. #region 页面操作权限验证
  8477. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8478. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8479. #endregion
  8480. #endregion
  8481. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8482. }
  8483. /// <summary>
  8484. /// 酒店预订
  8485. /// 生成VOUCHER
  8486. /// 2024.05.06 之前版本
  8487. /// </summary>
  8488. /// <param name="_dto"></param>
  8489. /// <returns></returns>
  8490. [HttpPost]
  8491. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8492. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8493. {
  8494. try
  8495. {
  8496. #region 参数验证
  8497. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8498. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8499. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8500. #region 团组操作权限验证 76 酒店预定模块
  8501. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8502. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8503. #endregion
  8504. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8505. #region 页面操作权限验证
  8506. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8507. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8508. #endregion
  8509. #endregion
  8510. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8511. //判断数据是否完整
  8512. if (hr != null)
  8513. {
  8514. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8515. {
  8516. string strFileName = "HotelStatement/";
  8517. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8518. if (dele != null)
  8519. strFileName += dele.TourCode;
  8520. //载入模板
  8521. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8522. Document doc = new Document(sss);
  8523. DocumentBuilder builder = new DocumentBuilder(doc);
  8524. #region 替换Word模板书签内容
  8525. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8526. //入住卷预定号码
  8527. if (doc.Range.Bookmarks["VNO"] != null)
  8528. {
  8529. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8530. mark.Text = hr.CheckNumber;
  8531. }
  8532. //酒店时间
  8533. if (doc.Range.Bookmarks["Date"] != null)
  8534. {
  8535. Bookmark mark = doc.Range.Bookmarks["Date"];
  8536. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8537. }
  8538. //团号
  8539. if (doc.Range.Bookmarks["TNo"] != null)
  8540. {
  8541. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8542. mark.Text = dele.TourCode;
  8543. }
  8544. //预定号码
  8545. if (doc.Range.Bookmarks["BookingId"] != null)
  8546. {
  8547. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8548. mark.Text = hr.ReservationsNo;
  8549. }
  8550. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8551. {
  8552. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8553. mark.Text = hr.DetermineNo;
  8554. }
  8555. //酒店城市
  8556. if (doc.Range.Bookmarks["City"] != null)
  8557. {
  8558. Bookmark mark = doc.Range.Bookmarks["City"];
  8559. mark.Text = hr.City;
  8560. }
  8561. //酒店名称
  8562. if (doc.Range.Bookmarks["HName"] != null)
  8563. {
  8564. Bookmark mark = doc.Range.Bookmarks["HName"];
  8565. mark.Text = hr.HotelName;
  8566. }
  8567. //酒店地址
  8568. if (doc.Range.Bookmarks["Address"] != null)
  8569. {
  8570. Bookmark mark = doc.Range.Bookmarks["Address"];
  8571. mark.Text = hr.HotelAddress;
  8572. }
  8573. //酒店电话
  8574. if (doc.Range.Bookmarks["Tel"] != null)
  8575. {
  8576. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8577. mark.Text = hr.HotelTel;
  8578. }
  8579. //酒店传真
  8580. if (doc.Range.Bookmarks["Fax"] != null)
  8581. {
  8582. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8583. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8584. {
  8585. mark.Text = hr.HotelFax;
  8586. }
  8587. }
  8588. //入住时间
  8589. if (doc.Range.Bookmarks["CIn"] != null)
  8590. {
  8591. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8592. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8593. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8594. }
  8595. //退房时间
  8596. if (doc.Range.Bookmarks["COut"] != null)
  8597. {
  8598. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8599. Bookmark mark = doc.Range.Bookmarks["COut"];
  8600. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8601. }
  8602. //客户名称
  8603. if (doc.Range.Bookmarks["GName"] != null)
  8604. {
  8605. string guestName = "";
  8606. string[] clients = new string[] { };
  8607. if (hr.GuestName.Contains(","))
  8608. {
  8609. clients = hr.GuestName.Split(",");
  8610. }
  8611. else
  8612. {
  8613. clients = new string[] { hr.GuestName };
  8614. }
  8615. List<int> clientIds_int = new List<int>();
  8616. if (clients.Length > 0)
  8617. {
  8618. foreach (var item in clients)
  8619. {
  8620. if (item.IsNumeric())
  8621. {
  8622. clientIds_int.Add(int.Parse(item));
  8623. }
  8624. }
  8625. }
  8626. if (clientIds_int.Count > 0)
  8627. {
  8628. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8629. foreach (var client in _clientDatas)
  8630. {
  8631. //男
  8632. if (client.Sex == 0) guestName += $"Mr.";
  8633. //女
  8634. else if (client.Sex == 1) guestName += $"Ms.";
  8635. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8636. {
  8637. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8638. }
  8639. //guestName += $"{client.Pinyin},";
  8640. }
  8641. if (guestName.Length > 0)
  8642. {
  8643. guestName = guestName.Substring(0, guestName.Length - 1);
  8644. }
  8645. }
  8646. else
  8647. {
  8648. guestName = hr.GuestName;
  8649. }
  8650. Bookmark mark = doc.Range.Bookmarks["GName"];
  8651. mark.Text = guestName;
  8652. }
  8653. //房间介绍
  8654. if (doc.Range.Bookmarks["ROOM"] != null)
  8655. {
  8656. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8657. mark.Text = hr.RoomExplanation;
  8658. }
  8659. //报价描述
  8660. if (doc.Range.Bookmarks["NOTE"] != null)
  8661. {
  8662. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8663. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8664. if (ss != null)
  8665. mark.Text = ss.Name;
  8666. }
  8667. //入住时间
  8668. if (doc.Range.Bookmarks["CheckIn"] != null)
  8669. {
  8670. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8671. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8672. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8673. }
  8674. //退房时间
  8675. if (doc.Range.Bookmarks["CheckOut"] != null)
  8676. {
  8677. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8678. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8679. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8680. }
  8681. //日期
  8682. if (doc.Range.Bookmarks["DT"] != null)
  8683. {
  8684. Bookmark mark = doc.Range.Bookmarks["DT"];
  8685. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8686. }
  8687. //名称
  8688. if (doc.Range.Bookmarks["VName"] != null)
  8689. {
  8690. Bookmark mark = doc.Range.Bookmarks["VName"];
  8691. mark.Text = hr.HotelName;
  8692. }
  8693. //号码
  8694. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8695. {
  8696. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8697. mark.Text = hr.CheckNumber;
  8698. }
  8699. #endregion
  8700. strFileName += "VOUCHER.doc";
  8701. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8702. doc.Save(fileDir);
  8703. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8704. return Ok(JsonView(true, "操作成功!", Url));
  8705. }
  8706. else
  8707. {
  8708. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8709. }
  8710. }
  8711. else
  8712. {
  8713. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8714. }
  8715. }
  8716. catch (Exception ex)
  8717. {
  8718. return Ok(JsonView(false, ex.Message));
  8719. }
  8720. }
  8721. /// <summary>
  8722. /// 酒店预订
  8723. /// 生成VOUCHER
  8724. /// 2024.05.06 之后版本
  8725. /// </summary>
  8726. /// <param name="_dto"></param>
  8727. /// <returns></returns>
  8728. [HttpPost]
  8729. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8730. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8731. {
  8732. #region 参数验证
  8733. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8734. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8735. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8736. #region 团组操作权限验证 76 酒店预定模块
  8737. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8738. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8739. #endregion
  8740. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8741. #region 页面操作权限验证
  8742. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8743. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8744. #endregion
  8745. #endregion
  8746. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8747. //判断数据是否完整
  8748. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8749. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8750. string strFileName = "HotelStatement/";
  8751. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8752. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8753. #region 数据处理
  8754. List<int> guestIds = new List<int>();
  8755. int index = 0;
  8756. foreach (var item in hrDtas)
  8757. {
  8758. if (item.GuestName.Contains(","))
  8759. {
  8760. string[] guestIdArr = item.GuestName.Split(',');
  8761. foreach (var guestIdStr in guestIdArr)
  8762. {
  8763. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8764. if (guestBool)
  8765. {
  8766. guestIds.Add(guestId);
  8767. }
  8768. }
  8769. }
  8770. else guestNames += item.GuestName;
  8771. var voucherInfo = new HotelVoucherInfoView()
  8772. {
  8773. HotelName = item.HotelName,
  8774. CheckInDate = item.CheckInDate,
  8775. CheckOutDate = item.CheckOutDate,
  8776. ConfirmationNumber = item.DetermineNo.Trim(),
  8777. RoomType = item.RoomExplanation
  8778. };
  8779. vouchers.Add(voucherInfo);
  8780. }
  8781. if (guestIds.Count > 0)
  8782. {
  8783. guestIds = guestIds.Distinct().ToList();
  8784. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8785. if (guestDatas.Count > 0)
  8786. {
  8787. guestNames = "";
  8788. foreach (var guest in guestDatas)
  8789. {
  8790. string guestName = "";
  8791. if (guest.Sex == 0) guestName += @"MR.";
  8792. else if (guest.Sex == 1) guestName += @"MS.";
  8793. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8794. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8795. guestNames += @$"{guestName.Trim()}、";
  8796. }
  8797. if (guestNames.Length > 0)
  8798. {
  8799. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8800. }
  8801. }
  8802. }
  8803. #endregion
  8804. //载入模板
  8805. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8806. Document doc = new Document(sss);
  8807. DocumentBuilder builder = new DocumentBuilder(doc);
  8808. if (doc.Range.Bookmarks["GuestName"] != null)
  8809. {
  8810. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  8811. mark.Text = guestNames;
  8812. }
  8813. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8814. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  8815. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  8816. for (int i = 1; i <= vouchers.Count; i++)
  8817. {
  8818. HotelVoucherInfoView hviv = vouchers[i - 1];
  8819. builder.MoveToCell(0, i, 0, 0);
  8820. builder.Write(hviv.HotelName);
  8821. builder.MoveToCell(0, i, 1, 0);
  8822. builder.Write(hviv.CheckInDate);
  8823. builder.MoveToCell(0, i, 2, 0);
  8824. builder.Write(hviv.CheckOutDate);
  8825. builder.MoveToCell(0, i, 3, 0);
  8826. builder.Write(hviv.RoomType);
  8827. builder.MoveToCell(0, i, 4, 0);
  8828. builder.Write(hviv.ConfirmationNumber);
  8829. }
  8830. //删除多余行
  8831. int currRowIndex = vouchers.Count + 1;
  8832. int delRows = 21 - currRowIndex;
  8833. if (delRows > 0)
  8834. {
  8835. for (int i = 0; i < delRows; i++)
  8836. {
  8837. table.Rows.RemoveAt(currRowIndex);
  8838. //cultivateRowIndex++;
  8839. }
  8840. }
  8841. strFileName += "VOUCHER.docx";
  8842. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8843. doc.Save(fileDir);
  8844. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8845. return Ok(JsonView(true, "操作成功!", Url));
  8846. }
  8847. /// <summary>
  8848. /// 酒店预订
  8849. /// 生成 预定成本 Excel
  8850. /// </summary>
  8851. /// <param name="_dto"></param>
  8852. /// <returns></returns>
  8853. [HttpPost]
  8854. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8855. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  8856. {
  8857. #region 参数验证
  8858. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  8859. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  8860. if (!vadalitorRes.IsValid)
  8861. {
  8862. var errors = new StringBuilder();
  8863. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  8864. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  8865. }
  8866. #region 团组操作权限验证 76 酒店预定模块
  8867. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8868. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8869. #endregion
  8870. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8871. #region 页面操作权限验证
  8872. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8873. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8874. #endregion
  8875. #endregion
  8876. decimal _rate = 1.00M;
  8877. string _currency = "";
  8878. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  8879. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8880. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  8881. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  8882. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  8883. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  8884. {
  8885. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  8886. }
  8887. _currency = _GroupCostParameter.Currency;
  8888. bool isIntType = int.TryParse(_currency, out int currId);
  8889. if (isIntType)
  8890. {
  8891. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  8892. }
  8893. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  8894. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  8895. if (currInfo == null)
  8896. {
  8897. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  8898. }
  8899. if (!_currency.ToUpper().Equals("CNY"))
  8900. {
  8901. _rate = _GroupCostParameter.Rate;
  8902. }
  8903. _rate = currInfo.Rate;
  8904. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8905. string strFileName = "HotelStatement/";
  8906. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8907. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  8908. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  8909. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  8910. #region 数据处理
  8911. foreach (var item in hrDtas)
  8912. {
  8913. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  8914. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  8915. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  8916. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  8917. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  8918. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  8919. string singleRoomFeeStr = string.Empty,
  8920. doubleRoomFeeStr = string.Empty,
  8921. suiteRoomFeeStr = string.Empty,
  8922. otherRoomFeeStr = string.Empty,
  8923. payMoneyStr = string.Empty,
  8924. cardPriceStr = string.Empty;
  8925. if (roomCurr.Equals(_currency))
  8926. {
  8927. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  8928. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  8929. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  8930. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  8931. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  8932. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  8933. }
  8934. else
  8935. {
  8936. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  8937. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  8938. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  8939. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  8940. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  8941. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  8942. }
  8943. string breakfastPriceStr = string.Empty,
  8944. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  8945. governmentRentStr = string.Empty,
  8946. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  8947. cityTaxStrStr = string.Empty,
  8948. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  8949. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  8950. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  8951. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  8952. pcfds.Add(new HotelReservations_PCFD_View()
  8953. {
  8954. City = item.City,
  8955. HotelName = item.HotelName,
  8956. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  8957. // SingleRoomCount = item.SingleRoomCount,
  8958. SingleRoomPrice = singleRoomFeeStr,
  8959. // DoubleRoomCount = item.DoubleRoomCount,
  8960. DoubleRoomPrice = doubleRoomFeeStr,
  8961. //SuiteRoomCount = item.SuiteRoomCount,
  8962. SuiteRoomPrice = suiteRoomFeeStr,
  8963. OtherRoomPrice = otherRoomFeeStr,
  8964. //OtherRoomCount = item.OtherRoomCount,
  8965. BreakfastPrice = breakfastPriceStr,
  8966. GovernmentRent = governmentRentStr,
  8967. CityTax = cityTaxStrStr,
  8968. RoomExplanation = item.RoomExplanation,
  8969. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  8970. PayTime = roomInfo.ConsumptionDate,
  8971. BankNo = roomInfo.BankNo,
  8972. PayMoney = payMoneyStr,
  8973. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  8974. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  8975. CardPrice = cardPriceStr,
  8976. Remark = ccpInfo.Remark
  8977. });
  8978. }
  8979. #endregion
  8980. //载入模板
  8981. WorkbookDesigner designer = new WorkbookDesigner();
  8982. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  8983. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  8984. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  8985. designer.SetDataSource("TourNo", groupInfo.TourCode);
  8986. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  8987. designer.SetDataSource("Opertor", userInfo.CnName);
  8988. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  8989. dt.TableName = "ViewMyHotelReservations";
  8990. designer.SetDataSource(dt);
  8991. designer.Process();
  8992. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  8993. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  8994. designer.Workbook.Save(serverPath);
  8995. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  8996. #region 删除指定行
  8997. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  8998. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  8999. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9000. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9001. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9002. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9003. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9004. cssIndex = dt.Columns["CityTax"].Ordinal,
  9005. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9006. remarkIndex = dt.Columns["Remark"].Ordinal;
  9007. //删除指定列
  9008. foreach (DataRow item in dt.Rows)
  9009. {
  9010. string singleStr = item["SingleRoomPrice"].ToString();
  9011. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9012. if (containsDigitButNotZero1) singleDel = false;
  9013. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9014. string doubleStr = item["DoubleRoomPrice"].ToString();
  9015. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9016. if (containsDigitButNotZero2) doubleDel = false;
  9017. string suiteStr = item["SuiteRoomPrice"].ToString();
  9018. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9019. if (containsDigitButNotZero3) suiteDel = false;
  9020. string otherStr = item["OtherRoomPrice"].ToString();
  9021. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9022. if (containsDigitButNotZero4) otherDel = false;
  9023. string zcStr = item["BreakfastPrice"].ToString();
  9024. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9025. if (containsDigitButNotZero5) zcDel = false;
  9026. string dsStr = item["GovernmentRent"].ToString();
  9027. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9028. if (containsDigitButNotZero6) dsDel = false;
  9029. string cssStr = item["CityTax"].ToString();
  9030. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9031. if (containsDigitButNotZero7) cssDel = false;
  9032. string cpStr = item["ConsumptionPatterns"].ToString();
  9033. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9034. string remarkStr = item["Remark"].ToString();
  9035. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9036. }
  9037. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9038. DeleteColumn(serverPath, cpIndex, cpDel);
  9039. DeleteColumn(serverPath, dsIndex, dsDel);
  9040. DeleteColumn(serverPath, cssIndex, cssDel);
  9041. DeleteColumn(serverPath, zcIndex, zcDel);
  9042. DeleteColumn(serverPath, otherIndex, otherDel);
  9043. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9044. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9045. DeleteColumn(serverPath, singleIndex, singleDel);
  9046. #endregion
  9047. //只保留第一个表格
  9048. DeleteSheet(serverPath);
  9049. return Ok(JsonView(true, "操作成功", url = rst));
  9050. }
  9051. /// <summary>
  9052. /// 删除指定列
  9053. /// </summary>
  9054. /// <param name="file"></param>
  9055. /// <param name="columnIndex"></param>
  9056. /// <param name="isDel"></param>
  9057. private void DeleteColumn(string file, int columnIndex, bool isDel)
  9058. {
  9059. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9060. //wb.Save(file);
  9061. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9062. if (sheet1 != null)
  9063. {
  9064. if (isDel)
  9065. {
  9066. Cells cells = sheet1.Cells;
  9067. cells.DeleteColumn(columnIndex);
  9068. }
  9069. }
  9070. wb.Save(file);
  9071. }
  9072. /// <summary>
  9073. /// 删除sheet
  9074. /// </summary>
  9075. /// <param name="file"></param>
  9076. /// <param name="sheetName"></param>
  9077. private void DeleteSheet(string file, string sheetName = "")
  9078. {
  9079. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9080. //wb.Save(file);
  9081. List<string> sheets = new List<string>();
  9082. foreach (var item in wb.Worksheets)
  9083. {
  9084. sheets.Add(item.Name);
  9085. }
  9086. if (sheets.Count > 0)
  9087. {
  9088. sheets.RemoveAt(0);//不删除第一个sheet
  9089. foreach (var item in sheets)
  9090. {
  9091. wb.Worksheets.RemoveAt(item);
  9092. }
  9093. }
  9094. wb.Save(file);
  9095. }
  9096. /// <summary>
  9097. /// 酒店预订
  9098. /// 确认单
  9099. /// </summary>
  9100. /// <param name="_dto"></param>
  9101. /// <returns></returns>
  9102. [HttpPost]
  9103. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9104. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9105. {
  9106. try
  9107. {
  9108. #region 参数验证
  9109. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9110. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9111. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9112. #region 团组操作权限验证 76 酒店预定模块
  9113. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9114. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9115. #endregion
  9116. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9117. #region 页面操作权限验证
  9118. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9119. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9120. #endregion
  9121. #endregion
  9122. //团组信息
  9123. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9124. //酒店数据
  9125. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9126. if (listhoteldata.Count < 0)
  9127. {
  9128. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9129. }
  9130. //利datatable存储
  9131. DataTable dt = new DataTable();
  9132. dt.Columns.Add("CheckInDate", typeof(string));
  9133. dt.Columns.Add("City", typeof(string));
  9134. dt.Columns.Add("Hotel", typeof(string));
  9135. dt.Columns.Add("Room", typeof(string));
  9136. for (int i = 0; i < listhoteldata.Count; i++)
  9137. {
  9138. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9139. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9140. while (dayStart < dayEnd)
  9141. {
  9142. string temp = "";
  9143. DataRow row = dt.NewRow();
  9144. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9145. row["City"] = listhoteldata[i].City;
  9146. row["Hotel"] = listhoteldata[i].HotelName;
  9147. if (listhoteldata[i].SingleRoomCount > 0)
  9148. {
  9149. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9150. }
  9151. if (listhoteldata[i].DoubleRoomCount > 0)
  9152. {
  9153. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9154. }
  9155. if (listhoteldata[i].SuiteRoomCount > 0)
  9156. {
  9157. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9158. }
  9159. if (listhoteldata[i].OtherRoomCount > 0)
  9160. {
  9161. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9162. }
  9163. row["Room"] = temp;
  9164. dt.Rows.Add(row);
  9165. dayStart = dayStart.AddDays(1);
  9166. }
  9167. }
  9168. Dictionary<string, string> dic = new Dictionary<string, string>();
  9169. dic.Add("Dele", di.TeamName);
  9170. dic.Add("City", di.VisitCountry);
  9171. //模板路径
  9172. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9173. //载入模板
  9174. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9175. DocumentBuilder builder = new DocumentBuilder(doc);
  9176. foreach (var key in dic.Keys)
  9177. {
  9178. builder.MoveToBookmark(key);
  9179. builder.Write(dic[key]);
  9180. }
  9181. //获取word里所有表格
  9182. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9183. //获取所填表格的序数
  9184. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9185. var rowStart = tableOne.Rows[0]; //获取第1行
  9186. //循环赋值
  9187. for (int i = 0; i < dt.Rows.Count; i++)
  9188. {
  9189. builder.MoveToCell(0, i + 1, 0, 0);
  9190. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9191. builder.MoveToCell(0, i + 1, 1, 0);
  9192. builder.Write(dt.Rows[i]["City"].ToString());
  9193. builder.MoveToCell(0, i + 1, 2, 0);
  9194. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9195. builder.MoveToCell(0, i + 1, 3, 0);
  9196. builder.Write(dt.Rows[i]["Room"].ToString());
  9197. }
  9198. //删除多余行
  9199. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9200. {
  9201. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9202. }
  9203. string strFileName = di.TeamName + "酒店确认单.doc";
  9204. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9205. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9206. return Ok(JsonView(true, "成功", url));
  9207. }
  9208. catch (Exception ex)
  9209. {
  9210. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9211. }
  9212. }
  9213. #endregion
  9214. #region 团组状态
  9215. /// <summary>
  9216. /// 团组状态列表 Page
  9217. /// </summary>
  9218. /// <param name="dto">团组列表请求dto</param>
  9219. /// <returns></returns>
  9220. [HttpPost]
  9221. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9222. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9223. {
  9224. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9225. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9226. {
  9227. string sqlWhere = string.Empty;
  9228. if (dto.IsSure == 0) //未完成
  9229. {
  9230. sqlWhere += string.Format(@" And IsSure = 0");
  9231. }
  9232. else if (dto.IsSure == 1) //已完成
  9233. {
  9234. sqlWhere += string.Format(@" And IsSure = 1");
  9235. }
  9236. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9237. {
  9238. string tj = dto.SearchCriteria;
  9239. 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}%')",
  9240. tj, tj, tj, tj, tj);
  9241. }
  9242. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9243. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9244. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9245. From (
  9246. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9247. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9248. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9249. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9250. From Grp_DelegationInfo gdi
  9251. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9252. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9253. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9254. Where gdi.IsDel = 0 {0}
  9255. ) temp ", sqlWhere);
  9256. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9257. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9258. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9259. }
  9260. else
  9261. {
  9262. return Ok(JsonView(false, "查询失败"));
  9263. }
  9264. }
  9265. /// <summary>
  9266. /// 团组状态
  9267. /// 设置操作完成
  9268. /// </summary>
  9269. /// <param name="dto">团组列表请求dto</param>
  9270. /// <returns></returns>
  9271. [HttpPost]
  9272. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9273. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9274. {
  9275. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9276. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9277. {
  9278. Id = dto.Id,
  9279. IsSure = 1
  9280. };
  9281. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9282. .UpdateColumns(it => new { it.IsSure })
  9283. .WhereColumns(it => new { it.Id })
  9284. .ExecuteCommandAsync();
  9285. if (result > 0)
  9286. {
  9287. return Ok(JsonView(true, "操作完成!"));
  9288. }
  9289. return Ok(JsonView(false, "操作失败!"));
  9290. }
  9291. #endregion
  9292. #region 保险费用录入
  9293. /// <summary>
  9294. /// 根据团组Id查询保险费用列表
  9295. /// </summary>
  9296. /// <param name="dto"></param>
  9297. /// <returns></returns>
  9298. [HttpPost]
  9299. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9300. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9301. {
  9302. try
  9303. {
  9304. Result groupData = await _customersRep.CustomersByDiId(dto);
  9305. if (groupData.Code != 0)
  9306. {
  9307. return Ok(JsonView(false, groupData.Msg));
  9308. }
  9309. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9310. }
  9311. catch (Exception ex)
  9312. {
  9313. return Ok(JsonView(false, ex.Message));
  9314. }
  9315. }
  9316. /// <summary>
  9317. /// 根据保险费用Id查询保险费用详细
  9318. /// </summary>
  9319. /// <param name="dto"></param>
  9320. /// <returns></returns>
  9321. [HttpPost]
  9322. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9323. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9324. {
  9325. try
  9326. {
  9327. Result groupData = await _customersRep.CustomersById(dto);
  9328. if (groupData.Code != 0)
  9329. {
  9330. return Ok(JsonView(false, groupData.Msg));
  9331. }
  9332. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9333. }
  9334. catch (Exception ex)
  9335. {
  9336. return Ok(JsonView(false, ex.Message));
  9337. }
  9338. }
  9339. /// <summary>
  9340. /// 保险费用录入页面初始化绑定
  9341. /// </summary>
  9342. /// <param name="dto"></param>
  9343. /// <returns></returns>
  9344. [HttpPost]
  9345. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9346. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9347. {
  9348. try
  9349. {
  9350. Result groupData = await _customersRep.CustomersInitialize(dto);
  9351. if (groupData.Code != 0)
  9352. {
  9353. return Ok(JsonView(false, groupData.Msg));
  9354. }
  9355. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9356. }
  9357. catch (Exception ex)
  9358. {
  9359. return Ok(JsonView(false, ex.Message));
  9360. }
  9361. }
  9362. /// <summary>
  9363. /// 保险费用操作(Status:1.新增,2.修改)
  9364. /// </summary>
  9365. /// <param name="dto"></param>
  9366. /// <returns></returns>
  9367. [HttpPost]
  9368. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9369. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9370. {
  9371. try
  9372. {
  9373. Result groupData = await _customersRep.OpCustomers(dto);
  9374. if (groupData.Code != 0)
  9375. {
  9376. return Ok(JsonView(false, groupData.Msg));
  9377. }
  9378. #region 应用推送
  9379. try
  9380. {
  9381. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9382. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9383. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9384. }
  9385. catch (Exception ex)
  9386. {
  9387. }
  9388. #endregion
  9389. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9390. }
  9391. catch (Exception ex)
  9392. {
  9393. return Ok(JsonView(false, ex.Message));
  9394. }
  9395. }
  9396. /// <summary>
  9397. /// 保险文件上传
  9398. /// </summary>
  9399. /// <param name="file"></param>
  9400. /// <returns></returns>
  9401. [HttpPost]
  9402. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9403. public async Task<IActionResult> UploadCus(IFormFile file)
  9404. {
  9405. try
  9406. {
  9407. if (file != null)
  9408. {
  9409. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9410. //文件名称
  9411. string projectFileName = file.FileName;
  9412. //上传的文件的路径
  9413. string filePath = "";
  9414. if (!Directory.Exists(fileDir))
  9415. {
  9416. Directory.CreateDirectory(fileDir);
  9417. }
  9418. //上传的文件的路径
  9419. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9420. using (FileStream fs = System.IO.File.Create(filePath))
  9421. {
  9422. file.CopyTo(fs);
  9423. fs.Flush();
  9424. }
  9425. return Ok(JsonView(true, "上传成功!", projectFileName));
  9426. }
  9427. else
  9428. {
  9429. return Ok(JsonView(false, "上传失败!"));
  9430. }
  9431. }
  9432. catch (Exception ex)
  9433. {
  9434. return Ok(JsonView(false, "程序错误!"));
  9435. throw;
  9436. }
  9437. }
  9438. /// <summary>
  9439. /// 保险删除指定文件
  9440. /// </summary>
  9441. /// <param name="dto"></param>
  9442. /// <returns></returns>
  9443. [HttpPost]
  9444. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9445. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9446. {
  9447. try
  9448. {
  9449. string filePath = "";
  9450. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9451. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9452. //int id = 0;
  9453. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9454. // 删除该文件
  9455. try
  9456. {
  9457. System.IO.File.Delete(filePath);
  9458. 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()
  9459. {
  9460. Attachment = "",
  9461. }).ExecuteCommandAsync();
  9462. if (result != 0)
  9463. {
  9464. return Ok(JsonView(true, "成功!"));
  9465. }
  9466. else
  9467. {
  9468. return Ok(JsonView(false, "失败!"));
  9469. }
  9470. }
  9471. catch (Exception)
  9472. {
  9473. 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()
  9474. {
  9475. Attachment = "",
  9476. }).ExecuteCommandAsync();
  9477. if (result != 0)
  9478. {
  9479. return Ok(JsonView(true, "成功!"));
  9480. }
  9481. else
  9482. {
  9483. return Ok(JsonView(false, "失败!"));
  9484. }
  9485. }
  9486. }
  9487. catch (Exception ex)
  9488. {
  9489. return Ok(JsonView(false, "程序错误!"));
  9490. throw;
  9491. }
  9492. }
  9493. /// <summary>
  9494. /// 保险费用操作(删除)
  9495. /// </summary>
  9496. /// <param name="dto"></param>
  9497. /// <returns></returns>
  9498. [HttpPost]
  9499. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9500. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9501. {
  9502. try
  9503. {
  9504. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9505. if (!res)
  9506. {
  9507. return Ok(JsonView(false, "删除失败"));
  9508. }
  9509. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9510. {
  9511. IsDel = 1,
  9512. DeleteUserId = dto.DeleteUserId,
  9513. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9514. }).ExecuteCommandAsync();
  9515. return Ok(JsonView(true, "删除成功!"));
  9516. }
  9517. catch (Exception ex)
  9518. {
  9519. return Ok(JsonView(false, "程序错误!"));
  9520. throw;
  9521. }
  9522. }
  9523. #endregion
  9524. #region 接团客户名单 PageId 104
  9525. /// <summary>
  9526. /// 接团客户名单
  9527. /// 迁移数据(慎用!)
  9528. /// </summary>
  9529. /// <param name="dto"></param>
  9530. /// <returns></returns>
  9531. [HttpPost]
  9532. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9533. public async Task<IActionResult> PostTourClientListChange()
  9534. {
  9535. try
  9536. {
  9537. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9538. //var groupClinetData1
  9539. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9540. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9541. int updateCount = 0;
  9542. if (oldOAClientList.Count > 0)
  9543. {
  9544. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9545. _sqlSugar.BeginTran();
  9546. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9547. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9548. foreach (var item in oldOAClientList)
  9549. {
  9550. int comId = 0;
  9551. string format = "yyyy-MM-dd HH:mm:ss";
  9552. string data11 = "1990-01-01 00:00";
  9553. var data1 = IsValidDate(item.OPdate, format);
  9554. if (data1) data11 = item.OPdate;
  9555. //客户公司验证
  9556. if (!string.IsNullOrEmpty(item.Company))
  9557. {
  9558. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9559. if (clientComInfo == null) // add
  9560. {
  9561. var addInfo = new Crm_CustomerCompany()
  9562. {
  9563. CompanyAbbreviation = "",
  9564. CompanyFullName = item.Company,
  9565. Address = "",
  9566. PostCodes = "",
  9567. LastedOpUserId = item.OPer,
  9568. LastedOpDt = Convert.ToDateTime(data11),
  9569. CreateUserId = item.OPer,
  9570. CreateTime = Convert.ToDateTime(data11),
  9571. IsDel = 0
  9572. };
  9573. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9574. if (comId1 > 0) comId = comId1;
  9575. }
  9576. else comId = clientComInfo.Id;
  9577. }
  9578. //客户人员验证
  9579. int clientId = 0;
  9580. string name = item.LastName + item.Name;
  9581. if (!string.IsNullOrEmpty(name))
  9582. {
  9583. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9584. if (clientInfo == null)
  9585. {
  9586. DateTime? dateTime = null;
  9587. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9588. if (isDt) dateTime = birthDayDt;
  9589. var addInfo1 = new Crm_DeleClient()
  9590. {
  9591. CrmCompanyId = comId,
  9592. DiId = -1,
  9593. LastName = item.LastName,
  9594. FirstName = item.Name,
  9595. OldName = "",
  9596. Pinyin = item.Pinyin,
  9597. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9598. Marriage = 0,
  9599. Phone = item.Phone,
  9600. Job = item.Job,
  9601. BirthDay = dateTime
  9602. };
  9603. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9604. if (clientId1 > 0) clientId = clientId1;
  9605. }
  9606. else clientId = clientInfo.Id;
  9607. }
  9608. if (clientId < 1)
  9609. {
  9610. continue;
  9611. }
  9612. int airType = 0;
  9613. if (item.AirType == "超经舱") airType = 459;
  9614. else if (item.AirType == "公务舱") airType = 458;
  9615. else if (item.AirType == "经济舱") airType = 460;
  9616. else if (item.AirType == "其他") airType = 565;
  9617. else if (item.AirType == "头等舱") airType = 457;
  9618. var _TourClientListEntity = new Grp_TourClientList()
  9619. {
  9620. DiId = item.Diid,
  9621. ClientId = clientId,
  9622. CreateUserId = item.OPer,
  9623. CreateTime = Convert.ToDateTime(data11),
  9624. Remark = item.Remark,
  9625. IsDel = item.Isdel,
  9626. ShippingSpaceTypeId = airType,
  9627. ShippingSpaceSpecialNeeds = item.AirRemark,
  9628. HotelSpecialNeeds = item.RoomType
  9629. };
  9630. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9631. if (_TourClientList > 0)
  9632. {
  9633. updateCount++;
  9634. }
  9635. }
  9636. _sqlSugar.CommitTran();
  9637. }
  9638. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9639. }
  9640. catch (Exception ex)
  9641. {
  9642. _sqlSugar.RollbackTran();
  9643. return Ok(JsonView(false, ex.Message));
  9644. }
  9645. return Ok(JsonView(true));
  9646. }
  9647. private bool IsValidDate(string dateString, string format)
  9648. {
  9649. DateTime dateValue;
  9650. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9651. return valid;
  9652. }
  9653. /// <summary>
  9654. /// 接团客户名单
  9655. /// 根据团组Id查询List
  9656. /// </summary>
  9657. /// <param name="dto"></param>
  9658. /// <returns></returns>
  9659. [HttpPost]
  9660. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9661. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9662. {
  9663. #region 参数验证
  9664. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9665. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9666. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9667. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9668. #region 页面操作权限验证
  9669. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9670. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9671. #endregion
  9672. #endregion
  9673. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9674. if (viewData.Code != 0)
  9675. {
  9676. return Ok(JsonView(false, viewData.Msg));
  9677. }
  9678. return Ok(JsonView(viewData.Data));
  9679. }
  9680. /// <summary>
  9681. /// 接团客户名单
  9682. /// 基础数据 Init
  9683. /// </summary>
  9684. /// <param name="_dto"></param>
  9685. /// <returns></returns>
  9686. [HttpPost]
  9687. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9688. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9689. {
  9690. #region 参数验证
  9691. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9692. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9693. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9694. #region 页面操作权限验证
  9695. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9696. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9697. #endregion
  9698. #endregion
  9699. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9700. if (viewData.Code != 0)
  9701. {
  9702. return Ok(JsonView(false, viewData.Msg));
  9703. }
  9704. return Ok(JsonView(viewData.Data));
  9705. }
  9706. /// <summary>
  9707. /// 接团客户名单
  9708. /// 根据 Id查询 Details
  9709. /// </summary>
  9710. /// <param name="_dto"></param>
  9711. /// <returns></returns>
  9712. [HttpPost]
  9713. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9714. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9715. {
  9716. #region 参数验证
  9717. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9718. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9719. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9720. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9721. #region 页面操作权限验证
  9722. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9723. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9724. #endregion
  9725. #endregion
  9726. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9727. if (viewData.Code != 0)
  9728. {
  9729. return Ok(JsonView(false, viewData.Msg));
  9730. }
  9731. return Ok(JsonView(viewData.Data));
  9732. }
  9733. /// <summary>
  9734. /// 接团客户名单
  9735. /// Add Or Edit
  9736. /// </summary>
  9737. /// <param name="_dto"></param>
  9738. /// <returns></returns>
  9739. [HttpPost]
  9740. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9741. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9742. {
  9743. #region 参数验证
  9744. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9745. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9746. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9747. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9748. #region 页面操作权限验证
  9749. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9750. if (_dto.Id == 0) //添加
  9751. {
  9752. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9753. }
  9754. else if (_dto.Id >= 0) //修改
  9755. {
  9756. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9757. }
  9758. #endregion
  9759. #endregion
  9760. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9761. if (viewData.Code != 0)
  9762. {
  9763. return Ok(JsonView(false, viewData.Msg));
  9764. }
  9765. return Ok(JsonView(true));
  9766. }
  9767. /// <summary>
  9768. /// 接团客户名单
  9769. /// AddMultiple(添加多个)
  9770. /// </summary>
  9771. /// <param name="_dto"></param>
  9772. /// <returns></returns>
  9773. [HttpPost]
  9774. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9775. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9776. {
  9777. #region 参数验证
  9778. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9779. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9780. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9781. #region 页面操作权限验证
  9782. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9783. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9784. #endregion
  9785. #endregion
  9786. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9787. if (viewData.Code != 0)
  9788. {
  9789. return Ok(JsonView(false, viewData.Msg));
  9790. }
  9791. return Ok(JsonView(true));
  9792. }
  9793. /// <summary>
  9794. /// 接团客户名单
  9795. /// Del
  9796. /// </summary>
  9797. /// <param name="_dto"></param>
  9798. /// <returns></returns>
  9799. [HttpPost]
  9800. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9801. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9802. {
  9803. #region 参数验证
  9804. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9805. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9806. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9807. #region 页面操作权限验证
  9808. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9809. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9810. #endregion
  9811. #endregion
  9812. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  9813. if (viewData.Code != 0)
  9814. {
  9815. return Ok(JsonView(false, viewData.Msg));
  9816. }
  9817. return Ok(JsonView(true));
  9818. }
  9819. /// <summary>
  9820. /// 接团客户名单
  9821. /// 文件下载 客户名单
  9822. /// </summary>
  9823. /// <param name="_dto"></param>
  9824. /// <returns></returns>
  9825. [HttpPost]
  9826. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9827. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  9828. {
  9829. #region 参数验证
  9830. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9831. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9832. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  9833. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9834. #region 页面操作权限验证
  9835. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9836. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9837. #endregion
  9838. #endregion
  9839. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  9840. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  9841. From Grp_TourClientList tcl
  9842. Left Join
  9843. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  9844. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  9845. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  9846. From Crm_DeleClient dc
  9847. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  9848. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  9849. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  9850. Where dc.IsDel = 0) temp
  9851. On temp.DcId =tcl.ClientId
  9852. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  9853. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  9854. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  9855. //载入模板
  9856. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  9857. if (_dto.Language == 1)
  9858. {
  9859. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  9860. }
  9861. //载入模板
  9862. var doc = new Document(tempPath);
  9863. DocumentBuilder builder = new DocumentBuilder(doc);
  9864. //获取word里所有表格
  9865. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9866. //获取所填表格的序数
  9867. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9868. var rowStart = tableOne.Rows[0]; //获取第1行
  9869. if (_dto.Language == 0)
  9870. {
  9871. //循环赋值
  9872. for (int i = 0; i < DcList.Count; i++)
  9873. {
  9874. builder.MoveToCell(0, i + 1, 0, 0);
  9875. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  9876. builder.MoveToCell(0, i + 1, 1, 0);
  9877. int sex = DcList[i].Sex;
  9878. string sexStr = string.Empty;
  9879. if (sex == 0) sexStr = "男";
  9880. else if (sex == 1) sexStr = "女";
  9881. else sexStr = "未设置";
  9882. builder.Write(sexStr);
  9883. builder.MoveToCell(0, i + 1, 2, 0);
  9884. string birthDay = DcList[i].BirthDay;
  9885. string birthDayStr = string.Empty;
  9886. if (!string.IsNullOrEmpty(birthDay))
  9887. {
  9888. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  9889. }
  9890. builder.Write(birthDayStr);
  9891. builder.MoveToCell(0, i + 1, 3, 0);
  9892. string company = "";
  9893. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9894. {
  9895. company = DcList[i].CompanyFullName.ToString();
  9896. }
  9897. builder.Write(company);
  9898. builder.MoveToCell(0, i + 1, 4, 0);
  9899. builder.Write(DcList[i].Job);
  9900. }
  9901. }
  9902. else if (_dto.Language == 1)
  9903. {
  9904. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  9905. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  9906. List<string> transArrayStr = new List<string>();
  9907. string transStrRes1 = "";
  9908. for (int i = 0; i < DcList.Count; i++)
  9909. {
  9910. var dc = DcList[i];
  9911. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  9912. if (dc.Job.Equals("暂无")) dc.Job = "-";
  9913. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  9914. if (DcList.Count - 1 == i) transStrRes1 += str1;
  9915. else transStrRes1 += $"{str1}|";
  9916. }
  9917. //string transStrRes = "0 & Provincial Health & Health Commission Deputy Director | 1 & Provincial People's Hospital & Provincial People's Hospital Chief Accountant | 2 & Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College & North Sichuan Medical College | 3 & Provincial Health Commission Planning & Provincial Health Commission Planning and Information Division Director | 4 &-& Deputy Director | 5 & Provincial Health Commission population and Family Division & Provincial Health Commission population and Family Division Director";
  9918. string transStrRes = "";
  9919. if (transStrRes1.Length > 0 )
  9920. {
  9921. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  9922. }
  9923. //0、 Deputy Director of the Provincial Health and Health Commission | 1、 Chief Accountant of the provincial People's Hospital | 2、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 3、 Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director | 5、 Director of the population and Family Department of the Provincial Health and Health Commission | 3、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 4、 Deputy Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director of the population and Family Department of the Provincial Health and Health Commission | 5、 Director of the population and Family Department of the Provincial Health and Health Commission
  9924. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  9925. //List<string> transArray = new List<string> { };
  9926. List<TranslateInfo> transArray = new List<TranslateInfo>();
  9927. if (transStrRes.Contains("|"))
  9928. {
  9929. string[] transArray1 = transStrRes.Split('|');
  9930. if (transArray1.Length > 0)
  9931. {
  9932. foreach (var item in transArray1)
  9933. {
  9934. if (item.Contains("&"))
  9935. {
  9936. string[] transArray2 = item.Split('&');
  9937. int index = 0;
  9938. string companyName = "", job = "";
  9939. if (transArray2.Length > 0)
  9940. {
  9941. bool success = int.TryParse(transArray2[0].Trim(), out index);
  9942. if (1 < transArray2.Length) companyName = transArray2[1];
  9943. if (2 < transArray2.Length) job = transArray2[2];
  9944. }
  9945. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  9946. }
  9947. }
  9948. }
  9949. }
  9950. //循环赋值
  9951. for (int i = 0; i < DcList.Count; i++)
  9952. {
  9953. string PYName = "";
  9954. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  9955. {
  9956. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  9957. string PY_First = DcList[i].Pinyin.Split('/')[1];
  9958. PYName = PY_First + " " + PY_Last;
  9959. }
  9960. else
  9961. {
  9962. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  9963. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  9964. PYName = PY_First + " " + PY_Last;
  9965. }
  9966. builder.MoveToCell(0, i + 1, 0, 0);
  9967. builder.Write(PYName);
  9968. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  9969. builder.MoveToCell(0, i + 1, 1, 0);
  9970. builder.Write(sex);
  9971. DateTime birthDt;
  9972. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  9973. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  9974. builder.MoveToCell(0, i + 1, 2, 0);
  9975. builder.Write(birthday);
  9976. string company = string.Empty,job = string.Empty;
  9977. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  9978. if (dcTransInfo != null)
  9979. {
  9980. company = dcTransInfo.CompanyName;
  9981. job = dcTransInfo.Job;
  9982. }
  9983. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9984. {
  9985. //查询对照表
  9986. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  9987. if (tempCec != null)
  9988. {
  9989. company = tempCec.enName;
  9990. }
  9991. //翻译
  9992. else
  9993. {
  9994. }
  9995. }
  9996. builder.MoveToCell(0, i + 1, 3, 0);
  9997. builder.Write(company);
  9998. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  9999. {
  10000. //查询对照表
  10001. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10002. if (tempPec != null)
  10003. {
  10004. job = tempPec.enName;
  10005. }
  10006. //翻译
  10007. else
  10008. {
  10009. }
  10010. }
  10011. builder.MoveToCell(0, i + 1, 4, 0);
  10012. builder.Write(job);
  10013. }
  10014. }
  10015. //删除多余行
  10016. while (tableOne.Rows.Count > DcList.Count + 1)
  10017. {
  10018. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10019. }
  10020. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10021. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10022. doc.Save(fileDir);
  10023. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10024. return Ok(JsonView(true, "操作成功!", Url));
  10025. }
  10026. private class TranslateInfo
  10027. {
  10028. public int Index { get; set; }
  10029. public string CompanyName { get; set; }
  10030. public string Job { get; set; }
  10031. }
  10032. #endregion
  10033. #region 团组倒推表
  10034. /// <summary>
  10035. /// 倒推表基础数据
  10036. /// Init
  10037. /// </summary>
  10038. /// <param name="dto"></param>
  10039. /// <returns></returns>
  10040. [HttpPost]
  10041. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10042. public async Task<IActionResult> PostInvertedListInit()
  10043. {
  10044. var viewData = await _invertedListRep._Init();
  10045. if (viewData.Code != 0)
  10046. {
  10047. return Ok(JsonView(false, viewData.Msg));
  10048. }
  10049. return Ok(JsonView(viewData.Data));
  10050. }
  10051. /// <summary>
  10052. /// 倒推表
  10053. /// Info
  10054. /// </summary>
  10055. /// <param name="dto"></param>
  10056. /// <returns></returns>
  10057. [HttpPost]
  10058. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10059. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10060. {
  10061. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10062. if (viewData.Code != 0)
  10063. {
  10064. return Ok(JsonView(false, viewData.Msg));
  10065. }
  10066. return Ok(JsonView(viewData.Data));
  10067. }
  10068. /// <summary>
  10069. /// 倒推表
  10070. /// Create
  10071. /// </summary>
  10072. /// <param name="dto"></param>
  10073. /// <returns></returns>
  10074. [HttpPost]
  10075. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10076. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10077. {
  10078. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10079. if (viewData.Code != 0)
  10080. {
  10081. return Ok(JsonView(false, viewData.Msg));
  10082. }
  10083. return Ok(JsonView(viewData.Data));
  10084. }
  10085. /// <summary>
  10086. /// 倒推表
  10087. /// Update
  10088. /// </summary>
  10089. /// <param name="dto"></param>
  10090. /// <returns></returns>
  10091. [HttpPost]
  10092. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10093. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10094. {
  10095. var viewData = await _invertedListRep._Update(dto);
  10096. if (viewData.Code != 0)
  10097. {
  10098. return Ok(JsonView(false, viewData.Msg));
  10099. }
  10100. return Ok(JsonView(viewData.Data));
  10101. }
  10102. /// <summary>
  10103. /// 倒推表
  10104. /// File Download
  10105. /// </summary>
  10106. /// <param name="dto"></param>
  10107. /// <returns></returns>
  10108. [HttpPost]
  10109. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10110. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10111. {
  10112. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10113. if (info2.Code != 0)
  10114. {
  10115. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10116. }
  10117. var info1 = info2.Data as InvertedListInfoView;
  10118. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10119. string teamName = "";
  10120. if (info != null) teamName = info.TeamName;
  10121. //载入模板
  10122. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10123. DocumentBuilder builder = new DocumentBuilder(doc);
  10124. //利用键值对存放数据
  10125. Dictionary<string, string> dic = new Dictionary<string, string>();
  10126. dic.Add("TeamName", teamName);
  10127. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10128. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10129. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10130. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10131. dic.Add("SQRemark", info1.ApprovalRemark);
  10132. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10133. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10134. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10135. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10136. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10137. dic.Add("QZRemark", info1.VisaInformationRemark);
  10138. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10139. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10140. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10141. dic.Add("CQRemark", info1.IssueVisaRemark);
  10142. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10143. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10144. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10145. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10146. #region 填充word模板书签内容
  10147. foreach (var key in dic.Keys)
  10148. {
  10149. builder.MoveToBookmark(key);
  10150. builder.Write(dic[key]);
  10151. }
  10152. #endregion
  10153. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10154. string fileName = $"{teamName}团出行准备流程表.doc";
  10155. string filePath = fileDir + $@"InvertedList/{fileName}";
  10156. doc.Save(filePath);
  10157. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10158. return Ok(JsonView(true, "操作成功!", Url));
  10159. }
  10160. #endregion
  10161. #region 三公签证费用(签证费、代办费)
  10162. /// <summary>
  10163. /// 三公签证费用(签证费、代办费)
  10164. /// List
  10165. /// </summary>
  10166. /// <returns></returns>
  10167. [HttpPost]
  10168. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10169. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10170. {
  10171. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10172. if (_view.Code != 0)
  10173. {
  10174. return Ok(JsonView(false, _view.Msg));
  10175. }
  10176. return Ok(JsonView(true, "操作成功!", _view.Data));
  10177. }
  10178. /// <summary>
  10179. /// 三公签证费用(签证费、代办费)
  10180. /// Add Or Update
  10181. /// </summary>
  10182. /// <returns></returns>
  10183. [HttpPost]
  10184. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10185. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10186. {
  10187. var _view = await _visaFeeInfoRep._Update(_dto);
  10188. if (_view.Code != 0)
  10189. {
  10190. return Ok(JsonView(false, _view.Msg));
  10191. }
  10192. return Ok(JsonView(true, _view.Msg));
  10193. }
  10194. #endregion
  10195. #region 酒店询价
  10196. /// <summary>
  10197. /// 酒店询价
  10198. /// Init
  10199. /// </summary>
  10200. /// <param name="dto"></param>
  10201. /// <returns></returns>
  10202. [HttpPost]
  10203. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10204. public async Task<IActionResult> PostHotelInquiryInit()
  10205. {
  10206. var res = await _hotelInquiryRep._Init();
  10207. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10208. return Ok(JsonView(true, res.Msg, res.Data));
  10209. }
  10210. /// <summary>
  10211. /// 酒店询价
  10212. /// page Item
  10213. /// </summary>
  10214. /// <param name="_dto"></param>
  10215. /// <returns></returns>
  10216. [HttpPost]
  10217. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10218. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10219. {
  10220. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10221. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10222. var view = res.Data as PageDataViewBase;
  10223. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10224. }
  10225. /// <summary>
  10226. /// 酒店询价
  10227. /// info
  10228. /// </summary>
  10229. /// <param name="_dto"></param>
  10230. /// <returns></returns>
  10231. [HttpPost]
  10232. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10233. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10234. {
  10235. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10236. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10237. return Ok(JsonView(true, res.Msg, res.Data));
  10238. }
  10239. /// <summary>
  10240. /// 酒店询价
  10241. /// Add Or Edit
  10242. /// </summary>
  10243. /// <param name="_dto"></param>
  10244. /// <returns></returns>
  10245. [HttpPost]
  10246. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10247. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10248. {
  10249. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10250. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10251. return Ok(JsonView(true, res.Msg, res.Data));
  10252. }
  10253. /// <summary>
  10254. /// 酒店询价
  10255. /// Del
  10256. /// </summary>
  10257. /// <param name="_dto"></param>
  10258. /// <returns></returns>
  10259. [HttpPost]
  10260. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10261. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10262. {
  10263. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10264. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10265. return Ok(JsonView(true, res.Msg, res.Data));
  10266. }
  10267. #endregion
  10268. #region 下载匹配op行程单
  10269. /// <summary>
  10270. /// 匹配op行程单
  10271. /// Init
  10272. /// </summary>
  10273. /// <param name="dto">团组列表请求dto</param>
  10274. /// <returns></returns>
  10275. [HttpPost]
  10276. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10277. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10278. {
  10279. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10280. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10281. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10282. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10283. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10284. .Where(it => it.IsDel == 0)
  10285. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10286. .OrderByDescending(it => it.CreateUserId)
  10287. .ToList();
  10288. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10289. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10290. var diids = groupInfos.Select(it => it.Id).ToList();
  10291. List<string> countrys = new List<string>();
  10292. foreach (var item in country)
  10293. {
  10294. var data = _groupRepository.FormartTeamName(item);
  10295. var dataArray = _groupRepository.GroupSplitCountry(data);
  10296. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10297. }
  10298. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10299. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10300. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10301. foreach (var item in areaItem)
  10302. {
  10303. string areaStr = item.Value;
  10304. if (!string.IsNullOrEmpty(areaStr))
  10305. {
  10306. string[] str1 = areaStr.Split("-");
  10307. if (str1.Length > 0)
  10308. {
  10309. areaArray.AddRange(str1);
  10310. }
  10311. }
  10312. }
  10313. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10314. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10315. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10316. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10317. .ToList();
  10318. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10319. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10320. .Where(it => countriesIds.Contains(it.Id))
  10321. .Select(it => new { it.Id, Name = it.Name_CN })
  10322. .ToList();
  10323. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10324. .Select(it => it.TeamName).ToList();
  10325. stopwatch.Stop();
  10326. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10327. }
  10328. ///// <summary>
  10329. ///// 匹配op行程单
  10330. ///// Init 查询区域数据
  10331. ///// </summary>
  10332. ///// <param name="dto">团组列表请求dto</param>
  10333. ///// <returns></returns>
  10334. //[HttpPost]
  10335. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10336. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10337. //{
  10338. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10339. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10340. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10341. // if (string.IsNullOrEmpty(countriesDataStr))
  10342. // {
  10343. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10344. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10345. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10346. // }
  10347. // else
  10348. // {
  10349. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10350. // }
  10351. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10352. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10353. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10354. // List<dynamic> childList = new List<dynamic>();
  10355. // int parentId = dto.CountriesId;
  10356. // if (provinceData.Count > 1)
  10357. // {
  10358. // foreach (var item1 in provinceData)
  10359. // {
  10360. // List<dynamic> childList1 = new List<dynamic>();
  10361. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10362. // foreach (var item2 in citiesData1)
  10363. // {
  10364. // List<dynamic> childList2 = new List<dynamic>();
  10365. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10366. // foreach (var item3 in countiesData1)
  10367. // {
  10368. // childList2.Add(new
  10369. // {
  10370. // id = item3.Id,
  10371. // parentId = item2.Id,
  10372. // level = "district",
  10373. // name = item3.Name_CN,
  10374. // });
  10375. // }
  10376. // childList1.Add(new
  10377. // {
  10378. // id = item2.Id,
  10379. // parentId = item1.Id,
  10380. // level = "city",
  10381. // name = item2.Name_CN,
  10382. // childList = childList2
  10383. // });
  10384. // }
  10385. // childList.Add(new
  10386. // {
  10387. // id = item1.Id,
  10388. // parentId = parentId,
  10389. // level = "province",
  10390. // name = item1.Name_CN,
  10391. // childList = childList1
  10392. // });
  10393. // }
  10394. // //城市
  10395. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10396. // foreach (var item2 in citiesData2)
  10397. // {
  10398. // List<dynamic> childList22 = new List<dynamic>();
  10399. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10400. // foreach (var item3 in countiesData1)
  10401. // {
  10402. // childList22.Add(new
  10403. // {
  10404. // id = item3.Id,
  10405. // parentId = item2.Id,
  10406. // level = "district",
  10407. // name = item3.Name_CN,
  10408. // });
  10409. // }
  10410. // childList.Add(new
  10411. // {
  10412. // id = item2.Id,
  10413. // parentId = parentId,
  10414. // level = "city",
  10415. // name = item2.Name_CN,
  10416. // childList = childList22
  10417. // });
  10418. // }
  10419. // }
  10420. // else
  10421. // {
  10422. // foreach (var item2 in citiesData)
  10423. // {
  10424. // string cname = item2.Name_CN;
  10425. // List<dynamic> childList1 = new List<dynamic>();
  10426. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10427. // foreach (var item3 in countiesData1)
  10428. // {
  10429. // childList1.Add(new
  10430. // {
  10431. // Id = item3.Id,
  10432. // parentId = item2.Id,
  10433. // level = "district",
  10434. // name = item3.Name_CN
  10435. // });
  10436. // }
  10437. // childList.Add(new
  10438. // {
  10439. // id = item2.Id,
  10440. // parentId = parentId,
  10441. // level = "city",
  10442. // name = item2.Name_CN,
  10443. // childList = childList1
  10444. // });
  10445. // }
  10446. // }
  10447. // stopwatch.Stop();
  10448. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10449. //}
  10450. /// <summary>
  10451. /// 匹配op行程单
  10452. /// 接团信息列表 Page
  10453. /// </summary>
  10454. /// <param name="dto">团组列表请求dto</param>
  10455. /// <returns></returns>
  10456. [HttpPost]
  10457. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10458. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10459. {
  10460. var swatch = new Stopwatch();
  10461. swatch.Start();
  10462. #region 参数验证
  10463. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10464. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10465. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10466. #region 页面操作权限验证
  10467. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10468. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10469. #endregion
  10470. #endregion
  10471. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10472. {
  10473. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10474. string sqlWhere = "";
  10475. if (!string.IsNullOrEmpty(dto.Country))
  10476. {
  10477. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10478. }
  10479. if (!string.IsNullOrEmpty(dto.Area))
  10480. {
  10481. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10482. }
  10483. if (!string.IsNullOrEmpty(dto.TeamName))
  10484. {
  10485. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10486. }
  10487. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10488. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10489. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10490. swatch.Stop();
  10491. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10492. }
  10493. else
  10494. {
  10495. return Ok(JsonView(false, "查询失败"));
  10496. }
  10497. }
  10498. /// <summary>
  10499. /// 匹配op行程单
  10500. /// 行程单下载
  10501. /// </summary>
  10502. /// <param name="dto">团组列表请求dto</param>
  10503. /// <returns></returns>
  10504. [HttpPost]
  10505. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10506. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10507. {
  10508. #region 参数验证
  10509. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10510. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10511. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10512. #region 页面操作权限验证
  10513. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10514. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10515. #endregion
  10516. #endregion
  10517. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10518. {
  10519. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10520. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10521. }
  10522. else
  10523. {
  10524. return Ok(JsonView(false, "下载失败!"));
  10525. }
  10526. }
  10527. #endregion
  10528. #region 国家信息 数据 注释
  10529. //[HttpPost]
  10530. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10531. //{
  10532. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10533. // foreach (var item in dto)
  10534. // {
  10535. // infos.Add(new Grp_GroupsTaskAssignment()
  10536. // {
  10537. // DIId = item,
  10538. // CTId = 82,
  10539. // UId = 248,
  10540. // IsEnable = 1,
  10541. // CreateUserId = 233,
  10542. // CreateTime = DateTime.Now,
  10543. // IsDel = 0
  10544. // });
  10545. // infos.Add(new Grp_GroupsTaskAssignment()
  10546. // {
  10547. // DIId = item,
  10548. // CTId = 82,
  10549. // UId = 286,
  10550. // IsEnable = 1,
  10551. // CreateUserId = 233,
  10552. // CreateTime = DateTime.Now,
  10553. // IsDel = 0
  10554. // });
  10555. // }
  10556. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10557. // return Ok("操作成功");
  10558. //}
  10559. //public class paramJsonDto
  10560. //{
  10561. // public List<CountriesInfo> str { get; set; }
  10562. //}
  10563. //[HttpPost]
  10564. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10565. //{
  10566. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10567. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10568. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10569. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10570. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10571. // _sqlSugar.BeginTran();
  10572. // int countitiesIndex = 0;
  10573. // foreach (var item in dto.str)
  10574. // {
  10575. // dynamic data = item.c;
  10576. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10577. // if (data != null)
  10578. // {
  10579. // countitiesIndex++;
  10580. // foreach (var item1 in data)
  10581. // {
  10582. // string cnname = item1.cn;
  10583. // string enname = item1.en;
  10584. // Sys_Cities provinceInfo = new Sys_Cities()
  10585. // {
  10586. // CountriesId = countriesId,
  10587. // Name_CN = cnname,
  10588. // Name_EN = enname,
  10589. // ParentId = 0,
  10590. // IsCapital = 1,
  10591. // CreateUserId = 208,
  10592. // CreateTime = DateTime.Now,
  10593. // IsDel = 0
  10594. // };
  10595. // if (item1.lv == "province") //省份
  10596. // {
  10597. // provinceInfo.Level = 1;
  10598. // int provinceId = 0;
  10599. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10600. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10601. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10602. // var data1 = item1.c;
  10603. // foreach (var item2 in data1)
  10604. // {
  10605. // if (item2.lv == "city")
  10606. // {
  10607. // string citycnname = item2.cn;
  10608. // string cityenname = item2.en;
  10609. // Sys_Cities cityInfo = new Sys_Cities()
  10610. // {
  10611. // CountriesId = countriesId,
  10612. // ParentId = provinceId,
  10613. // Level = 2,
  10614. // Name_CN = citycnname,
  10615. // Name_EN = cityenname,
  10616. // IsCapital = 1,
  10617. // CreateUserId = 208,
  10618. // CreateTime = DateTime.Now,
  10619. // IsDel = 0
  10620. // };
  10621. // if (item2.c != null)
  10622. // {
  10623. // int cityId = 0;
  10624. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10625. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10626. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10627. // foreach (var item3 in item2.c)
  10628. // {
  10629. // if (item3.lv == "district")
  10630. // {
  10631. // var districtInfo = new Sys_Cities()
  10632. // {
  10633. // CountriesId = countriesId,
  10634. // Name_CN = item3.cn,
  10635. // Name_EN = item3.en,
  10636. // Level = 3,
  10637. // ParentId = cityId,
  10638. // IsCapital = 1,
  10639. // CreateUserId = 208,
  10640. // CreateTime = DateTime.Now,
  10641. // IsDel = 0
  10642. // };
  10643. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10644. // //{
  10645. // districts.Add(districtInfo);
  10646. // //}
  10647. // }
  10648. // }
  10649. // }
  10650. // else
  10651. // {
  10652. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10653. // //{
  10654. // cities.Add(cityInfo);
  10655. // //}
  10656. // }
  10657. // }
  10658. // }
  10659. // }
  10660. // else if (item1.lv == "city")//城市
  10661. // {
  10662. // provinceInfo.Level = 2;
  10663. // if (item1.c != null)
  10664. // {
  10665. // int cityId = 0;
  10666. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10667. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10668. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10669. // foreach (var item3 in item1.c)
  10670. // {
  10671. // if (item3.lv == "district")
  10672. // {
  10673. // var districtInfo = new Sys_Cities()
  10674. // {
  10675. // CountriesId = countriesId,
  10676. // Name_CN = item3.cn,
  10677. // Name_EN = item3.en,
  10678. // Level = 3,
  10679. // ParentId = cityId,
  10680. // IsCapital = 1,
  10681. // CreateUserId = 208,
  10682. // CreateTime = DateTime.Now,
  10683. // IsDel = 0
  10684. // };
  10685. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10686. // //{
  10687. // districts.Add(districtInfo);
  10688. // //}
  10689. // }
  10690. // }
  10691. // }
  10692. // else
  10693. // {
  10694. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10695. // //{
  10696. // cities.Add(provinceInfo);
  10697. // //}
  10698. // }
  10699. // }
  10700. // }
  10701. // }
  10702. // }
  10703. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10704. // cities = cities.Distinct().ToList();
  10705. // districts = districts.Distinct().ToList();
  10706. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10707. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10708. // cities.AddRange(districts);
  10709. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10710. // //_sqlSugar.RollbackTran();
  10711. // _sqlSugar.CommitTran();
  10712. // return Ok(JsonView(false, "操作成功!"));
  10713. //}
  10714. //[HttpPost]
  10715. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10716. //{
  10717. // List<CountitiesInfo> infos = dto.MyProperty;
  10718. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10719. // _sqlSugar.BeginTran();
  10720. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10721. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10722. // foreach (var item in infos)
  10723. // {
  10724. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10725. // if (countryInfo != null)
  10726. // {
  10727. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10728. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10729. // if (cityInfo1 != null)
  10730. // {
  10731. // cityInfo1.IsCapital = 0;
  10732. // cityInfos.Add(cityInfo1);
  10733. // }
  10734. // }
  10735. // }
  10736. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10737. // .UpdateColumns(it => it.IsCapital)
  10738. // .WhereColumns(it => it.Id)
  10739. // .ExecuteCommand();
  10740. // //_sqlSugar.RollbackTran();
  10741. // _sqlSugar.CommitTran();
  10742. // return Ok(JsonView(false, "操作成功!"));
  10743. //}
  10744. //public class CounrtiesDto
  10745. //{
  10746. // public List<CountitiesInfo> MyProperty { get; set; }
  10747. //}
  10748. //public class CountitiesInfo
  10749. //{
  10750. // /// <summary>
  10751. // /// 圣约翰
  10752. // /// </summary>
  10753. // public string capital_name_chinese { get; set; }
  10754. // /// <summary>
  10755. // ///
  10756. // /// </summary>
  10757. // public string capital_name { get; set; }
  10758. // /// <summary>
  10759. // ///
  10760. // /// </summary>
  10761. // public string country_type { get; set; }
  10762. // /// <summary>
  10763. // /// 安提瓜和巴布达
  10764. // /// </summary>
  10765. // public string country_name_chinese { get; set; }
  10766. // /// <summary>
  10767. // /// 安提瓜和巴布达
  10768. // /// </summary>
  10769. // public string country_name_chinese_short { get; set; }
  10770. // /// <summary>
  10771. // /// 安提瓜和巴布达
  10772. // /// </summary>
  10773. // public string country_name_chinese_UN { get; set; }
  10774. // /// <summary>
  10775. // ///
  10776. // /// </summary>
  10777. // public string country_name_english_abbreviation { get; set; }
  10778. // /// <summary>
  10779. // ///
  10780. // /// </summary>
  10781. // public string country_name_english_formal { get; set; }
  10782. // /// <summary>
  10783. // ///
  10784. // /// </summary>
  10785. // public string country_name_english_UN { get; set; }
  10786. // /// <summary>
  10787. // ///
  10788. // /// </summary>
  10789. // public string continent_name { get; set; }
  10790. // /// <summary>
  10791. // ///
  10792. // /// </summary>
  10793. // public string subregion_name { get; set; }
  10794. // /// <summary>
  10795. // ///
  10796. // /// </summary>
  10797. // public string country_code2 { get; set; }
  10798. // /// <summary>
  10799. // ///
  10800. // /// </summary>
  10801. // public string country_code3 { get; set; }
  10802. // /// <summary>
  10803. // ///
  10804. // /// </summary>
  10805. // public string phone_code { get; set; }
  10806. //}
  10807. //public class CountriesInfo : BasicInfo
  10808. //{
  10809. // public List<CitiesInfo> c { get; set; }
  10810. //}
  10811. //public class CitiesInfo : BasicInfo
  10812. //{
  10813. // public List<AreaInfo> c { get; set; }
  10814. //}
  10815. //public class AreaInfo : BasicInfo
  10816. //{
  10817. // public List<AreaInfo> c { get; set; }
  10818. //}
  10819. //public class BasicInfo
  10820. //{
  10821. // public string code { get; set; }
  10822. // public string cn { get; set; }
  10823. // public string lv { get; set; }
  10824. // public string en { get; set; }
  10825. //}
  10826. #endregion
  10827. #region 查看邀请方
  10828. /// <summary>
  10829. /// 查看邀请方
  10830. /// 邀请方信息 Init
  10831. /// </summary>
  10832. /// <param name="dto"></param>
  10833. /// <returns></returns>
  10834. [HttpPost]
  10835. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10836. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  10837. {
  10838. string sqlWhere = string.Empty;
  10839. if (!string.IsNullOrEmpty(dto.Search))
  10840. {
  10841. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  10842. }
  10843. string sql = string.Format($@"Select
  10844. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  10845. Id,
  10846. UnitName
  10847. From Res_InvitationOfficialActivityData
  10848. Where IsDel = 0
  10849. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  10850. RefAsync<int> total = 0;
  10851. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10852. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  10853. }
  10854. /// <summary>
  10855. /// 查看邀请方
  10856. /// 国家信息 Init
  10857. /// </summary>
  10858. /// <param name="dto"></param>
  10859. /// <returns></returns>
  10860. [HttpPost]
  10861. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10862. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  10863. {
  10864. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  10865. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10866. var diids = groupInfos.Select(it => it.Id).ToList();
  10867. List<string> countrys = new List<string>();
  10868. foreach (var item in country)
  10869. {
  10870. var data = _groupRepository.FormartTeamName(item);
  10871. var dataArray = _groupRepository.GroupSplitCountry(data);
  10872. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10873. }
  10874. countrys = countrys.Distinct().ToList();
  10875. for (int i = 0; i < countrys.Count; i++)
  10876. {
  10877. string item = countrys[i];
  10878. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  10879. {
  10880. countrys.Remove(item);
  10881. i--;
  10882. }
  10883. }
  10884. RefAsync<int> total = 0;
  10885. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  10886. .Where(it => countrys.Contains(it.Name_CN))
  10887. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10888. .Select(it => new { id = it.Id, name = it.Name_CN })
  10889. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10890. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10891. }
  10892. /// <summary>
  10893. /// 查看邀请方
  10894. /// 城市信息 Init
  10895. /// </summary>
  10896. /// <param name="dto"></param>
  10897. /// <returns></returns>
  10898. [HttpPost]
  10899. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10900. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  10901. {
  10902. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  10903. RefAsync<int> total = 0;
  10904. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  10905. .Where(it => it.CountriesId == dto.CountiesId)
  10906. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10907. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  10908. .Select(it => new { id = it.Id, name = it.Name_CN })
  10909. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10910. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10911. }
  10912. /// <summary>
  10913. /// 查看邀请方
  10914. /// 团组名称 Init
  10915. /// </summary>
  10916. /// <param name="dto"></param>
  10917. /// <returns></returns>
  10918. [HttpPost]
  10919. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10920. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  10921. {
  10922. var watch = new Stopwatch();
  10923. watch.Start();
  10924. RefAsync<int> total = 0;
  10925. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  10926. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  10927. .Where((oa, di) => oa.IsDel == 0)
  10928. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  10929. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  10930. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  10931. .Distinct()
  10932. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10933. watch.Stop();
  10934. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  10935. }
  10936. /// <summary>
  10937. /// 查看邀请方
  10938. /// 团组 & 邀请方信息
  10939. /// </summary>
  10940. /// <param name="dto"></param>
  10941. /// <returns></returns>
  10942. [HttpPost]
  10943. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10944. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  10945. {
  10946. var watch = new Stopwatch();
  10947. watch.Start();
  10948. RefAsync<int> total = 0;
  10949. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  10950. .AS("Grp_DelegationInfo")
  10951. .Includes(x => x.InvitingInfos)
  10952. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  10953. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  10954. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  10955. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  10956. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  10957. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  10958. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10959. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  10960. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  10961. infos.ForEach(x =>
  10962. {
  10963. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  10964. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  10965. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  10966. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  10967. });
  10968. watch.Stop();
  10969. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  10970. }
  10971. #endregion
  10972. #region 报批行程
  10973. /// <summary>
  10974. /// 报批行程初始化
  10975. /// </summary>
  10976. /// <param name="dto"></param>
  10977. /// <returns></returns>
  10978. [HttpPost]
  10979. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  10980. {
  10981. const int chiNumber = 5;
  10982. var jw = JsonView(false);
  10983. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  10984. var group = groupList.First();
  10985. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  10986. group = groupList.First(x => x.Id == diid);
  10987. if (group == null)
  10988. {
  10989. jw.Msg = "暂无团组!";
  10990. return Ok(jw);
  10991. }
  10992. var data = new
  10993. {
  10994. groupList = groupList.Select(x => new
  10995. {
  10996. x.TeamName,
  10997. x.Id
  10998. }),
  10999. content = new ArrayList(),
  11000. groupInfo = new
  11001. {
  11002. group.VisitDays,
  11003. group.TourCode,
  11004. group.VisitPNumber,
  11005. group.TeamName,
  11006. group.Id,
  11007. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  11008. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  11009. },
  11010. };
  11011. var resultArr = new ArrayList();
  11012. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  11013. if (content.Count == 0)
  11014. {
  11015. var stay = "-";
  11016. var cityPath = "-";
  11017. //添加城市路径以及住宿地
  11018. //黑屏代码数据
  11019. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11020. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11021. {
  11022. jw = JsonView(true, "黑屏代码有误!", data);
  11023. return Ok(jw);
  11024. }
  11025. foreach (DataRow row in dtBlack.Rows)
  11026. {
  11027. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11028. {
  11029. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  11030. return Ok(jw);
  11031. }
  11032. }
  11033. //黑屏代码获取时间区间
  11034. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11035. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11036. _sqlSugar.BeginTran();
  11037. for (int i = 0; i < timeArr.Count; i++)
  11038. {
  11039. stay = "-";
  11040. cityPath = "-";
  11041. DateTime NewData = DateTime.Parse(timeArr[i]);
  11042. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11043. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11044. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11045. if (tbSelect.Length > 0)
  11046. {
  11047. List<string> threeCodeStr = new List<string>();
  11048. foreach (var item in tbSelect)
  11049. {
  11050. var threeCode = item["Three"].ToString() ?? "";
  11051. if (threeCode.Length == 6)
  11052. {
  11053. var start = threeCode.Substring(0, 3);
  11054. var end = threeCode.Substring(3, 3);
  11055. if (threeCodeStr.Count == 0)
  11056. {
  11057. threeCodeStr.Add(start);
  11058. threeCodeStr.Add(end);
  11059. }
  11060. else
  11061. {
  11062. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11063. {
  11064. threeCodeStr.Add(end);
  11065. }
  11066. else
  11067. {
  11068. threeCodeStr.Add(start);
  11069. threeCodeStr.Add(end);
  11070. }
  11071. }
  11072. }
  11073. }
  11074. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11075. var last = threeCodeStr.Last();
  11076. foreach (var item in threeCodeStr)
  11077. {
  11078. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11079. if (item.Equals(last))
  11080. {
  11081. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11082. }
  11083. }
  11084. cityPath = cityPath.Trim('-');
  11085. }
  11086. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11087. appro.Diid = diid ?? -1;
  11088. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11089. appro.Id = thisId;
  11090. appro.CreateUserId = dto.UserId;
  11091. appro.CreateTime = DateTime.Now;
  11092. content.Add(appro);
  11093. }
  11094. _sqlSugar.CommitTran();
  11095. }
  11096. foreach (var x in content)
  11097. {
  11098. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  11099. if (chiList.Count < chiNumber)
  11100. {
  11101. for (int i = chiList.Count; i < chiNumber; i++)
  11102. {
  11103. chiList.Add(new Grp_ApprovalTravelDetails());
  11104. }
  11105. }
  11106. resultArr.Add(new
  11107. {
  11108. x.Id,
  11109. x.Date,
  11110. x.Diid,
  11111. chiList = chiList.Select(x1 => new
  11112. {
  11113. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11114. x1.Details,
  11115. x1.ParentId,
  11116. x1.Id
  11117. })
  11118. });
  11119. }
  11120. data = data with
  11121. {
  11122. content = resultArr,
  11123. };
  11124. jw = JsonView(true, "获取成功!", data);
  11125. return Ok(jw);
  11126. }
  11127. /// <summary>
  11128. /// 报批行程删除
  11129. /// </summary>
  11130. /// <param name="dto"></param>
  11131. /// <returns></returns>
  11132. [HttpPost]
  11133. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11134. {
  11135. var jw = JsonView(false);
  11136. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11137. if (group == null)
  11138. {
  11139. jw.Msg = "团组参数有误!";
  11140. return Ok(jw);
  11141. }
  11142. try
  11143. {
  11144. _sqlSugar.BeginTran();
  11145. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11146. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11147. {
  11148. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11149. DeleteUserId = dto.uesrId,
  11150. IsDel = 1
  11151. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11152. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11153. {
  11154. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11155. DeleteUserId = dto.uesrId,
  11156. IsDel = 1
  11157. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11158. _sqlSugar.CommitTran();
  11159. jw = JsonView(true, "删除成功");
  11160. }
  11161. catch (Exception ex)
  11162. {
  11163. jw = JsonView(false, ex.Message);
  11164. }
  11165. return Ok(jw);
  11166. }
  11167. /// <summary>
  11168. /// 报批行程保存
  11169. /// </summary>
  11170. /// <param name="dto"></param>
  11171. /// <returns></returns>
  11172. [HttpPost]
  11173. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11174. {
  11175. var jw = JsonView(false);
  11176. var Find = dto.Arr.Find(x => x.id == 0);
  11177. if (Find != null)
  11178. {
  11179. jw.Msg = "生成的ID为0!";
  11180. return Ok(jw);
  11181. }
  11182. foreach (var item in dto.Arr)
  11183. {
  11184. foreach (var chi in item.chiList)
  11185. {
  11186. if (chi.parentId == 0)
  11187. {
  11188. chi.parentId = item.id;
  11189. }
  11190. }
  11191. }
  11192. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11193. _sqlSugar.BeginTran();
  11194. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11195. {
  11196. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11197. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11198. {
  11199. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11200. DeleteUserId = dto.UserId,
  11201. IsDel = 1
  11202. }).ExecuteCommand();
  11203. }
  11204. try
  11205. {
  11206. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11207. {
  11208. CreateTime = DateTime.Now,
  11209. CreateUserId = dto.UserId,
  11210. Details = x.details,
  11211. ParentId = x.parentId,
  11212. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11213. Remark = "",
  11214. IsDel = 0
  11215. }).ToList()).ExecuteCommand();
  11216. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11217. {
  11218. Id = x.id,
  11219. Details = x.details,
  11220. ParentId = x.parentId,
  11221. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11222. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11223. {
  11224. Details = x.Details,
  11225. ParentId = x.ParentId,
  11226. Time = x.Time
  11227. }).ExecuteCommand();
  11228. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11229. {
  11230. Id = x.id,
  11231. Date = x.date,
  11232. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11233. {
  11234. Date = x.Date
  11235. }).ExecuteCommand();
  11236. _sqlSugar.CommitTran();
  11237. jw = JsonView(true, "保存成功!");
  11238. }
  11239. catch (Exception ex)
  11240. {
  11241. _sqlSugar.RollbackTran();
  11242. jw = JsonView(false, "保存失败!" + ex.Message);
  11243. }
  11244. return Ok(jw);
  11245. }
  11246. /// <summary>
  11247. /// 报批行程生成
  11248. /// </summary>
  11249. /// <param name="dto"></param>
  11250. /// <returns></returns>
  11251. [HttpPost]
  11252. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11253. {
  11254. var jw = JsonView(false);
  11255. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11256. if (group == null)
  11257. {
  11258. jw.Msg = "暂无该团组!";
  11259. return Ok(jw);
  11260. }
  11261. //黑屏代码数据
  11262. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11263. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11264. {
  11265. jw.Msg = "黑屏代码有误!";
  11266. return Ok(jw);
  11267. }
  11268. foreach (DataRow row in dtBlack.Rows)
  11269. {
  11270. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11271. {
  11272. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11273. return Ok(jw);
  11274. }
  11275. }
  11276. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11277. var resultArr = new ArrayList();
  11278. if (officialActivitiesArr.Count == 0)
  11279. {
  11280. jw.Msg = "暂无公务出访信息!";
  11281. return Ok(jw);
  11282. }
  11283. try
  11284. {
  11285. _sqlSugar.BeginTran();
  11286. DeleteApprovalJourney(new
  11287. Domain.Dtos.Groups.DeleteApprovalJourney
  11288. {
  11289. Diid = dto.Diid,
  11290. uesrId = dto.Userid
  11291. });
  11292. var stay = "-";
  11293. var cityPath = "-";
  11294. //添加城市路径以及住宿地
  11295. //黑屏代码获取时间区间
  11296. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11297. var empty = "【未收入该三字码!请机票同事录入】";
  11298. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11299. for (int i = 0; i < timeArr.Count; i++)
  11300. {
  11301. stay = "-";
  11302. cityPath = "-";
  11303. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11304. DateTime NewData = DateTime.Parse(timeArr[i]);
  11305. var gwinfo = officialActivitiesArr.Where(x => DateTime.TryParse(x.Date, out DateTime gwData) && gwData.ToString("yyyy-MM-dd") == NewData.ToString("yyyy-MM-dd")).OrderBy(x => x.Time).ToList();
  11306. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11307. if (tbSelect.Length > 0)
  11308. {
  11309. List<string> threeCodeStr = new List<string>();
  11310. bool isTrade = false;
  11311. string trip = string.Empty;
  11312. var rowLast = tbSelect.Last();
  11313. var rowFirst = tbSelect.First();
  11314. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11315. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11316. var takeOffTime = DateTime.Parse(timeArr[i]);
  11317. var fallToTime = DateTime.Parse(timeArr[i]);
  11318. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11319. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11320. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11321. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11322. foreach (var item in tbSelect)
  11323. {
  11324. var start = string.Empty;
  11325. var end = string.Empty;
  11326. var threeCode = item["Three"].ToString() ?? "";
  11327. if (threeCode.Length == 6)
  11328. {
  11329. start = threeCode.Substring(0, 3);
  11330. end = threeCode.Substring(3, 3);
  11331. if (threeCodeStr.Count == 0)
  11332. {
  11333. threeCodeStr.Add(start);
  11334. threeCodeStr.Add(end);
  11335. }
  11336. else
  11337. {
  11338. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11339. {
  11340. threeCodeStr.Add(end);
  11341. }
  11342. else
  11343. {
  11344. threeCodeStr.Add(start);
  11345. threeCodeStr.Add(end);
  11346. }
  11347. }
  11348. }
  11349. //处理机票信息
  11350. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11351. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11352. if (start_Object == null)
  11353. {
  11354. start_Object = new Res_ThreeCode()
  11355. {
  11356. AirPort = empty,
  11357. AirPort_En = empty,
  11358. City = empty,
  11359. Country = empty,
  11360. Four = empty,
  11361. Three = empty,
  11362. };
  11363. }
  11364. if (end_Object == null)
  11365. {
  11366. end_Object = new Res_ThreeCode()
  11367. {
  11368. AirPort = empty,
  11369. AirPort_En = empty,
  11370. City = empty,
  11371. Country = empty,
  11372. Four = empty,
  11373. Three = empty,
  11374. };
  11375. }
  11376. //机型判断
  11377. string airModel = item["AirModel"].ToString();
  11378. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11379. string flightTime = item["FlightTime"].ToString();
  11380. if (flightTime!.Contains(":"))
  11381. {
  11382. flightTime = flightTime.Replace(":", "小时");
  11383. flightTime += "分钟";
  11384. }
  11385. if (flightTime.Contains("H"))
  11386. {
  11387. flightTime = flightTime.Replace("H", "小时");
  11388. }
  11389. if (flightTime.Contains("M"))
  11390. {
  11391. flightTime = flightTime.Replace("M", "分钟");
  11392. }
  11393. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11394. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11395. {
  11396. flightTime = flightDataTime.Hour > 0
  11397. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11398. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11399. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11400. }
  11401. //航班号
  11402. string flightcode = item["Fliagtcode"].ToString();
  11403. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11404. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11405. if (aircompany == null)
  11406. {
  11407. aircompany = new Res_AirCompany
  11408. {
  11409. CnName = hsEmpty,
  11410. EnName = hsEmpty,
  11411. ShortCode = hsEmpty,
  11412. };
  11413. }
  11414. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11415. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11416. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11417. if (isTrade)
  11418. {
  11419. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11420. }
  11421. else
  11422. {
  11423. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11424. }
  11425. }
  11426. chiarr.Add(new Grp_ApprovalTravelDetails
  11427. {
  11428. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11429. CreateTime = DateTime.Now,
  11430. CreateUserId = dto.Userid,
  11431. ParentId = 0,
  11432. Details = trip
  11433. });
  11434. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11435. var last = threeCodeStr.Last();
  11436. foreach (var item in threeCodeStr)
  11437. {
  11438. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11439. if (item.Equals(last))
  11440. {
  11441. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11442. }
  11443. }
  11444. cityPath = cityPath.Trim('-');
  11445. }
  11446. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11447. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11448. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11449. appro.Diid = dto.Diid;
  11450. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11451. appro.Id = thisId;
  11452. appro.CreateUserId = dto.Userid;
  11453. appro.CreateTime = DateTime.Now;
  11454. foreach (var item in gwinfo)
  11455. {
  11456. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11457. chi.Details = "拜访" + item.Client;
  11458. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11459. {
  11460. chi.Details += "," + item.ReqSample;
  11461. }
  11462. chi.ParentId = thisId;
  11463. chi.Time = item.Time;
  11464. chiarr.Add(chi);
  11465. }
  11466. if (chiarr.Count < 5)
  11467. {
  11468. for (int j = chiarr.Count; j < 5; j++)
  11469. {
  11470. chiarr.Add(new
  11471. Grp_ApprovalTravelDetails());
  11472. }
  11473. }
  11474. resultArr.Add(new
  11475. {
  11476. appro.Id,
  11477. appro.Date,
  11478. appro.Diid,
  11479. chiList = chiarr.Select(x1 => new
  11480. {
  11481. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11482. x1.Details,
  11483. x1.ParentId,
  11484. x1.Id
  11485. })
  11486. });
  11487. }
  11488. _sqlSugar.CommitTran();
  11489. jw = JsonView(true, "生成成功!", resultArr);
  11490. }
  11491. catch (Exception ex)
  11492. {
  11493. jw.Code = 400;
  11494. jw.Msg = "生成失败!" + ex.Message;
  11495. }
  11496. return Ok(jw);
  11497. }
  11498. /// <summary>
  11499. /// 报批行程word导出
  11500. /// </summary>
  11501. /// <param name="dto"></param>
  11502. /// <returns></returns>
  11503. [HttpPost]
  11504. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11505. {
  11506. var jw = JsonView(false);
  11507. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11508. if (group == null)
  11509. {
  11510. jw.Msg = "暂无该团组!";
  11511. return Ok(jw);
  11512. }
  11513. //模板路径
  11514. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11515. //载入模板
  11516. Document doc = new Document(tempPath);
  11517. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11518. //获取所填表格的序数
  11519. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11520. Aspose.Words.Tables.Row titleRowClone = null;
  11521. Aspose.Words.Tables.Row CenterRowClone = null;
  11522. int index = 0;
  11523. int indexChi = 0;
  11524. int SetIndex = 0;
  11525. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11526. //获取数据,放到datatable
  11527. foreach (var item in ApprovalTravelArr)
  11528. {
  11529. if (index > 0)
  11530. {
  11531. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11532. tableOne.AppendChild(titleRowClone);
  11533. }
  11534. var textTime = item.Date;
  11535. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11536. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11537. SetIndex++;
  11538. if (ChiRep.Count > 0)
  11539. {
  11540. foreach (var itemChi in ChiRep)
  11541. {
  11542. var txtTime = itemChi.Time;
  11543. var txtDetail = itemChi.Details;
  11544. if (indexChi > 0)
  11545. {
  11546. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11547. tableOne.AppendChild(CenterRowClone);
  11548. }
  11549. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11550. {
  11551. SetCells(tableOne, doc, SetIndex, 0, "");
  11552. SetCells(tableOne, doc, SetIndex, 1, "");
  11553. indexChi++;
  11554. SetIndex++;
  11555. break;
  11556. }
  11557. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11558. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11559. indexChi++;
  11560. SetIndex++;
  11561. }
  11562. }
  11563. else
  11564. {
  11565. if (indexChi > 0)
  11566. {
  11567. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11568. tableOne.AppendChild(CenterRowClone);
  11569. }
  11570. SetCells(tableOne, doc, SetIndex, 0, "");
  11571. SetCells(tableOne, doc, SetIndex, 1, "");
  11572. indexChi++;
  11573. SetIndex++;
  11574. }
  11575. index++;
  11576. }
  11577. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11578. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11579. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11580. jw.Code = 200;
  11581. jw.Msg = "";
  11582. return Ok(jw);
  11583. }
  11584. private string intToString(int numberVal)
  11585. {
  11586. string numberval = numberVal.ToString();
  11587. Dictionary<char, string> Number = new Dictionary<char, string>();
  11588. Number.Add('1', "一");
  11589. Number.Add('2', "二");
  11590. Number.Add('3', "三");
  11591. Number.Add('4', "四");
  11592. Number.Add('5', "五");
  11593. Number.Add('6', "六");
  11594. Number.Add('7', "七");
  11595. Number.Add('8', "八");
  11596. Number.Add('9', "九");
  11597. string stringNumberVal = string.Empty;
  11598. for (int i = 0; i < numberval.Length; i++)
  11599. {
  11600. if (i == 0)
  11601. {
  11602. stringNumberVal += Number[numberval[i]];
  11603. }
  11604. else if (i >= 1)
  11605. {
  11606. if (numberval[i] == '0')
  11607. {
  11608. stringNumberVal = "十";
  11609. }
  11610. else
  11611. {
  11612. stringNumberVal += "十" + Number[numberval[i]];
  11613. }
  11614. }
  11615. }
  11616. return stringNumberVal;
  11617. }
  11618. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11619. {
  11620. //获取table中的某个单元格,从0开始
  11621. Cell lshCell = table.Rows[rows].Cells[cells];
  11622. //将单元格中段落移除
  11623. foreach (Node item in lshCell.Paragraphs)
  11624. {
  11625. lshCell.Paragraphs.Remove(item);
  11626. }
  11627. if (val.Contains("\r\n"))
  11628. {
  11629. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11630. foreach (var item in spArr)
  11631. {
  11632. //新建一个段落
  11633. Paragraph p = new Paragraph(doc);
  11634. var r = new Run(doc, item);
  11635. //把设置的值赋给之前新建的段落
  11636. p.AppendChild(r);
  11637. //将此段落加到单元格内
  11638. lshCell.AppendChild(p);
  11639. }
  11640. }
  11641. else
  11642. {
  11643. //新建一个段落
  11644. Paragraph p = new Paragraph(doc);
  11645. var r = new Run(doc, val);
  11646. //把设置的值赋给之前新建的段落
  11647. p.AppendChild(r);
  11648. //将此段落加到单元格内
  11649. lshCell.AppendChild(p);
  11650. }
  11651. }
  11652. [HttpPost]
  11653. public async Task<IActionResult> ServerHttp(string paramStr)
  11654. {
  11655. paramStr = paramStr.TrimEnd('\'');
  11656. paramStr = paramStr.TrimStart('\'');
  11657. JsonView jw = JsonView(false);
  11658. JObject param = JObject.Parse(paramStr);
  11659. if (!param.ContainsKey("url"))
  11660. {
  11661. jw.Msg = "url null";
  11662. return Ok(jw);
  11663. }
  11664. string url = param["url"]!.ToString();
  11665. var methon = "get";
  11666. Dictionary<string, string> bodyValues = null;
  11667. Dictionary<string, string> headValues = null;
  11668. if (param.ContainsKey("methon"))
  11669. {
  11670. methon = param["methon"]!.ToString();
  11671. }
  11672. if (param.ContainsKey("header"))
  11673. {
  11674. var header = param["header"]!.ToString();
  11675. JObject headerJobject = JObject.Parse(header);
  11676. headValues = new Dictionary<string, string>();
  11677. foreach (JProperty item in headerJobject.Properties())
  11678. {
  11679. var value = item.Value.ToString();
  11680. var head = item.Path;
  11681. headValues.Add(head, value);
  11682. }
  11683. }
  11684. if (param.ContainsKey("body"))
  11685. {
  11686. var body = param["body"]!.ToString();
  11687. bodyValues = new Dictionary<string, string>();
  11688. JObject bodyJobject = JObject.Parse(body);
  11689. foreach (JProperty item in bodyJobject.Properties())
  11690. {
  11691. var value = item.Value.ToString();
  11692. var head = item.Path;
  11693. bodyValues.Add(head, value);
  11694. }
  11695. }
  11696. HttpClient client = new HttpClient();
  11697. string responseString = string.Empty;
  11698. if (param.ContainsKey("isJson"))
  11699. {
  11700. }
  11701. if (headValues != null)
  11702. {
  11703. foreach (var item in headValues.Keys)
  11704. {
  11705. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11706. }
  11707. }
  11708. try
  11709. {
  11710. if (methon == "get")
  11711. {
  11712. responseString = await client.GetStringAsync(url);
  11713. }
  11714. else if (methon == "post")
  11715. {
  11716. if (bodyValues == null)
  11717. {
  11718. jw.Msg = "methon post body null";
  11719. return Ok(jw);
  11720. }
  11721. // 数据转化为 key=val 格式
  11722. var content = new FormUrlEncodedContent(bodyValues);
  11723. var response = await client.PostAsync(url, content);
  11724. // 获取数据
  11725. responseString = await response.Content.ReadAsStringAsync();
  11726. }
  11727. else
  11728. {
  11729. jw.Msg = "methon error";
  11730. }
  11731. jw = JsonView(true, "success", responseString);
  11732. }
  11733. catch (Exception ex)
  11734. {
  11735. jw.Msg = "error " + ex.Message;
  11736. jw.Data = ex.StackTrace;
  11737. }
  11738. finally
  11739. {
  11740. client.Dispose();
  11741. }
  11742. return Ok(jw);
  11743. }
  11744. #endregion
  11745. // /// <summary>
  11746. // ///
  11747. // /// </summary>
  11748. // /// <param name="_dto"></param>
  11749. // /// <returns></returns>
  11750. // [HttpPost]
  11751. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11752. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11753. // {
  11754. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11755. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11756. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11757. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11758. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11759. // dic_psg.Add("客人", 974);
  11760. // dic_psg.Add("司机", 975);
  11761. // dic_psg.Add("导游", 976);
  11762. // dic_psg.Add("公司内部人员", 977);
  11763. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11764. // foreach (var item in list_visa)
  11765. // {
  11766. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11767. // temp.Id = item.Id;
  11768. // temp.DIId = item.DIId;
  11769. // temp.VisaClient = item.VisaClient;
  11770. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  11771. // temp.VisaCurrency = item.VisaCurrency;
  11772. // temp.IsThird = item.IsThird;
  11773. // if (dic_psg.ContainsKey(item.PassengerType))
  11774. // {
  11775. // temp.PassengerType = dic_psg[item.PassengerType];
  11776. // }
  11777. // else {
  11778. // temp.PassengerType = -1;
  11779. // }
  11780. // temp.VisaNumber = item.VisaNumber;
  11781. // temp.VisaFreeNumber = item.VisaFreeNumber;
  11782. // temp.CreateUserId = item.Operators;
  11783. // DateTime dt_ct;
  11784. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  11785. // if (b_ct)
  11786. // {
  11787. // temp.CreateTime = dt_ct;
  11788. // }
  11789. // else
  11790. // {
  11791. // temp.CreateTime = DateTime.Now;
  11792. // }
  11793. // temp.DeleteTime = "";
  11794. // temp.DeleteUserId = 0;
  11795. // temp.Remark = item.Remark;
  11796. // if (string.IsNullOrEmpty(temp.Remark)) {
  11797. // temp.Remark = "";
  11798. // }
  11799. // temp.IsDel = item.IsDel;
  11800. // temp.VisaDescription = item.VisaAttachment;
  11801. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  11802. //([Id]
  11803. // ,[DIId]
  11804. // ,[VisaClient]
  11805. // ,[VisaPrice]
  11806. // ,[VisaCurrency]
  11807. // ,[IsThird]
  11808. // ,[PassengerType]
  11809. // ,[VisaNumber]
  11810. // ,[VisaFreeNumber]
  11811. // ,[CreateUserId]
  11812. // ,[CreateTime]
  11813. // ,[DeleteTime]
  11814. // ,[DeleteUserId]
  11815. // ,[Remark]
  11816. // ,[IsDel]
  11817. // ,[visaDescription])
  11818. // VALUES
  11819. // ({0},{1},'{2}',{3},{4}
  11820. //,{5},{6},{7},{8},{9}
  11821. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  11822. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  11823. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  11824. //);
  11825. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  11826. // }
  11827. // return Ok(JsonView(true, "操作成功!"));
  11828. // }
  11829. /// <summary>
  11830. /// 123132123
  11831. /// </summary>
  11832. /// <param name="_dto"></param>
  11833. /// <returns></returns>
  11834. [HttpPost]
  11835. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11836. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11837. {
  11838. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11839. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  11840. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  11841. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11842. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  11843. dicDetail.Add(789, 1034);
  11844. dicDetail.Add(790, 1035);
  11845. dicDetail.Add(791, 1036);
  11846. dicDetail.Add(792, 1037);
  11847. dicDetail.Add(793, 1038);
  11848. dicDetail.Add(794, 1039);
  11849. dicDetail.Add(795, 1040);
  11850. dicDetail.Add(796, 1041);
  11851. dicDetail.Add(797, 1042);
  11852. dicDetail.Add(798, 1043);
  11853. dicDetail.Add(801, 1044);
  11854. dicDetail.Add(802, 1045);
  11855. dicDetail.Add(803, 1046);
  11856. Dictionary<int, int> dic = new Dictionary<int, int>();
  11857. dic.Add(806, 1027);
  11858. dic.Add(807, 1028);
  11859. dic.Add(808, 1029);
  11860. dic.Add(809, 1030);
  11861. dic.Add(810, 1031);
  11862. dic.Add(811, 1032);
  11863. dic.Add(812, 1033);
  11864. foreach (var item in list_visa)
  11865. {
  11866. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  11867. temp.Coefficient = item.coefficient;
  11868. DateTime dtCrt;
  11869. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  11870. if (b1)
  11871. {
  11872. temp.CreateTime = dtCrt;
  11873. }
  11874. else
  11875. {
  11876. temp.CreateTime = DateTime.Now;
  11877. }
  11878. temp.CreateUserId = item.Operators;
  11879. temp.DeleteTime = "";
  11880. temp.DeleteUserId = 0;
  11881. temp.DiId = int.Parse(item.DIID);
  11882. temp.FilePath = item.FilePath;
  11883. temp.IsDel = item.IsDel;
  11884. temp.Price = item.Price;
  11885. temp.PriceCount = 1;
  11886. temp.PriceCurrency = item.Currency;
  11887. int detailId = 0;
  11888. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  11889. {
  11890. detailId = dicDetail[item.PriceTypeDetail];
  11891. }
  11892. temp.PriceDetailType = detailId;
  11893. temp.PriceDt = DateTime.Now;
  11894. temp.PriceName = item.PriceName;
  11895. temp.PriceSum = item.Price;
  11896. int tid = 0;
  11897. if (dic.ContainsKey(item.PriceType))
  11898. {
  11899. tid = dic[item.PriceType];
  11900. }
  11901. temp.PriceType = tid;
  11902. temp.Remark = item.Remark;
  11903. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  11904. }
  11905. return Ok(JsonView(true, "操作成功!"));
  11906. }
  11907. }
  11908. }