GroupsController.cs 688 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906
  1. using Aspose.Cells;
  2. using Aspose.Words;
  3. using Aspose.Words.Drawing;
  4. using Aspose.Words.Tables;
  5. using Microsoft.AspNetCore.SignalR;
  6. using NPOI.HSSF.UserModel;
  7. using NPOI.SS.UserModel;
  8. using NPOI.SS.Util;
  9. using NPOI.XSSF.UserModel;
  10. using OASystem.API.OAMethodLib;
  11. using OASystem.API.OAMethodLib.File;
  12. using OASystem.API.OAMethodLib.Hub.HubClients;
  13. using OASystem.API.OAMethodLib.Hub.Hubs;
  14. using OASystem.API.OAMethodLib.JuHeAPI;
  15. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  16. using OASystem.Domain.Dtos.CRM;
  17. using OASystem.Domain.Dtos.FileDto;
  18. using OASystem.Domain.Dtos.Groups;
  19. using OASystem.Domain.Entities.Customer;
  20. using OASystem.Domain.Entities.Financial;
  21. using OASystem.Domain.Entities.Groups;
  22. using OASystem.Domain.ViewModels.Groups;
  23. using OASystem.Infrastructure.Repositories.Groups;
  24. using Quartz.Util;
  25. using SqlSugar.Extensions;
  26. using System.Collections;
  27. using System.Data;
  28. using System.Diagnostics;
  29. using System.Globalization;
  30. using System.IO;
  31. using System.Reflection.PortableExecutable;
  32. using Ubiety.Dns.Core;
  33. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  34. using Bookmark = Aspose.Words.Bookmark;
  35. using Cell = Aspose.Words.Tables.Cell;
  36. using Table = Aspose.Words.Tables.Table;
  37. namespace OASystem.API.Controllers
  38. {
  39. /// <summary>
  40. /// 团组相关
  41. /// </summary>
  42. //[Authorize]
  43. [Route("api/[controller]/[action]")]
  44. public class GroupsController : ControllerBase
  45. {
  46. private readonly ILogger<GroupsController> _logger;
  47. private readonly GrpScheduleRepository _grpScheduleRep;
  48. private readonly IMapper _mapper;
  49. private readonly DelegationInfoRepository _groupRepository;
  50. private readonly TaskAssignmentRepository _taskAssignmentRep;
  51. private readonly AirTicketResRepository _airTicketResRep;
  52. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  53. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  54. private readonly DelegationEnDataRepository _delegationEnDataRep;
  55. private readonly DelegationVisaRepository _delegationVisaRep;
  56. private readonly VisaPriceRepository _visaPriceRep;
  57. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  58. private readonly HotelPriceRepository _hotelPriceRep;
  59. private readonly CustomersRepository _customersRep;
  60. private readonly MessageRepository _message;
  61. private readonly SqlSugarClient _sqlSugar;
  62. private readonly TourClientListRepository _tourClientListRep;
  63. private readonly TeamRateRepository _teamRateRep;
  64. #region 成本相关
  65. private readonly CheckBoxsRepository _checkBoxs;
  66. private readonly GroupCostRepository _GroupCostRepository;
  67. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  68. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  69. #endregion
  70. private readonly SetDataRepository _setDataRep;
  71. private string url;
  72. private string path;
  73. private readonly EnterExitCostRepository _enterExitCostRep;
  74. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  75. private readonly UsersRepository _usersRep;
  76. private readonly IJuHeApiService _juHeApi;
  77. private readonly InvertedListRepository _invertedListRep;
  78. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  79. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  80. private readonly ThreeCodeRepository _threeCodeRepository;
  81. private readonly HotelInquiryRepository _hotelInquiryRep;
  82. private readonly FeeAuditRepository _feeAuditRep;
  83. private readonly VisaCommissionRepository _visaCommissionRep;
  84. public GroupsController(ILogger<GroupsController> logger, IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  85. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  86. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  87. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  88. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  89. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  90. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  91. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  92. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep, VisaCommissionRepository visaCommissionRep)
  93. {
  94. _logger = logger;
  95. _mapper = mapper;
  96. _grpScheduleRep = grpScheduleRep;
  97. _groupRepository = groupRepository;
  98. _taskAssignmentRep = taskAssignmentRep;
  99. _airTicketResRep = airTicketResRep;
  100. _sqlSugar = sqlSugar;
  101. url = AppSettingsHelper.Get("ExcelBaseUrl");
  102. path = AppSettingsHelper.Get("ExcelBasePath");
  103. if (!System.IO.Directory.Exists(path))
  104. {
  105. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  106. }
  107. _decreasePaymentsRep = decreasePaymentsRep;
  108. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  109. _delegationEnDataRep = delegationEnDataRep;
  110. _enterExitCostRep = enterExitCostRep;
  111. _delegationVisaRep = delegationVisaRep;
  112. _message = message;
  113. _visaPriceRep = visaPriceRep;
  114. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  115. _checkBoxs = checkBoxs;
  116. _GroupCostRepository = GroupCostRepository;
  117. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  118. _GroupCostParameterRepository = GroupCostParameterRepository;
  119. _hotelPriceRep = hotelPriceRep;
  120. _customersRep = customersRep;
  121. _setDataRep = setDataRep;
  122. _tourClientListRep = tourClientListRep;
  123. _teamRateRep = teamRateRep;
  124. _hubContext = hubContext;
  125. _usersRep = usersRep;
  126. _juHeApi = juHeApi;
  127. _invertedListRep = invertedListRep;
  128. _visaFeeInfoRep = visaFeeInfoRep;
  129. _ticketBlackCodeRep = ticketBlackCodeRep;
  130. _hotelInquiryRep = hotelInquiryRep;
  131. _threeCodeRepository = threeCodeRepository;
  132. _feeAuditRep = feeAuditRep;
  133. _visaCommissionRep = visaCommissionRep;
  134. }
  135. #region 流程管控
  136. /// <summary>
  137. /// 获取团组流程管控信息
  138. /// </summary>
  139. /// <param name="paras">参数Json字符串</param>
  140. /// <returns></returns>
  141. [HttpPost]
  142. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  143. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  144. {
  145. if (string.IsNullOrEmpty(_jsonDto.Paras))
  146. {
  147. return Ok(JsonView(false, "参数为空"));
  148. }
  149. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  150. if (_ScheduleDto != null)
  151. {
  152. if (_ScheduleDto.SearchType == 2)//获取列表
  153. {
  154. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  155. return Ok(JsonView(_grpScheduleViewList));
  156. }
  157. else//获取对象
  158. {
  159. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  160. if (_grpScheduleView != null)
  161. {
  162. return Ok(JsonView(_grpScheduleView));
  163. }
  164. }
  165. }
  166. else
  167. {
  168. return Ok(JsonView(false, "参数反序列化失败"));
  169. }
  170. return Ok(JsonView(false, "暂无数据!"));
  171. }
  172. /// <summary>
  173. /// 修改团组流程管控详细表数据
  174. /// </summary>
  175. /// <param name="paras"></param>
  176. /// <returns></returns>
  177. [HttpPost]
  178. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  179. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  180. {
  181. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  182. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  183. .SetColumns(it => it.Duty == _detail.Duty)
  184. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  185. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  186. .SetColumns(it => it.JobContent == _detail.JobContent)
  187. .SetColumns(it => it.Remark == _detail.Remark)
  188. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  189. .Where(s => s.Id == dto.Id)
  190. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  191. .ExecuteCommandAsync();
  192. if (result > 0)
  193. {
  194. return Ok(JsonView(true, "保存成功!"));
  195. }
  196. return Ok(JsonView(false, "保存失败!"));
  197. }
  198. /// <summary>
  199. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  200. /// </summary>
  201. /// <param name="dto"></param>
  202. /// <returns></returns>
  203. [HttpPost]
  204. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  205. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  206. {
  207. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  208. _detail.IsDel = 1;
  209. _detail.DeleteUserId = dto.Duty;
  210. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  211. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  212. .SetColumns(it => it.IsDel == _detail.IsDel)
  213. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  214. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  215. .Where(it => it.Id == dto.Id)
  216. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  217. //.WhereColumns(s => s.Id == dto.Id)
  218. .ExecuteCommandAsync();
  219. if (result > 0)
  220. {
  221. return Ok(JsonView(true, "删除成功!"));
  222. }
  223. return Ok(JsonView(false, "删除失败!"));
  224. }
  225. /// <summary>
  226. /// 增加团组流程管控详细表数据
  227. /// </summary>
  228. /// <param name="dto"></param>
  229. /// <returns></returns>
  230. [HttpPost]
  231. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  232. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  233. {
  234. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  235. if (DateTime.Now < _detail.ExpectBeginDt)
  236. {
  237. _detail.StepStatus = 0;
  238. }
  239. else
  240. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  241. _detail.StepStatus = 1;
  242. }
  243. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  244. if (result > 0)
  245. {
  246. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  247. return Ok(JsonView(true, "添加成功!", _result));
  248. }
  249. return Ok(JsonView(false, "添加失败!"));
  250. }
  251. #endregion
  252. #region 团组基本信息
  253. /// <summary>
  254. /// 接团信息列表
  255. /// </summary>
  256. /// <param name="dto">团组列表请求dto</param>
  257. /// <returns></returns>
  258. [HttpPost]
  259. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  260. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  261. {
  262. var groupData = await _groupRepository.GetGroupList(dto);
  263. if (groupData.Code != 0)
  264. {
  265. return Ok(JsonView(false, groupData.Msg));
  266. }
  267. return Ok(JsonView(groupData.Data));
  268. }
  269. /// <summary>
  270. /// 分页查询团组列表
  271. /// </summary>
  272. /// <param name="dto"></param>
  273. /// <returns></returns>
  274. [HttpPost]
  275. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  276. public async Task<IActionResult> QueryGroupListOffset(QueryGroupListOffsetDto dto)
  277. {
  278. var watch = new Stopwatch();
  279. watch.Start();
  280. RefAsync<int> total = 0;
  281. var countyDatas = await _sqlSugar.Queryable<Grp_DelegationInfo>()
  282. .Where((di) => di.IsDel == 0 && !string.IsNullOrWhiteSpace(di.TeamName))
  283. .WhereIF(!string.IsNullOrEmpty(dto.Search), (di) => di.TeamName.Contains(dto.Search))
  284. .OrderBy((di) => new { id = SqlFunc.Desc(di.Id) })
  285. .Select((di) => new { id = di.Id, name = di.TeamName, di.ClientName , di.VisitPNumber , di.VisitCountry, di.VisitDays, di.VisitStartDate , di.VisitEndDate, di.TourCode })
  286. .Distinct()
  287. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  288. watch.Stop();
  289. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  290. }
  291. /// <summary>
  292. /// 接团信息列表 Page
  293. /// </summary>
  294. /// <param name="dto">团组列表请求dto</param>
  295. /// <returns></returns>
  296. [HttpPost]
  297. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  298. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  299. {
  300. #region 参数验证
  301. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  302. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  303. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  304. #region 页面操作权限验证
  305. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  306. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  307. #endregion
  308. #endregion
  309. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  310. {
  311. string sqlWhere = string.Empty;
  312. if (dto.IsSure == 0) //未完成
  313. {
  314. sqlWhere += string.Format(@" And IsSure = 0");
  315. }
  316. else if (dto.IsSure == 1) //已完成
  317. {
  318. sqlWhere += string.Format(@" And IsSure = 1");
  319. }
  320. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  321. {
  322. string tj = dto.SearchCriteria;
  323. 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}%')",
  324. tj, tj, tj, tj, tj);
  325. }
  326. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  327. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  328. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  329. JietuanOperator,IsSure,CreateTime,IsBid
  330. From (
  331. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  332. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  333. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  334. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  335. su.CnName JietuanOperator,IsSure,gdi.CreateTime,gdi.IsBid
  336. From Grp_DelegationInfo gdi
  337. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  338. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  339. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  340. Where gdi.IsDel = 0 {0}
  341. ) temp", sqlWhere);
  342. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  343. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  344. #region 处理所属部门
  345. /*
  346. * 1.sq 和 gyy 等显示 市场部
  347. * 2.王鸽和主管及张总还有管理员号统一国交部
  348. * 2-1. 4 管理员 ,21 张海麟
  349. */
  350. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  351. List<int> userIds1 = new List<int>() { 4, 21 };
  352. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  353. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  354. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  355. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  356. .ToList();
  357. foreach (var item in _DelegationList)
  358. {
  359. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  360. }
  361. #endregion
  362. var _view = new
  363. {
  364. PageFuncAuth = pageFunAuthView,
  365. Data = _DelegationList
  366. };
  367. return Ok(JsonView(true, "查询成功!", _view, total));
  368. }
  369. else
  370. {
  371. return Ok(JsonView(false, "查询失败"));
  372. }
  373. }
  374. /// <summary>
  375. /// 团组列表
  376. /// </summary>
  377. /// <returns></returns>
  378. [HttpPost]
  379. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  380. {
  381. #region 参数验证
  382. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  383. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  384. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  385. #region 页面操作权限验证
  386. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  387. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  388. #endregion
  389. #endregion
  390. if (dto.PortType != 1 && dto.PortType != 2)
  391. {
  392. return Ok(JsonView(false, "查询失败!"));
  393. }
  394. string orderbyStr = "order by gdi.CreateTime Desc";
  395. string sqlWhere = string.Empty;
  396. if (dto.IsSure == 0) //未完成
  397. {
  398. sqlWhere += string.Format(@" And IsSure = 0");
  399. }
  400. else if (dto.IsSure == 1) //已完成
  401. {
  402. sqlWhere += string.Format(@" And IsSure = 1");
  403. }
  404. //团组类型
  405. if (dto.TeamDid > 0)
  406. {
  407. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  408. }
  409. //团组名称
  410. if (!string.IsNullOrEmpty(dto.TeamName))
  411. {
  412. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  413. }
  414. //客户名称
  415. if (!string.IsNullOrEmpty(dto.ClientName))
  416. {
  417. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  418. }
  419. //客户单位
  420. if (!string.IsNullOrEmpty(dto.ClientUnit))
  421. {
  422. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  423. }
  424. //出访时间
  425. if (!string.IsNullOrEmpty(dto.visitDataTime))
  426. {
  427. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  428. orderbyStr = "order by gdi.VisitDate";
  429. }
  430. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  431. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  432. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  433. JietuanOperator,IsSure,CreateTime
  434. From (
  435. Select row_number() over({0}) as Row_Number,
  436. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  437. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  438. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  439. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  440. From Grp_DelegationInfo gdi
  441. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  442. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  443. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  444. Where gdi.IsDel = 0 {1}
  445. ) temp ", orderbyStr, sqlWhere);
  446. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  447. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  448. #region 处理所属部门
  449. /*
  450. * 1.sq 和 gyy 等显示 市场部
  451. * 2.王鸽和主管及张总还有管理员号统一国交部
  452. * 2-1. 4 管理员 ,21 张海麟
  453. */
  454. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  455. List<int> userIds1 = new List<int>() { 4, 21 };
  456. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  457. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  458. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  459. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  460. .ToList();
  461. foreach (var item in _DelegationList)
  462. {
  463. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  464. }
  465. #endregion
  466. var _view = new
  467. {
  468. PageFuncAuth = pageFunAuthView,
  469. Data = _DelegationList
  470. };
  471. return Ok(JsonView(true, "查询成功!", _view, total));
  472. }
  473. /// <summary>
  474. /// 接团信息详情
  475. /// </summary>
  476. /// <param name="dto">团组info请求dto</param>
  477. /// <returns></returns>
  478. [HttpPost]
  479. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  480. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  481. {
  482. var groupData = await _groupRepository.GetGroupInfo(dto);
  483. if (groupData.Code != 0)
  484. {
  485. return Ok(JsonView(false, groupData.Msg));
  486. }
  487. return Ok(JsonView(groupData.Data));
  488. }
  489. /// <summary>
  490. /// 接团信息 编辑添加
  491. /// 基础信息数据源
  492. /// </summary>
  493. /// <param name="dto"></param>
  494. /// <returns></returns>
  495. [HttpPost]
  496. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  497. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  498. {
  499. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  500. if (groupData.Code != 0)
  501. {
  502. return Ok(JsonView(false, groupData.Msg));
  503. }
  504. return Ok(JsonView(groupData.Data));
  505. }
  506. /// <summary>
  507. /// 接团信息 操作(增改)
  508. /// </summary>
  509. /// <param name="dto"></param>
  510. /// <returns></returns>
  511. [HttpPost]
  512. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  513. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  514. {
  515. try
  516. {
  517. var groupData = await _groupRepository.GroupOperation(dto);
  518. if (groupData.Code != 0)
  519. {
  520. return Ok(JsonView(false, groupData.Msg));
  521. }
  522. int diId = 0;
  523. //添加时 默认加入团组汇率
  524. if (dto.Status == 1) //添加
  525. {
  526. diId = groupData.Data;
  527. //添加默认币种
  528. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  529. //默认分配权限
  530. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  531. //消息提示 王鸽 主管号
  532. List<int> _managerIds = new List<int>() { 22, 32 };
  533. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  534. if (userIds.Count > 0)
  535. {
  536. userIds.Add(208);
  537. //创建团组管控
  538. GroupStepForDelegation.CreateWorkStep(diId);
  539. //发送消息
  540. string groupName = dto.TeamName;
  541. string createGroupUser = string.Empty;
  542. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  543. if (userInfo != null) createGroupUser = userInfo.CnName;
  544. string title = $"系统通知";
  545. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  546. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  547. }
  548. //默认创建倒推表
  549. await _invertedListRep._Create(dto.UserId, diId);
  550. }
  551. else if (dto.Status == 2)
  552. {
  553. diId = dto.Id;
  554. }
  555. return Ok(JsonView(true, "操作成功!", diId));
  556. }
  557. catch (Exception ex)
  558. {
  559. Logs("[response]" + JsonConvert.SerializeObject(dto));
  560. Logs(ex.Message);
  561. return Ok(JsonView(false, ex.Message));
  562. }
  563. }
  564. /// <summary>
  565. /// 接团流程操作(增改)
  566. /// 安卓端使用 建团时添加客户名单
  567. /// </summary>
  568. /// <param name="dto"></param>
  569. /// <returns></returns>
  570. [HttpPost]
  571. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  572. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  573. {
  574. try
  575. {
  576. #region 参数验证
  577. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  578. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  579. #region 页面操作权限验证
  580. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  581. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  582. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  583. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  584. #endregion
  585. #endregion
  586. _sqlSugar.BeginTran();
  587. var _dto = new GroupOperationDto();
  588. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  589. var groupData = await _groupRepository.GroupOperation(_dto);
  590. if (groupData.Code != 0)
  591. {
  592. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  593. }
  594. int diId = 0;
  595. //添加时 默认加入团组汇率
  596. if (dto.Status == 1) //添加
  597. {
  598. diId = groupData.Data;
  599. //添加默认币种
  600. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  601. //默认分配权限
  602. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  603. //消息提示 王鸽 主管号
  604. List<int> _managerIds = new List<int>() { 22, 32 };
  605. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  606. if (userIds.Count > 0)
  607. {
  608. userIds.Add(208);
  609. //创建团组管控
  610. GroupStepForDelegation.CreateWorkStep(diId);
  611. //发送消息
  612. string groupName = dto.TeamName;
  613. string createGroupUser = string.Empty;
  614. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  615. if (userInfo != null) createGroupUser = userInfo.CnName;
  616. string title = $"系统通知";
  617. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  618. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  619. }
  620. }
  621. if (dto.Status == 2)
  622. {
  623. diId = dto.Id;
  624. if (diId == 0)
  625. {
  626. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  627. }
  628. }
  629. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  630. if (viewData.Code != 0)
  631. {
  632. _sqlSugar.RollbackTran();
  633. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  634. }
  635. _sqlSugar.CommitTran();
  636. return Ok(JsonView(true, "添加成功"));
  637. }
  638. catch (Exception ex)
  639. {
  640. _sqlSugar.RollbackTran();
  641. return Ok(JsonView(false, ex.Message));
  642. }
  643. }
  644. /// <summary>
  645. /// 接团信息 操作(删除)
  646. /// </summary>
  647. /// <param name="dto"></param>
  648. /// <returns></returns>
  649. [HttpPost]
  650. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  651. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  652. {
  653. try
  654. {
  655. var groupData = await _groupRepository.GroupDel(dto);
  656. if (groupData.Code != 0)
  657. {
  658. return Ok(JsonView(false, groupData.Msg));
  659. }
  660. return Ok(JsonView(true));
  661. }
  662. catch (Exception ex)
  663. {
  664. Logs("[response]" + JsonConvert.SerializeObject(dto));
  665. Logs(ex.Message);
  666. return Ok(JsonView(false, ex.Message));
  667. }
  668. }
  669. /// <summary>
  670. /// 获取团组销售报价号
  671. /// 团组添加时 使用
  672. /// </summary>
  673. /// <returns></returns>
  674. [HttpPost]
  675. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  676. public async Task<IActionResult> GetGroupSalesQuoteNo()
  677. {
  678. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  679. if (groupData.Code != 0)
  680. {
  681. return Ok(JsonView(false, groupData.Msg));
  682. }
  683. object salesQuoteNo = new
  684. {
  685. SalesQuoteNo = groupData.Data
  686. };
  687. return Ok(JsonView(salesQuoteNo));
  688. }
  689. /// <summary>
  690. /// 设置确认出团
  691. /// </summary>
  692. /// <param name="dto"></param>
  693. /// <returns></returns>
  694. [HttpPost]
  695. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  696. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  697. {
  698. var groupData = await _groupRepository.ConfirmationGroup(dto);
  699. if (groupData.Code != 0)
  700. {
  701. return Ok(JsonView(false, groupData.Msg));
  702. }
  703. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  704. #region OA消息推送
  705. try
  706. {
  707. string groupName = groupInfo.TeamName;
  708. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  709. List<int> userIds = new List<int>();
  710. listUser.ForEach(s => userIds.Add(s.Id));
  711. string title = $"系统通知";
  712. string content = $"团组[{groupName}]已确认出团!";
  713. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  714. }
  715. catch (Exception ex)
  716. {
  717. }
  718. #endregion
  719. #region 应用推送
  720. try
  721. {
  722. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  723. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  724. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  725. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  726. {
  727. List<string> userList = new List<string>() { users.QiyeChatUserId };
  728. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  729. }
  730. }
  731. catch (Exception ex)
  732. {
  733. }
  734. #endregion
  735. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  736. return Ok(JsonView(true, "操作成功!", groupData.Data));
  737. }
  738. /// <summary>
  739. /// 获取团组名称data And 签证国别Data
  740. /// </summary>
  741. /// <param name="dto"></param>
  742. /// <returns></returns>
  743. [HttpPost]
  744. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  745. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  746. {
  747. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  748. if (groupData.Code != 0)
  749. {
  750. return Ok(JsonView(false, groupData.Msg));
  751. }
  752. return Ok(JsonView(groupData.Data));
  753. }
  754. /// <summary>
  755. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  756. /// </summary>
  757. /// <returns></returns>
  758. [HttpPost]
  759. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  760. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  761. {
  762. try
  763. {
  764. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  765. if (groupData.Code != 0)
  766. {
  767. return Ok(JsonView(false, groupData.Msg));
  768. }
  769. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  770. }
  771. catch (Exception ex)
  772. {
  773. return Ok(JsonView(false, "程序错误!"));
  774. throw;
  775. }
  776. }
  777. #endregion
  778. #region 团组&签证
  779. /// <summary>
  780. /// 根据团组Id获取签证客户信息List
  781. /// </summary>
  782. /// <param name="dto">请求dto</param>
  783. /// <returns></returns>
  784. [HttpPost]
  785. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  786. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  787. {
  788. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  789. if (groupData.Code != 0)
  790. {
  791. return Ok(JsonView(false, groupData.Msg));
  792. }
  793. return Ok(JsonView(groupData.Data));
  794. }
  795. /// <summary>
  796. /// IOS获取团组签证拍照上传进度01(团组列表)
  797. /// </summary>
  798. /// <param name="dto">请求dto</param>
  799. /// <returns></returns>
  800. [HttpPost]
  801. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  802. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  803. {
  804. if (dto == null)
  805. {
  806. return Ok(JsonView(false, "参数为空"));
  807. }
  808. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  809. return Ok(JsonView(visaList));
  810. }
  811. /// <summary>
  812. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  813. /// </summary>
  814. /// <returns></returns>
  815. [HttpPost]
  816. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  817. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  818. {
  819. if (dto == null)
  820. {
  821. return Ok(JsonView(false, "请求错误:"));
  822. }
  823. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  824. return Ok(JsonView(list));
  825. }
  826. /// <summary>
  827. /// IOS获取团组签证拍照上传进度03(相册)
  828. /// </summary>
  829. /// <returns></returns>
  830. [HttpPost]
  831. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  832. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  833. {
  834. if (dto == null)
  835. {
  836. return Ok(JsonView(false, "请求错误:"));
  837. }
  838. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  839. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  840. list.ForEach(s => s.url = url);
  841. return Ok(JsonView(list));
  842. }
  843. /// <summary>
  844. /// IOS获取团组签证拍照上传进度04(图片上传)
  845. /// </summary>
  846. /// <param name="dto"></param>
  847. /// <returns></returns>
  848. [HttpPost]
  849. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  850. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  851. {
  852. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  853. //if (!string.IsNullOrEmpty(result))
  854. //{
  855. //}
  856. //else {
  857. // return Ok(JsonView(false, "上传失败"));
  858. //}
  859. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  860. int sucNum = 0;
  861. try
  862. {
  863. foreach (var item in dto.base64DataList)
  864. {
  865. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  866. string result = decodeBase64ToImage(item, imageName);
  867. if (!string.IsNullOrEmpty(result))
  868. {
  869. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  870. pic.CreateUserId = dto.CreateUserId;
  871. pic.PicName = imageName;
  872. pic.PicPath = result;
  873. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  874. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  875. if (insertResult > 0)
  876. {
  877. sucNum++;
  878. }
  879. }
  880. }
  881. }
  882. catch (Exception ex)
  883. {
  884. return Ok(JsonView(false, ex.Message));
  885. }
  886. string msg = string.Format(@"成功上传{0}张", sucNum);
  887. return Ok(JsonView(true, msg));
  888. }
  889. private string decodeBase64ToImage(string base64DataURL, string imgName)
  890. {
  891. string filename = "";//声明一个string类型的相对路径
  892. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  893. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  894. try//会有异常抛出,try,catch一下
  895. {
  896. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  897. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  898. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  899. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  900. //文件名称
  901. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  902. //上传的文件的路径
  903. string filePath = "";
  904. if (!Directory.Exists(fileDir))
  905. {
  906. Directory.CreateDirectory(fileDir);
  907. }
  908. //上传的文件的路径
  909. filePath = fileDir + filename;
  910. //string url = HttpRuntime.AppDomainAppPath.ToString();
  911. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  912. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  913. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  914. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  915. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  916. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  917. ms.Close();//关闭当前流,并释放所有与之关联的资源
  918. bitmap.Dispose();
  919. }
  920. catch (Exception e)
  921. {
  922. string massage = e.Message;
  923. Logs("IOS图片上传Error:" + massage);
  924. //filename = e.Message;
  925. }
  926. return filename;//返回相对路径
  927. }
  928. /// <summary>
  929. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  930. /// </summary>
  931. /// <param name="dto"></param>
  932. /// <returns></returns>
  933. [HttpPost]
  934. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  935. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  936. {
  937. if (dto == null)
  938. {
  939. return Ok(JsonView(false, "请求错误:"));
  940. }
  941. string msg = "参数错误";
  942. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  943. {
  944. try
  945. {
  946. //_delegationVisaRep.BeginTran();
  947. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  948. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  949. .Where(s => s.Id == dto.visaProgressCustomerId)
  950. .ExecuteCommandAsync();
  951. if (updCount > 0 && dto.publishCode == 1)
  952. {
  953. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  954. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  955. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  956. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  957. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  958. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  959. if (groupData == null)
  960. {
  961. _delegationVisaRep.RollbackTran();
  962. }
  963. string title = string.Format(@"[签证进度更新]");
  964. string content = string.Format(@"测试文本");
  965. bool rst = await _message.AddMsg(new MessageDto()
  966. {
  967. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  968. IssuerId = dto.publisher,
  969. Title = title,
  970. Content = content,
  971. ReleaseTime = DateTime.Now,
  972. UIdList = new List<int> {
  973. 234
  974. }
  975. });
  976. if (rst)
  977. {
  978. return Ok(JsonView(true, "发送通知成功"));
  979. }
  980. }
  981. //_delegationVisaRep.CommitTran();
  982. }
  983. catch (Exception)
  984. {
  985. //_delegationVisaRep.RollbackTran();
  986. }
  987. }
  988. return Ok(JsonView(true, msg));
  989. }
  990. #endregion
  991. #region 团组任务分配
  992. /// <summary>
  993. /// 团组任务分配初始化
  994. /// </summary>
  995. /// <param name="dto"></param>
  996. /// <returns></returns>
  997. [HttpPost]
  998. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  999. public async Task<IActionResult> GetTaskAssignmen()
  1000. {
  1001. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1002. if (groupData.Code != 0)
  1003. {
  1004. return Ok(JsonView(false, groupData.Msg));
  1005. }
  1006. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1007. }
  1008. /// <summary>
  1009. /// 团组任务分配查询
  1010. /// </summary>
  1011. /// <param name="dto"></param>
  1012. /// <returns></returns>
  1013. [HttpPost]
  1014. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1015. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1016. {
  1017. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1018. if (groupData.Code != 0)
  1019. {
  1020. return Ok(JsonView(false, groupData.Msg));
  1021. }
  1022. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1023. }
  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> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1032. {
  1033. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  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. /// 批量分配
  1043. /// 查询团组
  1044. /// </summary>
  1045. /// <param name="dto"></param>
  1046. /// <returns></returns>
  1047. [HttpPost]
  1048. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1049. public async Task<IActionResult> TaskAllocationGroupSelect(TaskAllocationGroupSelectDto dto)
  1050. {
  1051. //参数验证
  1052. if (dto.PortType < 1 || dto.PortType > 3) return Ok(JsonView(false, MsgTips.Port));
  1053. if (!DateTime.TryParse(dto.VisitBeginDt,out _) || !DateTime.TryParse(dto.VisitEndDt,out _))
  1054. return Ok(JsonView(false, "团组出访开始/结束日期格式不正确!"));
  1055. return Ok(await _taskAssignmentRep.TaskAllocationGroupSelect(dto));
  1056. }
  1057. /// <summary>
  1058. /// 团组任务分配
  1059. /// 批量分配
  1060. /// </summary>
  1061. /// <param name="dto"></param>
  1062. /// <returns></returns>
  1063. [HttpPost]
  1064. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1065. public async Task<IActionResult> TaskAllocationBulkAdd(TaskAllocationBulkAddDto dto)
  1066. {
  1067. //参数验证
  1068. if (dto.UserId < 1 ) return Ok(JsonView(false, MsgTips.UserId));
  1069. if (dto.OperateId < 1) return Ok(JsonView(false, MsgTips.OperateId));
  1070. if (dto.GroupIds.Length < 1) return Ok(JsonView(false, "请传入有效的GroupIds数组参数!"));
  1071. return Ok(await _taskAssignmentRep.TaskAllocationBulkAdd(dto));
  1072. }
  1073. #endregion
  1074. #region 团组费用审核
  1075. /// <summary>
  1076. /// 费用审核
  1077. /// 团组列表 Page
  1078. /// </summary>
  1079. /// <param name="_dto">团组列表请求dto</param>
  1080. /// <returns></returns>
  1081. [HttpPost]
  1082. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1083. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1084. {
  1085. #region 参数验证
  1086. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1087. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1088. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1089. #region 页面操作权限验证
  1090. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1091. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1092. #endregion
  1093. #endregion
  1094. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1095. {
  1096. string sqlWhere = string.Empty;
  1097. if (_dto.IsSure == 0) //未完成
  1098. {
  1099. sqlWhere += string.Format(@" And IsSure = 0");
  1100. }
  1101. else if (_dto.IsSure == 1) //已完成
  1102. {
  1103. sqlWhere += string.Format(@" And IsSure = 1");
  1104. }
  1105. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1106. {
  1107. string tj = _dto.SearchCriteria;
  1108. sqlWhere += string.Format(@"And (ssd.Name Like '%{0}%' Or TeamName Like '%{1}%' Or ClientName Like '%{2}%' Or ClientName Like '%{3}%' Or su.CnName Like '%{4}%')",
  1109. tj, tj, tj, tj, tj);
  1110. }
  1111. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1112. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1113. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1114. From (
  1115. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1116. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1117. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1118. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1119. From Grp_DelegationInfo gdi
  1120. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1121. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1122. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1123. Where gdi.IsDel = 0 {0}
  1124. ) temp ", sqlWhere);
  1125. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1126. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1127. var _view = new
  1128. {
  1129. PageFuncAuth = pageFunAuthView,
  1130. Data = _DelegationList
  1131. };
  1132. return Ok(JsonView(true, "查询成功!", _view, total));
  1133. }
  1134. else
  1135. {
  1136. return Ok(JsonView(false, "查询失败"));
  1137. }
  1138. }
  1139. /// <summary>
  1140. /// 获取团组费用审核
  1141. /// </summary>
  1142. /// <param name="paras">参数Json字符串</param>
  1143. /// <returns></returns>
  1144. [HttpPost]
  1145. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1146. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1147. {
  1148. try
  1149. {
  1150. #region 参数验证
  1151. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1152. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1153. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1154. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1155. #region 页面操作权限验证
  1156. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1157. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1158. #endregion
  1159. #endregion
  1160. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1161. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1162. #region 费用清单
  1163. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1164. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1165. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1166. List<Grp_CreditCardPayment> entityList = _groupRepository
  1167. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1168. .Where(exp.ToExpression())
  1169. .ToList();
  1170. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1171. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1172. /*
  1173. * 76://酒店预订
  1174. */
  1175. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1176. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1177. .ToListAsync();
  1178. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1179. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1180. .ToListAsync();
  1181. /*
  1182. * 79://车/导游地接
  1183. */
  1184. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1185. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1186. .ToListAsync();
  1187. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1188. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1189. .ToListAsync();
  1190. /*
  1191. * 80: //签证
  1192. */
  1193. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1194. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1195. .ToListAsync();
  1196. /*
  1197. *81: //邀请/公务活动
  1198. */
  1199. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1200. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1201. .ToListAsync();
  1202. /*
  1203. * 82: //团组客户保险
  1204. */
  1205. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1206. /*
  1207. * Lable = 85 机票预订
  1208. */
  1209. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1210. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1211. .ToListAsync();
  1212. /*
  1213. * 85 机票预定
  1214. */
  1215. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1216. /*
  1217. * 98 其他款项
  1218. */
  1219. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1220. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1221. .ToListAsync();
  1222. /*
  1223. * 285:收款退还
  1224. */
  1225. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1226. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1227. .ToListAsync();
  1228. /*
  1229. * 1015: //超支费用
  1230. */
  1231. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1232. /*
  1233. * 币种信息
  1234. */
  1235. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1236. /*
  1237. * 车/导游地接 费用类型
  1238. */
  1239. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1240. /*
  1241. * 车/导游地接 费用类型
  1242. */
  1243. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1244. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1245. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1246. /*
  1247. * 用户信息
  1248. */
  1249. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1250. /*
  1251. * 费用模块
  1252. */
  1253. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1254. string priceModule = string.Empty;
  1255. if (sdPriceName != null)
  1256. {
  1257. priceModule = sdPriceName.Name;
  1258. }
  1259. /*
  1260. * 成本信息
  1261. */
  1262. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1263. decimal _groupRate = 0.0000M;
  1264. string _groupCurrencyCode = "-";
  1265. if (groupCost != null)
  1266. {
  1267. _groupRate = groupCost.Rate;
  1268. if (int.TryParse(groupCost.Currency, out int _currency))
  1269. {
  1270. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1271. }
  1272. else _groupCurrencyCode = groupCost.Currency;
  1273. }
  1274. string costContentSql = $"Select * From Grp_GroupCost";
  1275. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1276. //处理日期为空的天数
  1277. for (int i = 0; i < groupCostDetails.Count; i++)
  1278. if (i != 0)
  1279. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1280. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1281. /*
  1282. * 处理详情数据
  1283. */
  1284. foreach (var entity in entityList)
  1285. {
  1286. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1287. _detail.Id = entity.Id;
  1288. _detail.PriceName = priceModule;
  1289. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1290. if (_detail.PayType.Equals("现金")) _detail.CardType = "-";
  1291. else _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1292. /*
  1293. * 应付款金额
  1294. */
  1295. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1296. string PaymentCurrency_WaitPay = "Unknown";
  1297. string hotelCurrncyCode = "Unknown";
  1298. string hotelCurrncyName = "Unknown";
  1299. if (sdPaymentCurrency_WaitPay != null)
  1300. {
  1301. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1302. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1303. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1304. if (hotelCurrncyCode.Equals("CNY"))
  1305. {
  1306. entity.DayRate = 1.0000M;
  1307. }
  1308. }
  1309. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1310. /*
  1311. * 此次付款金额
  1312. */
  1313. decimal CurrPayStr = 0;
  1314. if (entity.PayPercentage == 0)
  1315. {
  1316. if (entity.PayThenMoney != 0)
  1317. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1318. }
  1319. else
  1320. {
  1321. if (entity.PayMoney != 0)
  1322. {
  1323. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1324. }
  1325. }
  1326. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1327. /*
  1328. * 剩余尾款
  1329. */
  1330. decimal BalanceStr = 0;
  1331. if (CurrPayStr != 0)
  1332. {
  1333. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1334. BalanceStr = 0;
  1335. else
  1336. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1337. }
  1338. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1339. /*
  1340. * Bus名称
  1341. */
  1342. _detail.BusName = "待增加";
  1343. /*
  1344. *费用所属
  1345. */
  1346. switch (entity.CTable)
  1347. {
  1348. case 76://酒店预订
  1349. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1350. if (hotelReservations != null)
  1351. {
  1352. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1353. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1354. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1355. string roomFeeStr = "", roomFeestr1 = "";
  1356. //是否比较房型价格
  1357. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1358. //roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1359. roomFeeStr += $"<br/>";
  1360. if (hotelReservations.SingleRoomPrice > 0)
  1361. {
  1362. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}<br/>";
  1363. __isSingle = true;
  1364. }
  1365. if (hotelReservations.DoubleRoomPrice > 0)
  1366. {
  1367. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}<br/>";
  1368. __isDouble = true;
  1369. }
  1370. if (hotelReservations.SuiteRoomPrice > 0)
  1371. {
  1372. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}<br/>";
  1373. __isSuite = true;
  1374. }
  1375. if (hotelReservations.OtherRoomPrice > 0)
  1376. {
  1377. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}";
  1378. __isOther = true;
  1379. }
  1380. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1381. else roomFeeStr += " 0.00 * 0";
  1382. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1383. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1384. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1385. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1386. /*
  1387. * 费用类型
  1388. * 1:房费
  1389. * 2:早餐
  1390. * 3:地税
  1391. * 4:城市税
  1392. * </summary>
  1393. */
  1394. //地税
  1395. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1396. if (governmentRentData != null)
  1397. {
  1398. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1399. governmentRentFee = governmentRentData.Price;
  1400. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1401. if (governmentRentCurrData != null)
  1402. {
  1403. governmentRentCode = governmentRentCurrData.Name;
  1404. governmentRentName = $"({governmentRentCurrData.Remark})";
  1405. }
  1406. }
  1407. //城市税
  1408. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1409. if (cityTaxData != null)
  1410. {
  1411. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1412. cityTaxFee = cityTaxData.Price;
  1413. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1414. if (cityTaxCurrData != null)
  1415. {
  1416. cityTaxCode = cityTaxCurrData.Name;
  1417. cityTaxName = $"({cityTaxCurrData.Remark})";
  1418. }
  1419. }
  1420. //酒店早餐
  1421. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1422. if (breakfastData != null)
  1423. {
  1424. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1425. breakfastFee = breakfastData.Price;
  1426. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1427. if (breakfastCurrData != null)
  1428. {
  1429. breakfastCode = breakfastCurrData.Name;
  1430. breakfastName = $"({breakfastCurrData.Remark})";
  1431. }
  1432. }
  1433. //房间费用
  1434. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1435. if (roomData != null)
  1436. {
  1437. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1438. if (_detail.PayType.Equals("现金")) _detail.CardType = "-";
  1439. else _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1440. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1441. roomFee = roomData.Price;
  1442. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1443. if (roomCurrData != null)
  1444. {
  1445. roomCode = roomCurrData.Name;
  1446. roomName = $"({roomCurrData.Remark})";
  1447. }
  1448. }
  1449. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1450. string hotelCostStr = "";
  1451. decimal hotelCsotTotal = 0.00M;
  1452. if (groupCost != null)
  1453. {
  1454. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1455. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1456. }
  1457. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1458. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1459. string hotelCost_day = "";
  1460. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1461. foreach (var item in hotelCostDetails1)
  1462. {
  1463. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1464. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1465. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1466. //else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1467. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1468. //else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1469. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1470. //else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1471. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1472. //else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1473. hotelCost_day += @$"</br>";
  1474. }
  1475. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1476. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1477. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1478. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1479. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1480. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1481. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1482. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1483. $"房间说明: {hotelReservations.Remark} <br/>" +
  1484. $"房间费用: {roomCode} {roomName} 当时汇率:{roomData?.Rate.ToString("#0.0000")}{roomFeeStr} 是否由地接代付:{roomBool}<br/><br/>" +
  1485. $"{hotelBreakfastStr}" +
  1486. $"{hotelGovernmentRentStr}" +
  1487. $"{hotelCityTaxStr}";
  1488. _detail.PriceNameContent = hotelReservations.HotelName;
  1489. }
  1490. break;
  1491. case 79://车/导游地接
  1492. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1493. if (touristGuideGroundReservations != null)
  1494. {
  1495. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1496. {
  1497. _detail.BusName = touristGuideGroundReservations.BusName;
  1498. }
  1499. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1500. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1501. //if (isInt)
  1502. //{
  1503. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1504. // if (cityInfo != null)
  1505. // {
  1506. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1507. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1508. // if (carFeeItem != null)
  1509. // {
  1510. // nameContent += $@"({carFeeItem.Name})";
  1511. // }
  1512. // _detail.PriceNameContent = nameContent;
  1513. // }
  1514. //}
  1515. //else
  1516. //{
  1517. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1518. //}
  1519. var touristGuideGroundReservationsContents =
  1520. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1521. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1522. foreach (var item in touristGuideGroundReservationsContents)
  1523. {
  1524. string typeName = "Unknown";
  1525. string carCurrencyCode = "Unknown";
  1526. string carCurrencyName = "Unknown";
  1527. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1528. if (carTypeData != null) typeName = carTypeData.Name;
  1529. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1530. if (currencyData != null)
  1531. {
  1532. carCurrencyCode = currencyData.Name;
  1533. carCurrencyName = currencyData.Remark;
  1534. }
  1535. //op、成本 币种是否一致
  1536. bool IsCurrencyAgreement = false;
  1537. if (carCurrencyCode.Equals(_groupCurrencyCode)) IsCurrencyAgreement = true;
  1538. string opCostStr = string.Empty;
  1539. decimal opCostTypePrice = 0.00M;
  1540. #region 处理成本各项费用
  1541. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1542. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1543. if (opCost.Count > 0)
  1544. {
  1545. switch (item.SId)
  1546. {
  1547. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1548. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1549. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1550. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1551. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1552. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1553. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1554. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1555. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1556. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1557. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1558. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1559. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1560. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1561. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1562. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1563. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1564. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1565. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1566. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1567. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1568. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1569. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1570. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1571. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1572. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1573. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1574. }
  1575. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1576. if (!IsCurrencyAgreement) opCostStr += $" ≈ {(opCostTypePrice * _groupRate).ToString("#0.00")} CNY";
  1577. }
  1578. #endregion
  1579. string opTypeStr = $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")})" ;
  1580. if (!IsCurrencyAgreement) opTypeStr += $" ≈ {(item.Price * entity.DayRate).ToString("#0.00")} CNY";
  1581. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1582. $"{opTypeStr} {opCostStr}<br/>" +
  1583. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1584. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1585. }
  1586. _detail.PriceMsgContent = priceMsg;
  1587. }
  1588. break;
  1589. case 80: //签证
  1590. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1591. if (visaInfo != null)
  1592. {
  1593. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1594. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1595. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1596. }
  1597. break;
  1598. case 81: //邀请/公务活动
  1599. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1600. if (_ioa != null)
  1601. {
  1602. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1603. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1604. sendCurrName = "Unknown", //快递费用币种 Name
  1605. sendCurrCode = "Unknown", //快递费用币种 Code
  1606. eventsCurrName = "Unknown", //公务活动费币种 Name
  1607. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1608. translateCurrName = "Unknown", //公务翻译费 Name
  1609. translateCurrCode = "Unknown"; //公务翻译费 Code
  1610. #region 处理费用币种
  1611. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1612. if (inviteCurrData != null)
  1613. {
  1614. inviteCurrName = inviteCurrData.Remark;
  1615. inviteCurrCode = inviteCurrData.Name;
  1616. }
  1617. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1618. if (sendCurrData != null)
  1619. {
  1620. sendCurrName = sendCurrData.Remark;
  1621. sendCurrCode = sendCurrData.Name;
  1622. }
  1623. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1624. if (eventsCurrData != null)
  1625. {
  1626. eventsCurrName = eventsCurrData.Remark;
  1627. eventsCurrCode = eventsCurrData.Name;
  1628. }
  1629. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1630. if (translateCurrData != null)
  1631. {
  1632. translateCurrName = translateCurrData.Remark;
  1633. translateCurrCode = translateCurrData.Name;
  1634. }
  1635. #endregion
  1636. _detail.PriceNameContent = _ioa.InviterArea;
  1637. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1638. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1639. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1640. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1641. $@"备注:" + _ioa.Remark + "<br/>";
  1642. }
  1643. break;
  1644. case 82: //团组客户保险
  1645. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1646. if (customers != null)
  1647. {
  1648. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1649. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1650. }
  1651. break;
  1652. case 85: //机票预订
  1653. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1654. if (jpRes != null)
  1655. {
  1656. string FlightsDescription = jpRes.FlightsDescription;
  1657. string PriceDescription = jpRes.PriceDescription;
  1658. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1659. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1660. }
  1661. break;
  1662. case 98://其他款项
  1663. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1664. if (gdpRes != null)
  1665. {
  1666. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1667. _detail.PriceNameContent = gdpRes.PriceName;
  1668. }
  1669. break;
  1670. case 285://收款退还
  1671. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1672. if (refundAndOtherMoney != null)
  1673. {
  1674. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1675. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1676. }
  1677. break;
  1678. case 751://酒店早餐
  1679. break;
  1680. case 1015://超支费用
  1681. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1682. if (groupExtraCost != null)
  1683. {
  1684. _detail.PriceNameContent = groupExtraCost.PriceName;
  1685. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1686. }
  1687. break;
  1688. default:
  1689. break;
  1690. }
  1691. /*
  1692. * 申请人
  1693. */
  1694. string operatorName = " - ";
  1695. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1696. if (_opUser != null)
  1697. {
  1698. operatorName = _opUser.CnName;
  1699. }
  1700. _detail.OperatorName = operatorName;
  1701. /*
  1702. * 审核人
  1703. */
  1704. string auditOperatorName = "Unknown";
  1705. if (entity.AuditGMOperate == 0)
  1706. auditOperatorName = " - ";
  1707. else if (entity.AuditGMOperate == 4)
  1708. auditOperatorName = "自动审核";
  1709. else
  1710. {
  1711. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1712. if (_adUser != null)
  1713. {
  1714. auditOperatorName = _adUser.CnName;
  1715. }
  1716. }
  1717. _detail.AuditOperatorName = auditOperatorName;
  1718. /*
  1719. * 超预算比例
  1720. */
  1721. string overBudgetStr = "";
  1722. if (entity.ExceedBudget == -1)
  1723. overBudgetStr = sdPriceName.Name + "尚无预算";
  1724. else if (entity.ExceedBudget == 0)
  1725. {
  1726. if (entity.CTable == 76 || entity.CTable == 79)
  1727. {
  1728. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1729. else overBudgetStr = _feeAuditRep.IsOverBudget(entity.CTable, entity.DIId, entity.CId);
  1730. }
  1731. else
  1732. {
  1733. overBudgetStr = "未超预算";
  1734. }
  1735. }
  1736. else
  1737. overBudgetStr = entity.ExceedBudget.ToString("P");
  1738. _detail.OverBudget = overBudgetStr;
  1739. /*
  1740. * 费用总计
  1741. */
  1742. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1743. {
  1744. CurrencyId = entity.PaymentCurrency,
  1745. CurrencyName = PaymentCurrency_WaitPay,
  1746. AmountPayable = entity.PayMoney,
  1747. ThisPayment = CurrPayStr,
  1748. BalancePayment = BalanceStr,
  1749. AuditedFunds = CurrPayStr
  1750. });
  1751. _detail.IsAuditGM = entity.IsAuditGM;
  1752. detailList.Add(_detail);
  1753. }
  1754. #endregion
  1755. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1756. /*
  1757. * 下方描述处理
  1758. */
  1759. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1760. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1761. if (ccpCurrencyPrice != null)
  1762. {
  1763. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1764. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1765. }
  1766. else
  1767. {
  1768. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1769. }
  1770. string amountPayableStr = string.Format(@"应付款总金额: ");
  1771. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1772. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1773. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1774. foreach (var item in nonDuplicat)
  1775. {
  1776. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1777. if (strs.Count > 0)
  1778. {
  1779. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1780. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1781. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1782. //单独处理此次付款金额
  1783. if (item.CurrencyId == 836) //人民币
  1784. {
  1785. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1786. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1787. }
  1788. else
  1789. {
  1790. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1791. }
  1792. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1793. //单独处理已审核费用
  1794. if (item.CurrencyId == 836) //人民币
  1795. {
  1796. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1797. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1798. }
  1799. else
  1800. {
  1801. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1802. }
  1803. }
  1804. }
  1805. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1806. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1807. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1808. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1809. var _view1 = new
  1810. {
  1811. PageFuncAuth = pageFunAuthView,
  1812. Data = _view
  1813. };
  1814. return Ok(JsonView(_view1));
  1815. }
  1816. catch (Exception ex)
  1817. {
  1818. return Ok(JsonView(false, ex.Message));
  1819. }
  1820. }
  1821. /// <summary>
  1822. /// 费用审核
  1823. /// 修改团组费用审核状态
  1824. /// </summary>
  1825. /// <param name="_dto">参数Json字符串</param>
  1826. /// <returns></returns>
  1827. [HttpPost]
  1828. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1829. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1830. {
  1831. #region 参数验证
  1832. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1833. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1834. #endregion
  1835. #region 页面操作权限验证
  1836. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1837. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1838. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1839. #endregion
  1840. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1841. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1842. DateTime dtNow = DateTime.Now;
  1843. _groupRepository.BeginTran();
  1844. int rst = 0;
  1845. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1846. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1847. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1848. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1849. List<dynamic> msgDatas = new List<dynamic>();
  1850. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1851. foreach (var item in idList)
  1852. {
  1853. int CreditId = int.Parse(item);
  1854. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1855. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1856. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1857. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1858. .Where(s => s.Id == CreditId)
  1859. .ExecuteCommandAsync();
  1860. if (result < 1)
  1861. {
  1862. rst = -1;
  1863. _groupRepository.RollbackTran();
  1864. return Ok(JsonView(false, "操作失败并回滚!"));
  1865. }
  1866. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1867. if (creditData != null)
  1868. {
  1869. #region 应用通知配置
  1870. try
  1871. {
  1872. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1873. }
  1874. catch (Exception ex)
  1875. {
  1876. }
  1877. #endregion
  1878. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1879. string groupNameStr = string.Empty;
  1880. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1881. if (groupData != null) groupNameStr = groupData.TeamName;
  1882. string creditTypeStr = string.Empty;
  1883. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1884. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1885. string creditCurrency = string.Empty;
  1886. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1887. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1888. if (creditCurrency.Equals("CNY"))
  1889. {
  1890. creditData.DayRate = 1.0000M;
  1891. }
  1892. if (creditData.PayPercentage == 0.00M)
  1893. {
  1894. creditData.PayPercentage = 100M;
  1895. }
  1896. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1897. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1898. string msgContent = "";
  1899. if (creditCurrency.Equals("CNY"))
  1900. {
  1901. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1902. }
  1903. else
  1904. {
  1905. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1906. }
  1907. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1908. }
  1909. }
  1910. if (rst == 0)
  1911. {
  1912. _groupRepository.CommitTran();
  1913. foreach (var item in msgDatas)
  1914. {
  1915. //发送消息
  1916. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1917. }
  1918. #region 应用推送
  1919. try
  1920. {
  1921. foreach (var ccpId in dic_ccp_user.Keys)
  1922. {
  1923. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1924. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1925. }
  1926. }
  1927. catch (Exception)
  1928. {
  1929. }
  1930. #endregion
  1931. return Ok(JsonView(true, "操作成功!"));
  1932. }
  1933. return Ok(JsonView(false, "操作失败!"));
  1934. }
  1935. #endregion
  1936. #region 机票费用录入
  1937. /// <summary>
  1938. /// 机票录入当前登录人可操作团组
  1939. /// </summary>
  1940. /// <param name="dto"></param>
  1941. /// <returns></returns>
  1942. [HttpPost]
  1943. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1944. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1945. {
  1946. try
  1947. {
  1948. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1949. if (groupData.Code != 0)
  1950. {
  1951. return Ok(JsonView(false, groupData.Msg));
  1952. }
  1953. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1954. }
  1955. catch (Exception ex)
  1956. {
  1957. return Ok(JsonView(false, "程序错误!"));
  1958. throw;
  1959. }
  1960. }
  1961. /// <summary>
  1962. /// 机票费用录入列表
  1963. /// </summary>
  1964. /// <param name="dto"></param>
  1965. /// <returns></returns>
  1966. [HttpPost]
  1967. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1968. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1969. {
  1970. try
  1971. {
  1972. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1973. if (groupData.Code != 0)
  1974. {
  1975. return Ok(JsonView(false, groupData.Msg));
  1976. }
  1977. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1978. }
  1979. catch (Exception ex)
  1980. {
  1981. return Ok(JsonView(false, ex.Message));
  1982. throw;
  1983. }
  1984. }
  1985. /// <summary>
  1986. /// 根据id查询费用录入信息
  1987. /// </summary>
  1988. /// <param name="dto"></param>
  1989. /// <returns></returns>
  1990. [HttpPost]
  1991. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1992. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1993. {
  1994. try
  1995. {
  1996. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1997. if (groupData.Code != 0)
  1998. {
  1999. return Ok(JsonView(false, groupData.Msg));
  2000. }
  2001. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2002. }
  2003. catch (Exception ex)
  2004. {
  2005. return Ok(JsonView(false, "程序错误!"));
  2006. throw;
  2007. }
  2008. }
  2009. /// <summary>
  2010. /// 机票费用录入操作(Status:1.新增,2.修改)
  2011. /// </summary>
  2012. /// <param name="dto"></param>
  2013. /// <returns></returns>
  2014. [HttpPost]
  2015. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2016. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  2017. {
  2018. try
  2019. {
  2020. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  2021. if (groupData.Code != 0)
  2022. {
  2023. return Ok(JsonView(false, groupData.Msg));
  2024. }
  2025. #region 应用推送
  2026. try
  2027. {
  2028. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2029. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2030. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2031. }
  2032. catch (Exception ex)
  2033. {
  2034. }
  2035. #endregion
  2036. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2037. }
  2038. catch (Exception ex)
  2039. {
  2040. return Ok(JsonView(false, "程序错误!"));
  2041. throw;
  2042. }
  2043. }
  2044. /// <summary>
  2045. /// 根据舱位类型查询接团客户名单信息
  2046. /// </summary>
  2047. /// <param name="dto"></param>
  2048. /// <returns></returns>
  2049. [HttpPost]
  2050. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2051. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2052. {
  2053. try
  2054. {
  2055. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2056. if (crm_Groups.Count != 0)
  2057. {
  2058. List<dynamic> Customer = new List<dynamic>();
  2059. foreach (var item in crm_Groups)
  2060. {
  2061. var data = new
  2062. {
  2063. Id = item.Id,
  2064. Pinyin = item.Pinyin,
  2065. Name = item.LastName + item.FirstName
  2066. };
  2067. Customer.Add(data);
  2068. }
  2069. return Ok(JsonView(true, "查询成功!", Customer));
  2070. }
  2071. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2072. }
  2073. catch (Exception ex)
  2074. {
  2075. return Ok(JsonView(false, "程序错误!"));
  2076. throw;
  2077. }
  2078. }
  2079. /// <summary>
  2080. /// 根据团号获取客户信息
  2081. /// </summary>
  2082. /// <param name="dto"></param>
  2083. /// <returns></returns>
  2084. [HttpPost]
  2085. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2086. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2087. {
  2088. var jw = JsonView(false);
  2089. if (dto.DIID < 1)
  2090. {
  2091. jw.Msg += "请输入正确的diid";
  2092. return Ok(jw);
  2093. }
  2094. var arr = getSimplClientList(dto.DIID);
  2095. jw = JsonView(true, "获取成功!", arr);
  2096. return Ok(jw);
  2097. }
  2098. private List<SimplClientInfo> getSimplClientList(int diId)
  2099. {
  2100. 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);
  2101. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2102. return arr;
  2103. }
  2104. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2105. {
  2106. string result = origin;
  2107. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2108. {
  2109. string[] temparr = origin.Split(',');
  2110. string fistrStr = temparr[0];
  2111. int count = temparr.Count();
  2112. int tempId;
  2113. bool success = int.TryParse(fistrStr, out tempId);
  2114. if (success)
  2115. {
  2116. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2117. if (tempInfo != null)
  2118. {
  2119. if (count > 1)
  2120. {
  2121. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2122. }
  2123. else
  2124. {
  2125. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2126. }
  2127. }
  2128. }
  2129. }
  2130. return result;
  2131. }
  2132. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2133. {
  2134. string result = origin;
  2135. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2136. {
  2137. string[] temparr = origin.Split(',');
  2138. result = "";
  2139. foreach (var item in temparr)
  2140. {
  2141. int tempId;
  2142. bool success = int.TryParse(item, out tempId);
  2143. if (success)
  2144. {
  2145. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2146. if (tempInfo != null)
  2147. {
  2148. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2149. }
  2150. }
  2151. }
  2152. }
  2153. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2154. return result;
  2155. }
  2156. /// <summary>
  2157. /// 机票费用录入,删除
  2158. /// </summary>
  2159. /// <param name="dto"></param>
  2160. /// <returns></returns>
  2161. [HttpPost]
  2162. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2163. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2164. {
  2165. try
  2166. {
  2167. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2168. if (res)
  2169. {
  2170. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2171. {
  2172. IsDel = 1,
  2173. DeleteUserId = dto.DeleteUserId,
  2174. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2175. }).ExecuteCommandAsync();
  2176. return Ok(JsonView(true, "删除成功!"));
  2177. }
  2178. return Ok(JsonView(false, "删除失败!"));
  2179. }
  2180. catch (Exception ex)
  2181. {
  2182. return Ok(JsonView(false, "程序错误!"));
  2183. throw;
  2184. }
  2185. }
  2186. /// <summary>
  2187. /// 导出机票录入报表
  2188. /// </summary>
  2189. /// <param name="dto"></param>
  2190. /// <returns></returns>
  2191. [HttpPost]
  2192. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2193. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2194. {
  2195. try
  2196. {
  2197. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2198. if (groupData.Code != 0)
  2199. {
  2200. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2201. }
  2202. else
  2203. {
  2204. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2205. if (AirTicketReservations.Count != 0)
  2206. {
  2207. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2208. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2209. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2210. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2211. WorkbookDesigner designer = new WorkbookDesigner();
  2212. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2213. decimal countCost = 0;
  2214. foreach (var item in AirTicketReservations)
  2215. {
  2216. #region 处理客人姓名
  2217. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2218. item.ClientName = clientNames;
  2219. #endregion
  2220. if (item.BankType == "其他")
  2221. {
  2222. item.BankNo = "--";
  2223. }
  2224. else
  2225. {
  2226. if (!string.IsNullOrEmpty(item.BankType))
  2227. {
  2228. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2229. }
  2230. }
  2231. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2232. item.Price = System.Decimal.Round(item.Price, 2);
  2233. countCost += Convert.ToDecimal(item.Price);
  2234. }
  2235. designer.SetDataSource("Export", AirTicketReservations);
  2236. designer.SetDataSource("ExportDiCode", diCode);
  2237. designer.SetDataSource("ExportDiName", diName);
  2238. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2239. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2240. designer.Process();
  2241. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2242. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2243. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2244. return Ok(JsonView(true, "成功", url = rst));
  2245. }
  2246. else
  2247. {
  2248. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2249. }
  2250. }
  2251. }
  2252. catch (Exception ex)
  2253. {
  2254. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2255. throw;
  2256. }
  2257. }
  2258. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2259. /// <summary>
  2260. /// 行程单导出
  2261. /// </summary>
  2262. /// <param name="dto"></param>
  2263. /// <returns></returns>
  2264. [HttpPost]
  2265. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2266. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2267. {
  2268. try
  2269. {
  2270. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2271. if (groupData.Code != 0)
  2272. {
  2273. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2274. }
  2275. else
  2276. {
  2277. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2278. if (dto.Language == "CN")
  2279. {
  2280. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2281. DocumentBuilder builder = new DocumentBuilder(doc);
  2282. int tableIndex = 0;//表格索引
  2283. //得到文档中的第一个表格
  2284. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2285. foreach (var item in _AirTicketReservations)
  2286. {
  2287. #region 处理固定数据
  2288. string[] FlightsCode = item.FlightsCode.Split('/');
  2289. if (FlightsCode.Length != 0)
  2290. {
  2291. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2292. if (_AirCompany != null)
  2293. {
  2294. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2295. }
  2296. else
  2297. {
  2298. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2299. }
  2300. }
  2301. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2302. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2303. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2304. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2305. string name = "";
  2306. foreach (string clientName in nameArray)
  2307. {
  2308. if (!name.Contains(clientName))
  2309. {
  2310. name += clientName + ",";
  2311. }
  2312. }
  2313. if (!string.IsNullOrWhiteSpace(name))
  2314. {
  2315. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2316. }
  2317. else
  2318. {
  2319. table.Range.Bookmarks["ClientName"].Text = "--";
  2320. }
  2321. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2322. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2323. table.Range.Bookmarks["JointTicket"].Text = "--";
  2324. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2325. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2326. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2327. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2328. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2329. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2330. #endregion
  2331. #region 循环数据处理
  2332. List<AirInfo> airs = new List<AirInfo>();
  2333. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2334. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2335. for (int i = 0; i < FlightsCode.Length; i++)
  2336. {
  2337. AirInfo air = new AirInfo();
  2338. string[] tempstr = DayArray[i]
  2339. .Replace("\r\n", string.Empty)
  2340. .Replace("\\r\\n", string.Empty)
  2341. .TrimStart().TrimEnd()
  2342. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2343. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2344. string starCity = "";
  2345. if (star_Three != null)
  2346. {
  2347. starCity = star_Three.AirPort;
  2348. }
  2349. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2350. string EndCity = "";
  2351. if (End_Three != null)
  2352. {
  2353. EndCity = End_Three.AirPort;
  2354. }
  2355. air.Destination = starCity + "/" + EndCity;
  2356. air.Flight = FlightsCode[i];
  2357. air.SeatingClass = item.CTypeName;
  2358. string dateTime = tempstr[2];
  2359. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2360. air.FlightDate = DateTemp;
  2361. air.DepartureTime = tempstr[5];
  2362. air.LandingTime = tempstr[6];
  2363. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2364. air.TicketStatus = "--";
  2365. air.Luggage = "--";
  2366. air.DepartureTerminal = "--";
  2367. air.LandingTerminal = "--";
  2368. airs.Add(air);
  2369. }
  2370. int row = 13;
  2371. for (int i = 0; i < airs.Count; i++)
  2372. {
  2373. if (airs.Count > 2)
  2374. {
  2375. for (int j = 0; j < airs.Count - 2; j++)
  2376. {
  2377. var CopyRow = table.Rows[12].Clone(true);
  2378. table.Rows.Add(CopyRow);
  2379. }
  2380. }
  2381. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2382. int index = 0;
  2383. foreach (PropertyInfo property in properties)
  2384. {
  2385. string value = property.GetValue(airs[i]).ToString();
  2386. Cell ishcel0 = table.Rows[row].Cells[index];
  2387. Paragraph p = new Paragraph(doc);
  2388. string s = value;
  2389. p.AppendChild(new Run(doc, s));
  2390. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2391. ishcel0.AppendChild(p);
  2392. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2393. index++;
  2394. }
  2395. row++;
  2396. }
  2397. #endregion
  2398. Paragraph lastParagraph = new Paragraph(doc);
  2399. //第一个表格末尾加段落
  2400. table.ParentNode.InsertAfter(lastParagraph, table);
  2401. //复制第一个表格
  2402. Table cloneTable = (Table)table.Clone(true);
  2403. //在文档末尾段落后面加入复制的表格
  2404. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2405. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2406. {
  2407. int rownewsIndex = 13;
  2408. for (int i = 0; i < 2; i++)
  2409. {
  2410. var CopyRow = table.Rows[12].Clone(true);
  2411. table.Rows.RemoveAt(13);
  2412. table.Rows.Add(CopyRow);
  2413. rownewsIndex++;
  2414. }
  2415. }
  2416. else
  2417. {
  2418. table.Rows.RemoveAt(12);
  2419. }
  2420. cloneTable.Rows.RemoveAt(12);
  2421. }
  2422. if (_AirTicketReservations.Count != 0)
  2423. {
  2424. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2425. if (FlightsCode.Length != 0)
  2426. {
  2427. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2428. if (_AirCompany != null)
  2429. {
  2430. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2431. }
  2432. else
  2433. {
  2434. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2435. }
  2436. }
  2437. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2438. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2439. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2440. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2441. string name = "";
  2442. foreach (string clientName in nameArray)
  2443. {
  2444. if (!name.Contains(clientName))
  2445. {
  2446. name += clientName + ",";
  2447. }
  2448. }
  2449. if (!string.IsNullOrWhiteSpace(name))
  2450. {
  2451. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2452. }
  2453. else
  2454. {
  2455. table.Range.Bookmarks["ClientName"].Text = "--";
  2456. }
  2457. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2458. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2459. table.Range.Bookmarks["JointTicket"].Text = "--";
  2460. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2461. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2462. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2463. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2464. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2465. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2466. }
  2467. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2468. //保存合并后的文档
  2469. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2470. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2471. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2472. return Ok(JsonView(true, "成功!", rst));
  2473. }
  2474. else
  2475. {
  2476. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2477. DocumentBuilder builder = new DocumentBuilder(doc);
  2478. int tableIndex = 0;//表格索引
  2479. //得到文档中的第一个表格
  2480. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2481. List<string> texts = new List<string>();
  2482. foreach (var item in _AirTicketReservations)
  2483. {
  2484. string[] FlightsCode = item.FlightsCode.Split('/');
  2485. if (FlightsCode.Length != 0)
  2486. {
  2487. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2488. if (_AirCompany != null)
  2489. {
  2490. if (!transDic.ContainsKey(_AirCompany.CnName))
  2491. {
  2492. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2493. }
  2494. }
  2495. else
  2496. {
  2497. if (!transDic.ContainsKey("--"))
  2498. {
  2499. transDic.Add("--", "--");
  2500. }
  2501. }
  2502. }
  2503. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2504. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2505. string name = "";
  2506. foreach (string clientName in nameArray)
  2507. {
  2508. name += clientName + ",";
  2509. }
  2510. if (!texts.Contains(name))
  2511. {
  2512. texts.Add(name);
  2513. }
  2514. List<AirInfo> airs = new List<AirInfo>();
  2515. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2516. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2517. for (int i = 0; i < FlightsCode.Length; i++)
  2518. {
  2519. AirInfo air = new AirInfo();
  2520. string[] tempstr = DayArray[i]
  2521. .Replace("\r\n", string.Empty)
  2522. .Replace("\\r\\n", string.Empty)
  2523. .TrimStart().TrimEnd()
  2524. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2525. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2526. if (star_Three != null)
  2527. {
  2528. if (!transDic.ContainsKey(star_Three.AirPort))
  2529. {
  2530. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2531. }
  2532. }
  2533. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2534. if (End_Three != null)
  2535. {
  2536. if (!transDic.ContainsKey(End_Three.AirPort))
  2537. {
  2538. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2539. }
  2540. }
  2541. if (!texts.Contains(item.CTypeName))
  2542. {
  2543. texts.Add(item.CTypeName);
  2544. }
  2545. }
  2546. }
  2547. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2548. if (transData.Count > 0)
  2549. {
  2550. foreach (TranslateResult item in transData)
  2551. {
  2552. if (!transDic.ContainsKey(item.Query))
  2553. {
  2554. transDic.Add(item.Query, item.Translation);
  2555. }
  2556. }
  2557. }
  2558. foreach (var item in _AirTicketReservations)
  2559. {
  2560. #region 处理固定数据
  2561. string[] FlightsCode = item.FlightsCode.Split('/');
  2562. if (FlightsCode.Length != 0)
  2563. {
  2564. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2565. if (_AirCompany != null)
  2566. {
  2567. string str = "--";
  2568. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2569. if (!string.IsNullOrEmpty(translateResult))
  2570. {
  2571. str = translateResult;
  2572. str = _airTicketResRep.Processing(str);
  2573. }
  2574. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2575. }
  2576. else
  2577. {
  2578. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2579. }
  2580. }
  2581. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2582. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2583. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2584. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2585. string names = "";
  2586. foreach (string clientName in nameArray)
  2587. {
  2588. names += clientName + ",";
  2589. }
  2590. if (!string.IsNullOrWhiteSpace(names))
  2591. {
  2592. string str = "--";
  2593. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2594. if (!string.IsNullOrEmpty(translateResult))
  2595. {
  2596. str = translateResult;
  2597. str = _airTicketResRep.Processing(str);
  2598. }
  2599. table.Range.Bookmarks["ClientName"].Text = str;
  2600. }
  2601. else
  2602. {
  2603. table.Range.Bookmarks["ClientName"].Text = "--";
  2604. }
  2605. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2606. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2607. table.Range.Bookmarks["JointTicket"].Text = "--";
  2608. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2609. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2610. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2611. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2612. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2613. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2614. #endregion
  2615. #region 循环数据处理
  2616. List<AirInfo> airs = new List<AirInfo>();
  2617. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2618. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2619. for (int i = 0; i < FlightsCode.Length; i++)
  2620. {
  2621. AirInfo air = new AirInfo();
  2622. string[] tempstr = DayArray[i]
  2623. .Replace("\r\n", string.Empty)
  2624. .Replace("\\r\\n", string.Empty)
  2625. .TrimStart().TrimEnd()
  2626. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2627. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2628. string starCity = "";
  2629. if (star_Three != null)
  2630. {
  2631. string str2 = "--";
  2632. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2633. if (!string.IsNullOrEmpty(translateResult2))
  2634. {
  2635. str2 = translateResult2;
  2636. str2 = _airTicketResRep.Processing(str2);
  2637. }
  2638. starCity = str2;
  2639. }
  2640. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2641. string EndCity = "";
  2642. if (End_Three != null)
  2643. {
  2644. string str1 = "--";
  2645. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2646. if (!string.IsNullOrEmpty(translateResult1))
  2647. {
  2648. str1 = translateResult1;
  2649. str1 = _airTicketResRep.Processing(str1);
  2650. }
  2651. EndCity = str1;
  2652. }
  2653. air.Destination = starCity + "/" + EndCity;
  2654. air.Flight = FlightsCode[i];
  2655. string str = "--";
  2656. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2657. if (!string.IsNullOrEmpty(translateResult))
  2658. {
  2659. str = translateResult;
  2660. str = _airTicketResRep.Processing(str);
  2661. }
  2662. air.SeatingClass = str;
  2663. string dateTime = tempstr[2];
  2664. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2665. air.FlightDate = DateTemp;
  2666. air.DepartureTime = tempstr[5];
  2667. air.LandingTime = tempstr[6];
  2668. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2669. air.TicketStatus = "--";
  2670. air.Luggage = "--";
  2671. air.DepartureTerminal = "--";
  2672. air.LandingTerminal = "--";
  2673. airs.Add(air);
  2674. }
  2675. int row = 13;
  2676. for (int i = 0; i < airs.Count; i++)
  2677. {
  2678. if (airs.Count > 2)
  2679. {
  2680. for (int j = 0; j < airs.Count - 2; j++)
  2681. {
  2682. var CopyRow = table.Rows[12].Clone(true);
  2683. table.Rows.Add(CopyRow);
  2684. }
  2685. }
  2686. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2687. int index = 0;
  2688. foreach (PropertyInfo property in properties)
  2689. {
  2690. string value = property.GetValue(airs[i]).ToString();
  2691. Cell ishcel0 = table.Rows[row].Cells[index];
  2692. Paragraph p = new Paragraph(doc);
  2693. string s = value;
  2694. p.AppendChild(new Run(doc, s));
  2695. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2696. ishcel0.AppendChild(p);
  2697. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2698. //ishcel0.CellFormat.VerticalAlignment=
  2699. index++;
  2700. }
  2701. row++;
  2702. }
  2703. #endregion
  2704. Paragraph lastParagraph = new Paragraph(doc);
  2705. //第一个表格末尾加段落
  2706. table.ParentNode.InsertAfter(lastParagraph, table);
  2707. //复制第一个表格
  2708. Table cloneTable = (Table)table.Clone(true);
  2709. //在文档末尾段落后面加入复制的表格
  2710. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2711. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2712. {
  2713. int rownewsIndex = 13;
  2714. for (int i = 0; i < 2; i++)
  2715. {
  2716. var CopyRow = table.Rows[12].Clone(true);
  2717. table.Rows.RemoveAt(13);
  2718. table.Rows.Add(CopyRow);
  2719. rownewsIndex++;
  2720. }
  2721. }
  2722. else
  2723. {
  2724. table.Rows.RemoveAt(12);
  2725. }
  2726. cloneTable.Rows.RemoveAt(12);
  2727. }
  2728. if (_AirTicketReservations.Count != 0)
  2729. {
  2730. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2731. if (FlightsCode.Length != 0)
  2732. {
  2733. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2734. if (_AirCompany != null)
  2735. {
  2736. string str = "--";
  2737. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2738. if (!string.IsNullOrEmpty(translateResult))
  2739. {
  2740. str = translateResult;
  2741. str = _airTicketResRep.Processing(str);
  2742. }
  2743. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2744. }
  2745. else
  2746. {
  2747. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2748. }
  2749. }
  2750. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2751. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2752. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2753. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2754. string names = "";
  2755. foreach (string clientName in nameArray)
  2756. {
  2757. names += clientName + ",";
  2758. }
  2759. if (!string.IsNullOrWhiteSpace(names))
  2760. {
  2761. string str = "--";
  2762. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2763. if (!string.IsNullOrEmpty(translateResult))
  2764. {
  2765. str = translateResult;
  2766. str = _airTicketResRep.Processing(str);
  2767. }
  2768. table.Range.Bookmarks["ClientName"].Text = str;
  2769. }
  2770. else
  2771. {
  2772. table.Range.Bookmarks["ClientName"].Text = "--";
  2773. }
  2774. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2775. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2776. table.Range.Bookmarks["JointTicket"].Text = "--";
  2777. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2778. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2779. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2780. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2781. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2782. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2783. }
  2784. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2785. //保存合并后的文档
  2786. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2787. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2788. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2789. return Ok(JsonView(true, "成功!", rst));
  2790. }
  2791. }
  2792. }
  2793. catch (Exception ex)
  2794. {
  2795. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2796. throw;
  2797. }
  2798. }
  2799. #endregion
  2800. #region 团组增减款项 --> 其他款项
  2801. /// <summary>
  2802. /// 团组增减款项下拉框绑定
  2803. /// </summary>
  2804. /// <param name="dto"></param>
  2805. /// <returns></returns>
  2806. [HttpPost]
  2807. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2808. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2809. {
  2810. #region 参数验证
  2811. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2812. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2813. #endregion
  2814. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2815. }
  2816. /// <summary>
  2817. /// 根据团组Id查询团组增减款项
  2818. /// </summary>
  2819. /// <param name="dto"></param>
  2820. /// <returns></returns>
  2821. [HttpPost]
  2822. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2823. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2824. {
  2825. #region 参数验证
  2826. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2827. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2828. #endregion
  2829. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2830. }
  2831. /// <summary>
  2832. /// 团组增减款项操作(Status:1.新增,2.修改)
  2833. /// </summary>
  2834. /// <param name="dto"></param>
  2835. /// <returns></returns>
  2836. [HttpPost]
  2837. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2838. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2839. {
  2840. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2841. if (groupData.Code != 200)
  2842. {
  2843. return Ok(JsonView(false, groupData.Msg));
  2844. }
  2845. #region 应用推送
  2846. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2847. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2848. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2849. #endregion
  2850. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2851. }
  2852. /// <summary>
  2853. /// 团组增减款项操作 删除
  2854. /// </summary>
  2855. /// <param name="dto"></param>
  2856. /// <returns></returns>
  2857. [HttpPost]
  2858. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2859. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2860. {
  2861. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2862. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2863. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2864. if (res.Code == 0)
  2865. {
  2866. return Ok(JsonView(true, "删除成功!"));
  2867. }
  2868. return Ok(JsonView(false, "删除失败!"));
  2869. }
  2870. /// <summary>
  2871. /// 根据团组增减款项Id查询
  2872. /// </summary>
  2873. /// <param name="dto"></param>
  2874. /// <returns></returns>
  2875. [HttpPost]
  2876. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2877. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2878. {
  2879. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2880. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2881. }
  2882. /// <summary>
  2883. /// 查询供应商名称
  2884. /// </summary>
  2885. /// <param name="dto"></param>
  2886. /// <returns></returns>
  2887. [HttpPost]
  2888. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2889. {
  2890. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2891. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2892. ?? new List<Grp_DecreasePayments>();
  2893. dbResult = dbResult.Distinct(new
  2894. ProductComparer()).ToList();
  2895. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2896. {
  2897. x.Id,
  2898. x.SupplierAddress,
  2899. x.SupplierArea,
  2900. x.SupplierContact,
  2901. x.SupplierContactNumber,
  2902. x.SupplierEmail,
  2903. x.SupplierName,
  2904. x.SupplierSocialAccount,
  2905. x.SupplierTypeId,
  2906. }).ToList());
  2907. return Ok(jw);
  2908. }
  2909. #endregion
  2910. #region 文件上传、删除
  2911. /// <summary>
  2912. /// region 文件上传 可以带参数
  2913. /// </summary>
  2914. /// <param name="file"></param>
  2915. /// <returns></returns>
  2916. [HttpPost]
  2917. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2918. public async Task<IActionResult> UploadProject(IFormFile file)
  2919. {
  2920. try
  2921. {
  2922. var TypeName = Request.Headers["TypeName"].ToString();
  2923. if (file != null)
  2924. {
  2925. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2926. //文件名称
  2927. string projectFileName = file.FileName;
  2928. //上传的文件的路径
  2929. string filePath = "";
  2930. if (TypeName == "A")//A代表团组增减款项
  2931. {
  2932. if (!Directory.Exists(fileDir))
  2933. {
  2934. Directory.CreateDirectory(fileDir);
  2935. }
  2936. //上传的文件的路径
  2937. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2938. }
  2939. else if (TypeName == "B")//B代表商邀相关文件
  2940. {
  2941. if (!Directory.Exists(fileDir))
  2942. {
  2943. Directory.CreateDirectory(fileDir);
  2944. }
  2945. //上传的文件的路径
  2946. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2947. }
  2948. using (FileStream fs = System.IO.File.Create(filePath))
  2949. {
  2950. file.CopyTo(fs);
  2951. fs.Flush();
  2952. }
  2953. return Ok(JsonView(true, "上传成功!", projectFileName));
  2954. }
  2955. else
  2956. {
  2957. return Ok(JsonView(false, "上传失败!"));
  2958. }
  2959. }
  2960. catch (Exception ex)
  2961. {
  2962. return Ok(JsonView(false, "程序错误!"));
  2963. throw;
  2964. }
  2965. }
  2966. /// <summary>
  2967. /// 删除指定文件
  2968. /// </summary>
  2969. /// <param name="dto"></param>
  2970. /// <returns></returns>
  2971. [HttpPost]
  2972. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2973. public async Task<IActionResult> DelFile(DelFileDto dto)
  2974. {
  2975. try
  2976. {
  2977. var TypeName = Request.Headers["TypeName"].ToString();
  2978. string filePath = "";
  2979. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2980. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2981. int id = 0;
  2982. if (TypeName == "A")
  2983. {
  2984. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2985. // 删除该文件
  2986. System.IO.File.Delete(filePath);
  2987. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2988. }
  2989. else if (TypeName == "B")
  2990. {
  2991. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2992. // 删除该文件
  2993. System.IO.File.Delete(filePath);
  2994. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2995. }
  2996. if (id != 0)
  2997. {
  2998. return Ok(JsonView(true, "成功!"));
  2999. }
  3000. else
  3001. {
  3002. return Ok(JsonView(false, "失败!"));
  3003. }
  3004. }
  3005. catch (Exception ex)
  3006. {
  3007. return Ok(JsonView(false, "程序错误!"));
  3008. throw;
  3009. }
  3010. }
  3011. #endregion
  3012. #region 商邀费用录入
  3013. /// <summary>
  3014. /// 根据团组Id查询商邀费用列表
  3015. /// </summary>
  3016. /// <param name="dto"></param>
  3017. /// <returns></returns>
  3018. [HttpPost]
  3019. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3020. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  3021. {
  3022. try
  3023. {
  3024. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3025. if (groupData.Code != 0)
  3026. {
  3027. return Ok(JsonView(false, groupData.Msg));
  3028. }
  3029. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3030. }
  3031. catch (Exception ex)
  3032. {
  3033. return Ok(JsonView(false, "程序错误!"));
  3034. throw;
  3035. }
  3036. }
  3037. //
  3038. /// <summary>
  3039. /// 商邀费用 Info Page 基础数据源
  3040. /// </summary>
  3041. /// <param name="dto"></param>
  3042. /// <returns></returns>
  3043. [HttpPost]
  3044. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3045. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3046. {
  3047. try
  3048. {
  3049. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3050. if (groupData.Code != 0)
  3051. {
  3052. return Ok(JsonView(false, groupData.Msg));
  3053. }
  3054. return Ok(JsonView(true, "操作成功", groupData.Data));
  3055. }
  3056. catch (Exception ex)
  3057. {
  3058. return Ok(JsonView(false, ex.Message));
  3059. throw;
  3060. }
  3061. }
  3062. /// <summary>
  3063. /// 根据商邀费用ID查询C表和商邀费用数据
  3064. /// </summary>
  3065. /// <param name="dto"></param>
  3066. /// <returns></returns>
  3067. [HttpPost]
  3068. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3069. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3070. {
  3071. try
  3072. {
  3073. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3074. if (groupData.Code != 0)
  3075. {
  3076. return Ok(JsonView(false, groupData.Msg));
  3077. }
  3078. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3079. }
  3080. catch (Exception ex)
  3081. {
  3082. return Ok(JsonView(false, ex.Message));
  3083. throw;
  3084. }
  3085. }
  3086. /// <summary>
  3087. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3088. /// </summary>
  3089. /// <param name="dto"></param>
  3090. /// <returns></returns>
  3091. [HttpPost]
  3092. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3093. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3094. {
  3095. try
  3096. {
  3097. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3098. if (groupData.Code != 0)
  3099. {
  3100. return Ok(JsonView(false, groupData.Msg));
  3101. }
  3102. #region 应用推送
  3103. try
  3104. {
  3105. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3106. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3107. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3108. }
  3109. catch (Exception ex)
  3110. {
  3111. }
  3112. #endregion
  3113. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3114. }
  3115. catch (Exception ex)
  3116. {
  3117. return Ok(JsonView(false, "程序错误!"));
  3118. throw;
  3119. }
  3120. }
  3121. /// <summary>
  3122. /// 商邀删除
  3123. /// </summary>
  3124. /// <param name="dto"></param>
  3125. /// <returns></returns>
  3126. [HttpPost]
  3127. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3128. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3129. {
  3130. try
  3131. {
  3132. _sqlSugar.BeginTran();
  3133. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3134. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3135. {
  3136. IsDel = 1,
  3137. DeleteUserId = dto.DeleteUserId,
  3138. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3139. })
  3140. .Where(it => it.Id == dto.Id)
  3141. .ExecuteCommand();
  3142. if (res1 > 0)
  3143. {
  3144. int _diId = 0;
  3145. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3146. if (_ioaInfo != null)
  3147. {
  3148. _diId = _ioaInfo.DiId;
  3149. }
  3150. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3151. .SetColumns(a => new Grp_CreditCardPayment()
  3152. {
  3153. IsDel = 1,
  3154. DeleteUserId = dto.DeleteUserId,
  3155. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3156. })
  3157. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3158. .ExecuteCommand();
  3159. if (res2 > 0)
  3160. {
  3161. _sqlSugar.CommitTran();
  3162. return Ok(JsonView(true, "删除成功!"));
  3163. }
  3164. }
  3165. _sqlSugar.RollbackTran();
  3166. return Ok(JsonView(false, "删除失败"));
  3167. }
  3168. catch (Exception ex)
  3169. {
  3170. _sqlSugar.RollbackTran();
  3171. return Ok(JsonView(false, ex.Message));
  3172. }
  3173. }
  3174. /// <summary>
  3175. /// 团组模块文件上传
  3176. /// </summary>
  3177. /// <param name="dto"></param>
  3178. /// <returns></returns>
  3179. [HttpPost]
  3180. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3181. {
  3182. var jw = JsonView(false);
  3183. long M = 1024 * 1024;
  3184. if (dto.Files == null || dto.Files.Count == 0)
  3185. {
  3186. jw.Msg = "无文件信息!";
  3187. return Ok(jw);
  3188. }
  3189. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3190. {
  3191. jw.Msg = "文件大小超过20M!";
  3192. return Ok(jw);
  3193. }
  3194. //var nameSp = dto.File.FileName.Split(".");
  3195. //if (nameSp.Length < 2)
  3196. //{
  3197. // jw.Msg = "拓展名称有误!";
  3198. // return Ok(jw);
  3199. //}
  3200. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3201. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3202. //{
  3203. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3204. // return Ok(jw);
  3205. //}
  3206. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3207. if (Ctable == null)
  3208. {
  3209. jw.Msg = "Ctable指向有误!";
  3210. return Ok(jw);
  3211. }
  3212. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3213. if (groupInfo == null)
  3214. {
  3215. jw.Msg = "团组信息不存在!";
  3216. return Ok(jw);
  3217. }
  3218. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3219. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3220. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3221. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3222. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3223. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3224. try
  3225. {
  3226. if (!Directory.Exists(fileBase))
  3227. {
  3228. Directory.CreateDirectory(fileBase);
  3229. }
  3230. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3231. foreach (var fileStream in dto.Files)
  3232. {
  3233. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3234. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3235. {
  3236. Cid = dto.Cid,
  3237. CreateTime = DateTime.Now,
  3238. CreateUserId = dto.Userid,
  3239. Ctable = dto.Ctable,
  3240. Diid = dto.Diid,
  3241. IsDel = 0,
  3242. FilePath = saveFilePath,
  3243. FileName = fileStream.FileName
  3244. };
  3245. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3246. {
  3247. fileStream.CopyTo(fs);
  3248. fs.Flush();
  3249. }
  3250. saveArr.Add(file);
  3251. }
  3252. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3253. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3254. jw = JsonView(true, "保存成功!", new
  3255. {
  3256. count = addResult,
  3257. filesName = saveArr.Select(x => x.FileName)
  3258. }) ;
  3259. }
  3260. catch (Exception ex)
  3261. {
  3262. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3263. {
  3264. count = 0,
  3265. filesName = new string[0],
  3266. }) ;
  3267. }
  3268. return Ok(jw);
  3269. }
  3270. /// <summary>
  3271. /// 查询各模块已保存文件
  3272. /// </summary>
  3273. /// <param name="dto"></param>
  3274. /// <returns></returns>
  3275. [HttpPost]
  3276. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3277. {
  3278. var expression = Expressionable.Create<Grp_GroupModelFile>()
  3279. .AndIF(dto.UserId != -1 , x => x.CreateUserId == dto.UserId);
  3280. var visaIds = _sqlSugar.Queryable<Sys_Users>().Where(x => x.JobPostId == 26).Select(x=>x.Id).ToList();
  3281. if (visaIds.Contains(dto.UserId) && dto.Ctable == 80)
  3282. {
  3283. expression = Expressionable.Create<Grp_GroupModelFile>()
  3284. .And(x=>visaIds.Contains(x.CreateUserId));
  3285. }
  3286. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3287. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3288. .Where(expression.ToExpression())
  3289. .ToList();
  3290. //.ToPageList(pagenumber, pageSize, ref totalCount, ref totalPage)
  3291. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3292. {
  3293. x.FileName,
  3294. x.Id,
  3295. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"), AppSettingsHelper.Get("GrpFileFtpPath")),
  3296. CreateTime = x.CreateTime.ToString("yyyy-MM-dd HH-mm"),
  3297. })));
  3298. }
  3299. /// <summary>
  3300. /// 下载该团组下的所有文件
  3301. /// </summary>
  3302. /// <param name="dto"></param>
  3303. /// <returns></returns>
  3304. [HttpPost]
  3305. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3306. {
  3307. var jw = JsonView(false);
  3308. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3309. if (groupInfo == null)
  3310. {
  3311. jw.Msg = "团组信息不存在!";
  3312. return Ok(jw);
  3313. }
  3314. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3315. var isModule = Convert.ToBoolean(dto.isModule);
  3316. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3317. IOOperatorHelper io = new IOOperatorHelper();
  3318. if (isModule)
  3319. {
  3320. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3321. foreach (var moduleArr in moduleGroup)
  3322. {
  3323. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3324. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3325. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3326. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3327. foreach (var item in moduleArr)
  3328. {
  3329. if (System.IO.File.Exists(item.FilePath))
  3330. {
  3331. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3332. {
  3333. byte[] bytes = new byte[fileStream.Length];
  3334. fileStream.Read(bytes, 0, bytes.Length);
  3335. fileStream.Close();
  3336. Stream stream = new MemoryStream(bytes);
  3337. chiZips.Add(item.FileName, stream);
  3338. }
  3339. }
  3340. }
  3341. if (chiZips.Count > 0)
  3342. {
  3343. var byts = io.ConvertZipStream(chiZips);
  3344. Stream stream = new MemoryStream(byts);
  3345. Zips.Add(key.Name+"_.zip", stream);
  3346. }
  3347. }
  3348. }
  3349. else
  3350. {
  3351. foreach (var item in dbQuery)
  3352. {
  3353. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3354. {
  3355. byte[] bytes = new byte[fileStream.Length];
  3356. fileStream.Read(bytes, 0, bytes.Length);
  3357. fileStream.Close();
  3358. Stream stream = new MemoryStream(bytes);
  3359. while (Zips.Keys.Contains(item.FileName))
  3360. {
  3361. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3362. }
  3363. Zips.Add(item.FileName, stream);
  3364. }
  3365. }
  3366. }
  3367. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3368. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3369. if (Zips.Count > 0)
  3370. {
  3371. var byts = io.ConvertZipStream(Zips);
  3372. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3373. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3374. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3375. }
  3376. else
  3377. {
  3378. jw.Msg = "暂无生成文件!";
  3379. }
  3380. return Ok(jw);
  3381. }
  3382. /// <summary>
  3383. /// 下载该团组下此模块的所有文件
  3384. /// </summary>
  3385. /// <param name="dto"></param>
  3386. /// <returns></returns>
  3387. [HttpPost]
  3388. public IActionResult ExportGroupByModule(ExportGroupByModuleDto dto)
  3389. {
  3390. var jw = JsonView(false);
  3391. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3392. if (groupInfo == null)
  3393. {
  3394. jw.Msg = "团组信息不存在!";
  3395. return Ok(jw);
  3396. }
  3397. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid && x.Ctable == dto.Ctable).ToList();
  3398. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == dto.Ctable
  3399. && x.IsDel == 0);
  3400. if (key == null)
  3401. {
  3402. jw.Msg = "Ctable指向错误!";
  3403. return Ok(jw);
  3404. }
  3405. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3406. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3407. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3408. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3409. IOOperatorHelper io = new IOOperatorHelper();
  3410. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3411. foreach (var item in dbQuery)
  3412. {
  3413. if (System.IO.File.Exists(item.FilePath))
  3414. {
  3415. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3416. {
  3417. byte[] bytes = new byte[fileStream.Length];
  3418. fileStream.Read(bytes, 0, bytes.Length);
  3419. fileStream.Close();
  3420. Stream stream = new MemoryStream(bytes);
  3421. while (Zips.Keys.Contains(item.FileName))
  3422. {
  3423. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3424. }
  3425. Zips.Add(item.FileName, stream);
  3426. }
  3427. }
  3428. }
  3429. if (Zips.Count > 0)
  3430. {
  3431. var byts = io.ConvertZipStream(Zips);
  3432. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3433. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_{key.Name}_.Zip");
  3434. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_{key.Name}_.Zip" });
  3435. }
  3436. else
  3437. {
  3438. jw.Msg = "暂无生成文件!";
  3439. }
  3440. return Ok(jw);
  3441. }
  3442. /// <summary>
  3443. /// 删除该团组下的指定文件
  3444. /// </summary>
  3445. /// <param name="dto"></param>
  3446. /// <returns></returns>
  3447. [HttpPost]
  3448. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3449. {
  3450. var jw = JsonView(false);
  3451. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3452. if (sing == null)
  3453. {
  3454. jw.Msg = "暂无";
  3455. return Ok(jw);
  3456. }
  3457. if (System.IO.File.Exists(sing.FilePath))
  3458. {
  3459. try
  3460. {
  3461. System.IO.File.Delete(sing.FilePath);
  3462. }
  3463. catch (Exception ex)
  3464. {
  3465. jw.Msg = "删除失败!" + ex.Message;
  3466. return Ok(jw);
  3467. }
  3468. }
  3469. sing.IsDel = 1;
  3470. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3471. sing.DeleteUserId = dto.UserId;
  3472. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3473. jw = JsonView(true, "删除成功!");
  3474. return Ok(jw);
  3475. }
  3476. #endregion
  3477. #region 团组英文资料
  3478. /// <summary>
  3479. /// 查询团组英文所有资料
  3480. /// </summary>
  3481. /// <param name="dto"></param>
  3482. /// <returns></returns>
  3483. [HttpPost]
  3484. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3485. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3486. {
  3487. try
  3488. {
  3489. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3490. if (groupData.Code != 0)
  3491. {
  3492. return Ok(JsonView(false, groupData.Msg));
  3493. }
  3494. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3495. }
  3496. catch (Exception ex)
  3497. {
  3498. return Ok(JsonView(false, "程序错误!"));
  3499. throw;
  3500. }
  3501. }
  3502. /// <summary>
  3503. /// 团组英文资料操作(Status:1.新增,2.修改)
  3504. /// </summary>
  3505. /// <param name="dto"></param>
  3506. /// <returns></returns>
  3507. [HttpPost]
  3508. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3509. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3510. {
  3511. try
  3512. {
  3513. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3514. if (groupData.Code != 0)
  3515. {
  3516. return Ok(JsonView(false, groupData.Msg));
  3517. }
  3518. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3519. }
  3520. catch (Exception ex)
  3521. {
  3522. return Ok(JsonView(false, "程序错误!"));
  3523. throw;
  3524. }
  3525. }
  3526. /// <summary>
  3527. /// 团组英文资料Id查询数据
  3528. /// </summary>
  3529. /// <param name="dto"></param>
  3530. /// <returns></returns>
  3531. [HttpPost]
  3532. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3533. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3534. {
  3535. try
  3536. {
  3537. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3538. if (_DelegationEnData != null)
  3539. {
  3540. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3541. }
  3542. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3543. }
  3544. catch (Exception ex)
  3545. {
  3546. return Ok(JsonView(false, "程序错误!"));
  3547. throw;
  3548. }
  3549. }
  3550. /// <summary>
  3551. /// 团组英文资料删除
  3552. /// </summary>
  3553. /// <param name="dto"></param>
  3554. /// <returns></returns>
  3555. [HttpPost]
  3556. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3557. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3558. {
  3559. try
  3560. {
  3561. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3562. if (!res)
  3563. {
  3564. return Ok(JsonView(false, "删除失败"));
  3565. }
  3566. return Ok(JsonView(true, "删除成功!"));
  3567. }
  3568. catch (Exception ex)
  3569. {
  3570. return Ok(JsonView(false, "程序错误!"));
  3571. throw;
  3572. }
  3573. }
  3574. #endregion
  3575. #region 导出邀请函
  3576. /// <summary>
  3577. /// 导出邀请函页面初始化
  3578. /// </summary>
  3579. /// <param name="dto"></param>
  3580. /// <returns></returns>
  3581. [HttpPost]
  3582. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3583. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3584. {
  3585. try
  3586. {
  3587. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3588. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3589. if (dto.DiId == 0)
  3590. {
  3591. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3592. }
  3593. else
  3594. {
  3595. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3596. }
  3597. return Ok(JsonView(true, "查询成功!", new
  3598. {
  3599. deleClient = crm_Deles,
  3600. delegations = grp_Delegations
  3601. }));
  3602. }
  3603. catch (Exception ex)
  3604. {
  3605. return Ok(JsonView(false, "程序错误!"));
  3606. throw;
  3607. }
  3608. }
  3609. /// <summary>
  3610. /// 导出邀请函
  3611. /// </summary>
  3612. /// <param name="dto"></param>
  3613. /// <returns></returns>
  3614. [HttpPost]
  3615. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3616. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3617. {
  3618. #region 参数验证
  3619. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3620. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3621. #endregion
  3622. try
  3623. {
  3624. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3625. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3626. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3627. From Grp_TourClientList tcl
  3628. Left Join
  3629. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3630. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3631. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3632. From Crm_DeleClient dc
  3633. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3634. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3635. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3636. Where dc.IsDel = 0) temp
  3637. On temp.DcId =tcl.ClientId
  3638. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3639. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3640. List<string> texts = new List<string>();
  3641. if (datas.Count != 0)
  3642. {
  3643. foreach (TourClientListDetailsView item in datas)
  3644. {
  3645. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3646. {
  3647. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3648. }
  3649. else
  3650. {
  3651. string name = item.LastName + item.FirstName;
  3652. texts.Add(name);
  3653. }
  3654. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3655. {
  3656. if (!transDic.ContainsKey(item.Job))
  3657. {
  3658. texts.Add(item.Job);
  3659. }
  3660. }
  3661. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3662. {
  3663. texts.Add(item.CompanyFullName);
  3664. }
  3665. }
  3666. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3667. if (transData.Count > 0)
  3668. {
  3669. foreach (TranslateResult item in transData)
  3670. {
  3671. if (!transDic.ContainsKey(item.Query))
  3672. {
  3673. transDic.Add(item.Query, item.Translation);
  3674. }
  3675. }
  3676. }
  3677. List<GuestList> list = new List<GuestList>();
  3678. foreach (TourClientListDetailsView dele in datas)
  3679. {
  3680. GuestList guestList = new GuestList();
  3681. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3682. {
  3683. guestList.Name = dele.Pinyin;
  3684. }
  3685. else
  3686. {
  3687. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3688. guestList.Name = Name;
  3689. }
  3690. if (dele.Sex == 0)
  3691. {
  3692. guestList.Sex = "Male";
  3693. }
  3694. else if (dele.Sex == 1)
  3695. {
  3696. guestList.Sex = "Female";
  3697. }
  3698. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3699. if (!string.IsNullOrEmpty(dele.Job))
  3700. {
  3701. guestList.Job = dele.Job;
  3702. }
  3703. list.Add(guestList);
  3704. }
  3705. //载入模板
  3706. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3707. DocumentBuilder builder = new DocumentBuilder(doc);
  3708. //获取word里所有表格
  3709. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3710. //获取所填表格的序数
  3711. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3712. var rowStart = tableOne.Rows[0]; //获取第1行
  3713. //循环赋值
  3714. for (int i = 0; i < list.Count; i++)
  3715. {
  3716. builder.MoveToCell(0, i + 1, 0, 0);
  3717. builder.Write(list[i].Name.ToString());
  3718. builder.MoveToCell(0, i + 1, 1, 0);
  3719. builder.Write(list[i].Sex.ToString());
  3720. builder.MoveToCell(0, i + 1, 2, 0);
  3721. builder.Write(list[i].DOB.ToString());
  3722. builder.MoveToCell(0, i + 1, 3, 0);
  3723. builder.Write(list[i].Job.ToString());
  3724. }
  3725. //删除多余行
  3726. while (tableOne.Rows.Count > list.Count + 1)
  3727. {
  3728. tableOne.Rows.RemoveAt(list.Count + 1);
  3729. }
  3730. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3731. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3732. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3733. doc.Save(filePath);
  3734. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3735. return Ok(JsonView(true, "操作成功!", Url));
  3736. }
  3737. else
  3738. {
  3739. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3740. }
  3741. }
  3742. catch (Exception ex)
  3743. {
  3744. return Ok(JsonView(false, ex.Message));
  3745. throw;
  3746. }
  3747. }
  3748. #endregion
  3749. #region 团组经理模块 出入境费用
  3750. ///// <summary>
  3751. ///// 团组模块 - 出入境费用
  3752. ///// </summary>
  3753. ///// <returns></returns>
  3754. //[HttpPost]
  3755. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3756. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3757. //{
  3758. // try
  3759. // {
  3760. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3761. // if (data.Code != 0)
  3762. // {
  3763. // return Ok(JsonView(false, data.Msg));
  3764. // }
  3765. // return Ok(JsonView(true, "查询成功!"));
  3766. // }
  3767. // catch (Exception ex)
  3768. // {
  3769. // return Ok(JsonView(false, ex.Message));
  3770. // throw;
  3771. // }
  3772. //}
  3773. /// <summary>
  3774. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3775. /// </summary>
  3776. /// <returns></returns>
  3777. [HttpPost]
  3778. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3779. public async Task<IActionResult> SetDayAndCostAreaChange()
  3780. {
  3781. try
  3782. {
  3783. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3784. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3785. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3786. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3787. foreach (var item in unite) //处理交集数据
  3788. {
  3789. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3790. }
  3791. foreach (var item in merge) //处理差集数据
  3792. {
  3793. int nationalTravelFeeId = 0;
  3794. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3795. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3796. else
  3797. {
  3798. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3799. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3800. }
  3801. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3802. }
  3803. //只更新dayAndCost 的 nationalTravelFeeId;
  3804. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3805. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3806. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3807. }
  3808. catch (Exception ex)
  3809. {
  3810. return Ok(JsonView(false, ex.Message));
  3811. throw;
  3812. }
  3813. }
  3814. /// <summary>
  3815. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3816. /// </summary>
  3817. /// <returns></returns>
  3818. [HttpPost]
  3819. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3820. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3821. {
  3822. try
  3823. {
  3824. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3825. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3826. //SetDataInfoView
  3827. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3828. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3829. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3830. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3831. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3832. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3833. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3834. //默认币种显示
  3835. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3836. {
  3837. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3838. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3839. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3840. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3841. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3842. };
  3843. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3844. if (_currencyRate.Count > 0)
  3845. {
  3846. foreach (var item in _currencyInfos)
  3847. {
  3848. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3849. if (rateInfo != null)
  3850. {
  3851. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3852. rate1 *= 1.035M;
  3853. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3854. }
  3855. }
  3856. }
  3857. return Ok(JsonView(true, "查询成功!", new
  3858. {
  3859. GroupNameData = groupNameData.Data,
  3860. CurrencyData = _CurrencyData,
  3861. WordTypeData = _WordTypeData,
  3862. ExcelTypeData = _ExcelTypeData,
  3863. CurrencyInit = _currencyInfos
  3864. }));
  3865. }
  3866. catch (Exception ex)
  3867. {
  3868. return Ok(JsonView(false, ex.Message));
  3869. throw;
  3870. }
  3871. }
  3872. /// <summary>
  3873. /// 团组模块 - 出入境费用
  3874. /// 实时汇率 tips
  3875. /// 签证费用 tips
  3876. /// </summary>
  3877. /// <returns></returns>
  3878. [HttpPost]
  3879. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3880. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3881. {
  3882. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3883. //默认币种显示
  3884. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3885. {
  3886. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3887. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3888. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3889. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3890. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3891. };
  3892. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3893. List<dynamic> reteInfos = new List<dynamic>();
  3894. if (_currencyRate.Count > 0)
  3895. {
  3896. foreach (var item in _currencyInfos)
  3897. {
  3898. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3899. if (rateInfo != null)
  3900. {
  3901. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3902. decimal rate1 = item.Rate;
  3903. rate1 *= 1.03M;
  3904. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3905. reteInfos.Add(new
  3906. {
  3907. currCode = item.CurrencyCode,
  3908. currName = item.CurrencyName,
  3909. rate = rate2,
  3910. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3911. });
  3912. }
  3913. }
  3914. }
  3915. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3916. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3917. return Ok(JsonView(true, "查询成功!", new
  3918. {
  3919. //GroupNameData = groupNameData.Data,
  3920. visaData = visaData.Data,
  3921. airData = airData.Data,
  3922. reteInfos = reteInfos
  3923. }));
  3924. }
  3925. /// <summary>
  3926. /// 团组模块 - 出入境费用 - Info
  3927. /// </summary>
  3928. /// <returns></returns>
  3929. [HttpPost]
  3930. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3931. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3932. {
  3933. try
  3934. {
  3935. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3936. if (data.Code != 0)
  3937. {
  3938. return Ok(JsonView(false, data.Msg));
  3939. }
  3940. return Ok(JsonView(true, "查询成功!", data.Data));
  3941. }
  3942. catch (Exception ex)
  3943. {
  3944. return Ok(JsonView(false, ex.Message));
  3945. }
  3946. }
  3947. /// <summary>
  3948. /// 团组模块 - 出入境费用 - Add And Update
  3949. /// </summary>
  3950. /// <returns></returns>
  3951. [HttpPost]
  3952. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3953. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3954. {
  3955. try
  3956. {
  3957. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3958. if (data.Code != 0)
  3959. {
  3960. return Ok(JsonView(false, data.Msg));
  3961. }
  3962. //生成默认文件pdf并且通知人员
  3963. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3964. {
  3965. DiId = dto.DiId,
  3966. ExportType = 1,
  3967. SubTypeId = 1005
  3968. }, "pdf");
  3969. //发送通知
  3970. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3971. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3972. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3973. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3974. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3975. return Ok(JsonView(true, data.Msg, data.Data));
  3976. }
  3977. catch (Exception ex)
  3978. {
  3979. return Ok(JsonView(false, ex.Message));
  3980. }
  3981. }
  3982. /// <summary>
  3983. /// 团组模块 - 出入境费用 - Confirm 费用
  3984. /// </summary>
  3985. /// <returns></returns>
  3986. [HttpPost]
  3987. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3988. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3989. {
  3990. //TODO:测试完毕需把对应的用户ID更改
  3991. //1、数据表添加字段
  3992. //2、更改字段接口()
  3993. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3994. //3、确认成功 给财务发送消息
  3995. if (_view.Code == 200)
  3996. {
  3997. if (dto.Type == 1)
  3998. {
  3999. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  4000. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  4001. }
  4002. }
  4003. return Ok(_view);
  4004. }
  4005. /// <summary>
  4006. /// 团组模块 - 出入境费用 - File downlaod
  4007. /// </summary>
  4008. /// <param name="dto"></param>
  4009. /// <returns></returns>
  4010. [HttpPost]
  4011. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4012. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  4013. {
  4014. try
  4015. {
  4016. if (dto.DiId < 1)
  4017. {
  4018. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4019. }
  4020. if (dto.ExportType < 1)
  4021. {
  4022. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  4023. }
  4024. if (dto.SubTypeId < 1)
  4025. {
  4026. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  4027. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  4028. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  4029. 3 团组成员名单 1 团组成员名单"));
  4030. }
  4031. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4032. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  4033. if (_EnterExitCosts == null)
  4034. {
  4035. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  4036. }
  4037. //数据源
  4038. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  4039. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  4040. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  4041. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  4042. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  4043. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  4044. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  4045. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  4046. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  4047. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  4048. .Select((tcl, dc, cc) => new
  4049. {
  4050. Name = dc.LastName + dc.FirstName,
  4051. Sex = dc.Sex,
  4052. Birthday = dc.BirthDay,
  4053. Company = cc.CompanyFullName,
  4054. Job = dc.Job
  4055. })
  4056. .ToList();
  4057. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4058. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  4059. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  4060. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  4061. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  4062. if (dto.ExportType == 1) //明细表
  4063. {
  4064. if (dto.SubTypeId == 1005) //1005(默认明细表)
  4065. {
  4066. //获取模板
  4067. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  4068. //载入模板
  4069. Document doc = new Document(tempPath);
  4070. DocumentBuilder builder = new DocumentBuilder(doc);
  4071. //利用键值对存放数据
  4072. Dictionary<string, string> dic = new Dictionary<string, string>();
  4073. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  4074. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  4075. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  4076. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  4077. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  4078. //境内费用(其他费用)
  4079. if (_EnterExitCosts.ChoiceOne == 1)
  4080. {
  4081. string row1_1 = "";
  4082. if (_EnterExitCosts.Visa > 0)
  4083. {
  4084. //insidePayTotal += _EnterExitCosts.Visa;
  4085. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  4086. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  4087. {
  4088. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  4089. }
  4090. }
  4091. string row1_2 = "";
  4092. if (_EnterExitCosts.YiMiao > 0)
  4093. {
  4094. //insidePayTotal += _EnterExitCosts.YiMiao;
  4095. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  4096. }
  4097. if (_EnterExitCosts.HeSuan > 0)
  4098. {
  4099. //insidePayTotal += _EnterExitCosts.HeSuan;
  4100. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4101. }
  4102. if (_EnterExitCosts.Service > 0)
  4103. {
  4104. //insidePayTotal += _EnterExitCosts.Service;
  4105. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4106. }
  4107. string row1_3 = "";
  4108. if (_EnterExitCosts.Safe > 0)
  4109. {
  4110. //insidePayTotal += _EnterExitCosts.Safe;
  4111. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4112. }
  4113. if (_EnterExitCosts.Ticket > 0)
  4114. {
  4115. //insidePayTotal += _EnterExitCosts.Ticket;
  4116. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4117. }
  4118. string row1 = "";
  4119. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4120. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4121. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4122. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4123. dic.Add("Row1Str", row1);
  4124. }
  4125. string airTotalStr = string.Empty,
  4126. airPriceStr = string.Empty;
  4127. //经济舱
  4128. if (_EnterExitCosts.SumJJC == 1)
  4129. {
  4130. airTotalStr += $"{_EnterExitCosts.OutsideJJPay.ToString("#0.00")}元/人(经济舱)";
  4131. airPriceStr += $"{_EnterExitCosts.AirJJ.ToString("#0.00")}元/人(经济舱)";
  4132. }
  4133. //公务舱
  4134. if (_EnterExitCosts.SumGWC == 1)
  4135. {
  4136. airTotalStr += $" {_EnterExitCosts.OutsideGWPay.ToString("#0.00")} 元/人(公务舱)";
  4137. airPriceStr += $" {_EnterExitCosts.AirGW.ToString("#0.00")} 元/人(公务舱)";
  4138. }
  4139. //头等舱
  4140. if (_EnterExitCosts.SumTDC == 1)
  4141. {
  4142. airTotalStr += $" {_EnterExitCosts.OutsideTDPay.ToString("#0.00")} 元/人(头等舱)";
  4143. airPriceStr += $" {_EnterExitCosts.AirTD.ToString("#0.00")} 元/人(头等舱)";
  4144. }
  4145. dic.Add("AirTotalStr", airTotalStr);
  4146. dic.Add("AirPriceStr", airPriceStr);
  4147. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4148. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4149. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4150. int table1Row = 0,
  4151. table2Row = 0,
  4152. table3Row = 0,
  4153. table4Row = 0;
  4154. //住宿费
  4155. if (_EnterExitCosts.ChoiceThree == 1)
  4156. {
  4157. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4158. table1Row = dac1.Count;
  4159. #region 填充word表格内容
  4160. for (int i = 0; i < dac1.Count; i++)
  4161. {
  4162. Grp_DayAndCost dac = dac1[i];
  4163. if (dac == null) continue;
  4164. builder.MoveToCell(0, i, 0, 0);
  4165. builder.Write("第" + dac.Days.ToString() + "晚:");
  4166. builder.MoveToCell(0, i, 1, 0);
  4167. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4168. //builder.Write(dac.Place == null ? "" : dac.Place);
  4169. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4170. builder.MoveToCell(0, i, 2, 0);
  4171. builder.Write("费用标准:");
  4172. string curr = "";
  4173. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4174. if (currData != null)
  4175. {
  4176. curr = currData.Name;
  4177. }
  4178. builder.MoveToCell(0, i, 3, 0);
  4179. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4180. builder.MoveToCell(0, i, 4, 0);
  4181. builder.Write("费用小计:");
  4182. builder.MoveToCell(0, i, 5, 0);
  4183. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4184. }
  4185. #endregion
  4186. }else dic.Add("SubZS","0.00");
  4187. //删除多余行
  4188. while (table1.Rows.Count > table1Row)
  4189. {
  4190. table1.Rows.RemoveAt(table1Row);
  4191. }
  4192. //伙食费
  4193. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4194. if (_EnterExitCosts.ChoiceFour == 1)
  4195. {
  4196. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4197. table2Row = dac2.Count;
  4198. #region 填充word表格内容
  4199. for (int i = 0; i < dac2.Count; i++)
  4200. {
  4201. Grp_DayAndCost dac = dac2[i];
  4202. if (dac == null) continue;
  4203. builder.MoveToCell(1, i, 0, 0);
  4204. builder.Write("第" + dac.Days.ToString() + "天:");
  4205. builder.MoveToCell(1, i, 1, 0);
  4206. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4207. builder.MoveToCell(1, i, 2, 0);
  4208. builder.Write("费用标准:");
  4209. string curr = "";
  4210. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4211. if (currData != null)
  4212. {
  4213. curr = currData.Name;
  4214. }
  4215. builder.MoveToCell(1, i, 3, 0);
  4216. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4217. builder.MoveToCell(1, i, 4, 0);
  4218. builder.Write("费用小计:");
  4219. builder.MoveToCell(1, i, 5, 0);
  4220. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4221. }
  4222. #endregion
  4223. }else dic.Add("SubHS","0.00");
  4224. //删除多余行
  4225. while (table2.Rows.Count > table2Row)
  4226. {
  4227. table2.Rows.RemoveAt(table2Row);
  4228. }
  4229. //公杂费
  4230. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4231. if (_EnterExitCosts.ChoiceFive == 1)
  4232. {
  4233. dic.Add("SubGZF", miscellaneousFeeTotal.ToString("#0.00"));
  4234. table3Row = dac3.Count;
  4235. #region 填充word表格内容
  4236. for (int i = 0; i < dac3.Count; i++)
  4237. {
  4238. Grp_DayAndCost dac = dac3[i];
  4239. if (dac == null) continue;
  4240. builder.MoveToCell(2, i, 0, 0);
  4241. builder.Write("第" + dac.Days.ToString() + "天:");
  4242. builder.MoveToCell(2, i, 1, 0);
  4243. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4244. builder.MoveToCell(2, i, 2, 0);
  4245. builder.Write("费用标准:");
  4246. string curr = "";
  4247. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4248. if (currData != null)
  4249. {
  4250. curr = currData.Name;
  4251. }
  4252. builder.MoveToCell(2, i, 3, 0);
  4253. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4254. builder.MoveToCell(2, i, 4, 0);
  4255. builder.Write("费用小计:");
  4256. builder.MoveToCell(2, i, 5, 0);
  4257. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4258. }
  4259. //删除多余行
  4260. while (table3.Rows.Count > table3Row)
  4261. {
  4262. table3.Rows.RemoveAt(table3Row);
  4263. }
  4264. #endregion
  4265. }else dic.Add("SubGZF", "0.00");
  4266. //删除多余行
  4267. while (table3.Rows.Count > table3Row)
  4268. {
  4269. table3.Rows.RemoveAt(table3Row);
  4270. }
  4271. //培训费
  4272. Aspose.Words.Tables.Table table4 = allTables[3] as Aspose.Words.Tables.Table;
  4273. if (_EnterExitCosts.ChoiceSix == 1)
  4274. {
  4275. string pxStr = $"六、培训费合计: {tainFeeTotal.ToString("#0.00")} 元/人";
  4276. dic.Add("SubPX", pxStr);
  4277. table4Row = dac4.Count;
  4278. #region 填充word表格内容
  4279. for (int i = 0; i < dac4.Count; i++)
  4280. {
  4281. Grp_DayAndCost dac = dac4[i];
  4282. if (dac == null) continue;
  4283. builder.MoveToCell(3, i, 0, 0);
  4284. builder.Write("第" + dac.Days.ToString() + "天:");
  4285. builder.MoveToCell(3, i, 1, 0);
  4286. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4287. builder.MoveToCell(3, i, 2, 0);
  4288. builder.Write("费用标准:");
  4289. string curr = "";
  4290. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4291. if (currData != null)
  4292. {
  4293. curr = currData.Name;
  4294. }
  4295. builder.MoveToCell(3, i, 3, 0);
  4296. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4297. builder.MoveToCell(3, i, 4, 0);
  4298. builder.Write("费用小计:");
  4299. builder.MoveToCell(3, i, 5, 0);
  4300. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4301. }
  4302. #endregion
  4303. }
  4304. //else dic.Add("SubPX","0.00");
  4305. //删除多余行
  4306. while (table4.Rows.Count > table4Row)
  4307. {
  4308. table4.Rows.RemoveAt(table4Row);
  4309. }
  4310. decimal otherFeeTotal = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal;
  4311. decimal subJJC = 0.00M,
  4312. subGWC = 0.00M,
  4313. subTDC = 0.00M;
  4314. //经济舱
  4315. if (_EnterExitCosts.SumJJC == 1) subJJC = otherFeeTotal + _EnterExitCosts.OutsideJJPay;
  4316. //公务舱
  4317. if (_EnterExitCosts.SumGWC == 1) subGWC = otherFeeTotal + _EnterExitCosts.OutsideGWPay;
  4318. //头等舱
  4319. if (_EnterExitCosts.SumTDC == 1) subTDC = otherFeeTotal + _EnterExitCosts.OutsideTDPay;
  4320. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4321. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4322. dic.Add("SubTDC", subTDC.ToString("#0.00"));
  4323. #region 填充word模板书签内容
  4324. foreach (var key in dic.Keys)
  4325. {
  4326. builder.MoveToBookmark(key);
  4327. builder.Write(dic[key]);
  4328. }
  4329. #endregion
  4330. //文件名
  4331. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4332. AsposeHelper.removewatermark_v2180();
  4333. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4334. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4335. return Ok(JsonView(true, "成功", new { Url = url }));
  4336. }
  4337. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4338. {
  4339. //获取模板
  4340. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4341. //载入模板
  4342. Document doc = new Document(tempPath);
  4343. DocumentBuilder builder = new DocumentBuilder(doc);
  4344. Dictionary<string, string> dic = new Dictionary<string, string>();
  4345. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4346. {
  4347. List<string> list = new List<string>();
  4348. try
  4349. {
  4350. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4351. foreach (var item in spilitArr)
  4352. {
  4353. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4354. var depCode = spDotandEmpty[2].Substring(0, 3);
  4355. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4356. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4357. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4358. list.Add(depName);
  4359. list.Add(arrName);
  4360. }
  4361. list = list.Distinct().ToList();
  4362. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4363. }
  4364. catch (Exception)
  4365. {
  4366. dic.Add("ReturnCode", "行程录入不正确!");
  4367. }
  4368. }
  4369. else
  4370. {
  4371. dic.Add("ReturnCode", "未录入行程!");
  4372. }
  4373. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4374. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4375. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4376. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4377. {
  4378. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4379. dic.Add("Day", sp.Days.ToString());
  4380. }
  4381. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4382. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4383. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4384. //dic.Add("Names", Names);
  4385. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4386. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4387. decimal dac1totalPrice = 0.00M;
  4388. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4389. foreach (var dac in dac1)
  4390. {
  4391. if (dac.SubTotal == 0.00M)
  4392. {
  4393. continue;
  4394. }
  4395. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4396. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4397. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4398. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4399. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4400. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4401. builder.Write(currency);//币种
  4402. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4403. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4404. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4405. builder.Write("");//人数
  4406. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4407. builder.Write("");//天数
  4408. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4409. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4410. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4411. decimal rate = 0.00M;
  4412. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4413. builder.Write(rate.ToString("#0.0000"));//汇率
  4414. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4415. decimal rbmPrice = dac.SubTotal;
  4416. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4417. accommodationStartIndex++;
  4418. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4419. }
  4420. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4421. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4422. {
  4423. table1.Rows.RemoveAt(i - 1);
  4424. foodandotherStartIndex--;
  4425. }
  4426. if (dac2.Count == dac3.Count)//国家 币种 金额
  4427. {
  4428. for (int i = 0; i < dac2.Count; i++)
  4429. {
  4430. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4431. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4432. }
  4433. }
  4434. decimal dac2totalPrice = 0.00M;
  4435. foreach (var dac in dac2)
  4436. {
  4437. if (dac.SubTotal == 0)
  4438. {
  4439. continue;
  4440. }
  4441. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4442. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4443. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4444. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4445. builder.Write(currency);//币种
  4446. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4447. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4448. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4449. builder.Write("");//人数
  4450. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4451. builder.Write("");//天数
  4452. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4453. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4454. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4455. decimal rate = 0.00M;
  4456. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4457. builder.Write(rate.ToString("#0.0000"));//汇率
  4458. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4459. decimal rbmPrice = dac.SubTotal;
  4460. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4461. foodandotherStartIndex++;
  4462. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4463. }
  4464. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4465. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4466. {
  4467. table1.Rows.RemoveAt(i - 1);
  4468. }
  4469. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4470. string otherFeeStr = "";
  4471. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4472. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4473. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4474. if (otherFeeStr.Length > 0)
  4475. {
  4476. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4477. otherFeeStr = $"({otherFeeStr})";
  4478. dic.Add("OtherFeeStr", otherFeeStr);
  4479. }
  4480. //总计
  4481. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4482. //国际旅费
  4483. string outsideAir = string.Empty;
  4484. string allPriceAir = string.Empty;
  4485. if (_EnterExitCosts.SumJJC == 1)
  4486. {
  4487. outsideAir += string.Format(@"经济舱:{0} 元/人;", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4488. allPriceAir += string.Format(@"经济舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4489. }
  4490. if (_EnterExitCosts.SumGWC == 1)
  4491. {
  4492. outsideAir += string.Format(@"公务舱:{0} 元/人;", _EnterExitCosts.AirGW.ToString("#0.00"));
  4493. allPriceAir += string.Format(@"公务舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideGWPay).ToString("#0.00"));
  4494. }
  4495. if (_EnterExitCosts.SumTDC == 1)
  4496. {
  4497. outsideAir += string.Format(@"头等舱:{0} 元/人;", _EnterExitCosts.AirTD.ToString("#0.00"));
  4498. allPriceAir += string.Format(@"头等舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideTDPay).ToString("#0.00"));
  4499. }
  4500. dic.Add("InTravelPrice", $"({outsideAir})");
  4501. dic.Add("FinalSumPrice", $"({allPriceAir})");
  4502. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4503. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4504. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4505. foreach (var key in dic.Keys)
  4506. {
  4507. builder.MoveToBookmark(key);
  4508. builder.Write(dic[key]);
  4509. }
  4510. //模板文件名
  4511. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  4512. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4513. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4514. return Ok(JsonView(true, "成功", new { Url = url }));
  4515. }
  4516. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4517. {
  4518. //获取模板
  4519. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4520. //载入模板
  4521. WorkbookDesigner designer = new WorkbookDesigner();
  4522. designer.Workbook = new Workbook(tempPath);
  4523. Dictionary<string, string> dic = new Dictionary<string, string>();
  4524. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4525. {
  4526. List<string> list = new List<string>();
  4527. try
  4528. {
  4529. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4530. foreach (var item in spilitArr)
  4531. {
  4532. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4533. var depCode = spDotandEmpty[2].Substring(0, 3);
  4534. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4535. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4536. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4537. list.Add(depName);
  4538. list.Add(arrName);
  4539. }
  4540. list = list.Distinct().ToList();
  4541. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4542. }
  4543. catch (Exception)
  4544. {
  4545. dic.Add("ReturnCode", "行程录入不正确!");
  4546. }
  4547. }
  4548. else
  4549. {
  4550. dic.Add("ReturnCode", "未录入行程!");
  4551. }
  4552. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4553. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4554. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4555. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4556. {
  4557. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4558. dic.Add("Day", sp.Days.ToString());
  4559. }
  4560. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4561. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4562. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4563. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4564. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4565. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4566. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4567. designer.SetDataSource("Name", Names);
  4568. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4569. designer.SetDataSource("Day", dic["Day"] + "天");
  4570. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4571. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4572. int startIndex = 10;
  4573. const int startIndexcopy = 10;
  4574. if (dac2.Count == dac3.Count)//国家 币种 金额
  4575. {
  4576. for (int i = 0; i < dac2.Count; i++)
  4577. {
  4578. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4579. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4580. }
  4581. }
  4582. DataTable dtdac1 = new DataTable();
  4583. List<string> place = new List<string>();
  4584. dtdac1.Columns.AddRange(new DataColumn[] {
  4585. new DataColumn(){ ColumnName = "city"},
  4586. new DataColumn(){ ColumnName = "curr"},
  4587. new DataColumn(){ ColumnName = "criterion"},
  4588. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4589. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4590. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4591. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4592. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4593. });
  4594. DataTable dtdac2 = new DataTable();
  4595. dtdac2.Columns.AddRange(new DataColumn[] {
  4596. new DataColumn(){ ColumnName = "city"},
  4597. new DataColumn(){ ColumnName = "curr"},
  4598. new DataColumn(){ ColumnName = "criterion"},
  4599. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4600. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4601. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4602. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4603. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4604. });
  4605. dtdac1.TableName = "tb1";
  4606. dtdac2.TableName = "tb2";
  4607. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4608. foreach (var item in dac1)
  4609. {
  4610. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4611. if (place.Contains(item.Place))
  4612. {
  4613. continue;
  4614. }
  4615. DataRow row = dtdac1.NewRow();
  4616. row["city"] = item.Place;
  4617. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4618. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4619. row["curr"] = currency;
  4620. row["rate"] = rate.ToString("#0.0000");
  4621. row["criterion"] = item.Cost.ToString("#0.00");
  4622. row["number"] = 1;
  4623. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4624. //row["costRMB"] = rbmPrice;
  4625. dtdac1.Rows.Add(row);
  4626. place.Add(item.Place);
  4627. }
  4628. place = new List<string>();
  4629. foreach (var item in dac2)
  4630. {
  4631. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4632. if (place.Contains(item.Place))
  4633. {
  4634. continue;
  4635. }
  4636. DataRow row = dtdac2.NewRow();
  4637. row["city"] = item.Place;
  4638. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4639. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4640. row["curr"] = currency;
  4641. row["rate"] = rate.ToString("#0.0000");
  4642. row["criterion"] = item.Cost.ToString("#0.00");
  4643. row["number"] = 1;
  4644. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4645. //row["cost"] = item.SubTotal;
  4646. //row["costRMB"] = rbmPrice;
  4647. dtdac2.Rows.Add(row);
  4648. place.Add(item.Place);
  4649. //dac2totalPrice += rbmPrice;
  4650. }
  4651. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4652. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4653. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4654. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4655. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4656. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4657. string cell4Str1 = string.Empty;
  4658. if (_EnterExitCosts.SumJJC == 1) cell4Str1 += $"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人;";
  4659. if (_EnterExitCosts.SumGWC == 1) cell4Str1 += $"公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人;";
  4660. if (_EnterExitCosts.SumTDC == 1) cell4Str1 += $"公务舱:{_EnterExitCosts.AirTD.ToString("#0.00")} 元/人;";
  4661. string cell4Str = $" 4.国际旅费:{cell4Str1}";
  4662. string cellStr = $" 5.其他费用(";
  4663. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4664. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4665. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4666. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4667. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4668. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4669. if (cellStr.Length > 8)
  4670. {
  4671. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4672. }
  4673. cellStr += ")";
  4674. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4675. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay + otherFee;
  4676. decimal pxFee = dac4.Sum(it => it.Cost);
  4677. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay;
  4678. string celllastStr1 = "";
  4679. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4680. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4681. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4682. celllastStr1 += $",国际旅费 元";
  4683. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4684. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4685. designer.SetDataSource("cell4Str", cell4Str);
  4686. designer.SetDataSource("cellStr", cellStr);
  4687. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4688. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay).ToString("#0.00"));
  4689. designer.SetDataSource("celllastStr", celllastStr);
  4690. Workbook wb = designer.Workbook;
  4691. var sheet = wb.Worksheets[0];
  4692. //绑定datatable数据集
  4693. designer.SetDataSource(dtdac1);
  4694. designer.SetDataSource(dtdac2);
  4695. designer.Process();
  4696. var rowStart = dtdac1.Rows.Count;
  4697. while (rowStart > 0)
  4698. {
  4699. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4700. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4701. startIndex++;
  4702. rowStart--;
  4703. }
  4704. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4705. startIndex += 1; //总计行
  4706. rowStart = dtdac2.Rows.Count;
  4707. while (rowStart > 0)
  4708. {
  4709. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4710. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4711. startIndex++;
  4712. rowStart--;
  4713. }
  4714. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4715. wb.CalculateFormula(true);
  4716. //模板文件名
  4717. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  4718. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4719. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4720. return Ok(JsonView(true, "成功", new { Url = url }));
  4721. }
  4722. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4723. {
  4724. //获取模板
  4725. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4726. //载入模板
  4727. Document doc = new Document(tempPath);
  4728. DocumentBuilder builder = new DocumentBuilder(doc);
  4729. Dictionary<string, string> dic = new Dictionary<string, string>();
  4730. dic.Add("GroupName", _DelegationInfo.TeamName);
  4731. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4732. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4733. string missionLeaderJob = "";//负责人job
  4734. int groupNumber = 0; //团人数
  4735. if (DeleClientList.Count > 0)
  4736. {
  4737. missionLeader = DeleClientList[0]?.Name ?? "";
  4738. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4739. }
  4740. dic.Add("MissionLeader", missionLeader); //团负责人
  4741. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4742. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4743. #region MyRegion
  4744. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4745. //{
  4746. // List<string> list = new List<string>();
  4747. // try
  4748. // {
  4749. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4750. // foreach (var item in spilitArr)
  4751. // {
  4752. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4753. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4754. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4755. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4756. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4757. // list.Add(depName);
  4758. // list.Add(arrName);
  4759. // }
  4760. // list = list.Distinct().ToList();
  4761. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4762. // }
  4763. // catch (Exception)
  4764. // {
  4765. // dic.Add("ReturnCode", "行程录入不正确!");
  4766. // }
  4767. //}
  4768. //else
  4769. //{
  4770. // dic.Add("ReturnCode", "未录入行程!");
  4771. //}
  4772. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4773. dic.Add("ReturnCode", string.Join("、", countrys));
  4774. #endregion
  4775. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4776. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4777. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4778. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4779. //{
  4780. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4781. // dic.Add("Day", sp.Days.ToString());
  4782. //}
  4783. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4784. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4785. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4786. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4787. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4788. //培训人员名单
  4789. int cultivateRowIndex = 7;
  4790. foreach (var item in DeleClientList)
  4791. {
  4792. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4793. builder.Write(item.Name);
  4794. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4795. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4796. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4797. string birthDay = "";
  4798. if (item.Birthday != null)
  4799. {
  4800. DateTime dt = Convert.ToDateTime(item.Birthday);
  4801. birthDay = $"{dt.Year}.{dt.Month}";
  4802. }
  4803. builder.Write(birthDay);
  4804. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4805. builder.Write(item.Company);
  4806. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4807. builder.Write(item.Job);
  4808. cultivateRowIndex++;
  4809. }
  4810. //删除多余行
  4811. //cultivateRowIndex -= 2;
  4812. int delRows = 10 + 7 - cultivateRowIndex;
  4813. if (delRows > 0)
  4814. {
  4815. for (int i = 0; i < delRows; i++)
  4816. {
  4817. table1.Rows.RemoveAt(cultivateRowIndex);
  4818. //cultivateRowIndex++;
  4819. }
  4820. }
  4821. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4822. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4823. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4824. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4825. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4826. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4827. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4828. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4829. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4830. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4831. //其他费用
  4832. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4833. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4834. //其他费用合计
  4835. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4836. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4837. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4838. //公务舱合计
  4839. //国际旅费
  4840. string outsideJJ = "";
  4841. string allPriceJJ = "";
  4842. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4843. {
  4844. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4845. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4846. }
  4847. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4848. {
  4849. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4850. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4851. }
  4852. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4853. {
  4854. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4855. dic.Add("AirFeeTotal", airFeeTotalStr);
  4856. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4857. dic.Add("FeeTotal", feeTotalStr);
  4858. }
  4859. foreach (var key in dic.Keys)
  4860. {
  4861. builder.MoveToBookmark(key);
  4862. builder.Write(dic[key]);
  4863. }
  4864. //模板文件名
  4865. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4866. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4867. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4868. return Ok(JsonView(true, "成功", new { Url = url }));
  4869. }
  4870. }
  4871. else if (dto.ExportType == 2) //表格
  4872. {
  4873. //利用键值对存放数据
  4874. Dictionary<string, string> dic = new Dictionary<string, string>();
  4875. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4876. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4877. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4878. dic.Add("Day", sp.Days.ToString());
  4879. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4880. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4881. {
  4882. //获取模板
  4883. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4884. //载入模板
  4885. Document doc = new Document(tempPath);
  4886. DocumentBuilder builder = new DocumentBuilder(doc);
  4887. dic.Add("TeamName", _DelegationInfo.TeamName);
  4888. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4889. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4890. string missionLeaderName = "",
  4891. missionLeaderJob = "";
  4892. if (DeleClientList.Count > 0)
  4893. {
  4894. missionLeaderName = DeleClientList[0].Name;
  4895. missionLeaderJob = DeleClientList[0].Job;
  4896. }
  4897. dic.Add("MissionLeaderName", missionLeaderName);
  4898. dic.Add("MissionLeaderJob", missionLeaderJob);
  4899. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4900. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4901. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4902. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4903. int rowCount = 10;//总人数行
  4904. int startRowIndex = 7; //起始行
  4905. for (int i = 0; i < DeleClientList.Count; i++)
  4906. {
  4907. builder.MoveToCell(0, startRowIndex, 0, 0);
  4908. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4909. builder.MoveToCell(0, startRowIndex, 1, 0);
  4910. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4911. builder.Write(sex);//性别
  4912. builder.MoveToCell(0, startRowIndex, 2, 0);
  4913. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4914. builder.MoveToCell(0, startRowIndex, 3, 0);
  4915. builder.Write(DeleClientList[i].Company);//工作单位
  4916. builder.MoveToCell(0, startRowIndex, 4, 0);
  4917. builder.Write(DeleClientList[i].Job);//职务及级别
  4918. builder.MoveToCell(0, startRowIndex, 5, 0);
  4919. builder.Write("");//人员属性
  4920. builder.MoveToCell(0, startRowIndex, 6, 0);
  4921. builder.Write("");//上次出国时间
  4922. startRowIndex++;
  4923. }
  4924. int nullRow = rowCount - DeleClientList.Count;//空行
  4925. for (int i = 0; i < nullRow; i++)
  4926. {
  4927. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4928. }
  4929. foreach (var key in dic.Keys)
  4930. {
  4931. builder.MoveToBookmark(key);
  4932. builder.Write(dic[key]);
  4933. }
  4934. //模板文件名
  4935. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4936. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4937. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4938. return Ok(JsonView(true, "成功", new { Url = url }));
  4939. }
  4940. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4941. {
  4942. //获取模板
  4943. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4944. //载入模板
  4945. Document doc = new Document(tempPath);
  4946. DocumentBuilder builder = new DocumentBuilder(doc);
  4947. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4948. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4949. dic.Add("Names", Names);
  4950. int accommodationRows = 12, foodandotherRows = 12;
  4951. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4952. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4953. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4954. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4955. int accommodationStartIndex = 6;
  4956. decimal dac1totalPrice = 0.00M;
  4957. foreach (var dac in dac1)
  4958. {
  4959. if (dac.SubTotal == 0)
  4960. {
  4961. continue;
  4962. }
  4963. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4964. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4965. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4966. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4967. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4968. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4969. builder.Write(currency);//币种
  4970. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4971. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4972. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4973. builder.Write("");//人数
  4974. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4975. builder.Write("");//天数
  4976. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4977. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4978. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4979. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4980. builder.Write(rate.ToString("#0.0000"));//汇率
  4981. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4982. decimal rbmPrice = rate * dac.SubTotal;
  4983. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4984. accommodationStartIndex++;
  4985. dac1totalPrice += rbmPrice;
  4986. }
  4987. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4988. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4989. builder.Write("小计");
  4990. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4991. builder.Write(dac1totalPrice.ToString("#0.00"));
  4992. accommodationStartIndex++;
  4993. int nullRow = accommodationRows - dac1.Count;
  4994. //删除空行
  4995. //if (nullRow > 0)
  4996. //{
  4997. // int rowIndex = accommodationStartIndex;
  4998. // for (int i = 0; i < nullRow; i++)
  4999. // {
  5000. // Aspose.Words.Tables.Row row = table1.Rows[rowIndex];
  5001. // row.Remove();
  5002. // rowIndex++;
  5003. // }
  5004. //}
  5005. if (dac2.Count == dac3.Count)//国家 币种 金额
  5006. {
  5007. for (int i = 0; i < dac2.Count; i++)
  5008. {
  5009. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  5010. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  5011. }
  5012. }
  5013. int foodandotherStartIndex = 19;//
  5014. decimal dac2totalPrice = 0.00M;
  5015. foreach (var dac in dac2)
  5016. {
  5017. if (dac.SubTotal == 0)
  5018. {
  5019. continue;
  5020. }
  5021. //foodandotherStartIndex = 12;
  5022. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  5023. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  5024. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  5025. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  5026. builder.Write(currency);//币种
  5027. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  5028. builder.Write(dac.Cost.ToString("#0.00"));//标准
  5029. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  5030. builder.Write("");//人数
  5031. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  5032. builder.Write("");//天数
  5033. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  5034. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  5035. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  5036. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  5037. builder.Write(rate.ToString("#0.0000"));//汇率
  5038. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  5039. decimal rbmPrice = rate * dac.SubTotal;
  5040. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  5041. foodandotherStartIndex++;
  5042. dac2totalPrice += rbmPrice;
  5043. }
  5044. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  5045. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  5046. //删除空行
  5047. //if (dac2.Count < foodandotherRows)
  5048. //{
  5049. // while (table2.Rows.Count > dac2.Count)
  5050. // {
  5051. // table2.Rows.RemoveAt(dac2.Count);
  5052. // }
  5053. //}
  5054. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  5055. string otherFeeStr = "";
  5056. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  5057. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  5058. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  5059. if (otherFeeStr.Length > 0)
  5060. {
  5061. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  5062. otherFeeStr = $"({otherFeeStr})";
  5063. dic.Add("OtherFeeStr", otherFeeStr);
  5064. }
  5065. foreach (var key in dic.Keys)
  5066. {
  5067. builder.MoveToBookmark(key);
  5068. builder.Write(dic[key]);
  5069. }
  5070. //模板文件名
  5071. string strFileName = $"省级单位出(境)经费报销单{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  5072. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5073. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5074. return Ok(JsonView(true, "成功", new { Url = url }));
  5075. }
  5076. }
  5077. else if (dto.ExportType == 3)
  5078. {
  5079. if (dto.SubTypeId == 1) //团组成员名单
  5080. {
  5081. if (DeleClientList.Count < 1)
  5082. {
  5083. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  5084. }
  5085. //获取模板
  5086. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  5087. //载入模板
  5088. Document doc = new Document(tempPath);
  5089. DocumentBuilder builder = new DocumentBuilder(doc);
  5090. //获取word里所有表格
  5091. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5092. //获取所填表格的序数
  5093. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5094. var rowStart = tableOne.Rows[0]; //获取第1行
  5095. //循环赋值
  5096. for (int i = 0; i < DeleClientList.Count; i++)
  5097. {
  5098. builder.MoveToCell(0, i + 1, 0, 0);
  5099. builder.Write(DeleClientList[i].Name);
  5100. builder.MoveToCell(0, i + 1, 1, 0);
  5101. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  5102. builder.Write(sex);
  5103. builder.MoveToCell(0, i + 1, 2, 0);
  5104. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  5105. builder.MoveToCell(0, i + 1, 3, 0);
  5106. builder.Write(DeleClientList[i].Company);
  5107. builder.MoveToCell(0, i + 1, 4, 0);
  5108. builder.Write(DeleClientList[i].Job);
  5109. }
  5110. //删除多余行
  5111. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  5112. {
  5113. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  5114. }
  5115. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  5116. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  5117. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  5118. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5119. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5120. return Ok(JsonView(true, "成功", new { Url = url }));
  5121. }
  5122. }
  5123. return Ok(JsonView(false, "操作失败!"));
  5124. }
  5125. catch (Exception ex)
  5126. {
  5127. return Ok(JsonView(false, ex.Message));
  5128. }
  5129. }
  5130. /// <summary>
  5131. /// 获取三公费用标准city
  5132. /// </summary>
  5133. /// <param name="placeData"></param>
  5134. /// <param name="nationalTravelFeeId"></param>
  5135. /// <returns></returns>
  5136. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  5137. {
  5138. string _city = string.Empty;
  5139. if (placeData.Count < 1) return _city;
  5140. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  5141. if (data == null) return _city;
  5142. string country = data.Country;
  5143. string city = data.City;
  5144. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  5145. else _city = city;
  5146. return _city;
  5147. }
  5148. /// <summary>
  5149. /// 团组模块 - 出入境费用 - 明细表导出
  5150. /// </summary>
  5151. /// <returns></returns>
  5152. [HttpPost]
  5153. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5154. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  5155. {
  5156. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  5157. if (data.Code != 0)
  5158. {
  5159. return Ok(JsonView(false, data.Msg));
  5160. }
  5161. return Ok(JsonView(true, data.Msg, data.Data));
  5162. }
  5163. /// <summary>
  5164. /// 团组模块 - 出入境费用 - 一键清空
  5165. /// </summary>
  5166. /// <returns></returns>
  5167. [HttpPost]
  5168. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5169. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  5170. {
  5171. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  5172. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  5173. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  5174. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  5175. if (_view.Code == 0)
  5176. {
  5177. return Ok(JsonView(true, "操作成功"));
  5178. }
  5179. return Ok(JsonView(false, "操作失败"));
  5180. }
  5181. /// <summary>
  5182. /// 团组模块 - 出入境费用 - 子项删除
  5183. /// </summary>
  5184. /// <returns></returns>
  5185. [HttpPost]
  5186. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5187. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  5188. {
  5189. try
  5190. {
  5191. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  5192. if (data.Code != 0)
  5193. {
  5194. return Ok(JsonView(false, data.Msg));
  5195. }
  5196. return Ok(JsonView(true, "操作成功!", data.Data));
  5197. }
  5198. catch (Exception ex)
  5199. {
  5200. return Ok(JsonView(false, ex.Message));
  5201. }
  5202. }
  5203. /// <summary>
  5204. /// 团组模块 - 出入境国家费用标准 List
  5205. /// </summary>
  5206. /// <returns></returns>
  5207. [HttpPost]
  5208. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5209. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5210. {
  5211. try
  5212. {
  5213. Stopwatch sw = new Stopwatch();
  5214. sw.Start();
  5215. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5216. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5217. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5218. Where gntf.Isdel = 0");
  5219. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5220. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5221. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5222. //foreach (var item in nationalTravel)
  5223. //{
  5224. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5225. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5226. // if (otherData != null)
  5227. // {
  5228. // cityData.Remove(otherData);
  5229. // cityData.Add(otherData);
  5230. // }
  5231. // nationalTravelFeeData1.Add(new
  5232. // {
  5233. // Country = item.Country,
  5234. // CityData = cityData
  5235. // });
  5236. //}
  5237. sw.Stop();
  5238. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5239. }
  5240. catch (Exception ex)
  5241. {
  5242. return Ok(JsonView(false, ex.Message));
  5243. throw;
  5244. }
  5245. }
  5246. /// <summary>
  5247. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5248. /// </summary>
  5249. /// <returns></returns>
  5250. [HttpPost]
  5251. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5252. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5253. {
  5254. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5255. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5256. List<string> countryData = new List<string>();
  5257. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5258. countryData = countryData.Distinct().ToList();
  5259. List<dynamic> dataSource = new List<dynamic>();
  5260. foreach (var item in countryData)
  5261. {
  5262. List<string> cityData1 = new List<string>();
  5263. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5264. var countryData2 = new
  5265. {
  5266. CountryName = item,
  5267. CityData = cityData1
  5268. };
  5269. dataSource.Add(countryData2);
  5270. }
  5271. return Ok(JsonView(true, "查询成功!", dataSource));
  5272. }
  5273. /// <summary>
  5274. /// 团组模块 - 出入境国家费用标准 Page List
  5275. /// </summary>
  5276. /// <returns></returns>
  5277. [HttpPost]
  5278. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5279. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5280. {
  5281. int portId = dto.PortType;
  5282. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5283. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5284. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5285. string whereSql = string.Empty;
  5286. if (!string.IsNullOrEmpty(dto.Country))
  5287. {
  5288. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5289. }
  5290. if (!string.IsNullOrEmpty(dto.City))
  5291. {
  5292. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5293. }
  5294. string pageSql = string.Format(@"Select * From (
  5295. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5296. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5297. From Grp_NationalTravelFee gntf
  5298. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5299. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5300. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5301. RefAsync<int> total = 0;
  5302. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5303. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5304. }
  5305. /// <summary>
  5306. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5307. /// </summary>
  5308. /// <returns></returns>
  5309. [HttpPost]
  5310. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5311. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5312. {
  5313. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5314. int portId = dto.PortType;
  5315. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5316. string whereSql = string.Empty;
  5317. if (!string.IsNullOrEmpty(dto.Country))
  5318. {
  5319. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5320. }
  5321. if (!string.IsNullOrEmpty(dto.City))
  5322. {
  5323. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5324. }
  5325. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5326. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5327. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5328. From Grp_NationalTravelFee gntf
  5329. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5330. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5331. Where gntf.Isdel = 0 {0} ", whereSql);
  5332. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5333. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5334. }
  5335. /// <summary>
  5336. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5337. /// </summary>
  5338. /// <returns></returns>
  5339. [HttpPost]
  5340. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5341. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5342. {
  5343. try
  5344. {
  5345. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5346. if (data.Code != 0)
  5347. {
  5348. return Ok(JsonView(false, data.Msg));
  5349. }
  5350. return Ok(JsonView(true, "操作成功!", data.Data));
  5351. }
  5352. catch (Exception ex)
  5353. {
  5354. return Ok(JsonView(false, ex.Message));
  5355. }
  5356. }
  5357. /// <summary>
  5358. /// 团组模块 - 出入境国家费用标准 - Del
  5359. /// </summary>
  5360. /// <returns></returns>
  5361. [HttpPost]
  5362. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5363. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5364. {
  5365. try
  5366. {
  5367. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5368. {
  5369. Id = dto.Id,
  5370. DeleteUserId = dto.DeleteUserId,
  5371. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5372. IsDel = 1
  5373. };
  5374. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5375. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5376. .WhereColumns(it => new { it.Id })
  5377. .ExecuteCommandAsync();
  5378. if (delStatus <= 0)
  5379. {
  5380. return Ok(JsonView(false, "删除失败!"));
  5381. }
  5382. return Ok(JsonView(true, "操作成功!"));
  5383. }
  5384. catch (Exception ex)
  5385. {
  5386. return Ok(JsonView(false, ex.Message));
  5387. }
  5388. }
  5389. #endregion
  5390. #region 签证费用录入
  5391. /// <summary>
  5392. /// 根据diid查询签证费用列表
  5393. /// </summary>
  5394. /// <param name="dto"></param>
  5395. /// <returns></returns>
  5396. [HttpPost]
  5397. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5398. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5399. {
  5400. try
  5401. {
  5402. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5403. if (groupData.Code != 0)
  5404. {
  5405. return Ok(JsonView(false, groupData.Msg));
  5406. }
  5407. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5408. }
  5409. catch (Exception ex)
  5410. {
  5411. return Ok(JsonView(false, ex.Message));
  5412. }
  5413. }
  5414. /// <summary>
  5415. /// 根据签证费用Id查询单条数据及c表数据
  5416. /// </summary>
  5417. /// <param name="dto"></param>
  5418. /// <returns></returns>
  5419. [HttpPost]
  5420. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5421. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5422. {
  5423. try
  5424. {
  5425. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5426. if (groupData.Code != 0)
  5427. {
  5428. return Ok(JsonView(false, groupData.Msg));
  5429. }
  5430. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5431. }
  5432. catch (Exception ex)
  5433. {
  5434. return Ok(JsonView(false, ex.Message));
  5435. }
  5436. }
  5437. /// <summary>
  5438. /// 签证费用删除
  5439. /// </summary>
  5440. /// <param name="dto"></param>
  5441. /// <returns></returns>
  5442. [HttpPost]
  5443. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5444. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5445. {
  5446. _sqlSugar.BeginTran();
  5447. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5448. if (!res)
  5449. {
  5450. _sqlSugar.RollbackTran();
  5451. return Ok(JsonView(false, "删除失败"));
  5452. }
  5453. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5454. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5455. .SetColumns(a => new Grp_CreditCardPayment()
  5456. {
  5457. IsDel = 1,
  5458. DeleteUserId = dto.DeleteUserId,
  5459. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5460. }).ExecuteCommand();
  5461. if (resSub < 1)
  5462. {
  5463. _sqlSugar.RollbackTran();
  5464. return Ok(JsonView(false, "删除失败"));
  5465. }
  5466. _sqlSugar.CommitTran();
  5467. return Ok(JsonView(true, "删除成功!"));
  5468. }
  5469. /// <summary>
  5470. /// 签证费用录入下拉框初始化
  5471. /// </summary>
  5472. /// <returns></returns>
  5473. [HttpPost]
  5474. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5475. public async Task<IActionResult> VisaPriceAddSelect()
  5476. {
  5477. try
  5478. {
  5479. //支付方式
  5480. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5481. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5482. //币种
  5483. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5484. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5485. //乘客类型
  5486. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5487. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5488. //卡类型
  5489. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5490. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5491. var data = new
  5492. {
  5493. Payment = _Payment,
  5494. CurrencyList = _CurrencyList,
  5495. PassengerType = _PassengerType,
  5496. BankCard = _BankCard
  5497. };
  5498. return Ok(JsonView(true, "查询成功!", data));
  5499. }
  5500. catch (Exception ex)
  5501. {
  5502. return Ok(JsonView(false, "程序错误!"));
  5503. throw;
  5504. }
  5505. }
  5506. /// <summary>
  5507. /// 签证费用录入操作(Status:1.新增,2.修改)
  5508. /// </summary>
  5509. /// <param name="dto"></param>
  5510. /// <returns></returns>
  5511. [HttpPost]
  5512. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5513. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5514. {
  5515. try
  5516. {
  5517. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5518. if (groupData.Code != 0)
  5519. {
  5520. return Ok(JsonView(false, groupData.Msg));
  5521. }
  5522. #region 应用推送
  5523. try
  5524. {
  5525. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5526. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5527. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5528. }
  5529. catch (Exception ex)
  5530. {
  5531. }
  5532. #endregion
  5533. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5534. }
  5535. catch (Exception ex)
  5536. {
  5537. return Ok(JsonView(false, ex.Message));
  5538. }
  5539. }
  5540. #endregion
  5541. #region 签证提成录入
  5542. /// <summary>
  5543. /// 签证提成录入
  5544. /// 基础数据
  5545. /// </summary>
  5546. /// <param name="_dto"></param>
  5547. /// <returns></returns>
  5548. [HttpGet]
  5549. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5550. public async Task<IActionResult> VisaCommissionInit()
  5551. {
  5552. return Ok(await _visaCommissionRep.Init());
  5553. }
  5554. /// <summary>
  5555. /// 签证提成录入
  5556. /// Item
  5557. /// </summary>
  5558. /// <param name="_dto"></param>
  5559. /// <returns></returns>
  5560. [HttpPost]
  5561. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5562. public async Task<IActionResult> VisaCommissionItem(VisaCommissionItemDto _dto)
  5563. {
  5564. var validator = new VisaCommissionItemDtoValidator();
  5565. var validatorRes = await validator.ValidateAsync(_dto);
  5566. if (!validatorRes.IsValid)
  5567. {
  5568. StringBuilder sb = new StringBuilder();
  5569. foreach (var item in validatorRes.Errors)
  5570. {
  5571. sb.AppendLine(item.ErrorMessage);
  5572. }
  5573. return Ok(JsonView(false, sb.ToString()));
  5574. }
  5575. return Ok(await _visaCommissionRep.Item(_dto));
  5576. }
  5577. /// <summary>
  5578. /// 签证提成录入
  5579. /// Create
  5580. /// </summary>
  5581. /// <param name="_dto"></param>
  5582. /// <returns></returns>
  5583. [HttpPost]
  5584. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5585. public async Task<IActionResult> VisaCommissionCreate(VisaCommissionCreateDto _dto)
  5586. {
  5587. var validator = new VisaCommissionCreateDtoValidator();
  5588. var validatorRes = await validator.ValidateAsync(_dto);
  5589. if (!validatorRes.IsValid)
  5590. {
  5591. StringBuilder sb = new StringBuilder();
  5592. foreach (var item in validatorRes.Errors)
  5593. {
  5594. sb.AppendLine(item.ErrorMessage);
  5595. }
  5596. return Ok(JsonView(false, sb.ToString()));
  5597. }
  5598. return Ok(await _visaCommissionRep.Create(_dto));
  5599. }
  5600. /// <summary>
  5601. /// 签证提成录入
  5602. /// Put(编辑)
  5603. /// </summary>
  5604. /// <param name="id"></param>
  5605. /// <param name="_dto"></param>
  5606. /// <returns></returns>
  5607. [HttpPut]
  5608. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5609. public async Task<IActionResult> VisaCommissionEdit(int id,VisaCommissionCreateDto _dto)
  5610. {
  5611. if (id < 1) return Ok(JsonView(false, "请输入正确的id参数!"));
  5612. var validator = new VisaCommissionCreateDtoValidator();
  5613. var validatorRes = await validator.ValidateAsync(_dto);
  5614. if (!validatorRes.IsValid)
  5615. {
  5616. StringBuilder sb = new StringBuilder();
  5617. foreach (var item in validatorRes.Errors)
  5618. {
  5619. sb.AppendLine(item.ErrorMessage);
  5620. }
  5621. return Ok(JsonView(false, sb.ToString()));
  5622. }
  5623. return Ok(await _visaCommissionRep.Edit(id,_dto));
  5624. }
  5625. /// <summary>
  5626. /// 签证提成录入
  5627. /// Del
  5628. /// </summary>
  5629. /// <param name="id"></param>
  5630. /// <param name="currUserId"></param>
  5631. /// <returns></returns>
  5632. [HttpPost]
  5633. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5634. public async Task<IActionResult> VisaCommissionDel(int id,int currUserId)
  5635. {
  5636. if (id < 1) return Ok(JsonView(false, "请输入正确的id参数!"));
  5637. if (currUserId < 1) return Ok(JsonView(false, "请输入正确的currUserId参数!"));
  5638. return Ok(await _visaCommissionRep.Del(id, currUserId));
  5639. }
  5640. #endregion
  5641. #region op费用录入
  5642. /// <summary>
  5643. /// 根据diid查询op费用列表
  5644. /// </summary>
  5645. /// <param name="dto"></param>
  5646. /// <returns></returns>
  5647. [HttpPost]
  5648. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5649. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5650. {
  5651. try
  5652. {
  5653. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5654. if (groupData.Code != 0)
  5655. {
  5656. return Ok(JsonView(false, groupData.Msg));
  5657. }
  5658. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5659. }
  5660. catch (Exception ex)
  5661. {
  5662. return Ok(JsonView(false, ex.Message));
  5663. }
  5664. }
  5665. /// <summary>
  5666. /// 根据op费用Id查询单条数据及c表数据
  5667. /// </summary>
  5668. /// <param name="dto"></param>
  5669. /// <returns></returns>
  5670. [HttpPost]
  5671. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5672. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5673. {
  5674. try
  5675. {
  5676. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5677. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5678. var data = new
  5679. {
  5680. CarTouristGuideGround = _groupData,
  5681. CreditCardPayment = _creditCardPayment
  5682. };
  5683. return Ok(JsonView(true, "查询成功!", data));
  5684. }
  5685. catch (Exception ex)
  5686. {
  5687. return Ok(JsonView(false, "程序错误!"));
  5688. }
  5689. }
  5690. /// <summary>
  5691. /// op费用删除
  5692. /// </summary>
  5693. /// <param name="dto"></param>
  5694. /// <returns></returns>
  5695. [HttpPost]
  5696. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5697. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5698. {
  5699. try
  5700. {
  5701. _sqlSugar.BeginTran();
  5702. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5703. if (!res)
  5704. {
  5705. return Ok(JsonView(false, "删除失败"));
  5706. }
  5707. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5708. {
  5709. IsDel = 1,
  5710. DeleteUserId = dto.DeleteUserId,
  5711. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5712. }).ExecuteCommandAsync();
  5713. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5714. {
  5715. IsDel = 1,
  5716. DeleteUserId = dto.DeleteUserId,
  5717. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5718. }).ExecuteCommandAsync();
  5719. #region 删除超支相关数据
  5720. //删除导入的超支数据
  5721. var ids = _sqlSugar.Queryable<Fin_LocalGuideRelevancyOverspend>().Where(x => x.LocalGuideId == dto.Id && x.IsDel == 0).Select(x => x.OverspendId).ToList();
  5722. var count = _sqlSugar.Updateable<Fin_GroupExtraCost>().Where(x => ids.Contains(x.Id) && x.IsDel == 0).SetColumns(x => new Fin_GroupExtraCost
  5723. {
  5724. IsDel = 1,
  5725. DeleteUserId = dto.DeleteUserId,
  5726. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5727. }).ExecuteCommand();
  5728. count = _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(x => x.CTable == 1015 && x.IsDel == 0 && ids.Contains(x.CId)).SetColumns(x => new Grp_CreditCardPayment
  5729. {
  5730. IsDel = 1,
  5731. DeleteUserId = dto.DeleteUserId,
  5732. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5733. }).ExecuteCommand() ;
  5734. count = _sqlSugar.Updateable<Fin_LocalGuideRelevancyOverspend>().Where(x=>x.IsDel == 0 && x.LocalGuideId == dto.Id).SetColumns(x => new Fin_LocalGuideRelevancyOverspend
  5735. {
  5736. IsDel = 1,
  5737. DeleteUserId = dto.DeleteUserId,
  5738. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5739. }).ExecuteCommand();
  5740. #endregion
  5741. _sqlSugar.CommitTran();
  5742. return Ok(JsonView(true, "删除成功!"));
  5743. }
  5744. catch (Exception ex)
  5745. {
  5746. _sqlSugar.RollbackTran();
  5747. return Ok(JsonView(false, "程序错误!" + ex.Message));
  5748. }
  5749. }
  5750. /// <summary>
  5751. /// op费用录入操作(Status:1.新增,2.修改)
  5752. /// </summary>
  5753. /// <param name="dto"></param>
  5754. /// <returns></returns>
  5755. [HttpPost]
  5756. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5757. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5758. {
  5759. try
  5760. {
  5761. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5762. if (groupData.Code != 0)
  5763. {
  5764. return Ok(JsonView(false, groupData.Msg));
  5765. }
  5766. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5767. }
  5768. catch (Exception ex)
  5769. {
  5770. return Ok(JsonView(false, ex.Message));
  5771. }
  5772. }
  5773. /// <summary>
  5774. /// 填写费用详细页面初始化绑定
  5775. /// </summary>
  5776. /// <param name="dto"></param>
  5777. /// <returns></returns>
  5778. [HttpPost]
  5779. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5780. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5781. {
  5782. try
  5783. {
  5784. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5785. if (groupData.Code != 0)
  5786. {
  5787. return Ok(JsonView(false, groupData.Msg));
  5788. }
  5789. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5790. }
  5791. catch (Exception ex)
  5792. {
  5793. return Ok(JsonView(false, ex.Message));
  5794. }
  5795. }
  5796. /// <summary>
  5797. /// 根据op费用Id查询详细数据
  5798. /// </summary>
  5799. /// <param name="dto"></param>
  5800. /// <returns></returns>
  5801. [HttpPost]
  5802. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5803. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5804. {
  5805. try
  5806. {
  5807. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5808. if (groupData.Code != 0)
  5809. {
  5810. return Ok(JsonView(false, groupData.Msg));
  5811. }
  5812. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5813. }
  5814. catch (Exception ex)
  5815. {
  5816. return Ok(JsonView(false, ex.Message));
  5817. }
  5818. }
  5819. /// <summary>
  5820. /// OP费用录入填写详情
  5821. /// </summary>
  5822. /// <param name="dto"></param>
  5823. /// <returns></returns>
  5824. [HttpPost]
  5825. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5826. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5827. {
  5828. try
  5829. {
  5830. #region 参数校验
  5831. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5832. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5833. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5834. #endregion
  5835. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5836. if (groupData.Code != 0)
  5837. {
  5838. return Ok(JsonView(false, groupData.Msg));
  5839. }
  5840. //自动审核
  5841. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5842. #region 应用推送
  5843. try
  5844. {
  5845. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5846. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5847. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5848. }
  5849. catch (Exception ex)
  5850. {
  5851. }
  5852. #endregion
  5853. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5854. }
  5855. catch (Exception ex)
  5856. {
  5857. return Ok(JsonView(false, ex.Message));
  5858. }
  5859. }
  5860. /// <summary>
  5861. /// 获取三公详细所有城市
  5862. /// </summary>
  5863. /// <returns></returns>
  5864. [HttpGet]
  5865. public IActionResult OpCarCityResult()
  5866. {
  5867. var jw = JsonView(false);
  5868. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5869. {
  5870. x.Id,
  5871. x.Country,
  5872. x.City,
  5873. }).ToList();
  5874. if (data.Count > 0)
  5875. {
  5876. jw = JsonView(true, "获取成功!", data);
  5877. }
  5878. else
  5879. {
  5880. jw.Msg = "城市数据为空!";
  5881. jw.Data = new string[0];
  5882. }
  5883. return Ok(jw);
  5884. }
  5885. /// <summary>
  5886. /// 导出地接费用明细
  5887. /// </summary>
  5888. /// <param name="dto"></param>
  5889. /// <returns></returns>
  5890. [HttpPost]
  5891. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5892. {
  5893. var jw = JsonView(false);
  5894. if (dto.Diid < 1)
  5895. {
  5896. jw.Msg = "请输入正确的diid!";
  5897. return Ok(jw);
  5898. }
  5899. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5900. if (group == null)
  5901. {
  5902. jw.Msg = "未找到团组信息!";
  5903. return Ok(jw);
  5904. }
  5905. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5906. if (localGuideArr.Count == 0)
  5907. {
  5908. jw.Msg = "该团组暂无地接信息!";
  5909. return Ok(jw);
  5910. }
  5911. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5912. var overspendSoure = new Dictionary<int, int>
  5913. {
  5914. { 91, 982 }, //车
  5915. { 92 , 1059} ,//导游
  5916. { 994 , 1073}, //翻译
  5917. { 988 , 1074 }, //早餐
  5918. { 93 , 1075 }, //午餐
  5919. { 989 , 1076 }, //晚餐
  5920. };
  5921. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5922. foreach (var groupArr in localGroup)
  5923. {
  5924. var keyValue = groupArr.Key;
  5925. if (int.TryParse(keyValue, out int cityid))
  5926. {
  5927. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5928. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5929. }
  5930. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5931. foreach (var item in groupArr)
  5932. {
  5933. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5934. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5935. new Grp_CarTouristGuideGroundReservationsContentExtend
  5936. {
  5937. Count = a.Count,
  5938. CreateTime = a.CreateTime,
  5939. CreateUserId = a.CreateUserId,
  5940. CTGGRId = a.CTGGRId,
  5941. Currency = a.Currency,
  5942. DatePrice = a.DatePrice,
  5943. DeleteTime = a.DeleteTime,
  5944. DeleteUserId = a.DeleteUserId,
  5945. DiId = a.DiId,
  5946. Id = a.Id,
  5947. IsDel = a.IsDel,
  5948. Price = a.Price,
  5949. PriceContent = a.PriceContent,
  5950. Remark = a.Remark,
  5951. SId = a.SId,
  5952. SidName = b.Name,
  5953. Units = a.Units,
  5954. }
  5955. ).ToList();
  5956. if (content.Count > 0)
  5957. {
  5958. contentArr.Add(content);
  5959. }
  5960. }
  5961. //open excel
  5962. //set excel
  5963. //save excel
  5964. try
  5965. {
  5966. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5967. IWorkbook workbook;
  5968. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5969. {
  5970. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5971. }
  5972. else
  5973. {
  5974. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5975. }
  5976. ISheet sheet = workbook.GetSheetAt(0);
  5977. var rowStartIndex = 2;
  5978. var clounmCount = 10;
  5979. var initStyleRow = sheet.GetRow(2);
  5980. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5981. //var overspendArrDetail =
  5982. var existsId = new List<CarCompare>();
  5983. var lastElem = arr.Last();
  5984. var thisSid = -1;
  5985. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5986. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5987. {
  5988. Name = "未知币种!",
  5989. Remark = "未知币种!",
  5990. };
  5991. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5992. Action cloneRowFn = () =>
  5993. {
  5994. rowStartIndex++;
  5995. var cloneRow = sheet.CreateRow(rowStartIndex);
  5996. // 复制样式
  5997. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5998. {
  5999. ICell sourceCell = initStyleRow.GetCell(i);
  6000. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  6001. // 确保单元格存在样式
  6002. if (sourceCell.CellStyle != null)
  6003. {
  6004. targetCell.CellStyle = sourceCell.CellStyle;
  6005. }
  6006. }
  6007. };
  6008. var mergeRow = () =>
  6009. {
  6010. for (int i = 2; i < sheet.LastRowNum; i++)
  6011. {
  6012. var row = sheet.GetRow(i);
  6013. var cellFirst = row.GetCell(0);
  6014. var thisIndex = i + 1;
  6015. while (thisIndex < sheet.LastRowNum)
  6016. {
  6017. var nextRow = sheet.GetRow(thisIndex);
  6018. var nextCellFirst = nextRow.GetCell(0);
  6019. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  6020. {
  6021. thisIndex++;
  6022. }
  6023. else
  6024. {
  6025. break;
  6026. }
  6027. }
  6028. thisIndex--;
  6029. if (thisIndex != i)
  6030. {
  6031. //合并row
  6032. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6033. i, // 起始行索引(0-based)
  6034. thisIndex, // 结束行索引(0-based)
  6035. 0, // 起始列索引(0-based)
  6036. 0 // 结束列索引(0-based)
  6037. );
  6038. sheet.AddMergedRegion(cellRangeAddress);
  6039. i = thisIndex;
  6040. }
  6041. }
  6042. };
  6043. var chaoshiNumber = 0;
  6044. var totalNumber = 0.00M;
  6045. string lastStr = "";
  6046. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  6047. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  6048. {
  6049. b.IsAuditGM,
  6050. x.Id,
  6051. x.Area,
  6052. b.PayPercentage,
  6053. b.PayMoney,
  6054. }).ToList();
  6055. string yesPayment = "", noPayment = "";
  6056. foreach (var item in queryCarArrByCityAndDiid)
  6057. {
  6058. if (item.IsAuditGM == 1)
  6059. {
  6060. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  6061. }
  6062. else
  6063. {
  6064. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  6065. }
  6066. }
  6067. lastStr = yesPayment + noPayment;
  6068. foreach (var item in arr)
  6069. {
  6070. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  6071. {
  6072. if (thisSid != item.SId)
  6073. {
  6074. if (thisSid == -1)
  6075. {
  6076. thisSid = item.SId;
  6077. }
  6078. else
  6079. {
  6080. //合并小计行
  6081. //创建合并区域的实例
  6082. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6083. rowStartIndex, // 起始行索引(0-based)
  6084. rowStartIndex, // 结束行索引(0-based)
  6085. 0, // 起始列索引(0-based)
  6086. 3 // 结束列索引(0-based)
  6087. );
  6088. sheet.AddMergedRegion(cellRangeAddress);
  6089. var CellStyle = workbook.CreateCellStyle();
  6090. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6091. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  6092. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  6093. for (int i = 0; i <= clounmCount; i++)
  6094. {
  6095. if (i > 6)
  6096. {
  6097. var CellStyle1 = workbook.CreateCellStyle();
  6098. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6099. IFont Font = workbook.CreateFont(); // 创建字体
  6100. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  6101. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6102. CellStyle1.SetFont(Font);
  6103. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  6104. }
  6105. else
  6106. {
  6107. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6108. }
  6109. }
  6110. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6111. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6112. //超时合计
  6113. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6114. //超时数
  6115. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6116. //超时合计费用
  6117. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6118. thisSid = item.SId;
  6119. cloneRowFn();
  6120. chaoshiNumber = 0;
  6121. totalNumber = 0;
  6122. }
  6123. }
  6124. IRow row = sheet.GetRow(rowStartIndex);
  6125. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6126. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  6127. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  6128. if (isOpenOverspendSoure)
  6129. {
  6130. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6131. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  6132. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  6133. }
  6134. for (int i = 0; i <= clounmCount; i++)
  6135. {
  6136. var cell = row.GetCell(i);
  6137. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  6138. if (cell == null)
  6139. {
  6140. cell = row.CreateCell(i);
  6141. }
  6142. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  6143. fontRed.CloneStyleFrom(cell.CellStyle);
  6144. IFont Font = workbook.CreateFont(); // 创建字体
  6145. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  6146. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6147. fontRed.SetFont(Font);
  6148. byte[] rgb = new byte[3] { 255, 242, 204 };
  6149. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  6150. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  6151. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  6152. if (workbook is XSSFWorkbook)
  6153. {
  6154. BackgroundColor255_242_204.FillForegroundColor = 0;
  6155. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  6156. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  6157. }
  6158. else
  6159. {
  6160. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  6161. }
  6162. if (i == 1 || i > 6)
  6163. {
  6164. if (i > 6)
  6165. {
  6166. fontRed.FillForegroundColor = 0;
  6167. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  6168. fontRed.FillPattern = FillPattern.SolidForeground;
  6169. }
  6170. cell.CellStyle = fontRed;
  6171. }
  6172. if (i > 2 && i < 7)
  6173. {
  6174. cell.CellStyle = BackgroundColor255_242_204;
  6175. }
  6176. cell.SetCellValue(setCellValue); //写入单元格
  6177. }
  6178. if (overspendSoure.ContainsKey(thisSid))
  6179. {
  6180. var overspendId = overspendSoure[thisSid];
  6181. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6182. }
  6183. cloneRowFn();
  6184. existsId.Add(new CarCompare
  6185. {
  6186. DataPrice = item.DatePrice.ObjToDate(),
  6187. Sid = item.SId
  6188. });
  6189. }
  6190. if (item.Equals(lastElem))
  6191. {
  6192. //合并小计行
  6193. //创建合并区域的实例
  6194. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6195. rowStartIndex, // 起始行索引(0-based)
  6196. rowStartIndex, // 结束行索引(0-based)
  6197. 0, // 起始列索引(0-based)
  6198. 3 // 结束列索引(0-based)
  6199. );
  6200. sheet.AddMergedRegion(cellRangeAddress);
  6201. var CellStyle = workbook.CreateCellStyle();
  6202. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6203. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  6204. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  6205. for (int i = 0; i <= clounmCount; i++)
  6206. {
  6207. if (i > 6)
  6208. {
  6209. var CellStyle1 = workbook.CreateCellStyle();
  6210. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6211. IFont Font = workbook.CreateFont(); // 创建字体
  6212. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  6213. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6214. CellStyle1.SetFont(Font);
  6215. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  6216. }
  6217. else
  6218. {
  6219. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6220. }
  6221. }
  6222. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6223. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6224. //超时合计
  6225. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6226. //超时数
  6227. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6228. //超时合计费用
  6229. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6230. cloneRowFn();
  6231. // 创建合并区域的实例
  6232. cellRangeAddress = new CellRangeAddress(
  6233. rowStartIndex, // 起始行索引(0-based)
  6234. rowStartIndex, // 结束行索引(0-based)
  6235. 0, // 起始列索引(0-based)
  6236. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  6237. );
  6238. // 添加合并区域
  6239. sheet.AddMergedRegion(cellRangeAddress);
  6240. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  6241. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  6242. }
  6243. }
  6244. mergeRow();
  6245. // 保存修改后的Excel文件到新文件
  6246. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  6247. // new FileStream(newFilePath, FileMode.CreateNew)
  6248. using (var stream = new MemoryStream())
  6249. {
  6250. workbook.Write(stream, true);
  6251. stream.Flush();
  6252. stream.Seek(0, SeekOrigin.Begin);
  6253. MemoryStream memoryStream = new MemoryStream();
  6254. stream.CopyTo(memoryStream);
  6255. memoryStream.Seek(0, SeekOrigin.Begin);
  6256. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  6257. }
  6258. workbook.Close();
  6259. workbook.Dispose();
  6260. }
  6261. catch (Exception ex)
  6262. {
  6263. jw.Msg = "出现异常!" + ex.Message;
  6264. return Ok(jw);
  6265. }
  6266. }
  6267. if (Zips.Count > 0)
  6268. {
  6269. IOOperatorHelper io = new IOOperatorHelper();
  6270. var byts = io.ConvertZipStream(Zips);
  6271. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  6272. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  6273. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  6274. }
  6275. else
  6276. {
  6277. jw.Msg = "暂无生成文件!";
  6278. }
  6279. return Ok(jw);
  6280. }
  6281. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  6282. {
  6283. string outStr = string.Empty;
  6284. switch (i)
  6285. {
  6286. case 0:
  6287. outStr = arr[0].SidName;
  6288. break;
  6289. case 1:
  6290. outStr = arr[0].DataPriceStr;
  6291. break;
  6292. case 2:
  6293. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  6294. break;
  6295. case 4:
  6296. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  6297. break;
  6298. case 7:
  6299. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6300. {
  6301. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  6302. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  6303. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  6304. }
  6305. break;
  6306. case 8:
  6307. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6308. {
  6309. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  6310. }
  6311. break;
  6312. case 9:
  6313. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6314. {
  6315. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  6316. }
  6317. break;
  6318. case 10:
  6319. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6320. {
  6321. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6322. }
  6323. break;
  6324. }
  6325. return outStr;
  6326. }
  6327. #region OP行程单
  6328. /// <summary>
  6329. /// OP行程单初始化
  6330. /// </summary>
  6331. /// <param name="dto"></param>
  6332. /// <returns></returns>
  6333. [HttpPost]
  6334. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6335. {
  6336. var jw = JsonView(false);
  6337. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6338. var group = groupList.First();
  6339. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6340. if (group == null)
  6341. {
  6342. jw.Msg = "暂无团组!";
  6343. return Ok(jw);
  6344. }
  6345. group = groupList.Find(x => x.Id == diid);
  6346. if (group == null)
  6347. {
  6348. jw.Msg = "请输入正确的团组ID!";
  6349. return Ok(jw);
  6350. }
  6351. string city = string.Empty;
  6352. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6353. if (blackCode.Count > 0)
  6354. {
  6355. var black = blackCode.First();
  6356. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6357. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6358. if (blackSp.Length > 0)
  6359. {
  6360. try
  6361. {
  6362. var cityArrCode = new List<string>(20);
  6363. foreach (var item in blackSp)
  6364. {
  6365. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6366. var IndexSelect = itemSp[2];
  6367. var cityArrCodeLength = cityArrCode.Count - 1;
  6368. var startCity = IndexSelect.Substring(0, 3);
  6369. if (cityArrCodeLength > 0)
  6370. {
  6371. var arrEndCity = cityArrCode[cityArrCodeLength];
  6372. if (arrEndCity != startCity)
  6373. {
  6374. cityArrCode.Add(startCity.ToUpper());
  6375. }
  6376. }
  6377. else
  6378. {
  6379. cityArrCode.Add(startCity.ToUpper());
  6380. }
  6381. var endCity = IndexSelect.Substring(3, 3);
  6382. cityArrCode.Add(endCity.ToUpper());
  6383. }
  6384. var cityThree = string.Empty;
  6385. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6386. cityThree = cityThree.TrimEnd(',');
  6387. if (string.IsNullOrWhiteSpace(cityThree))
  6388. {
  6389. throw new
  6390. Exception("error");
  6391. }
  6392. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6393. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6394. foreach (var item in cityArrCode)
  6395. {
  6396. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6397. if (find != null)
  6398. {
  6399. city += find.City + "/";
  6400. }
  6401. else
  6402. {
  6403. city += item + "三字码未收入/";
  6404. }
  6405. }
  6406. city = city.TrimEnd('/');
  6407. }
  6408. catch (Exception e)
  6409. {
  6410. city = "黑屏代码格式不正确!";
  6411. }
  6412. }
  6413. }
  6414. else
  6415. {
  6416. city = "未录入黑屏代码";
  6417. }
  6418. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6419. {
  6420. Date = x.Date,
  6421. Days = x.Days,
  6422. Diffgroup = x.Diffgroup,
  6423. Diid = x.Diid,
  6424. Traffic_First = x.Traffic_First,
  6425. Traffic_Second = x.Traffic_Second,
  6426. Trip = x.Trip,
  6427. WeekDay = x.WeekDay,
  6428. Id = x.Id
  6429. }).ToList();
  6430. jw.Data = new
  6431. {
  6432. groupList = groupList.Select(x => new
  6433. {
  6434. x.Id,
  6435. x.TeamName,
  6436. x.TourCode
  6437. }).ToList(),
  6438. groupInfo = new
  6439. {
  6440. group.VisitDays,
  6441. group.TourCode,
  6442. group.VisitPNumber,
  6443. group.TeamName,
  6444. city
  6445. },
  6446. OpTravelList
  6447. };
  6448. jw.Code = 200;
  6449. jw.Msg = "操作成功!";
  6450. return Ok(jw);
  6451. }
  6452. /// <summary>
  6453. /// 删除团组行程单
  6454. /// </summary>
  6455. /// <returns></returns>
  6456. [HttpPost]
  6457. public IActionResult DelTravel(DelOpTravelDto dto)
  6458. {
  6459. var jw = JsonView(false);
  6460. if (dto.UserId <= 0 || dto.Diid <= 0)
  6461. {
  6462. jw.Msg = "请输入正确的参数!";
  6463. return Ok(jw);
  6464. }
  6465. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6466. .SetColumns(x => new Grp_TravelList
  6467. {
  6468. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6469. DeleteUserId = dto.UserId,
  6470. IsDel = 1,
  6471. }).ExecuteCommand();
  6472. jw = JsonView(true);
  6473. return Ok(jw);
  6474. }
  6475. /// <summary>
  6476. /// 行程单保存
  6477. /// </summary>
  6478. /// <returns></returns>
  6479. [HttpPost]
  6480. public IActionResult TravelSave(TravelSaveDto dto)
  6481. {
  6482. var jw = JsonView(false);
  6483. if (dto.Arr.Count > 0)
  6484. {
  6485. try
  6486. {
  6487. _sqlSugar.BeginTran();
  6488. foreach (var item in dto.Arr)
  6489. {
  6490. if (item.Id == 0)
  6491. {
  6492. throw new Exception("请传入正确的Id");
  6493. }
  6494. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6495. .SetColumns(x => new Grp_TravelList
  6496. {
  6497. Trip = item.Trip
  6498. }).ExecuteCommand();
  6499. }
  6500. _sqlSugar.CommitTran();
  6501. jw = JsonView(true);
  6502. }
  6503. catch (Exception ex)
  6504. {
  6505. _sqlSugar.RollbackTran();
  6506. jw.Msg = "程序异常!" + ex.Message;
  6507. }
  6508. }
  6509. else
  6510. {
  6511. jw.Msg = "请传入正确的参数!";
  6512. }
  6513. return Ok(jw);
  6514. }
  6515. /// <summary>
  6516. /// 导出行程单
  6517. /// </summary>
  6518. /// <param name="dto"></param>
  6519. /// <returns></returns>
  6520. [HttpPost]
  6521. public IActionResult ExportTravel(ExportTravelDto dto)
  6522. {
  6523. var jw = JsonView(false);
  6524. jw.Data = "";
  6525. int diid = 0;
  6526. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6527. if (Find == null)
  6528. {
  6529. jw.Msg = "请选择正确的团组!";
  6530. return Ok(jw);
  6531. }
  6532. else
  6533. {
  6534. diid = Find.Id;
  6535. }
  6536. //数据源
  6537. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6538. DataTable dtBlack = null;
  6539. try
  6540. {
  6541. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6542. }
  6543. catch (Exception)
  6544. {
  6545. jw.Msg = "机票黑屏代码有误!";
  6546. return Ok(jw);
  6547. }
  6548. string CityStr = string.Empty;
  6549. if (dtBlack.Rows.Count == 0)
  6550. {
  6551. jw.Msg = "机票黑屏代码有误!";
  6552. return Ok(jw);
  6553. }
  6554. else
  6555. {
  6556. foreach (DataRow row in dtBlack.Rows)
  6557. {
  6558. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6559. {
  6560. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6561. return Ok(jw);
  6562. }
  6563. }
  6564. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6565. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6566. }
  6567. //创建数据源Table
  6568. DataTable dtSource = new DataTable();
  6569. dtSource.Columns.Add("Days", typeof(string));
  6570. dtSource.Columns.Add("Date", typeof(string));
  6571. dtSource.Columns.Add("Week", typeof(string));
  6572. dtSource.Columns.Add("Traffic", typeof(string));
  6573. dtSource.Columns.Add("Trip", typeof(string));
  6574. //获取数据,放到datatable
  6575. foreach (var item in _travelList)
  6576. {
  6577. DataRow dr = dtSource.NewRow();
  6578. dr["Days"] = item.Days;
  6579. dr["Date"] = item.Date;
  6580. dr["Week"] = item.WeekDay;
  6581. dr["Traffic"] = item.Traffic_First
  6582. + "\r\n"
  6583. + item.Traffic_Second;
  6584. dr["Trip"] = item.Trip;
  6585. dtSource.Rows.Add(dr);
  6586. }
  6587. Dictionary<string, string> dic = new Dictionary<string, string>();
  6588. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6589. dic.Add("City", CityStr);
  6590. dic.Add("Days", Find.VisitDays.ToString());
  6591. dic.Add("DeleCode", Find.TourCode);
  6592. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6593. //模板路径
  6594. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6595. //载入模板
  6596. Document doc = null;
  6597. DocumentBuilder builder = null;
  6598. try
  6599. {
  6600. //载入模板
  6601. doc = new Document(tempPath);
  6602. builder = new DocumentBuilder(doc);
  6603. }
  6604. catch (Exception)
  6605. {
  6606. jw.Msg = "模板位置不存在!";
  6607. return Ok(jw);
  6608. }
  6609. foreach (var key in dic.Keys)
  6610. {
  6611. Bookmark bookmark = doc.Range.Bookmarks[key];
  6612. if (bookmark != null)
  6613. {
  6614. builder.MoveToBookmark(key);
  6615. builder.Write(dic[key]);
  6616. }
  6617. }
  6618. //获取word里所有表格
  6619. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6620. //获取所填表格的序数
  6621. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6622. try
  6623. {
  6624. //循环赋值
  6625. for (int i = 0; i < dtSource.Rows.Count; i++)
  6626. {
  6627. builder.MoveToCell(0, i + 1, 0, 0);
  6628. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6629. builder.MoveToCell(0, i + 1, 1, 0);
  6630. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6631. builder.MoveToCell(0, i + 1, 2, 0);
  6632. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6633. var trip = dtSource.Rows[i]["Trip"].ToString();
  6634. builder.MoveToCell(0, i + 1, 3, 0);
  6635. builder.Write(trip);
  6636. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6637. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6638. // 获取特定索引的段落
  6639. Paragraph paragraph = (Paragraph)paragraphs[0];
  6640. Run run = paragraph.Runs[0];
  6641. Aspose.Words.Font font = run.Font;
  6642. font.Name = "黑体";
  6643. //设置双休红色
  6644. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6645. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6646. paragraph = (Paragraph)paragraphs[1];
  6647. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6648. {
  6649. run = paragraph.Runs[0];
  6650. font = run.Font;
  6651. font.Color = Color.Red;
  6652. }
  6653. }
  6654. }
  6655. catch (Exception ex)
  6656. {
  6657. }
  6658. //删除多余行
  6659. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6660. {
  6661. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6662. }
  6663. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6664. if (!Directory.Exists(savePath))
  6665. {
  6666. try
  6667. {
  6668. Directory.CreateDirectory(savePath);
  6669. }
  6670. catch
  6671. {
  6672. }
  6673. }
  6674. string path = savePath + Find.TeamName + "出访日程";
  6675. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6676. try
  6677. {
  6678. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6679. string postfix = ".docx";
  6680. if (dto.IsPDF == 1)
  6681. {
  6682. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6683. postfix = ".pdf";
  6684. }
  6685. doc.Save(path + postfix, saveFormat);
  6686. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6687. }
  6688. catch (Exception)
  6689. {
  6690. jw = JsonView(false);
  6691. }
  6692. return Ok(jw);
  6693. }
  6694. /// <summary>
  6695. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6696. /// </summary>
  6697. /// <param name="num"></param>
  6698. /// <returns></returns>
  6699. string GetNum(string num)
  6700. {
  6701. string str = "";
  6702. switch (num)
  6703. {
  6704. case "1":
  6705. str = "一";
  6706. break;
  6707. case "2":
  6708. str = "二";
  6709. break;
  6710. case "3":
  6711. str = "三";
  6712. break;
  6713. case "4":
  6714. str = "四";
  6715. break;
  6716. case "5":
  6717. str = "五";
  6718. break;
  6719. case "6":
  6720. str = "六";
  6721. break;
  6722. case "7":
  6723. str = "七";
  6724. break;
  6725. case "8":
  6726. str = "八";
  6727. break;
  6728. case "9":
  6729. str = "九";
  6730. break;
  6731. case "10":
  6732. str = "十";
  6733. break;
  6734. case "11":
  6735. str = "十一";
  6736. break;
  6737. case "12":
  6738. str = "十二";
  6739. break;
  6740. case "一":
  6741. str = "1";
  6742. break;
  6743. case "二":
  6744. str = "2";
  6745. break;
  6746. case "三":
  6747. str = "3";
  6748. break;
  6749. case "四":
  6750. str = "4";
  6751. break;
  6752. case "五":
  6753. str = "5";
  6754. break;
  6755. case "六":
  6756. str = "6";
  6757. break;
  6758. case "七":
  6759. str = "7";
  6760. break;
  6761. case "八":
  6762. str = "8";
  6763. break;
  6764. case "九":
  6765. str = "9";
  6766. break;
  6767. case "十":
  6768. str = "10";
  6769. break;
  6770. case "十一":
  6771. str = "11";
  6772. break;
  6773. case "十二":
  6774. str = "12";
  6775. break;
  6776. }
  6777. return str;
  6778. }
  6779. #endregion
  6780. #endregion
  6781. #region 团组成本
  6782. /// <summary>
  6783. /// 团组成本数据初始化
  6784. /// </summary>
  6785. /// <param name="dto"></param>
  6786. /// <returns></returns>
  6787. [HttpPost]
  6788. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6789. {
  6790. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6791. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6792. WHEN COUNT(*) >= 0 THEN 'True'
  6793. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6794. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6795. ").ToList(); //团组列表
  6796. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6797. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6798. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6799. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6800. if (groupinfoValue != null)
  6801. {
  6802. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6803. var spArr = new string[1] { countryArr };
  6804. if (countryArr.Contains("|"))
  6805. {
  6806. spArr = countryArr.Split("|");
  6807. }
  6808. else if (countryArr.Contains("、"))
  6809. {
  6810. spArr = countryArr.Split("、");
  6811. }
  6812. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6813. {
  6814. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6815. if (dbQueryCountry != null)
  6816. {
  6817. visaCountryInfoArr.Add(dbQueryCountry);
  6818. }
  6819. }
  6820. }
  6821. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6822. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6823. var create = _GroupCostRepository.
  6824. CreateGroupCostByBlackCode(dto.Diid);
  6825. if (groupCost.Count == 0 && create.Code == 0)
  6826. {
  6827. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6828. }
  6829. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6830. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6831. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6832. groupCostMap = groupCostMap.Select(x =>
  6833. {
  6834. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6835. {
  6836. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6837. }
  6838. return x;
  6839. }).ToList();
  6840. //GroupCostParameter.Add(new
  6841. // Grp_GroupCostParameter());
  6842. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6843. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6844. return Ok(JsonView(new
  6845. {
  6846. groupList,
  6847. groupInfo,
  6848. groupChecks,
  6849. groupCost = groupCostMap,
  6850. hotelNumber,
  6851. GroupCostParameter = GroupCostParameterMap,
  6852. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6853. {
  6854. x.VisaCountry,
  6855. x.VisaPrice,
  6856. x.Id,
  6857. }).ToList(),
  6858. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6859. blackCodeIsTrue = create.Code == 0 ? true : false,
  6860. hotelIsTrue = hotelIsTrue,
  6861. }));
  6862. }
  6863. /// <summary>
  6864. /// 团组成本信息保存
  6865. /// </summary>
  6866. /// <param name="dto"></param>
  6867. /// <returns></returns>
  6868. [HttpPost]
  6869. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6870. {
  6871. if (dto.Diid <= 0 || dto.Userid <= 0)
  6872. {
  6873. return Ok(JsonView(false));
  6874. }
  6875. JsonView jw = null;
  6876. bool isTrue = false;
  6877. #region 复制团组成本
  6878. //if (dto.Diid == 2581)
  6879. //{
  6880. // dto.Diid = 2599;
  6881. // dto.CheckBoxs.ForEach(x =>
  6882. // {
  6883. // x.Diid = 2599;
  6884. // });
  6885. // dto.GroupCosts.ForEach(x =>
  6886. // {
  6887. // x.Diid = 2599;
  6888. // });
  6889. // dto.CostTypeHotelNumbers.ForEach(x =>
  6890. // {
  6891. // x.Diid = 2599;
  6892. // });
  6893. // dto.GroupCostParameters.ForEach(x =>
  6894. // {
  6895. // x.DiId = 2599;
  6896. // });
  6897. //}
  6898. #endregion
  6899. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6900. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6901. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6902. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6903. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6904. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6905. try
  6906. {
  6907. _sqlSugar.BeginTran();
  6908. isTrue = await _GroupCostRepository.
  6909. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6910. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6911. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6912. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6913. _sqlSugar.CommitTran();
  6914. jw = JsonView(true, "保存成功!", isTrue);
  6915. }
  6916. catch (Exception)
  6917. {
  6918. _sqlSugar.RollbackTran();
  6919. jw = JsonView(false);
  6920. }
  6921. return Ok(jw);
  6922. }
  6923. /// <summary>
  6924. /// 司兼导数据
  6925. /// </summary>
  6926. /// <param name="dto"></param>
  6927. /// <returns></returns>
  6928. [HttpPost]
  6929. public IActionResult GetCarGuides(CarGuidesDto dto)
  6930. {
  6931. JsonView jw = null;
  6932. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6933. jw = JsonView(true, "获取成功!", Data);
  6934. return Ok(jw);
  6935. }
  6936. /// <summary>
  6937. /// 导游数据
  6938. /// </summary>
  6939. /// <param name="dto"></param>
  6940. /// <returns></returns>
  6941. [HttpPost]
  6942. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6943. {
  6944. JsonView jw = null;
  6945. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6946. // 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
  6947. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6948. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6949. jw = JsonView(true, "获取成功!", Data);
  6950. return Ok(jw);
  6951. }
  6952. /// <summary>
  6953. /// 成本车数据
  6954. /// </summary>
  6955. /// <param name="dto"></param>
  6956. /// <returns></returns>
  6957. [HttpPost]
  6958. public IActionResult GetCarInfo(CarGuidesDto dto)
  6959. {
  6960. JsonView jw = null;
  6961. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6962. jw = JsonView(true, "获取成功!", Data);
  6963. return Ok(jw);
  6964. }
  6965. /// <summary>
  6966. /// 景点数据
  6967. /// </summary>
  6968. /// <param name="dto"></param>
  6969. /// <returns></returns>
  6970. [HttpPost]
  6971. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6972. {
  6973. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6974. return Ok(JsonView(true, "获取成功!", Data));
  6975. }
  6976. /// <summary>
  6977. /// 成本通知
  6978. /// </summary>
  6979. /// <param name="dto"></param>
  6980. /// <returns></returns>
  6981. [HttpPost]
  6982. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6983. {
  6984. if (dto.Diid < 0)
  6985. {
  6986. return Ok(JsonView(false));
  6987. }
  6988. JsonView jw = null;
  6989. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6990. if (GroupCostParameter != null)
  6991. {
  6992. int IsShare = 0;
  6993. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6994. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6995. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6996. string msg = string.Empty;
  6997. if (isTrue)
  6998. {
  6999. if (IsShare == 0)
  7000. {
  7001. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  7002. }
  7003. else
  7004. {
  7005. #region 企微通知对应岗位用户
  7006. try
  7007. {
  7008. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  7009. }
  7010. catch (Exception ex)
  7011. {
  7012. }
  7013. #endregion
  7014. msg = "通知成功,其他模块操作人员可见此成本信息!";
  7015. }
  7016. jw = JsonView(isTrue, msg, new { IsShare });
  7017. }
  7018. else
  7019. {
  7020. msg = "修改失败!";
  7021. jw = JsonView(isTrue, msg);
  7022. }
  7023. }
  7024. else
  7025. {
  7026. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  7027. }
  7028. return Ok(jw);
  7029. }
  7030. /// <summary>
  7031. /// 导出报价单
  7032. /// </summary>
  7033. /// <param name="dto"></param>
  7034. /// <returns></returns>
  7035. [HttpPost]
  7036. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  7037. {
  7038. if (dto.Diid == 0)
  7039. {
  7040. return Ok(JsonView(false, "请传递团组id"));
  7041. }
  7042. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7043. if (deleInfo.Code != 0)
  7044. {
  7045. return Ok(JsonView(false, "团组信息查询失败!"));
  7046. }
  7047. var di = deleInfo.Data as DelegationInfoWebView;
  7048. if (di != null)
  7049. {
  7050. di.TeamName = di.TeamName.Replace("|","、");
  7051. di.VisitCountry = di.VisitCountry.Replace("|", "、");
  7052. //文件名
  7053. string strFileName = di.TeamName + "-收款账单.doc";
  7054. //获取模板
  7055. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  7056. //载入模板
  7057. Document doc = new Document(tmppath);
  7058. decimal TotalPrice = 0.00M;
  7059. string itemStr = string.Empty;
  7060. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  7061. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  7062. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  7063. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  7064. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  7065. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  7066. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  7067. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  7068. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  7069. foreach (var cost in groupCostType)
  7070. {
  7071. var List = cost.ToList();
  7072. if (cost.Key == "A")
  7073. {
  7074. foreach (var ListItem in List)
  7075. {
  7076. if (ListItem.number > 0)
  7077. {
  7078. if (ListItem.code.Contains("TBR"))
  7079. {
  7080. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7081. }
  7082. else
  7083. {
  7084. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7085. }
  7086. TotalPrice += (ListItem.number * ListItem.price);
  7087. }
  7088. }
  7089. }
  7090. else
  7091. {
  7092. itemStr = itemStr.Insert(0, "A段\r\n");
  7093. itemStr += "B段\r\n";
  7094. foreach (var ListItem in List)
  7095. {
  7096. if (ListItem.number > 0)
  7097. {
  7098. if (ListItem.code.Contains("TBR"))
  7099. {
  7100. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7101. }
  7102. else
  7103. {
  7104. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  7105. }
  7106. TotalPrice += (ListItem.number * ListItem.price);
  7107. }
  7108. }
  7109. }
  7110. }
  7111. #region 替换Word模板书签内容
  7112. Dictionary<string, string> marks = new Dictionary<string, string>();
  7113. marks.Add("To", di.ClientUnit);//付款方
  7114. marks.Add("ToTel", di.TellPhone);//付款方电话
  7115. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  7116. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  7117. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  7118. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  7119. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  7120. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  7121. marks.Add("PayItemContent", itemStr);//详细信息
  7122. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  7123. #endregion
  7124. ////注
  7125. //if (doc.Range.Bookmarks["Attention"] != null)
  7126. //{
  7127. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  7128. // mark.Text = frList[0].Attention;
  7129. //}
  7130. foreach (var item in marks.Keys)
  7131. {
  7132. if (doc.Range.Bookmarks[item] != null)
  7133. {
  7134. Bookmark mark = doc.Range.Bookmarks[item];
  7135. mark.Text = marks[item];
  7136. }
  7137. }
  7138. byte[] bytes = null;
  7139. using (MemoryStream stream = new MemoryStream())
  7140. {
  7141. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7142. bytes = stream.ToArray();
  7143. }
  7144. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  7145. return Ok(JsonView(true, "", new
  7146. {
  7147. Data = bytes,
  7148. strFileName,
  7149. }));
  7150. }
  7151. else
  7152. {
  7153. return Ok(JsonView(false, "团组信息不存在!"));
  7154. }
  7155. }
  7156. /// <summary>
  7157. /// 导出团组成本
  7158. /// </summary>
  7159. /// <param name="dto"></param>
  7160. /// <returns></returns>
  7161. [HttpPost]
  7162. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  7163. {
  7164. var jw = JsonView(false);
  7165. if (dto.Diid == 0)
  7166. {
  7167. return Ok(JsonView(false, "请传递团组id"));
  7168. }
  7169. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7170. if (deleInfo.Code != 0)
  7171. {
  7172. return Ok(JsonView(false, "团组信息查询失败!"));
  7173. }
  7174. var di = deleInfo.Data as DelegationInfoWebView;
  7175. if (di == null)
  7176. {
  7177. return Ok(JsonView(false, "团组信息查询失败!"));
  7178. }
  7179. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  7180. WorkbookDesigner designer = new WorkbookDesigner();
  7181. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  7182. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  7183. for (int i = 0; i < List_GC.Count; i++)
  7184. {
  7185. GroupCost_Excel gc = new GroupCost_Excel();
  7186. gc.Id = List_GC[i].Id;
  7187. gc.Diid = List_GC[i].Diid.ToString();
  7188. gc.DAY = List_GC[i].DAY;
  7189. string week = "";
  7190. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  7191. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  7192. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  7193. gc.ITIN = List_GC[i].ITIN;
  7194. gc.CarType = List_GC[i].CarType;
  7195. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  7196. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  7197. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  7198. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  7199. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  7200. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  7201. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  7202. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  7203. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  7204. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  7205. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  7206. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  7207. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7208. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7209. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  7210. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  7211. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  7212. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  7213. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  7214. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  7215. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  7216. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  7217. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  7218. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  7219. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  7220. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  7221. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  7222. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  7223. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  7224. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  7225. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  7226. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  7227. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  7228. List_GC1.Add(gc);
  7229. }
  7230. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  7231. dt.TableName = "TB";
  7232. //报表标题等不用dt的值
  7233. designer.SetDataSource("TeamName", dto.title.TeamName);
  7234. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  7235. designer.SetDataSource("Tax", dto.title.Tax);
  7236. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  7237. designer.SetDataSource("Currency", dto.title.Currency);
  7238. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  7239. designer.SetDataSource("Rate", dto.title.Rate);
  7240. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  7241. var Aparams = hotels.Find(x => x.Type == "Default");
  7242. if (Aparams == null)
  7243. {
  7244. return Ok(jw);
  7245. }
  7246. //酒店数量
  7247. var txtSGRNumber = Aparams.SGR.ToString();
  7248. var txtTBRNumber = Aparams.TBR.ToString();
  7249. var txtJSESNumber = Aparams.JSES.ToString();
  7250. var txtSUITENumbe = Aparams.SUITE.ToString();
  7251. if (dto.costType == "B")
  7252. {
  7253. Aparams = hotels.Find(x => x.Type == "A");
  7254. var Bparams = hotels.Find(x => x.Type == "B");
  7255. if (Aparams == null || Bparams == null)
  7256. {
  7257. return Ok(jw);
  7258. }
  7259. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  7260. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  7261. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  7262. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  7263. }
  7264. designer.SetDataSource("SGRNumber", txtSGRNumber);
  7265. designer.SetDataSource("TBRNumber", txtTBRNumber);
  7266. designer.SetDataSource("JSESNumber", txtJSESNumber);
  7267. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  7268. var ws = designer.Workbook.Worksheets[0];
  7269. int Row = List_GC.Count;
  7270. int startIndex = 11;
  7271. int HideRows = 0;
  7272. List<int> hideRowsList = new List<int>();
  7273. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  7274. #region A段left数据
  7275. var left = dto.leftInfo.Find(x => x.Type == "A");
  7276. if (left == null)
  7277. {
  7278. return Ok(jw);
  7279. }
  7280. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  7281. if (leftBindData != null)
  7282. {
  7283. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  7284. designer.SetDataSource("VisaRS", leftBindData.rs);
  7285. designer.SetDataSource("VisaXS", leftBindData.xs);
  7286. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7287. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7288. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7289. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7290. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7291. }
  7292. else
  7293. {
  7294. hideRowsList.Add(Row + startIndex + HideRows);
  7295. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7296. }
  7297. HideRows += 2;
  7298. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  7299. if (leftBindData != null)
  7300. {
  7301. designer.SetDataSource("BXDRCB", leftBindData.cb);
  7302. designer.SetDataSource("BXRS", leftBindData.rs);
  7303. designer.SetDataSource("BXXS", leftBindData.xs);
  7304. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7305. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7306. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7307. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7308. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7309. }
  7310. else
  7311. {
  7312. hideRowsList.Add(Row + startIndex + HideRows);
  7313. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7314. }
  7315. HideRows += 2;
  7316. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7317. if (leftBindData != null)
  7318. {
  7319. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7320. designer.SetDataSource("HSRS", leftBindData.rs);
  7321. designer.SetDataSource("HSXS", leftBindData.xs);
  7322. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7323. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7324. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7325. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7326. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7327. }
  7328. else
  7329. {
  7330. hideRowsList.Add(Row + startIndex + HideRows);
  7331. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7332. }
  7333. HideRows += 2;
  7334. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7335. if (leftBindData != null)
  7336. {
  7337. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7338. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7339. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7340. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7341. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7342. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7343. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7344. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7345. }
  7346. else
  7347. {
  7348. hideRowsList.Add(Row + startIndex + HideRows);
  7349. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7350. }
  7351. HideRows += 2;
  7352. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7353. if (leftBindData != null)
  7354. {
  7355. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7356. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7357. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7358. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7359. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7360. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7361. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7362. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7363. }
  7364. else
  7365. {
  7366. hideRowsList.Add(Row + startIndex + HideRows);
  7367. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7368. }
  7369. HideRows += 2;
  7370. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("头等舱"));
  7371. if (leftBindData != null)
  7372. {
  7373. designer.SetDataSource("JPTDCCB", leftBindData.cb);
  7374. designer.SetDataSource("JPTDCPNum", leftBindData.rs);
  7375. designer.SetDataSource("JPTDCXS", leftBindData.xs);
  7376. designer.SetDataSource("JPTDCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7377. designer.SetDataSource("JPTDCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7378. designer.SetDataSource("JPTDCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7379. designer.SetDataSource("JPTDCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7380. designer.SetDataSource("JPTDCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7381. }
  7382. else
  7383. {
  7384. hideRowsList.Add(Row + startIndex + HideRows);
  7385. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7386. }
  7387. HideRows += 2;
  7388. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7389. if (leftBindData != null)
  7390. {
  7391. ////TBR
  7392. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7393. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7394. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7395. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7396. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7397. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7398. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7399. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7400. }
  7401. else
  7402. {
  7403. hideRowsList.Add(Row + startIndex + HideRows);
  7404. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7405. }
  7406. HideRows += 2;
  7407. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7408. if (leftBindData != null)
  7409. {
  7410. ////SGR
  7411. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7412. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7413. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7414. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7415. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7416. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7417. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7418. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7419. }
  7420. else
  7421. {
  7422. hideRowsList.Add(Row + startIndex + HideRows);
  7423. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7424. }
  7425. HideRows += 2;
  7426. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7427. if (leftBindData != null)
  7428. {
  7429. ////JS/ES
  7430. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7431. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7432. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7433. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7434. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7435. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7436. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7437. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7438. }
  7439. else
  7440. {
  7441. hideRowsList.Add(Row + startIndex + HideRows);
  7442. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7443. }
  7444. HideRows += 2;
  7445. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7446. if (leftBindData != null)
  7447. {
  7448. ////SUITE
  7449. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7450. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7451. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7452. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7453. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7454. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7455. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7456. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7457. }
  7458. else
  7459. {
  7460. hideRowsList.Add(Row + startIndex + HideRows);
  7461. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7462. }
  7463. HideRows += 2;
  7464. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7465. if (leftBindData != null)
  7466. {
  7467. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7468. designer.SetDataSource("DJRS", leftBindData.rs);
  7469. designer.SetDataSource("DJXS", leftBindData.xs);
  7470. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7471. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7472. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7473. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7474. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7475. }
  7476. else
  7477. {
  7478. hideRowsList.Add(Row + startIndex + HideRows);
  7479. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7480. }
  7481. HideRows += 2;
  7482. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7483. if (leftBindData != null)
  7484. {
  7485. designer.SetDataSource("HCPCB", leftBindData.cb);
  7486. designer.SetDataSource("HCPRS", leftBindData.rs);
  7487. designer.SetDataSource("HCPXS", leftBindData.xs);
  7488. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7489. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7490. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7491. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7492. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7493. }
  7494. else
  7495. {
  7496. hideRowsList.Add(Row + startIndex + HideRows);
  7497. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7498. }
  7499. HideRows += 2;
  7500. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7501. if (leftBindData != null)
  7502. {
  7503. designer.SetDataSource("CPCB", leftBindData.cb);
  7504. designer.SetDataSource("CPRS", leftBindData.rs);
  7505. designer.SetDataSource("CPXS", leftBindData.xs);
  7506. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7507. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7508. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7509. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7510. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7511. }
  7512. else
  7513. {
  7514. hideRowsList.Add(Row + startIndex + HideRows);
  7515. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7516. }
  7517. HideRows += 2;
  7518. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7519. if (leftBindData != null)
  7520. {
  7521. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7522. designer.SetDataSource("GWRS", leftBindData.rs);
  7523. designer.SetDataSource("GWXS", leftBindData.xs);
  7524. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7525. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7526. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7527. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7528. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7529. }
  7530. else
  7531. {
  7532. hideRowsList.Add(Row + startIndex + HideRows);
  7533. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7534. }
  7535. HideRows += 2;
  7536. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7537. if (leftBindData != null)
  7538. {
  7539. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7540. designer.SetDataSource("LYJRS", leftBindData.rs);
  7541. designer.SetDataSource("LYJXS", leftBindData.xs);
  7542. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7543. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7544. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7545. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7546. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7547. }
  7548. else
  7549. {
  7550. hideRowsList.Add(Row + startIndex + HideRows);
  7551. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7552. }
  7553. #endregion
  7554. #region A段Right信息
  7555. var right = dto.rightInfo.Find(x => x.Type == "A");
  7556. if (right == null)
  7557. {
  7558. return Ok(jw);
  7559. }
  7560. HideRows += 4;
  7561. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7562. if (rightBindData != null)
  7563. {
  7564. //经济舱 + 双人间 TBR
  7565. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7566. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7567. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7568. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7569. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7570. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7571. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7572. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7573. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7574. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7575. }
  7576. else
  7577. {
  7578. hideRowsList.Add(Row + startIndex + HideRows);
  7579. }
  7580. HideRows += 2;
  7581. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7582. if (rightBindData != null)
  7583. {
  7584. //经济舱 + 单人间 SGR
  7585. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7586. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7587. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7588. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7589. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7590. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7591. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7592. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7593. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7594. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7595. }
  7596. else
  7597. {
  7598. hideRowsList.Add(Row + startIndex + HideRows);
  7599. }
  7600. HideRows += 2;
  7601. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7602. if (rightBindData != null)
  7603. {
  7604. //公务舱 + 单人间 SGR
  7605. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7606. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7607. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7608. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7609. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7610. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7611. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7612. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7613. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7614. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7615. }
  7616. else
  7617. {
  7618. hideRowsList.Add(Row + startIndex + HideRows);
  7619. }
  7620. HideRows += 2;
  7621. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7622. if (rightBindData != null)
  7623. {
  7624. //公务舱 + 小套房 JSES
  7625. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7626. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7627. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7628. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7629. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7630. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7631. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7632. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7633. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7634. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7635. }
  7636. else
  7637. {
  7638. hideRowsList.Add(Row + startIndex + HideRows);
  7639. }
  7640. HideRows += 2;
  7641. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7642. if (rightBindData != null)
  7643. {
  7644. //公务舱 + 小套房 JSES
  7645. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7646. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7647. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7648. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7649. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7650. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7651. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7652. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7653. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7654. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7655. }
  7656. else
  7657. {
  7658. hideRowsList.Add(Row + startIndex + HideRows);
  7659. }
  7660. HideRows += 2;
  7661. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7662. if (rightBindData != null)
  7663. {
  7664. //经济舱 + 大套房
  7665. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7666. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7667. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7668. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7669. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7670. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7671. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7672. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7673. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7674. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7675. }
  7676. else
  7677. {
  7678. hideRowsList.Add(Row + startIndex + HideRows);
  7679. }
  7680. HideRows += 2;
  7681. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 JS/ES"));
  7682. if (rightBindData != null)
  7683. {
  7684. //头等舱 + 小套房 JSES
  7685. designer.SetDataSource("lblTDCJSESDRCB", rightBindData.cb);
  7686. designer.SetDataSource("txtTDCJSESRS", rightBindData.rs);
  7687. designer.SetDataSource("lblTDCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7688. designer.SetDataSource("lblTDCJSESDRBJ", rightBindData.bj);
  7689. designer.SetDataSource("lblTDCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7690. designer.SetDataSource("lblTDCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7691. designer.SetDataSource("lblTDCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7692. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7693. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7694. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7695. }
  7696. else
  7697. {
  7698. hideRowsList.Add(Row + startIndex + HideRows);
  7699. }
  7700. HideRows += 2;
  7701. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 SUITE"));
  7702. if (rightBindData != null)
  7703. {
  7704. //头等舱 + 大套房
  7705. designer.SetDataSource("lblTDCSUITEDRCB", rightBindData.cb);
  7706. designer.SetDataSource("txtTDCSUITERS", rightBindData.rs);
  7707. designer.SetDataSource("lblTDCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7708. designer.SetDataSource("lblTDCSUITEDRBJ", rightBindData.bj);
  7709. designer.SetDataSource("lblTDCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7710. designer.SetDataSource("lblTDCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7711. designer.SetDataSource("lblTDCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7712. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7713. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7714. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7715. }
  7716. else
  7717. {
  7718. hideRowsList.Add(Row + startIndex + HideRows);
  7719. }
  7720. #endregion
  7721. #region B段标题清空
  7722. designer.SetDataSource("CostBDRCB", "");
  7723. designer.SetDataSource("CostBRS", "");
  7724. designer.SetDataSource("CostBXS", "");
  7725. designer.SetDataSource("CostBZCB", "");
  7726. designer.SetDataSource("CostBDRBJ", "");
  7727. designer.SetDataSource("CostBZBJ", "");
  7728. designer.SetDataSource("CostBDRLR", "");
  7729. designer.SetDataSource("CostBZLR", "");
  7730. designer.SetDataSource("CostBDRCBOM", "");
  7731. designer.SetDataSource("CostBRSOM", "");
  7732. designer.SetDataSource("CostBZCBOM", "");
  7733. designer.SetDataSource("CostBDRBJOM", "");
  7734. designer.SetDataSource("CostBZBJOM", "");
  7735. designer.SetDataSource("CostBDRLROM", "");
  7736. designer.SetDataSource("CostBZLROM", "");
  7737. #endregion
  7738. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7739. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7740. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7741. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7742. designer.SetDataSource("DJName", "地接(CNY)");
  7743. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7744. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7745. designer.SetDataSource("GWName", "公务(CNY)");
  7746. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7747. designer.SetDataSource("LYJName", "零用金(CNY)");
  7748. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7749. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7750. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7751. designer.SetDataSource("AirTDCName", "机票-头等舱(CNY)");
  7752. designer.SetDataSource("BXName", "保险(CNY)");
  7753. designer.SetDataSource("VisaName", "签证(CNY)");
  7754. #region B段基本数据
  7755. if (dto.costType == "B")
  7756. {
  7757. left = dto.leftInfo.Find(x => x.Type == "B");
  7758. if (left == null)
  7759. {
  7760. return Ok(jw);
  7761. }
  7762. #region B段left数据
  7763. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7764. if (leftBindData != null)
  7765. {
  7766. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7767. designer.SetDataSource("BHSRS", leftBindData.rs);
  7768. designer.SetDataSource("BHSXS", leftBindData.xs);
  7769. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7770. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7771. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7772. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7773. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7774. }
  7775. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7776. if (leftBindData != null)
  7777. {
  7778. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7779. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7780. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7781. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7782. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7783. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7784. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7785. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7786. }
  7787. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7788. if (leftBindData != null)
  7789. {
  7790. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7791. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7792. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7793. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7794. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7795. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7796. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7797. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7798. }
  7799. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("头等舱"));
  7800. if (leftBindData != null)
  7801. {
  7802. designer.SetDataSource("BJPTDCCB", leftBindData.cb);
  7803. designer.SetDataSource("BJPTDCPNum", leftBindData.rs);
  7804. designer.SetDataSource("BJPTDCXS", leftBindData.xs);
  7805. designer.SetDataSource("BJPTDCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7806. designer.SetDataSource("BJPTDCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7807. designer.SetDataSource("BJPTDCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7808. designer.SetDataSource("BJPTDCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7809. designer.SetDataSource("BJPTDCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7810. }
  7811. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7812. if (leftBindData != null)
  7813. {
  7814. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7815. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7816. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7817. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7818. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7819. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7820. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7821. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7822. }
  7823. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7824. if (leftBindData != null)
  7825. {
  7826. designer.SetDataSource("BCPCB", leftBindData.cb);
  7827. designer.SetDataSource("BCPRS", leftBindData.rs);
  7828. designer.SetDataSource("BCPXS", leftBindData.xs);
  7829. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7830. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7831. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7832. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7833. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7834. }
  7835. //TBR
  7836. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7837. if (leftBindData != null)
  7838. {
  7839. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7840. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7841. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7842. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7843. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7844. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7845. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7846. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7847. }
  7848. //SGR
  7849. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7850. if (leftBindData != null)
  7851. {
  7852. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7853. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7854. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7855. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7856. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7857. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7858. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7859. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7860. }
  7861. //JS/ES
  7862. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7863. if (leftBindData != null)
  7864. {
  7865. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7866. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7867. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7868. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7869. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7870. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7871. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7872. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7873. }
  7874. //SUITE
  7875. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7876. if (leftBindData != null)
  7877. {
  7878. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7879. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7880. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7881. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7882. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7883. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7884. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7885. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7886. }
  7887. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7888. if (leftBindData != null)
  7889. {
  7890. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7891. designer.SetDataSource("BDJRS", leftBindData.rs);
  7892. designer.SetDataSource("BDJXS", leftBindData.xs);
  7893. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7894. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7895. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7896. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7897. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7898. }
  7899. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7900. if (leftBindData != null)
  7901. {
  7902. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7903. designer.SetDataSource("BGWRS", leftBindData.rs);
  7904. designer.SetDataSource("BGWXS", leftBindData.xs);
  7905. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7906. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7907. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7908. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7909. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7910. }
  7911. #region 优化方案
  7912. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7913. //excelBind.Add("零用金", new {
  7914. //cb="",
  7915. //rs="",
  7916. //xs ="",
  7917. //zcb = "",
  7918. //});
  7919. #endregion
  7920. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7921. if (leftBindData != null)
  7922. {
  7923. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7924. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7925. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7926. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7927. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7928. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7929. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7930. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7931. }
  7932. #endregion
  7933. #region B段Right信息
  7934. right = dto.rightInfo.Find(x => x.Type == "B");
  7935. if (right == null)
  7936. {
  7937. return Ok(jw);
  7938. }
  7939. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7940. if (rightBindData != null)
  7941. {
  7942. //经济舱 + 双人间 TBR
  7943. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7944. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7945. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7946. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7947. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7948. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7949. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7950. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7951. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7952. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7953. }
  7954. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7955. if (rightBindData != null)
  7956. {
  7957. //经济舱 + 单人间 SGR
  7958. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7959. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7960. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7961. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7962. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7963. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7964. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7965. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7966. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7967. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7968. }
  7969. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7970. if (rightBindData != null)
  7971. {
  7972. //公务舱 + 单人间 SGR
  7973. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7974. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7975. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7976. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7977. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7978. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7979. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7980. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7981. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7982. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7983. }
  7984. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7985. if (rightBindData != null)
  7986. {
  7987. //公务舱 + 小套房 JSES
  7988. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7989. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7990. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7991. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7992. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7993. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7994. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7995. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7996. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7997. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7998. }
  7999. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  8000. if (rightBindData != null)
  8001. {
  8002. //公务舱 + 小套房 JSES
  8003. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  8004. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  8005. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8006. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  8007. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8008. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8009. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8010. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8011. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8012. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8013. }
  8014. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  8015. if (rightBindData != null)
  8016. {
  8017. //经济舱 + 大套房
  8018. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  8019. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  8020. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8021. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  8022. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8023. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8024. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8025. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8026. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8027. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8028. }
  8029. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 JS/ES"));
  8030. if (rightBindData != null)
  8031. {
  8032. //头等舱 + 小套房 JSES
  8033. designer.SetDataSource("BlblTDCJSESDRCB", rightBindData.cb);
  8034. designer.SetDataSource("BtxtTDCJSESRS", rightBindData.rs);
  8035. designer.SetDataSource("BlblTDCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8036. designer.SetDataSource("BlblTDCJSESDRBJ", rightBindData.bj);
  8037. designer.SetDataSource("BlblTDCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8038. designer.SetDataSource("BlblTDCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8039. designer.SetDataSource("BlblTDCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8040. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8041. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8042. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8043. }
  8044. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 SUITE"));
  8045. if (rightBindData != null)
  8046. {
  8047. //头等舱 + 大套房
  8048. designer.SetDataSource("BlblTDCSUITEDRCB", rightBindData.cb);
  8049. designer.SetDataSource("BtxtTDCSUITERS", rightBindData.rs);
  8050. designer.SetDataSource("BlblTDCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  8051. designer.SetDataSource("BlblTDCSUITEDRBJ", rightBindData.bj);
  8052. designer.SetDataSource("BlblTDCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  8053. designer.SetDataSource("BlblTDCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  8054. designer.SetDataSource("BlblTDCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  8055. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  8056. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  8057. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  8058. }
  8059. #endregion
  8060. #region 标题
  8061. designer.SetDataSource("CostBDRCB", "单人成本");
  8062. designer.SetDataSource("CostBRS", "人数");
  8063. designer.SetDataSource("CostBXS", "系数");
  8064. designer.SetDataSource("CostBZCB", "总成本");
  8065. designer.SetDataSource("CostBDRBJ", "单人报价");
  8066. designer.SetDataSource("CostBZBJ", "总报价");
  8067. designer.SetDataSource("CostBDRLR", "单人利润");
  8068. designer.SetDataSource("CostBZLR", "总利润");
  8069. designer.SetDataSource("CostBDRCBOM", "单人成本");
  8070. designer.SetDataSource("CostBRSOM", "人数");
  8071. designer.SetDataSource("CostBZCBOM", "总成本");
  8072. designer.SetDataSource("CostBDRBJOM", "单人报价");
  8073. designer.SetDataSource("CostBZBJOM", "总报价");
  8074. designer.SetDataSource("CostBDRLROM", "单人利润");
  8075. designer.SetDataSource("CostBZLROM", "总利润");
  8076. #endregion
  8077. }
  8078. #endregion
  8079. designer.SetDataSource("TzZCB2", TzZCB2);
  8080. designer.SetDataSource("TzZBJ2", TzZBJ2);
  8081. designer.SetDataSource("TzZLR2", TzZLR2);
  8082. string[] dataSourceKeys = new string[]
  8083. {
  8084. "VF",
  8085. "TGS",
  8086. "TGOF",
  8087. "TGM",
  8088. "TGA",
  8089. "TGTF",
  8090. "TGEF",
  8091. "CFM",
  8092. "CFOF",
  8093. "B",
  8094. "L",
  8095. "D",
  8096. "TBR",
  8097. "SGR",
  8098. "JSES",
  8099. "Suite",
  8100. "TV",
  8101. "1L",
  8102. "IF",
  8103. "EF",
  8104. "BRF",
  8105. "TE",
  8106. "TGT",
  8107. "DRVT",
  8108. "PC",
  8109. "TLF",
  8110. "ECT"
  8111. };
  8112. foreach (var item in dataSourceKeys)
  8113. {
  8114. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  8115. if (find != null)
  8116. {
  8117. designer.SetDataSource(item, find.text);
  8118. }
  8119. else
  8120. {
  8121. designer.SetDataSource(item, 0);
  8122. }
  8123. }
  8124. designer.SetDataSource(dt);
  8125. //根据数据源处理生成报表内容
  8126. designer.Process();
  8127. designer.Workbook.Worksheets[0].Name = "清单";
  8128. Worksheet sheet = designer.Workbook.Worksheets[0];
  8129. foreach (var Rowindex in hideRowsList)
  8130. {
  8131. ws.Cells.HideRows(Rowindex, 2);
  8132. }
  8133. byte[] bytes = null;
  8134. string strFileName = di.TeamName + "-团组-成本.xls";
  8135. using (MemoryStream stream = new MemoryStream())
  8136. {
  8137. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  8138. bytes = stream.ToArray();
  8139. }
  8140. return Ok(JsonView(true, "", new
  8141. {
  8142. Data = bytes,
  8143. strFileName,
  8144. }));
  8145. }
  8146. /// <summary>
  8147. /// 导出客户报表
  8148. /// </summary>
  8149. /// <returns></returns>
  8150. [HttpPost]
  8151. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  8152. {
  8153. var jw = JsonView(false);
  8154. if (dto.Diid == 0)
  8155. {
  8156. return Ok(JsonView(false, "请传递团组id"));
  8157. }
  8158. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  8159. if (deleInfo.Code != 0)
  8160. {
  8161. return Ok(JsonView(false, "团组信息查询失败!"));
  8162. }
  8163. var di = deleInfo.Data as DelegationInfoWebView;
  8164. if (di == null)
  8165. {
  8166. return Ok(JsonView(false, "团组信息查询失败!"));
  8167. }
  8168. //文件名
  8169. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  8170. //获取模板
  8171. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  8172. //载入模板
  8173. Document doc = new Document(tmppath);
  8174. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  8175. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  8176. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  8177. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  8178. var AParameter = ParameterList.Find(x => x.CostType == "A");
  8179. var BParameter = ParameterList.Find(x => x.CostType == "B");
  8180. if (AParameter == null)
  8181. {
  8182. return Ok(JsonView(false, "系数不存在!"));
  8183. }
  8184. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  8185. , TzAirDesc, TzZCost;
  8186. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  8187. = TzAirDesc = TzZCost = string.Empty;
  8188. TzNumber = AParameter.CostTypenumber.ToString();
  8189. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  8190. CarGuides1 = dto.CarGuides1;
  8191. Meal = dto.Meal;
  8192. SubsidizedMeals = dto.SubsidizedMeals;
  8193. NightRepair = dto.NightRepair;
  8194. AttractionsTickets = dto.AttractionsTickets;
  8195. MiscellaneousFees = dto.MiscellaneousFees;
  8196. ATip = dto.ATip;
  8197. TzHotelDesc = "";
  8198. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  8199. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  8200. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  8201. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  8202. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  8203. TzAirDesc = "";
  8204. TzZCost = dto.TzZCost;
  8205. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  8206. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  8207. var index = 1;
  8208. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  8209. foreach (var item in TzHotelDescArr)
  8210. {
  8211. if (AinfoArr != null)
  8212. {
  8213. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8214. if (Ainfo != null)
  8215. {
  8216. if (int.Parse(Ainfo.rs) <= 0)
  8217. {
  8218. continue;
  8219. }
  8220. var hotelText = string.Empty;
  8221. switch (item)
  8222. {
  8223. case "SGR":
  8224. hotelText = "单人间";
  8225. break;
  8226. case "JSES":
  8227. hotelText = "小套房";
  8228. break;
  8229. case "SUITE":
  8230. hotelText = "套房";
  8231. break;
  8232. case "TBR":
  8233. hotelText = "双人间";
  8234. break;
  8235. }
  8236. if (item != "TBR")
  8237. {
  8238. 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";
  8239. }
  8240. else
  8241. {
  8242. 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";
  8243. }
  8244. index++;
  8245. }
  8246. }
  8247. }
  8248. index = 1;
  8249. foreach (var item in TzAirDescArr)
  8250. {
  8251. if (AinfoArr != null)
  8252. {
  8253. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8254. if (Ainfo != null)
  8255. {
  8256. if (int.Parse(Ainfo.rs) <= 0)
  8257. {
  8258. continue;
  8259. }
  8260. 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";
  8261. index++;
  8262. }
  8263. }
  8264. }
  8265. if (dto.costType == "B")
  8266. {
  8267. if (BParameter == null)
  8268. {
  8269. return Ok(JsonView(false, "B段系数不存在!"));
  8270. }
  8271. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  8272. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  8273. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  8274. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  8275. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  8276. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  8277. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  8278. foreach (var item in TzHotelDescArr)
  8279. {
  8280. if (AinfoArr != null)
  8281. {
  8282. TzHotelDesc += "B段信息 \r\n";
  8283. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8284. if (Ainfo != null)
  8285. {
  8286. if (int.Parse(Ainfo.rs) <= 0)
  8287. {
  8288. continue;
  8289. }
  8290. var hotelText = string.Empty;
  8291. switch (item)
  8292. {
  8293. case "SGR":
  8294. hotelText = "单人间";
  8295. break;
  8296. case "JSES":
  8297. hotelText = "小套房";
  8298. break;
  8299. case "SUITE":
  8300. hotelText = "套房";
  8301. break;
  8302. case "TBR":
  8303. hotelText = "双人间";
  8304. break;
  8305. }
  8306. if (item != "TBR")
  8307. {
  8308. 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";
  8309. }
  8310. else
  8311. {
  8312. 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";
  8313. }
  8314. index++;
  8315. }
  8316. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  8317. }
  8318. }
  8319. index = 1;
  8320. foreach (var item in TzAirDescArr)
  8321. {
  8322. if (AinfoArr != null)
  8323. {
  8324. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8325. if (Ainfo != null)
  8326. {
  8327. if (int.Parse(Ainfo.rs) <= 0)
  8328. {
  8329. continue;
  8330. }
  8331. 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";
  8332. index++;
  8333. }
  8334. }
  8335. }
  8336. }
  8337. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  8338. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  8339. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  8340. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  8341. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  8342. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  8343. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  8344. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  8345. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  8346. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  8347. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  8348. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  8349. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  8350. DickeyValue.Add("Visa", Visa); // 签证单人报价
  8351. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  8352. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  8353. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  8354. DickeyValue.Add("TzZCost", TzZCost);
  8355. foreach (var key in DickeyValue.Keys)
  8356. {
  8357. if (doc.Range.Bookmarks[key] != null)
  8358. {
  8359. Bookmark mark = doc.Range.Bookmarks[key];
  8360. mark.Text = DickeyValue[key];
  8361. }
  8362. }
  8363. byte[] bytes = null;
  8364. string strFileName = di.TeamName + "-客户报价.doc";
  8365. using (MemoryStream stream = new MemoryStream())
  8366. {
  8367. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  8368. bytes = stream.ToArray();
  8369. }
  8370. return Ok(JsonView(true, "", new
  8371. {
  8372. Data = bytes,
  8373. strFileName,
  8374. }));
  8375. }
  8376. /// <summary>
  8377. /// 团组成本 各模块(酒店,地接,机票)成本提示
  8378. /// </summary>
  8379. /// <param name="dto"></param>
  8380. /// <returns></returns>
  8381. [HttpPost]
  8382. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8383. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  8384. {
  8385. try
  8386. {
  8387. #region 参数验证
  8388. if (dto.DiId < 0)
  8389. {
  8390. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  8391. }
  8392. List<int> cTableIds = new List<int>() {
  8393. 76 ,//酒店预订
  8394. 77 ,//行程
  8395. 79 ,//车/导游地接
  8396. 80 ,//签证
  8397. 81 ,//邀请/公务活
  8398. 82 ,//团组客户保险
  8399. 85 ,//机票预订
  8400. 98 ,//其他款项
  8401. 285 ,//收款退还
  8402. 751 ,//酒店早餐
  8403. 1015 // 超支费用
  8404. };
  8405. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  8406. {
  8407. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  8408. }
  8409. #endregion
  8410. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  8411. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  8412. if (_GroupCostParameters.Count <= 0)
  8413. {
  8414. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  8415. }
  8416. if (_GroupCostParameters[0].IsShare == 0)
  8417. {
  8418. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  8419. }
  8420. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8421. //处理date为空问题
  8422. if (_GroupCosts.Count > 0)
  8423. {
  8424. for (int i = 0; i < _GroupCosts.Count; i++)
  8425. {
  8426. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8427. {
  8428. if (i > 0)
  8429. {
  8430. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8431. }
  8432. }
  8433. }
  8434. }
  8435. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8436. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8437. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8438. string currCode = "";
  8439. #region currCode 验证
  8440. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8441. if (isInt)
  8442. {
  8443. var currData = currDatas.Find(it => it.Id == intCurrency);
  8444. if (currData != null)
  8445. {
  8446. currCode = currData.Name;
  8447. }
  8448. }
  8449. else
  8450. {
  8451. currCode = _GroupCostParameters[0].Currency.Trim();
  8452. }
  8453. #endregion
  8454. //op,酒店单段模式存储
  8455. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8456. {
  8457. CurrencyCode = currCode,
  8458. Rate = _GroupCostParameters[0].Rate,
  8459. CostType = _GroupCostParameters[0].CostType,
  8460. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8461. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8462. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8463. };
  8464. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8465. if (_GroupCostParameters.Count == 2)
  8466. {
  8467. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8468. }
  8469. foreach (var item in _GroupCostParameters)
  8470. {
  8471. decimal _rate = 1;
  8472. decimal _rate1 = item.Rate;
  8473. decimal _scale = 1;
  8474. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8475. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8476. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8477. //if (userInfo != null)
  8478. //{
  8479. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8480. // {
  8481. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8482. // {
  8483. // _scale = 1.00M;
  8484. // }
  8485. // }
  8486. //}
  8487. #endregion
  8488. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8489. {
  8490. CurrencyCode = currCode,
  8491. Rate = _rate1,
  8492. CostType = item.CostType,
  8493. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8494. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8495. CostTypeNumber = item.CostTypenumber
  8496. };
  8497. if (_GroupCostParameters.Count > 1)
  8498. {
  8499. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8500. }
  8501. else
  8502. {
  8503. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8504. }
  8505. if (dto.CTable == 79)//
  8506. {
  8507. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8508. modulePromptInfo.TotalCost = item.DJCB;
  8509. }
  8510. List<string> costTypes = new List<string>() { "A", "B" };
  8511. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8512. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8513. if (_GroupCostsDuplicates.Count() == 1)
  8514. {
  8515. _GroupCostsTypeData = _GroupCosts;
  8516. }
  8517. else
  8518. {
  8519. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8520. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8521. }
  8522. /*
  8523. * 76 酒店预订
  8524. * 77 行程
  8525. * 79 车/导游地接
  8526. * 80 签证
  8527. * 81 邀请/公务活动
  8528. * 82 团组客户保险
  8529. * 85 机票预订
  8530. * 98 其他款项
  8531. * 285 收款退还
  8532. * 751 酒店早餐
  8533. * 1015 超支费用
  8534. */
  8535. switch (dto.CTable)
  8536. {
  8537. case 76: // 酒店预订
  8538. _ModuleSubPromptInfo.AddRange(
  8539. _GroupCostsTypeData.Select(it => new
  8540. {
  8541. it.DAY,
  8542. it.Date,
  8543. it.ACCON,
  8544. it.ITIN,
  8545. it.SGR,
  8546. it.TBR,
  8547. it.JS_ES,
  8548. it.Suite
  8549. })
  8550. );
  8551. break;
  8552. case 79: // 车/导游地接
  8553. _ModuleSubPromptInfo.AddRange(
  8554. _GroupCostsTypeData.Select(it => new
  8555. {
  8556. Date = it.Date, //日期
  8557. CarFee = it.CarCost * _rate * _scale, //车费用
  8558. CarType = it.CarType, //车型
  8559. DriverFee = it.CFS * _rate * _scale, //司机工资
  8560. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8561. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8562. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8563. GuideFee = it.TGS * _rate * _scale, //导游费用
  8564. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8565. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8566. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8567. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8568. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8569. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8570. Breakfast = it.B * _rate * _scale, //早餐费
  8571. Lunch = it.L * _rate * _scale, //午餐费
  8572. Dinner = it.D * _rate * _scale, //晚餐费
  8573. OfficialActivitiesFee = it.TV * _rate * _scale,//会务活动费 --新加
  8574. OfficialTransFee = it.IF * _rate * _scale, //公务翻译费 --新加
  8575. InvitationFee = it.iL * _rate * _scale, //邀请函费用 --新加
  8576. TicketFee = it.EF * _rate * _scale, //门票费
  8577. TicketRemark = it.EFR, //门票费描述
  8578. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8579. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8580. SpentCash = it.PC * _rate * _scale, //零用金
  8581. LeadersFee = it.TLF * _rate * _scale, //领队费
  8582. ActivitiesFee = it.ECT * _rate * _scale, //会务费 --新加
  8583. })
  8584. );
  8585. break;
  8586. case 85: // 机票
  8587. List<dynamic> datas = new List<dynamic>();
  8588. datas.Add(
  8589. new
  8590. {
  8591. AirType = "经济舱",
  8592. AirNum = item.JJCRS,
  8593. AirDRCB = item.JJCCB,
  8594. AirZCB = (item.JJCRS * item.JJCCB)
  8595. }
  8596. );
  8597. datas.Add(
  8598. new
  8599. {
  8600. AirType = "公务舱",
  8601. AirNum = item.GWCRS,
  8602. AirDRCB = item.GWCCB,
  8603. AirZCB = (item.GWCRS * item.GWCCB)
  8604. }
  8605. );
  8606. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8607. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8608. modulePromptInfo.Data = new
  8609. {
  8610. airFeeData = datas,
  8611. airInitData = initDatas
  8612. };
  8613. _ModulePromptInfos.Add(modulePromptInfo);
  8614. break;
  8615. default:
  8616. break;
  8617. }
  8618. }
  8619. if (dto.CTable != 85)
  8620. {
  8621. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8622. _ModulePromptInfos.Add(_ModulePromptInfo);
  8623. }
  8624. _view.ModulePromptInfos = _ModulePromptInfos;
  8625. return Ok(JsonView(true, "操作成功!", _view));
  8626. }
  8627. catch (Exception ex)
  8628. {
  8629. return Ok(JsonView(false, ex.Message));
  8630. }
  8631. }
  8632. /// <summary>
  8633. /// 根据黑屏代码重新生成行程
  8634. /// </summary>
  8635. /// <param name="dto"></param>
  8636. /// <returns></returns>
  8637. [HttpPost]
  8638. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8639. {
  8640. var jw = JsonView(false);
  8641. var Create = _GroupCostRepository.
  8642. CreateGroupCostByBlackCode(dto.Diid);
  8643. jw.Msg = Create.Msg;
  8644. if (Create.Code == 0)
  8645. {
  8646. jw.Code = 200;
  8647. jw.Data = new
  8648. {
  8649. groupCost = Create.Data,
  8650. blackCodeIsTrue = true
  8651. };
  8652. }
  8653. else
  8654. {
  8655. jw.Code = 400;
  8656. jw.Data = new
  8657. {
  8658. groupCost = Create.Data,
  8659. blackCodeIsTrue = false,
  8660. };
  8661. }
  8662. return Ok(jw);
  8663. }
  8664. /// <summary>
  8665. /// 成本获取OP历史车费用
  8666. /// </summary>
  8667. /// <param name="dto"></param>
  8668. /// <returns></returns>
  8669. [HttpPost]
  8670. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8671. {
  8672. var jw = JsonView(false);
  8673. try
  8674. {
  8675. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8676. //获取现有所有车的数据
  8677. if (!dto.Param.IsNullOrWhiteSpace())
  8678. {
  8679. string sql = $@"
  8680. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8681. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8682. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8683. 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
  8684. AND gctggr.ServiceEndTime is not NULL
  8685. ORDER by gctggrc.id DESC
  8686. ";
  8687. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8688. var numeberResult = await Task.Run(() =>
  8689. {
  8690. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8691. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8692. return numberArr;
  8693. });
  8694. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8695. foreach (var item in numeberResult)
  8696. {
  8697. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8698. {
  8699. Country = "数据异常!",
  8700. City = string.Empty,
  8701. };
  8702. item.Area = find.Country + " " + find.City;
  8703. }
  8704. dbResult.AddRange(numeberResult);
  8705. if (dto.Param.Contains("、"))
  8706. {
  8707. var sp = dto.Param.Split("、");
  8708. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8709. .Where(x =>
  8710. {
  8711. return System.Array.Exists(sp, e =>
  8712. {
  8713. bool where = false;
  8714. if (x.Area != null)
  8715. {
  8716. where = x.Area.Contains(e);
  8717. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8718. {
  8719. return false;
  8720. }
  8721. }
  8722. if (x.PriceName != null && !where)
  8723. {
  8724. where = x.PriceName.Contains(e);
  8725. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8726. {
  8727. return false;
  8728. }
  8729. }
  8730. return where;
  8731. });
  8732. }).ToList();
  8733. }
  8734. else
  8735. {
  8736. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8737. .Where(x =>
  8738. {
  8739. bool where = false;
  8740. if (x.Area != null)
  8741. {
  8742. where = x.Area.Contains(dto.Param);
  8743. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8744. {
  8745. return false;
  8746. }
  8747. }
  8748. if (x.PriceName != null && !where)
  8749. {
  8750. where = x.PriceName.Contains(dto.Param);
  8751. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8752. {
  8753. return false;
  8754. }
  8755. }
  8756. return where;
  8757. }
  8758. )
  8759. .ToList();
  8760. }
  8761. }
  8762. var view = dbResult.Select(x =>
  8763. {
  8764. decimal dp = 0.00M;
  8765. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8766. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8767. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8768. {
  8769. if (startB && endB)
  8770. {
  8771. var timesp = endD.Subtract(startD);
  8772. if ((timesp.Days + 1) != 0)
  8773. {
  8774. dp = x.Price / (timesp.Days + 1);
  8775. }
  8776. }
  8777. }
  8778. else
  8779. {
  8780. dp = x.Price;
  8781. }
  8782. return new
  8783. {
  8784. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8785. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8786. x.Area,
  8787. x.id,
  8788. price = x.Price.ToString("F2"),
  8789. x.PriceName,
  8790. x.PriceContent,
  8791. x.TeamName,
  8792. x.DatePrice,
  8793. dayPrice = dp.ToString("F2"),
  8794. };
  8795. }).OrderByDescending(x => x.id).ToList();
  8796. jw = JsonView(true, "获取成功!", view);
  8797. }
  8798. catch (Exception e)
  8799. {
  8800. jw = JsonView(false, e.Message);
  8801. }
  8802. return Ok(jw);
  8803. }
  8804. #endregion
  8805. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8806. /// <summary>
  8807. /// 酒店预订
  8808. /// 酒店费用列表 根据团组Id查询
  8809. /// </summary>
  8810. /// <param name="_dto"></param>
  8811. /// <returns></returns>
  8812. [HttpPost]
  8813. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8814. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8815. {
  8816. #region 参数验证
  8817. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8818. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8819. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8820. #region 团组操作权限验证 76 酒店预定模块
  8821. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8822. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8823. #endregion
  8824. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8825. #region 页面操作权限验证
  8826. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8827. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8828. #endregion
  8829. #endregion
  8830. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8831. }
  8832. /// <summary>
  8833. /// 酒店预订
  8834. /// 基础数据
  8835. /// </summary>
  8836. /// <param name="_dto"></param>
  8837. /// <returns></returns>
  8838. [HttpPost]
  8839. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8840. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8841. {
  8842. #region 参数验证
  8843. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8844. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8845. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8846. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8847. #region 页面操作权限验证
  8848. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8849. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8850. #endregion
  8851. #region 团组操作权限验证 76 酒店预定模块
  8852. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8853. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8854. #endregion
  8855. #endregion
  8856. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8857. }
  8858. /// <summary>
  8859. /// 酒店预订
  8860. /// 创建 入住卷号码
  8861. /// </summary>
  8862. /// <param name="_dto"></param>
  8863. /// <returns></returns>
  8864. [HttpPost]
  8865. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8866. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8867. {
  8868. try
  8869. {
  8870. #region 参数验证
  8871. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8872. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8873. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8874. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8875. #region 页面操作权限验证
  8876. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8877. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8878. #endregion
  8879. #region 团组操作权限验证 76 酒店预定模块
  8880. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8881. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8882. #endregion
  8883. #endregion
  8884. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8885. if (data.Code != 0)
  8886. {
  8887. return Ok(JsonView(false, data.Msg));
  8888. }
  8889. return Ok(JsonView(true, data.Msg, data.Data));
  8890. }
  8891. catch (Exception ex)
  8892. {
  8893. return Ok(JsonView(false, ex.Message));
  8894. }
  8895. }
  8896. /// <summary>
  8897. /// 酒店预订
  8898. /// 详情
  8899. /// </summary>
  8900. /// <param name="_dto"></param>
  8901. /// <returns></returns>
  8902. [HttpPost]
  8903. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8904. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8905. {
  8906. #region 参数验证
  8907. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8908. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8909. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8910. #region 团组操作权限验证 76 酒店预定模块
  8911. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8912. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8913. #endregion
  8914. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8915. #region 页面操作权限验证
  8916. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8917. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8918. #endregion
  8919. #endregion
  8920. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8921. }
  8922. /// <summary>
  8923. /// 酒店预订
  8924. /// Add Or Edit
  8925. /// </summary>
  8926. /// <param name="_dto"></param>
  8927. /// <returns></returns>
  8928. [HttpPost]
  8929. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8930. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8931. {
  8932. #region 参数验证
  8933. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8934. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8935. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8936. #region 团组操作权限验证 76 酒店预定模块
  8937. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8938. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8939. #endregion
  8940. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8941. #region 页面操作权限验证
  8942. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8943. if (_dto.Id == 0) // Add
  8944. {
  8945. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8946. }
  8947. else if (_dto.Id > 1) // Edit
  8948. {
  8949. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8950. }
  8951. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8952. #endregion
  8953. #endregion
  8954. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8955. if (_view.Code != 200)
  8956. {
  8957. return Ok(_view);
  8958. }
  8959. #region 应用推送
  8960. try
  8961. {
  8962. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8963. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8964. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8965. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8966. //自动审核
  8967. var autoAdit = await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8968. //if (autoAdit.Code != 200) _view.Msg += $"\r\n{autoAdit.Msg}";
  8969. _logger.LogInformation($"【酒店自动审核】【{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}】执行调用 调用结果:{JsonConvert.SerializeObject(autoAdit)}");
  8970. }
  8971. catch (Exception ex)
  8972. {
  8973. }
  8974. #endregion
  8975. return Ok(_view);
  8976. }
  8977. /// <summary>
  8978. /// 酒店自动审核测试
  8979. /// Add Or Edit
  8980. /// </summary>
  8981. /// <param name="_dto"></param>
  8982. /// <returns></returns>
  8983. [HttpPost]
  8984. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8985. public async Task<IActionResult> PostHotelAutoAuditTest(int diid,int dataId)
  8986. {
  8987. #region 应用推送
  8988. try
  8989. {
  8990. //自动审核
  8991. await _feeAuditRep.FeeAutomaticAudit(1, diid, dataId);
  8992. }
  8993. catch (Exception ex)
  8994. {
  8995. return Ok(JsonView(false, "操作失败"));
  8996. }
  8997. #endregion
  8998. return Ok(JsonView(false,"操作成功"));
  8999. }
  9000. /// <summary>
  9001. /// 酒店预订
  9002. /// Del
  9003. /// </summary>
  9004. /// <param name="_dto"></param>
  9005. /// <returns></returns>
  9006. [HttpPost]
  9007. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9008. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  9009. {
  9010. #region 参数验证
  9011. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9012. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9013. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9014. #region 团组操作权限验证 76 酒店预定模块
  9015. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9016. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9017. #endregion
  9018. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9019. #region 页面操作权限验证
  9020. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9021. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9022. #endregion
  9023. #endregion
  9024. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  9025. }
  9026. /// <summary>
  9027. /// 酒店预订
  9028. /// 生成VOUCHER
  9029. /// 2024.05.06 之前版本
  9030. /// </summary>
  9031. /// <param name="_dto"></param>
  9032. /// <returns></returns>
  9033. [HttpPost]
  9034. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9035. public async Task<IActionResult> PostHotelReservationsCreateVoucherOld(HotelReservationsCreateVoucherDto _dto)
  9036. {
  9037. try
  9038. {
  9039. #region 参数验证
  9040. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9041. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9042. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9043. if (_dto.Id < 1) return Ok(JsonView(false, "Id为空"));
  9044. #region 团组操作权限验证 76 酒店预定模块
  9045. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9046. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9047. #endregion
  9048. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9049. #region 页面操作权限验证
  9050. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9051. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9052. #endregion
  9053. #endregion
  9054. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  9055. //判断数据是否完整
  9056. if (hr != null)
  9057. {
  9058. if (!string.IsNullOrEmpty(hr.DetermineNo))
  9059. {
  9060. string strFileName = "HotelStatement/";
  9061. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  9062. if (dele != null)
  9063. strFileName += dele.TourCode;
  9064. //载入模板
  9065. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  9066. Document doc = new Document(sss);
  9067. DocumentBuilder builder = new DocumentBuilder(doc);
  9068. #region 替换Word模板书签内容
  9069. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  9070. //入住卷预定号码
  9071. if (doc.Range.Bookmarks["VNO"] != null)
  9072. {
  9073. Bookmark mark = doc.Range.Bookmarks["VNO"];
  9074. mark.Text = hr.CheckNumber;
  9075. }
  9076. //酒店时间
  9077. if (doc.Range.Bookmarks["Date"] != null)
  9078. {
  9079. Bookmark mark = doc.Range.Bookmarks["Date"];
  9080. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  9081. }
  9082. //团号
  9083. if (doc.Range.Bookmarks["TNo"] != null)
  9084. {
  9085. Bookmark mark = doc.Range.Bookmarks["TNo"];
  9086. mark.Text = dele.TourCode;
  9087. }
  9088. //预定号码
  9089. if (doc.Range.Bookmarks["BookingId"] != null)
  9090. {
  9091. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  9092. mark.Text = hr.ReservationsNo;
  9093. }
  9094. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  9095. {
  9096. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  9097. mark.Text = hr.DetermineNo;
  9098. }
  9099. //酒店城市
  9100. if (doc.Range.Bookmarks["City"] != null)
  9101. {
  9102. Bookmark mark = doc.Range.Bookmarks["City"];
  9103. mark.Text = hr.City;
  9104. }
  9105. //酒店名称
  9106. if (doc.Range.Bookmarks["HName"] != null)
  9107. {
  9108. Bookmark mark = doc.Range.Bookmarks["HName"];
  9109. mark.Text = hr.HotelName;
  9110. }
  9111. //酒店地址
  9112. if (doc.Range.Bookmarks["Address"] != null)
  9113. {
  9114. Bookmark mark = doc.Range.Bookmarks["Address"];
  9115. mark.Text = hr.HotelAddress;
  9116. }
  9117. //酒店电话
  9118. if (doc.Range.Bookmarks["Tel"] != null)
  9119. {
  9120. Bookmark mark = doc.Range.Bookmarks["Tel"];
  9121. mark.Text = hr.HotelTel;
  9122. }
  9123. //酒店传真
  9124. if (doc.Range.Bookmarks["Fax"] != null)
  9125. {
  9126. Bookmark mark = doc.Range.Bookmarks["Fax"];
  9127. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  9128. {
  9129. mark.Text = hr.HotelFax;
  9130. }
  9131. }
  9132. //入住时间
  9133. if (doc.Range.Bookmarks["CIn"] != null)
  9134. {
  9135. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  9136. Bookmark mark = doc.Range.Bookmarks["CIn"];
  9137. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  9138. }
  9139. //退房时间
  9140. if (doc.Range.Bookmarks["COut"] != null)
  9141. {
  9142. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  9143. Bookmark mark = doc.Range.Bookmarks["COut"];
  9144. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  9145. }
  9146. //客户名称
  9147. if (doc.Range.Bookmarks["GName"] != null)
  9148. {
  9149. string guestName = "";
  9150. string[] clients = new string[] { };
  9151. if (hr.GuestName.Contains(","))
  9152. {
  9153. clients = hr.GuestName.Split(",");
  9154. }
  9155. else
  9156. {
  9157. clients = new string[] { hr.GuestName };
  9158. }
  9159. List<int> clientIds_int = new List<int>();
  9160. if (clients.Length > 0)
  9161. {
  9162. foreach (var item in clients)
  9163. {
  9164. if (item.IsNumeric())
  9165. {
  9166. clientIds_int.Add(int.Parse(item));
  9167. }
  9168. }
  9169. }
  9170. if (clientIds_int.Count > 0)
  9171. {
  9172. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  9173. foreach (var client in _clientDatas)
  9174. {
  9175. //男
  9176. if (client.Sex == 0) guestName += $"Mr.";
  9177. //女
  9178. else if (client.Sex == 1) guestName += $"Ms.";
  9179. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  9180. {
  9181. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  9182. }
  9183. //guestName += $"{client.Pinyin},";
  9184. }
  9185. if (guestName.Length > 0)
  9186. {
  9187. guestName = guestName.Substring(0, guestName.Length - 1);
  9188. }
  9189. }
  9190. else
  9191. {
  9192. guestName = hr.GuestName;
  9193. }
  9194. Bookmark mark = doc.Range.Bookmarks["GName"];
  9195. mark.Text = guestName;
  9196. }
  9197. //房间介绍
  9198. if (doc.Range.Bookmarks["ROOM"] != null)
  9199. {
  9200. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  9201. mark.Text = hr.RoomExplanation;
  9202. }
  9203. //报价描述
  9204. if (doc.Range.Bookmarks["NOTE"] != null)
  9205. {
  9206. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  9207. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  9208. if (ss != null)
  9209. mark.Text = ss.Name;
  9210. }
  9211. //入住时间
  9212. if (doc.Range.Bookmarks["CheckIn"] != null)
  9213. {
  9214. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  9215. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  9216. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  9217. }
  9218. //退房时间
  9219. if (doc.Range.Bookmarks["CheckOut"] != null)
  9220. {
  9221. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  9222. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  9223. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  9224. }
  9225. //日期
  9226. if (doc.Range.Bookmarks["DT"] != null)
  9227. {
  9228. Bookmark mark = doc.Range.Bookmarks["DT"];
  9229. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  9230. }
  9231. //名称
  9232. if (doc.Range.Bookmarks["VName"] != null)
  9233. {
  9234. Bookmark mark = doc.Range.Bookmarks["VName"];
  9235. mark.Text = hr.HotelName;
  9236. }
  9237. //号码
  9238. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  9239. {
  9240. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  9241. mark.Text = hr.CheckNumber;
  9242. }
  9243. #endregion
  9244. strFileName += "VOUCHER.doc";
  9245. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9246. doc.Save(fileDir);
  9247. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9248. return Ok(JsonView(true, "操作成功!", Url));
  9249. }
  9250. else
  9251. {
  9252. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  9253. }
  9254. }
  9255. else
  9256. {
  9257. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  9258. }
  9259. }
  9260. catch (Exception ex)
  9261. {
  9262. return Ok(JsonView(false, ex.Message));
  9263. }
  9264. }
  9265. /// <summary>
  9266. /// 酒店预订
  9267. /// 生成VOUCHER
  9268. /// 2024.05.06 之后版本
  9269. /// </summary>
  9270. /// <param name="_dto"></param>
  9271. /// <returns></returns>
  9272. [HttpPost]
  9273. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9274. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  9275. {
  9276. #region 参数验证
  9277. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9278. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9279. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9280. #region 团组操作权限验证 76 酒店预定模块
  9281. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9282. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9283. #endregion
  9284. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9285. #region 页面操作权限验证
  9286. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9287. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9288. #endregion
  9289. #endregion
  9290. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9291. //判断数据是否完整
  9292. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  9293. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9294. string strFileName = "HotelStatement/";
  9295. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9296. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  9297. #region 数据处理
  9298. List<int> guestIds = new List<int>();
  9299. int index = 0;
  9300. foreach (var item in hrDtas)
  9301. {
  9302. if (item.GuestName.Contains(","))
  9303. {
  9304. string[] guestIdArr = item.GuestName.Split(',');
  9305. foreach (var guestIdStr in guestIdArr)
  9306. {
  9307. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  9308. if (guestBool)
  9309. {
  9310. guestIds.Add(guestId);
  9311. }
  9312. }
  9313. }
  9314. else guestNames += item.GuestName;
  9315. var voucherInfo = new HotelVoucherInfoView()
  9316. {
  9317. HotelName = item.HotelName,
  9318. CheckInDate = item.CheckInDate,
  9319. CheckOutDate = item.CheckOutDate,
  9320. ConfirmationNumber = item.DetermineNo.Trim(),
  9321. RoomType = item.RoomExplanation
  9322. };
  9323. vouchers.Add(voucherInfo);
  9324. }
  9325. if (guestIds.Count > 0)
  9326. {
  9327. guestIds = guestIds.Distinct().ToList();
  9328. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  9329. if (guestDatas.Count > 0)
  9330. {
  9331. guestNames = "";
  9332. foreach (var guest in guestDatas)
  9333. {
  9334. string guestName = "";
  9335. if (guest.Sex == 0) guestName += @"MR.";
  9336. else if (guest.Sex == 1) guestName += @"MS.";
  9337. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9338. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9339. guestNames += @$"{guestName.Trim()}、";
  9340. }
  9341. if (guestNames.Length > 0)
  9342. {
  9343. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9344. }
  9345. }
  9346. }
  9347. #endregion
  9348. //载入模板
  9349. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  9350. Document doc = new Document(sss);
  9351. DocumentBuilder builder = new DocumentBuilder(doc);
  9352. if (doc.Range.Bookmarks["GuestName"] != null)
  9353. {
  9354. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9355. mark.Text = guestNames;
  9356. }
  9357. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9358. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9359. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9360. for (int i = 1; i <= vouchers.Count; i++)
  9361. {
  9362. HotelVoucherInfoView hviv = vouchers[i - 1];
  9363. builder.MoveToCell(0, i, 0, 0);
  9364. builder.Write(hviv.HotelName);
  9365. builder.MoveToCell(0, i, 1, 0);
  9366. builder.Write(hviv.CheckInDate);
  9367. builder.MoveToCell(0, i, 2, 0);
  9368. builder.Write(hviv.CheckOutDate);
  9369. builder.MoveToCell(0, i, 3, 0);
  9370. builder.Write(hviv.RoomType);
  9371. builder.MoveToCell(0, i, 4, 0);
  9372. builder.Write(hviv.ConfirmationNumber);
  9373. }
  9374. //删除多余行
  9375. int currRowIndex = vouchers.Count + 1;
  9376. int delRows = 21 - currRowIndex;
  9377. if (delRows > 0)
  9378. {
  9379. for (int i = 0; i < delRows; i++)
  9380. {
  9381. table.Rows.RemoveAt(currRowIndex);
  9382. //cultivateRowIndex++;
  9383. }
  9384. }
  9385. strFileName += "VOUCHER.docx";
  9386. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9387. doc.Save(fileDir);
  9388. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9389. return Ok(JsonView(true, "操作成功!", Url));
  9390. }
  9391. /// <summary>
  9392. /// 酒店预订
  9393. /// 生成VOUCHER 批量生成
  9394. /// New
  9395. /// </summary>
  9396. /// <param name="_dto"></param>
  9397. /// <returns></returns>
  9398. [HttpPost]
  9399. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9400. public async Task<IActionResult> PostHotelReservationsCreateVoucherBatchNew(HotelReservationsCreateVoucherDto _dto)
  9401. {
  9402. #region 参数验证
  9403. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9404. if (_dto.PageId < 1) _dto.PageId = 28;
  9405. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9406. #region 团组操作权限验证 76 酒店预定模块
  9407. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9408. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9409. #endregion
  9410. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9411. #region 页面操作权限验证
  9412. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9413. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9414. #endregion
  9415. #endregion
  9416. var hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>()
  9417. .Where(it => it.IsDel == 0 && it.DiId == _dto.DiId)
  9418. .OrderBy(x => x.CreateTime)
  9419. .ToListAsync();
  9420. //判断数据是否完整
  9421. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  9422. string strFileName = "HotelStatement/";
  9423. var dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  9424. if (dele != null)
  9425. strFileName += $"{dele.TourCode}_";
  9426. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToListAsync();
  9427. for (int i = 0; i < hrDtas.Count; i++)
  9428. {
  9429. string guestNames = string.Empty;
  9430. List<int> guestIds = new List<int>();
  9431. var item = hrDtas[i];
  9432. //处理客户姓名
  9433. if (item.GuestName.Contains(","))
  9434. {
  9435. string[] guestIdArr = item.GuestName.Split(',');
  9436. foreach (var guestIdStr in guestIdArr)
  9437. if (int.TryParse(guestIdStr, out int guestId))
  9438. guestIds.Add(guestId);
  9439. }
  9440. else guestNames += item.GuestName;
  9441. if (guestIds.Count > 0)
  9442. {
  9443. guestIds = guestIds.Distinct().ToList();
  9444. var guestDatas1 = guestDatas.Where(it => guestIds.Contains(it.Id)).ToList();
  9445. if (guestDatas1.Count > 0)
  9446. {
  9447. guestNames = "";
  9448. foreach (var guest in guestDatas1)
  9449. {
  9450. string guestName = "";
  9451. if (guest.Sex == 0) guestName += @"MR.";
  9452. else if (guest.Sex == 1) guestName += @"MS.";
  9453. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9454. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9455. guestNames += @$"{guestName.Trim()}、";
  9456. }
  9457. if (guestNames.Length > 0)
  9458. {
  9459. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9460. }
  9461. }
  9462. }
  9463. if (!string.IsNullOrEmpty(guestNames))
  9464. {
  9465. hrDtas[i].GuestName = guestNames;
  9466. }
  9467. }
  9468. strFileName += $"{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}_VOUCHER.docx";
  9469. Document doc = new Document();
  9470. DocumentBuilder builder = new DocumentBuilder(doc);
  9471. try
  9472. {
  9473. builder.MoveToDocumentStart();
  9474. foreach (var item in hrDtas)
  9475. {
  9476. //标题
  9477. builder.ParagraphFormat.StyleIdentifier = StyleIdentifier.Title;
  9478. builder.ParagraphFormat.LineSpacing = 1;
  9479. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9480. //builder.ParagraphFormat.Style.Font.Size = 12;
  9481. //builder.ParagraphFormat.Style.Font.Bold = true;
  9482. builder.ParagraphFormat.Alignment = ParagraphAlignment.Center;
  9483. builder.Writeln(@$"ACCOMMODATION VOUCHER");
  9484. builder.ParagraphFormat.StyleIdentifier = StyleIdentifier.Title;
  9485. builder.ParagraphFormat.Alignment = ParagraphAlignment.Center;
  9486. builder.ParagraphFormat.LineSpacing = 1;
  9487. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9488. //builder.ParagraphFormat.Style.Font.Size = 12;
  9489. //builder.ParagraphFormat.Style.Font.Bold = true;
  9490. builder.Writeln(@$"VOUCHER No:{item.CheckNumber} DATE: {item.CreateTime.ToString("yyyy-MM-dd")}");
  9491. //获取Font对象
  9492. Aspose.Words.Font font = builder.Font;
  9493. //字体大小
  9494. font.Size = 8;
  9495. //是否粗体
  9496. font.Bold = false;
  9497. //下划线样式,None为无下划线
  9498. font.Underline = Underline.None;
  9499. builder.StartTable();
  9500. //RowFormat rowf = builder.RowFormat;
  9501. //rowf.Height = 20;
  9502. // 设置边框颜色
  9503. builder.CellFormat.Borders.Top.Color = System.Drawing.Color.Black;
  9504. //设置边框样式
  9505. //builder.CellFormat.Borders.Top.LineStyle = Aspose.Words.LineStyle.Double;
  9506. builder.CellFormat.Borders.LineStyle = Aspose.Words.LineStyle.None;
  9507. //表格
  9508. #region 第一行
  9509. builder.InsertCell();
  9510. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9511. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9512. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9513. builder.ParagraphFormat.Style.Font.Size = 8;
  9514. builder.ParagraphFormat.Style.Font.Bold = false;
  9515. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9516. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9517. builder.Write("TOUR NO:");
  9518. builder.InsertCell();
  9519. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9520. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9521. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9522. builder.ParagraphFormat.Style.Font.Size = 8;
  9523. builder.ParagraphFormat.Style.Font.Bold = false;
  9524. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9525. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9526. builder.Write($"{dele?.TourCode ?? "-"}");
  9527. builder.InsertCell();
  9528. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9529. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9530. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9531. builder.ParagraphFormat.Style.Font.Size = 8;
  9532. builder.ParagraphFormat.Style.Font.Bold = false;
  9533. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9534. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9535. builder.Write($"CITY:");
  9536. builder.InsertCell();
  9537. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9538. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9539. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9540. builder.ParagraphFormat.Style.Font.Size = 8;
  9541. builder.ParagraphFormat.Style.Font.Bold = false;
  9542. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9543. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9544. builder.Write($"{item.City}");
  9545. builder.EndRow();
  9546. #endregion
  9547. #region 第二行
  9548. builder.InsertCell();
  9549. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9550. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9551. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9552. builder.ParagraphFormat.Style.Font.Size = 8;
  9553. builder.ParagraphFormat.Style.Font.Bold = false;
  9554. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9555. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9556. builder.Write("CONFIRMATION NO:");
  9557. builder.InsertCell();
  9558. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9559. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9560. builder.ParagraphFormat.Style.Font.Size = 8;
  9561. builder.ParagraphFormat.Style.Font.Bold = false;
  9562. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9563. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9564. builder.CellFormat.VerticalMerge = CellMerge.None;
  9565. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9566. builder.Write($"{item.DetermineNo}");
  9567. builder.InsertCell();
  9568. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9569. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9570. builder.InsertCell();
  9571. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9572. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9573. builder.EndRow();
  9574. #endregion
  9575. #region 第三行
  9576. builder.InsertCell();
  9577. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9578. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9579. builder.ParagraphFormat.Style.Font.Size = 8;
  9580. builder.ParagraphFormat.Style.Font.Bold = false;
  9581. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9582. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9583. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9584. builder.Write($"HOTEL NAME:");
  9585. builder.InsertCell();
  9586. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9587. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9588. builder.ParagraphFormat.Style.Font.Size = 8;
  9589. builder.ParagraphFormat.Style.Font.Bold = false;
  9590. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9591. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9592. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9593. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9594. builder.Write($"{item.HotelName}");
  9595. builder.InsertCell();
  9596. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9597. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9598. builder.InsertCell();
  9599. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9600. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9601. builder.EndRow();
  9602. #endregion
  9603. #region 第四行
  9604. builder.InsertCell();
  9605. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9606. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9607. builder.ParagraphFormat.Style.Font.Size = 8;
  9608. builder.ParagraphFormat.Style.Font.Bold = false;
  9609. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9610. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9611. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9612. builder.Write($"HOTEL ADDRESS:");
  9613. builder.InsertCell();
  9614. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9615. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9616. builder.ParagraphFormat.Style.Font.Size = 8;
  9617. builder.ParagraphFormat.Style.Font.Bold = false;
  9618. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9619. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9620. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9621. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9622. builder.Write($"{item.HotelAddress}");
  9623. builder.InsertCell();
  9624. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9625. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9626. builder.InsertCell();
  9627. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9628. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9629. builder.EndRow();
  9630. #endregion
  9631. #region 第五行
  9632. builder.InsertCell();
  9633. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9634. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9635. builder.ParagraphFormat.Style.Font.Size = 8;
  9636. builder.ParagraphFormat.Style.Font.Bold = false;
  9637. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9638. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9639. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9640. builder.Write("TEL:");
  9641. builder.InsertCell();
  9642. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9643. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9644. builder.ParagraphFormat.Style.Font.Size = 8;
  9645. builder.ParagraphFormat.Style.Font.Bold = false;
  9646. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9647. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9648. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9649. builder.Write($"{item.HotelTel}");
  9650. builder.InsertCell();
  9651. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9652. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9653. builder.ParagraphFormat.Style.Font.Size = 8;
  9654. builder.ParagraphFormat.Style.Font.Bold = false;
  9655. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9656. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9657. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9658. builder.Write($"FAX:");
  9659. builder.InsertCell();
  9660. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9661. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9662. builder.ParagraphFormat.Style.Font.Size = 8;
  9663. builder.ParagraphFormat.Style.Font.Bold = false;
  9664. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9665. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9666. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9667. builder.Write($"{item.HotelFax}");
  9668. builder.EndRow();
  9669. #endregion
  9670. #region 第六行
  9671. builder.InsertCell();
  9672. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9673. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9674. builder.ParagraphFormat.Style.Font.Size = 8;
  9675. builder.ParagraphFormat.Style.Font.Bold = false;
  9676. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9677. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9678. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9679. builder.Write("CHECK IN:");
  9680. builder.InsertCell();
  9681. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9682. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9683. builder.ParagraphFormat.Style.Font.Size = 8;
  9684. builder.ParagraphFormat.Style.Font.Bold = false;
  9685. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9686. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9687. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9688. DateTime dtCheckIn = Convert.ToDateTime(item.CheckInDate);
  9689. string checkInStr = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  9690. builder.Write($"{checkInStr}");
  9691. builder.InsertCell();
  9692. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9693. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9694. builder.ParagraphFormat.Style.Font.Size = 8;
  9695. builder.ParagraphFormat.Style.Font.Bold = false;
  9696. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9697. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9698. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9699. builder.Write($"CHECK OUT:");
  9700. builder.InsertCell();
  9701. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9702. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9703. builder.ParagraphFormat.Style.Font.Size = 8;
  9704. builder.ParagraphFormat.Style.Font.Bold = false;
  9705. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9706. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9707. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9708. DateTime dtCheckOut = Convert.ToDateTime(item.CheckOutDate);
  9709. string checkOutStr = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year + " ";
  9710. builder.Write($"{checkOutStr}");
  9711. builder.EndRow();
  9712. #endregion
  9713. #region 第七行
  9714. builder.InsertCell();
  9715. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9716. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9717. builder.ParagraphFormat.Style.Font.Size = 8;
  9718. builder.ParagraphFormat.Style.Font.Bold = false;
  9719. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9720. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9721. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9722. builder.Write($"GUEST NAME:");
  9723. builder.InsertCell();
  9724. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9725. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9726. builder.ParagraphFormat.Style.Font.Size = 8;
  9727. builder.ParagraphFormat.Style.Font.Bold = false;
  9728. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9729. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9730. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9731. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9732. builder.Write($"{item.GuestName}");
  9733. builder.InsertCell();
  9734. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9735. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9736. builder.InsertCell();
  9737. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9738. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9739. builder.EndRow();
  9740. #endregion
  9741. #region 第八行
  9742. builder.InsertCell();
  9743. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9744. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9745. builder.ParagraphFormat.Style.Font.Size = 8;
  9746. builder.ParagraphFormat.Style.Font.Bold = false;
  9747. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9748. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9749. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9750. builder.Write($"ROOM TYPE:");
  9751. builder.InsertCell();
  9752. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9753. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9754. builder.ParagraphFormat.Style.Font.Size = 8;
  9755. builder.ParagraphFormat.Style.Font.Bold = false;
  9756. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9757. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9758. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9759. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9760. builder.Write($"{item.RoomExplanation}");
  9761. builder.InsertCell();
  9762. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9763. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9764. builder.InsertCell();
  9765. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9766. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9767. builder.EndRow();
  9768. #endregion
  9769. #region 第九行
  9770. builder.InsertCell();
  9771. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9772. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9773. builder.ParagraphFormat.Style.Font.Size = 8;
  9774. builder.ParagraphFormat.Style.Font.Bold = false;
  9775. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9776. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9777. builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;//对齐
  9778. builder.Write($"NOTE:");
  9779. builder.InsertCell();
  9780. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9781. builder.ParagraphFormat.Style.Font.Name = "微软雅黑";
  9782. builder.ParagraphFormat.Style.Font.Size = 8;
  9783. builder.ParagraphFormat.Style.Font.Bold = false;
  9784. builder.CellFormat.HorizontalMerge = CellMerge.None;
  9785. builder.CellFormat.FitText = true;//单元格内文字设为多行(默认为单行,会影响单元格宽)
  9786. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//对齐
  9787. builder.CellFormat.HorizontalMerge = CellMerge.First;
  9788. builder.Write($"ROOM AND TAX ONLY\r\nTHIS SERVICE IS PAYABLE BY BEDSONLINE. FOR EXTRA CHARGE TO BE COLLECTED FROM THE GUEST");
  9789. builder.InsertCell();
  9790. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);//列宽 - 百分比
  9791. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9792. builder.InsertCell();
  9793. builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(30);//列宽 - 百分比
  9794. builder.CellFormat.HorizontalMerge = CellMerge.Previous;
  9795. builder.EndRow();
  9796. #endregion
  9797. builder.EndTable();
  9798. //换行
  9799. builder.Writeln("");
  9800. builder.Writeln("");
  9801. }
  9802. #region 设置页眉
  9803. builder.MoveToHeaderFooter(HeaderFooterType.HeaderPrimary);
  9804. string voucherHeaderPath = $"./Images/VoucherHeader.png";
  9805. if (System.IO.File.Exists(voucherHeaderPath))
  9806. {
  9807. byte[] imageBytes = System.IO.File.ReadAllBytes(voucherHeaderPath);
  9808. //Image image = Image.FromStream(imageBytes, ImageType.Png);
  9809. //builder.InsertImage(imageBytes, RelativeHorizontalPosition.Margin, 0, RelativeVerticalPosition.Margin, 0, 81, 36, WrapType.None);
  9810. Shape shape = builder.InsertImage(imageBytes);
  9811. // 调整图片位置
  9812. shape.RelativeHorizontalPosition = RelativeHorizontalPosition.Page; // 将图片的水平位置设置为页面
  9813. shape.RelativeVerticalPosition = RelativeVerticalPosition.TopMargin; // 将图片的垂直位置设置为页眉上边距
  9814. shape.Top = 50; // 将图片距离页眉上边缘的距离
  9815. shape.Left = 0; // 将图片距离页面左边缘的距离
  9816. shape.Width = 81; // 设置图片宽度
  9817. shape.Height = 36; // 设置图片高度
  9818. }
  9819. //靠右
  9820. builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;
  9821. //// 设置页脚上下边距
  9822. //builder.PageSetup.HeaderDistance = 42;
  9823. // 添加页眉线
  9824. Aspose.Words.Border borderHeader = null;
  9825. try
  9826. {
  9827. borderHeader = builder.ParagraphFormat.Borders.Bottom;
  9828. }
  9829. catch (Exception e)
  9830. {
  9831. // TODO Auto-generated catch block
  9832. //e.printStackTrace();
  9833. }
  9834. borderHeader.Shadow = true;
  9835. borderHeader.DistanceFromText = 2;
  9836. borderHeader.LineStyle = Aspose.Words.LineStyle.Single;
  9837. #endregion
  9838. }
  9839. catch (Exception ex)
  9840. {
  9841. }
  9842. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9843. doc.Save(fileDir);
  9844. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9845. return Ok(JsonView(true, "操作成功!", Url));
  9846. }
  9847. /// <summary>
  9848. /// 酒店预订
  9849. /// 生成 预定成本 Excel
  9850. /// </summary>
  9851. /// <param name="_dto"></param>
  9852. /// <returns></returns>
  9853. [HttpPost]
  9854. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9855. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9856. {
  9857. #region 参数验证
  9858. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9859. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9860. if (!vadalitorRes.IsValid)
  9861. {
  9862. var errors = new StringBuilder();
  9863. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9864. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  9865. }
  9866. #region 团组操作权限验证 76 酒店预定模块
  9867. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9868. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9869. #endregion
  9870. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9871. #region 页面操作权限验证
  9872. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9873. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9874. #endregion
  9875. #endregion
  9876. decimal _rate = 1.00M;
  9877. string _currency = "";
  9878. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9879. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9880. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  9881. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9882. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  9883. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9884. {
  9885. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  9886. }
  9887. _currency = _GroupCostParameter.Currency;
  9888. bool isIntType = int.TryParse(_currency, out int currId);
  9889. if (isIntType)
  9890. {
  9891. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9892. }
  9893. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9894. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9895. if (currInfo == null)
  9896. {
  9897. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  9898. }
  9899. if (!_currency.ToUpper().Equals("CNY"))
  9900. {
  9901. _rate = _GroupCostParameter.Rate;
  9902. }
  9903. _rate = currInfo.Rate;
  9904. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9905. string strFileName = "HotelStatement/";
  9906. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9907. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9908. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  9909. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  9910. #region 数据处理
  9911. foreach (var item in hrDtas)
  9912. {
  9913. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9914. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  9915. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  9916. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  9917. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  9918. string roomCurr = currDatas.Find(it => it.Id == roomInfo?.Currency)?.Name ?? "";
  9919. string singleRoomFeeStr = string.Empty,
  9920. doubleRoomFeeStr = string.Empty,
  9921. suiteRoomFeeStr = string.Empty,
  9922. otherRoomFeeStr = string.Empty,
  9923. payMoneyStr = string.Empty,
  9924. cardPriceStr = string.Empty;
  9925. if (roomCurr.Equals(_currency))
  9926. {
  9927. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9928. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9929. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9930. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9931. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9932. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9933. }
  9934. else
  9935. {
  9936. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9937. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9938. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9939. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9940. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9941. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9942. }
  9943. string breakfastPriceStr = string.Empty,
  9944. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9945. governmentRentStr = string.Empty,
  9946. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9947. cityTaxStrStr = string.Empty,
  9948. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9949. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  9950. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  9951. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  9952. int payDId = roomInfo?.PayDId ?? 0;
  9953. pcfds.Add(new HotelReservations_PCFD_View()
  9954. {
  9955. City = item.City,
  9956. HotelName = item.HotelName,
  9957. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9958. // SingleRoomCount = item.SingleRoomCount,
  9959. SingleRoomPrice = singleRoomFeeStr,
  9960. // DoubleRoomCount = item.DoubleRoomCount,
  9961. DoubleRoomPrice = doubleRoomFeeStr,
  9962. //SuiteRoomCount = item.SuiteRoomCount,
  9963. SuiteRoomPrice = suiteRoomFeeStr,
  9964. OtherRoomPrice = otherRoomFeeStr,
  9965. //OtherRoomCount = item.OtherRoomCount,
  9966. BreakfastPrice = breakfastPriceStr,
  9967. GovernmentRent = governmentRentStr,
  9968. CityTax = cityTaxStrStr,
  9969. RoomExplanation = item.RoomExplanation,
  9970. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == payDId).First()?.Name ?? "",
  9971. PayTime = roomInfo?.ConsumptionDate,
  9972. BankNo = roomInfo?.BankNo,
  9973. PayMoney = payMoneyStr,
  9974. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9975. ConsumptionPatterns = roomInfo?.ConsumptionPatterns,
  9976. CardPrice = cardPriceStr,
  9977. Remark = ccpInfo.Remark
  9978. });
  9979. }
  9980. #endregion
  9981. //载入模板
  9982. WorkbookDesigner designer = new WorkbookDesigner();
  9983. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9984. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9985. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9986. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9987. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9988. designer.SetDataSource("Opertor", userInfo.CnName);
  9989. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9990. dt.TableName = "ViewMyHotelReservations";
  9991. designer.SetDataSource(dt);
  9992. designer.Process();
  9993. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  9994. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9995. designer.Workbook.Save(serverPath);
  9996. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9997. #region 删除指定行
  9998. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  9999. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  10000. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  10001. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  10002. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  10003. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  10004. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  10005. cssIndex = dt.Columns["CityTax"].Ordinal,
  10006. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  10007. remarkIndex = dt.Columns["Remark"].Ordinal;
  10008. //删除指定列
  10009. foreach (DataRow item in dt.Rows)
  10010. {
  10011. string singleStr = item["SingleRoomPrice"].ToString();
  10012. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  10013. if (containsDigitButNotZero1) singleDel = false;
  10014. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  10015. string doubleStr = item["DoubleRoomPrice"].ToString();
  10016. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  10017. if (containsDigitButNotZero2) doubleDel = false;
  10018. string suiteStr = item["SuiteRoomPrice"].ToString();
  10019. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  10020. if (containsDigitButNotZero3) suiteDel = false;
  10021. string otherStr = item["OtherRoomPrice"].ToString();
  10022. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  10023. if (containsDigitButNotZero4) otherDel = false;
  10024. string zcStr = item["BreakfastPrice"].ToString();
  10025. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  10026. if (containsDigitButNotZero5) zcDel = false;
  10027. string dsStr = item["GovernmentRent"].ToString();
  10028. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  10029. if (containsDigitButNotZero6) dsDel = false;
  10030. string cssStr = item["CityTax"].ToString();
  10031. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  10032. if (containsDigitButNotZero7) cssDel = false;
  10033. string cpStr = item["ConsumptionPatterns"].ToString();
  10034. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  10035. string remarkStr = item["Remark"].ToString();
  10036. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  10037. }
  10038. DeleteColumn(serverPath, remarkIndex, remarkDel);
  10039. DeleteColumn(serverPath, cpIndex, cpDel);
  10040. DeleteColumn(serverPath, dsIndex, dsDel);
  10041. DeleteColumn(serverPath, cssIndex, cssDel);
  10042. DeleteColumn(serverPath, zcIndex, zcDel);
  10043. DeleteColumn(serverPath, otherIndex, otherDel);
  10044. DeleteColumn(serverPath, suiteIndex, suiteDel);
  10045. DeleteColumn(serverPath, doubleIndex, doubleDel);
  10046. DeleteColumn(serverPath, singleIndex, singleDel);
  10047. #endregion
  10048. //只保留第一个表格
  10049. DeleteSheet(serverPath);
  10050. return Ok(JsonView(true, "操作成功", url = rst));
  10051. }
  10052. /// <summary>
  10053. /// 删除指定列
  10054. /// </summary>
  10055. /// <param name="file"></param>
  10056. /// <param name="columnIndex"></param>
  10057. /// <param name="isDel"></param>
  10058. private void DeleteColumn(string file, int columnIndex, bool isDel)
  10059. {
  10060. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  10061. //wb.Save(file);
  10062. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  10063. if (sheet1 != null)
  10064. {
  10065. if (isDel)
  10066. {
  10067. Cells cells = sheet1.Cells;
  10068. cells.DeleteColumn(columnIndex);
  10069. }
  10070. }
  10071. wb.Save(file);
  10072. }
  10073. /// <summary>
  10074. /// 删除sheet
  10075. /// </summary>
  10076. /// <param name="file"></param>
  10077. /// <param name="sheetName"></param>
  10078. private void DeleteSheet(string file, string sheetName = "")
  10079. {
  10080. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  10081. //wb.Save(file);
  10082. List<string> sheets = new List<string>();
  10083. foreach (var item in wb.Worksheets)
  10084. {
  10085. sheets.Add(item.Name);
  10086. }
  10087. if (sheets.Count > 0)
  10088. {
  10089. sheets.RemoveAt(0);//不删除第一个sheet
  10090. foreach (var item in sheets)
  10091. {
  10092. wb.Worksheets.RemoveAt(item);
  10093. }
  10094. }
  10095. wb.Save(file);
  10096. }
  10097. /// <summary>
  10098. /// 酒店预订
  10099. /// 确认单
  10100. /// </summary>
  10101. /// <param name="_dto"></param>
  10102. /// <returns></returns>
  10103. [HttpPost]
  10104. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10105. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  10106. {
  10107. try
  10108. {
  10109. #region 参数验证
  10110. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  10111. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  10112. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  10113. #region 团组操作权限验证 76 酒店预定模块
  10114. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  10115. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  10116. #endregion
  10117. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10118. #region 页面操作权限验证
  10119. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10120. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10121. #endregion
  10122. #endregion
  10123. //团组信息
  10124. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  10125. //酒店数据
  10126. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  10127. if (listhoteldata.Count < 0)
  10128. {
  10129. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  10130. }
  10131. //利datatable存储
  10132. DataTable dt = new DataTable();
  10133. dt.Columns.Add("CheckInDate", typeof(string));
  10134. dt.Columns.Add("City", typeof(string));
  10135. dt.Columns.Add("Hotel", typeof(string));
  10136. dt.Columns.Add("Room", typeof(string));
  10137. for (int i = 0; i < listhoteldata.Count; i++)
  10138. {
  10139. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  10140. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  10141. while (dayStart < dayEnd)
  10142. {
  10143. string temp = "";
  10144. DataRow row = dt.NewRow();
  10145. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  10146. row["City"] = listhoteldata[i].City;
  10147. row["Hotel"] = listhoteldata[i].HotelName;
  10148. if (listhoteldata[i].SingleRoomCount > 0)
  10149. {
  10150. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  10151. }
  10152. if (listhoteldata[i].DoubleRoomCount > 0)
  10153. {
  10154. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  10155. }
  10156. if (listhoteldata[i].SuiteRoomCount > 0)
  10157. {
  10158. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  10159. }
  10160. if (listhoteldata[i].OtherRoomCount > 0)
  10161. {
  10162. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  10163. }
  10164. row["Room"] = temp;
  10165. dt.Rows.Add(row);
  10166. dayStart = dayStart.AddDays(1);
  10167. }
  10168. }
  10169. Dictionary<string, string> dic = new Dictionary<string, string>();
  10170. dic.Add("Dele", di.TeamName);
  10171. dic.Add("City", di.VisitCountry);
  10172. //模板路径
  10173. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  10174. //载入模板
  10175. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  10176. DocumentBuilder builder = new DocumentBuilder(doc);
  10177. foreach (var key in dic.Keys)
  10178. {
  10179. builder.MoveToBookmark(key);
  10180. builder.Write(dic[key]);
  10181. }
  10182. //获取word里所有表格
  10183. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10184. //获取所填表格的序数
  10185. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10186. var rowStart = tableOne.Rows[0]; //获取第1行
  10187. //循环赋值
  10188. for (int i = 0; i < dt.Rows.Count; i++)
  10189. {
  10190. builder.MoveToCell(0, i + 1, 0, 0);
  10191. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  10192. builder.MoveToCell(0, i + 1, 1, 0);
  10193. builder.Write(dt.Rows[i]["City"].ToString());
  10194. builder.MoveToCell(0, i + 1, 2, 0);
  10195. builder.Write(dt.Rows[i]["Hotel"].ToString());
  10196. builder.MoveToCell(0, i + 1, 3, 0);
  10197. builder.Write(dt.Rows[i]["Room"].ToString());
  10198. }
  10199. //删除多余行
  10200. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  10201. {
  10202. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  10203. }
  10204. string strFileName = di.TeamName + "酒店确认单.doc";
  10205. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  10206. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  10207. return Ok(JsonView(true, "成功", url));
  10208. }
  10209. catch (Exception ex)
  10210. {
  10211. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  10212. }
  10213. }
  10214. #endregion
  10215. #region 团组状态
  10216. /// <summary>
  10217. /// 团组状态列表 Page
  10218. /// </summary>
  10219. /// <param name="dto">团组列表请求dto</param>
  10220. /// <returns></returns>
  10221. [HttpPost]
  10222. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10223. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  10224. {
  10225. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  10226. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  10227. {
  10228. string sqlWhere = string.Empty;
  10229. if (dto.IsSure == 0) //未完成
  10230. {
  10231. sqlWhere += string.Format(@" And IsSure = 0");
  10232. }
  10233. else if (dto.IsSure == 1) //已完成
  10234. {
  10235. sqlWhere += string.Format(@" And IsSure = 1");
  10236. }
  10237. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  10238. {
  10239. string tj = dto.SearchCriteria;
  10240. 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}%')",
  10241. tj, tj, tj, tj, tj);
  10242. }
  10243. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  10244. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  10245. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  10246. From (
  10247. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  10248. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  10249. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  10250. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  10251. From Grp_DelegationInfo gdi
  10252. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  10253. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  10254. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  10255. Where gdi.IsDel = 0 {0}
  10256. ) temp ", sqlWhere);
  10257. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  10258. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  10259. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  10260. }
  10261. else
  10262. {
  10263. return Ok(JsonView(false, "查询失败"));
  10264. }
  10265. }
  10266. /// <summary>
  10267. /// 团组状态
  10268. /// 设置操作完成
  10269. /// </summary>
  10270. /// <param name="dto">团组列表请求dto</param>
  10271. /// <returns></returns>
  10272. [HttpPost]
  10273. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10274. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  10275. {
  10276. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  10277. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  10278. {
  10279. Id = dto.Id,
  10280. IsSure = 1
  10281. };
  10282. var result = await _sqlSugar.Updateable(_DelegationInfo)
  10283. .UpdateColumns(it => new { it.IsSure })
  10284. .WhereColumns(it => new { it.Id })
  10285. .ExecuteCommandAsync();
  10286. if (result > 0)
  10287. {
  10288. return Ok(JsonView(true, "操作完成!"));
  10289. }
  10290. return Ok(JsonView(false, "操作失败!"));
  10291. }
  10292. #endregion
  10293. #region 保险费用录入
  10294. /// <summary>
  10295. /// 根据团组Id查询保险费用列表
  10296. /// </summary>
  10297. /// <param name="dto"></param>
  10298. /// <returns></returns>
  10299. [HttpPost]
  10300. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10301. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  10302. {
  10303. try
  10304. {
  10305. Result groupData = await _customersRep.CustomersByDiId(dto);
  10306. if (groupData.Code != 0)
  10307. {
  10308. return Ok(JsonView(false, groupData.Msg));
  10309. }
  10310. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10311. }
  10312. catch (Exception ex)
  10313. {
  10314. return Ok(JsonView(false, ex.Message));
  10315. }
  10316. }
  10317. /// <summary>
  10318. /// 根据保险费用Id查询保险费用详细
  10319. /// </summary>
  10320. /// <param name="dto"></param>
  10321. /// <returns></returns>
  10322. [HttpPost]
  10323. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10324. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  10325. {
  10326. try
  10327. {
  10328. Result groupData = await _customersRep.CustomersById(dto);
  10329. if (groupData.Code != 0)
  10330. {
  10331. return Ok(JsonView(false, groupData.Msg));
  10332. }
  10333. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10334. }
  10335. catch (Exception ex)
  10336. {
  10337. return Ok(JsonView(false, ex.Message));
  10338. }
  10339. }
  10340. /// <summary>
  10341. /// 保险费用录入页面初始化绑定
  10342. /// </summary>
  10343. /// <param name="dto"></param>
  10344. /// <returns></returns>
  10345. [HttpPost]
  10346. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10347. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  10348. {
  10349. try
  10350. {
  10351. Result groupData = await _customersRep.CustomersInitialize(dto);
  10352. if (groupData.Code != 0)
  10353. {
  10354. return Ok(JsonView(false, groupData.Msg));
  10355. }
  10356. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10357. }
  10358. catch (Exception ex)
  10359. {
  10360. return Ok(JsonView(false, ex.Message));
  10361. }
  10362. }
  10363. /// <summary>
  10364. /// 保险费用操作(Status:1.新增,2.修改)
  10365. /// </summary>
  10366. /// <param name="dto"></param>
  10367. /// <returns></returns>
  10368. [HttpPost]
  10369. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10370. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  10371. {
  10372. try
  10373. {
  10374. Result groupData = await _customersRep.OpCustomers(dto);
  10375. if (groupData.Code != 0)
  10376. {
  10377. return Ok(JsonView(false, groupData.Msg));
  10378. }
  10379. #region 应用推送
  10380. try
  10381. {
  10382. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  10383. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  10384. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  10385. }
  10386. catch (Exception ex)
  10387. {
  10388. }
  10389. #endregion
  10390. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  10391. }
  10392. catch (Exception ex)
  10393. {
  10394. return Ok(JsonView(false, ex.Message));
  10395. }
  10396. }
  10397. /// <summary>
  10398. /// 保险文件上传
  10399. /// </summary>
  10400. /// <param name="file"></param>
  10401. /// <returns></returns>
  10402. [HttpPost]
  10403. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10404. public async Task<IActionResult> UploadCus(IFormFile file)
  10405. {
  10406. try
  10407. {
  10408. if (file != null)
  10409. {
  10410. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  10411. //文件名称
  10412. string projectFileName = file.FileName;
  10413. //上传的文件的路径
  10414. string filePath = "";
  10415. if (!Directory.Exists(fileDir))
  10416. {
  10417. Directory.CreateDirectory(fileDir);
  10418. }
  10419. //上传的文件的路径
  10420. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  10421. using (FileStream fs = System.IO.File.Create(filePath))
  10422. {
  10423. file.CopyTo(fs);
  10424. fs.Flush();
  10425. }
  10426. return Ok(JsonView(true, "上传成功!", projectFileName));
  10427. }
  10428. else
  10429. {
  10430. return Ok(JsonView(false, "上传失败!"));
  10431. }
  10432. }
  10433. catch (Exception ex)
  10434. {
  10435. return Ok(JsonView(false, "程序错误!"));
  10436. throw;
  10437. }
  10438. }
  10439. /// <summary>
  10440. /// 保险删除指定文件
  10441. /// </summary>
  10442. /// <param name="dto"></param>
  10443. /// <returns></returns>
  10444. [HttpPost]
  10445. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10446. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  10447. {
  10448. try
  10449. {
  10450. string filePath = "";
  10451. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  10452. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  10453. //int id = 0;
  10454. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  10455. // 删除该文件
  10456. try
  10457. {
  10458. System.IO.File.Delete(filePath);
  10459. 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()
  10460. {
  10461. Attachment = "",
  10462. }).ExecuteCommandAsync();
  10463. if (result != 0)
  10464. {
  10465. return Ok(JsonView(true, "成功!"));
  10466. }
  10467. else
  10468. {
  10469. return Ok(JsonView(false, "失败!"));
  10470. }
  10471. }
  10472. catch (Exception)
  10473. {
  10474. 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()
  10475. {
  10476. Attachment = "",
  10477. }).ExecuteCommandAsync();
  10478. if (result != 0)
  10479. {
  10480. return Ok(JsonView(true, "成功!"));
  10481. }
  10482. else
  10483. {
  10484. return Ok(JsonView(false, "失败!"));
  10485. }
  10486. }
  10487. }
  10488. catch (Exception ex)
  10489. {
  10490. return Ok(JsonView(false, "程序错误!"));
  10491. throw;
  10492. }
  10493. }
  10494. /// <summary>
  10495. /// 保险费用操作(删除)
  10496. /// </summary>
  10497. /// <param name="dto"></param>
  10498. /// <returns></returns>
  10499. [HttpPost]
  10500. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10501. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  10502. {
  10503. try
  10504. {
  10505. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  10506. if (!res)
  10507. {
  10508. return Ok(JsonView(false, "删除失败"));
  10509. }
  10510. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  10511. {
  10512. IsDel = 1,
  10513. DeleteUserId = dto.DeleteUserId,
  10514. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  10515. }).ExecuteCommandAsync();
  10516. return Ok(JsonView(true, "删除成功!"));
  10517. }
  10518. catch (Exception ex)
  10519. {
  10520. return Ok(JsonView(false, "程序错误!"));
  10521. throw;
  10522. }
  10523. }
  10524. #endregion
  10525. #region 接团客户名单 PageId 104
  10526. /// <summary>
  10527. /// 接团客户名单
  10528. /// 迁移数据(慎用!)
  10529. /// </summary>
  10530. /// <param name="dto"></param>
  10531. /// <returns></returns>
  10532. [HttpPost]
  10533. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10534. public async Task<IActionResult> PostTourClientListChange()
  10535. {
  10536. try
  10537. {
  10538. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  10539. //var groupClinetData1
  10540. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  10541. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  10542. int updateCount = 0;
  10543. if (oldOAClientList.Count > 0)
  10544. {
  10545. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  10546. _sqlSugar.BeginTran();
  10547. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  10548. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  10549. foreach (var item in oldOAClientList)
  10550. {
  10551. int comId = 0;
  10552. string format = "yyyy-MM-dd HH:mm:ss";
  10553. string data11 = "1990-01-01 00:00";
  10554. var data1 = IsValidDate(item.OPdate, format);
  10555. if (data1) data11 = item.OPdate;
  10556. //客户公司验证
  10557. if (!string.IsNullOrEmpty(item.Company))
  10558. {
  10559. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  10560. if (clientComInfo == null) // add
  10561. {
  10562. var addInfo = new Crm_CustomerCompany()
  10563. {
  10564. CompanyAbbreviation = "",
  10565. CompanyFullName = item.Company,
  10566. Address = "",
  10567. PostCodes = "",
  10568. LastedOpUserId = item.OPer,
  10569. LastedOpDt = Convert.ToDateTime(data11),
  10570. CreateUserId = item.OPer,
  10571. CreateTime = Convert.ToDateTime(data11),
  10572. IsDel = 0
  10573. };
  10574. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  10575. if (comId1 > 0) comId = comId1;
  10576. }
  10577. else comId = clientComInfo.Id;
  10578. }
  10579. //客户人员验证
  10580. int clientId = 0;
  10581. string name = item.LastName + item.Name;
  10582. if (!string.IsNullOrEmpty(name))
  10583. {
  10584. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  10585. if (clientInfo == null)
  10586. {
  10587. DateTime? dateTime = null;
  10588. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  10589. if (isDt) dateTime = birthDayDt;
  10590. var addInfo1 = new Crm_DeleClient()
  10591. {
  10592. CrmCompanyId = comId,
  10593. DiId = -1,
  10594. LastName = item.LastName,
  10595. FirstName = item.Name,
  10596. OldName = "",
  10597. Pinyin = item.Pinyin,
  10598. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  10599. Marriage = 0,
  10600. Phone = item.Phone,
  10601. Job = item.Job,
  10602. BirthDay = dateTime
  10603. };
  10604. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  10605. if (clientId1 > 0) clientId = clientId1;
  10606. }
  10607. else clientId = clientInfo.Id;
  10608. }
  10609. if (clientId < 1)
  10610. {
  10611. continue;
  10612. }
  10613. int airType = 0;
  10614. if (item.AirType == "超经舱") airType = 459;
  10615. else if (item.AirType == "公务舱") airType = 458;
  10616. else if (item.AirType == "经济舱") airType = 460;
  10617. else if (item.AirType == "其他") airType = 565;
  10618. else if (item.AirType == "头等舱") airType = 457;
  10619. var _TourClientListEntity = new Grp_TourClientList()
  10620. {
  10621. DiId = item.Diid,
  10622. ClientId = clientId,
  10623. CreateUserId = item.OPer,
  10624. CreateTime = Convert.ToDateTime(data11),
  10625. Remark = item.Remark,
  10626. IsDel = item.Isdel,
  10627. ShippingSpaceTypeId = airType,
  10628. ShippingSpaceSpecialNeeds = item.AirRemark,
  10629. HotelSpecialNeeds = item.RoomType
  10630. };
  10631. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  10632. if (_TourClientList > 0)
  10633. {
  10634. updateCount++;
  10635. }
  10636. }
  10637. _sqlSugar.CommitTran();
  10638. }
  10639. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  10640. }
  10641. catch (Exception ex)
  10642. {
  10643. _sqlSugar.RollbackTran();
  10644. return Ok(JsonView(false, ex.Message));
  10645. }
  10646. return Ok(JsonView(true));
  10647. }
  10648. private bool IsValidDate(string dateString, string format)
  10649. {
  10650. DateTime dateValue;
  10651. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  10652. return valid;
  10653. }
  10654. /// <summary>
  10655. /// 接团客户名单
  10656. /// 根据团组Id查询List
  10657. /// </summary>
  10658. /// <param name="dto"></param>
  10659. /// <returns></returns>
  10660. [HttpPost]
  10661. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10662. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  10663. {
  10664. #region 参数验证
  10665. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  10666. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10667. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  10668. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10669. #region 页面操作权限验证
  10670. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10671. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10672. #endregion
  10673. #endregion
  10674. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  10675. if (viewData.Code != 0)
  10676. {
  10677. return Ok(JsonView(false, viewData.Msg));
  10678. }
  10679. return Ok(JsonView(viewData.Data));
  10680. }
  10681. /// <summary>
  10682. /// 接团客户名单
  10683. /// 基础数据 Init
  10684. /// </summary>
  10685. /// <param name="_dto"></param>
  10686. /// <returns></returns>
  10687. [HttpPost]
  10688. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10689. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  10690. {
  10691. #region 参数验证
  10692. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10693. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10694. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10695. #region 页面操作权限验证
  10696. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10697. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10698. #endregion
  10699. #endregion
  10700. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  10701. if (viewData.Code != 0)
  10702. {
  10703. return Ok(JsonView(false, viewData.Msg));
  10704. }
  10705. return Ok(JsonView(viewData.Data));
  10706. }
  10707. /// <summary>
  10708. /// 接团客户名单
  10709. /// 根据 Id查询 Details
  10710. /// </summary>
  10711. /// <param name="_dto"></param>
  10712. /// <returns></returns>
  10713. [HttpPost]
  10714. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10715. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  10716. {
  10717. #region 参数验证
  10718. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10719. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10720. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10721. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10722. #region 页面操作权限验证
  10723. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10724. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10725. #endregion
  10726. #endregion
  10727. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  10728. if (viewData.Code != 0)
  10729. {
  10730. return Ok(JsonView(false, viewData.Msg));
  10731. }
  10732. return Ok(JsonView(viewData.Data));
  10733. }
  10734. /// <summary>
  10735. /// 接团客户名单
  10736. /// Add Or Edit
  10737. /// </summary>
  10738. /// <param name="_dto"></param>
  10739. /// <returns></returns>
  10740. [HttpPost]
  10741. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10742. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  10743. {
  10744. #region 参数验证
  10745. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10746. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10747. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10748. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10749. #region 页面操作权限验证
  10750. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10751. if (_dto.Id == 0) //添加
  10752. {
  10753. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10754. }
  10755. else if (_dto.Id >= 0) //修改
  10756. {
  10757. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  10758. }
  10759. #endregion
  10760. #endregion
  10761. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  10762. if (viewData.Code != 0)
  10763. {
  10764. return Ok(JsonView(false, viewData.Msg));
  10765. }
  10766. return Ok(JsonView(true));
  10767. }
  10768. /// <summary>
  10769. /// 接团客户名单
  10770. /// AddMultiple(添加多个)
  10771. /// </summary>
  10772. /// <param name="_dto"></param>
  10773. /// <returns></returns>
  10774. [HttpPost]
  10775. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10776. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  10777. {
  10778. #region 参数验证
  10779. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10780. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10781. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10782. #region 页面操作权限验证
  10783. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10784. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10785. #endregion
  10786. #endregion
  10787. var viewData = await _tourClientListRep._AddMultiple(_dto);
  10788. if (viewData.Code != 0)
  10789. {
  10790. return Ok(JsonView(false, viewData.Msg));
  10791. }
  10792. return Ok(JsonView(true));
  10793. }
  10794. /// <summary>
  10795. /// 接团客户名单
  10796. /// Del
  10797. /// </summary>
  10798. /// <param name="_dto"></param>
  10799. /// <returns></returns>
  10800. [HttpPost]
  10801. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10802. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  10803. {
  10804. #region 参数验证
  10805. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10806. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10807. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10808. #region 页面操作权限验证
  10809. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10810. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  10811. #endregion
  10812. #endregion
  10813. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  10814. if (viewData.Code != 0)
  10815. {
  10816. return Ok(JsonView(false, viewData.Msg));
  10817. }
  10818. return Ok(JsonView(true));
  10819. }
  10820. /// <summary>
  10821. /// 接团客户名单
  10822. /// 文件下载 客户名单
  10823. /// </summary>
  10824. /// <param name="_dto"></param>
  10825. /// <returns></returns>
  10826. [HttpPost]
  10827. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10828. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  10829. {
  10830. #region 参数验证
  10831. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10832. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10833. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10834. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10835. #region 页面操作权限验证
  10836. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10837. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10838. #endregion
  10839. #endregion
  10840. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10841. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10842. From Grp_TourClientList tcl
  10843. Left Join
  10844. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10845. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10846. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10847. From Crm_DeleClient dc
  10848. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10849. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10850. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10851. Where dc.IsDel = 0) temp
  10852. On temp.DcId =tcl.ClientId
  10853. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10854. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10855. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10856. //载入模板
  10857. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10858. if (_dto.Language == 1)
  10859. {
  10860. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10861. }
  10862. //载入模板
  10863. var doc = new Document(tempPath);
  10864. DocumentBuilder builder = new DocumentBuilder(doc);
  10865. //获取word里所有表格
  10866. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10867. //获取所填表格的序数
  10868. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10869. var rowStart = tableOne.Rows[0]; //获取第1行
  10870. if (_dto.Language == 0)
  10871. {
  10872. //循环赋值
  10873. for (int i = 0; i < DcList.Count; i++)
  10874. {
  10875. builder.MoveToCell(0, i + 1, 0, 0);
  10876. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10877. builder.MoveToCell(0, i + 1, 1, 0);
  10878. int sex = DcList[i].Sex;
  10879. string sexStr = string.Empty;
  10880. if (sex == 0) sexStr = "男";
  10881. else if (sex == 1) sexStr = "女";
  10882. else sexStr = "未设置";
  10883. builder.Write(sexStr);
  10884. builder.MoveToCell(0, i + 1, 2, 0);
  10885. string birthDay = DcList[i].BirthDay;
  10886. string birthDayStr = string.Empty;
  10887. if (!string.IsNullOrEmpty(birthDay))
  10888. {
  10889. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10890. }
  10891. builder.Write(birthDayStr);
  10892. builder.MoveToCell(0, i + 1, 3, 0);
  10893. string company = "";
  10894. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10895. {
  10896. company = DcList[i].CompanyFullName.ToString();
  10897. }
  10898. builder.Write(company);
  10899. builder.MoveToCell(0, i + 1, 4, 0);
  10900. builder.Write(DcList[i].Job);
  10901. }
  10902. }
  10903. else if (_dto.Language == 1)
  10904. {
  10905. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10906. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10907. List<string> transArrayStr = new List<string>();
  10908. string transStrRes1 = "";
  10909. for (int i = 0; i < DcList.Count; i++)
  10910. {
  10911. var dc = DcList[i];
  10912. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  10913. if (dc.Job.Equals("暂无")) dc.Job = "-";
  10914. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  10915. if (DcList.Count - 1 == i) transStrRes1 += str1;
  10916. else transStrRes1 += $"{str1}|";
  10917. }
  10918. //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";
  10919. string transStrRes = "";
  10920. if (transStrRes1.Length > 0 )
  10921. {
  10922. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  10923. }
  10924. //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
  10925. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  10926. //List<string> transArray = new List<string> { };
  10927. List<TranslateInfo> transArray = new List<TranslateInfo>();
  10928. if (transStrRes.Contains("|"))
  10929. {
  10930. string[] transArray1 = transStrRes.Split('|');
  10931. if (transArray1.Length > 0)
  10932. {
  10933. foreach (var item in transArray1)
  10934. {
  10935. if (item.Contains("&"))
  10936. {
  10937. string[] transArray2 = item.Split('&');
  10938. int index = 0;
  10939. string companyName = "", job = "";
  10940. if (transArray2.Length > 0)
  10941. {
  10942. bool success = int.TryParse(transArray2[0].Trim(), out index);
  10943. if (1 < transArray2.Length) companyName = transArray2[1];
  10944. if (2 < transArray2.Length) job = transArray2[2];
  10945. }
  10946. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  10947. }
  10948. }
  10949. }
  10950. }
  10951. //循环赋值
  10952. for (int i = 0; i < DcList.Count; i++)
  10953. {
  10954. string PYName = "";
  10955. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10956. {
  10957. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10958. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10959. PYName = PY_First + " " + PY_Last;
  10960. }
  10961. else
  10962. {
  10963. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10964. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10965. PYName = PY_First + " " + PY_Last;
  10966. }
  10967. builder.MoveToCell(0, i + 1, 0, 0);
  10968. builder.Write(PYName);
  10969. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10970. builder.MoveToCell(0, i + 1, 1, 0);
  10971. builder.Write(sex);
  10972. DateTime birthDt;
  10973. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10974. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  10975. builder.MoveToCell(0, i + 1, 2, 0);
  10976. builder.Write(birthday);
  10977. string company = string.Empty,job = string.Empty;
  10978. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  10979. if (dcTransInfo != null)
  10980. {
  10981. company = dcTransInfo.CompanyName;
  10982. job = dcTransInfo.Job;
  10983. }
  10984. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10985. {
  10986. //查询对照表
  10987. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10988. if (tempCec != null)
  10989. {
  10990. company = tempCec.enName;
  10991. }
  10992. //翻译
  10993. else
  10994. {
  10995. }
  10996. }
  10997. builder.MoveToCell(0, i + 1, 3, 0);
  10998. builder.Write(company);
  10999. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  11000. {
  11001. //查询对照表
  11002. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  11003. if (tempPec != null)
  11004. {
  11005. job = tempPec.enName;
  11006. }
  11007. //翻译
  11008. else
  11009. {
  11010. }
  11011. }
  11012. builder.MoveToCell(0, i + 1, 4, 0);
  11013. builder.Write(job);
  11014. }
  11015. }
  11016. //删除多余行
  11017. while (tableOne.Rows.Count > DcList.Count + 1)
  11018. {
  11019. tableOne.Rows.RemoveAt(DcList.Count + 1);
  11020. }
  11021. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  11022. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  11023. doc.Save(fileDir);
  11024. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  11025. return Ok(JsonView(true, "操作成功!", Url));
  11026. }
  11027. private class TranslateInfo
  11028. {
  11029. public int Index { get; set; }
  11030. public string CompanyName { get; set; }
  11031. public string Job { get; set; }
  11032. }
  11033. #endregion
  11034. #region 团组倒推表
  11035. /// <summary>
  11036. /// 倒推表基础数据
  11037. /// Init
  11038. /// </summary>
  11039. /// <param name="dto"></param>
  11040. /// <returns></returns>
  11041. [HttpPost]
  11042. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11043. public async Task<IActionResult> PostInvertedListInit()
  11044. {
  11045. var viewData = await _invertedListRep._Init();
  11046. if (viewData.Code != 0)
  11047. {
  11048. return Ok(JsonView(false, viewData.Msg));
  11049. }
  11050. return Ok(JsonView(viewData.Data));
  11051. }
  11052. /// <summary>
  11053. /// 倒推表
  11054. /// Info
  11055. /// </summary>
  11056. /// <param name="dto"></param>
  11057. /// <returns></returns>
  11058. [HttpPost]
  11059. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11060. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  11061. {
  11062. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  11063. if (viewData.Code != 0)
  11064. {
  11065. return Ok(JsonView(false, viewData.Msg));
  11066. }
  11067. return Ok(JsonView(viewData.Data));
  11068. }
  11069. /// <summary>
  11070. /// 倒推表
  11071. /// Create
  11072. /// </summary>
  11073. /// <param name="dto"></param>
  11074. /// <returns></returns>
  11075. [HttpPost]
  11076. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11077. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  11078. {
  11079. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  11080. if (viewData.Code != 0)
  11081. {
  11082. return Ok(JsonView(false, viewData.Msg));
  11083. }
  11084. return Ok(JsonView(viewData.Data));
  11085. }
  11086. /// <summary>
  11087. /// 倒推表
  11088. /// Update
  11089. /// </summary>
  11090. /// <param name="dto"></param>
  11091. /// <returns></returns>
  11092. [HttpPost]
  11093. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11094. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  11095. {
  11096. var viewData = await _invertedListRep._Update(dto);
  11097. if (viewData.Code != 0)
  11098. {
  11099. return Ok(JsonView(false, viewData.Msg));
  11100. }
  11101. return Ok(JsonView(viewData.Data));
  11102. }
  11103. /// <summary>
  11104. /// 倒推表
  11105. /// File Download
  11106. /// </summary>
  11107. /// <param name="dto"></param>
  11108. /// <returns></returns>
  11109. [HttpPost]
  11110. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11111. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  11112. {
  11113. var info2 = await _invertedListRep._Info(1, dto.DiId);
  11114. if (info2.Code != 0)
  11115. {
  11116. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  11117. }
  11118. var info1 = info2.Data as InvertedListInfoView;
  11119. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  11120. string teamName = "";
  11121. if (info != null) teamName = info.TeamName;
  11122. //载入模板
  11123. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  11124. DocumentBuilder builder = new DocumentBuilder(doc);
  11125. //利用键值对存放数据
  11126. Dictionary<string, string> dic = new Dictionary<string, string>();
  11127. dic.Add("TeamName", teamName);
  11128. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  11129. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  11130. dic.Add("BPRemark", info1.ApprovalDataRemark);
  11131. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  11132. dic.Add("SQRemark", info1.ApprovalRemark);
  11133. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  11134. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  11135. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  11136. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  11137. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  11138. dic.Add("QZRemark", info1.VisaInformationRemark);
  11139. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  11140. dic.Add("SQQZRemark", info1.SendVisaRemark);
  11141. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  11142. dic.Add("CQRemark", info1.IssueVisaRemark);
  11143. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  11144. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  11145. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  11146. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  11147. #region 填充word模板书签内容
  11148. foreach (var key in dic.Keys)
  11149. {
  11150. builder.MoveToBookmark(key);
  11151. builder.Write(dic[key]);
  11152. }
  11153. #endregion
  11154. var fileDir = AppSettingsHelper.Get("WordBasePath");
  11155. string fileName = $"{teamName}团出行准备流程表.doc";
  11156. string filePath = fileDir + $@"InvertedList/{fileName}";
  11157. doc.Save(filePath);
  11158. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  11159. return Ok(JsonView(true, "操作成功!", Url));
  11160. }
  11161. #endregion
  11162. #region 三公签证费用(签证费、代办费)
  11163. /// <summary>
  11164. /// 三公签证费用(签证费、代办费)
  11165. /// List
  11166. /// </summary>
  11167. /// <returns></returns>
  11168. [HttpPost]
  11169. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11170. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  11171. {
  11172. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  11173. if (_view.Code != 0)
  11174. {
  11175. return Ok(JsonView(false, _view.Msg));
  11176. }
  11177. return Ok(JsonView(true, "操作成功!", _view.Data));
  11178. }
  11179. /// <summary>
  11180. /// 三公签证费用(签证费、代办费)
  11181. /// Add Or Update
  11182. /// </summary>
  11183. /// <returns></returns>
  11184. [HttpPost]
  11185. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11186. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  11187. {
  11188. var _view = await _visaFeeInfoRep._Update(_dto);
  11189. if (_view.Code != 0)
  11190. {
  11191. return Ok(JsonView(false, _view.Msg));
  11192. }
  11193. return Ok(JsonView(true, _view.Msg));
  11194. }
  11195. #endregion
  11196. #region 酒店询价
  11197. /// <summary>
  11198. /// 酒店询价
  11199. /// Init
  11200. /// </summary>
  11201. /// <param name="dto"></param>
  11202. /// <returns></returns>
  11203. [HttpPost]
  11204. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11205. public async Task<IActionResult> PostHotelInquiryInit()
  11206. {
  11207. var res = await _hotelInquiryRep._Init();
  11208. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11209. return Ok(JsonView(true, res.Msg, res.Data));
  11210. }
  11211. /// <summary>
  11212. /// 酒店询价
  11213. /// page Item
  11214. /// </summary>
  11215. /// <param name="_dto"></param>
  11216. /// <returns></returns>
  11217. [HttpPost]
  11218. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11219. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  11220. {
  11221. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  11222. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11223. var view = res.Data as PageDataViewBase;
  11224. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  11225. }
  11226. /// <summary>
  11227. /// 酒店询价
  11228. /// info
  11229. /// </summary>
  11230. /// <param name="_dto"></param>
  11231. /// <returns></returns>
  11232. [HttpPost]
  11233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11234. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  11235. {
  11236. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  11237. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11238. return Ok(JsonView(true, res.Msg, res.Data));
  11239. }
  11240. /// <summary>
  11241. /// 酒店询价
  11242. /// Add Or Edit
  11243. /// </summary>
  11244. /// <param name="_dto"></param>
  11245. /// <returns></returns>
  11246. [HttpPost]
  11247. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11248. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  11249. {
  11250. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  11251. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11252. return Ok(JsonView(true, res.Msg, res.Data));
  11253. }
  11254. /// <summary>
  11255. /// 酒店询价
  11256. /// Del
  11257. /// </summary>
  11258. /// <param name="_dto"></param>
  11259. /// <returns></returns>
  11260. [HttpPost]
  11261. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11262. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  11263. {
  11264. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  11265. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  11266. return Ok(JsonView(true, res.Msg, res.Data));
  11267. }
  11268. #endregion
  11269. #region 下载匹配op行程单
  11270. /// <summary>
  11271. /// 匹配op行程单
  11272. /// Init
  11273. /// </summary>
  11274. /// <param name="dto">团组列表请求dto</param>
  11275. /// <returns></returns>
  11276. [HttpPost]
  11277. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11278. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  11279. {
  11280. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  11281. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  11282. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  11283. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  11284. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  11285. .Where(it => it.IsDel == 0)
  11286. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  11287. .OrderByDescending(it => it.CreateUserId)
  11288. .ToList();
  11289. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  11290. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11291. var diids = groupInfos.Select(it => it.Id).ToList();
  11292. List<string> countrys = new List<string>();
  11293. foreach (var item in country)
  11294. {
  11295. var data = _groupRepository.FormartTeamName(item);
  11296. var dataArray = _groupRepository.GroupSplitCountry(data);
  11297. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11298. }
  11299. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  11300. List<string> areaArray = new List<string>(); //GetGroupCityLine
  11301. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  11302. foreach (var item in areaItem)
  11303. {
  11304. string areaStr = item.Value;
  11305. if (!string.IsNullOrEmpty(areaStr))
  11306. {
  11307. string[] str1 = areaStr.Split("-");
  11308. if (str1.Length > 0)
  11309. {
  11310. areaArray.AddRange(str1);
  11311. }
  11312. }
  11313. }
  11314. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  11315. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  11316. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  11317. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  11318. .ToList();
  11319. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  11320. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  11321. .Where(it => countriesIds.Contains(it.Id))
  11322. .Select(it => new { it.Id, Name = it.Name_CN })
  11323. .ToList();
  11324. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  11325. .Select(it => it.TeamName).ToList();
  11326. stopwatch.Stop();
  11327. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  11328. }
  11329. ///// <summary>
  11330. ///// 匹配op行程单
  11331. ///// Init 查询区域数据
  11332. ///// </summary>
  11333. ///// <param name="dto">团组列表请求dto</param>
  11334. ///// <returns></returns>
  11335. //[HttpPost]
  11336. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11337. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  11338. //{
  11339. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  11340. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  11341. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  11342. // if (string.IsNullOrEmpty(countriesDataStr))
  11343. // {
  11344. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  11345. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  11346. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  11347. // }
  11348. // else
  11349. // {
  11350. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  11351. // }
  11352. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  11353. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  11354. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  11355. // List<dynamic> childList = new List<dynamic>();
  11356. // int parentId = dto.CountriesId;
  11357. // if (provinceData.Count > 1)
  11358. // {
  11359. // foreach (var item1 in provinceData)
  11360. // {
  11361. // List<dynamic> childList1 = new List<dynamic>();
  11362. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  11363. // foreach (var item2 in citiesData1)
  11364. // {
  11365. // List<dynamic> childList2 = new List<dynamic>();
  11366. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  11367. // foreach (var item3 in countiesData1)
  11368. // {
  11369. // childList2.Add(new
  11370. // {
  11371. // id = item3.Id,
  11372. // parentId = item2.Id,
  11373. // level = "district",
  11374. // name = item3.Name_CN,
  11375. // });
  11376. // }
  11377. // childList1.Add(new
  11378. // {
  11379. // id = item2.Id,
  11380. // parentId = item1.Id,
  11381. // level = "city",
  11382. // name = item2.Name_CN,
  11383. // childList = childList2
  11384. // });
  11385. // }
  11386. // childList.Add(new
  11387. // {
  11388. // id = item1.Id,
  11389. // parentId = parentId,
  11390. // level = "province",
  11391. // name = item1.Name_CN,
  11392. // childList = childList1
  11393. // });
  11394. // }
  11395. // //城市
  11396. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  11397. // foreach (var item2 in citiesData2)
  11398. // {
  11399. // List<dynamic> childList22 = new List<dynamic>();
  11400. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  11401. // foreach (var item3 in countiesData1)
  11402. // {
  11403. // childList22.Add(new
  11404. // {
  11405. // id = item3.Id,
  11406. // parentId = item2.Id,
  11407. // level = "district",
  11408. // name = item3.Name_CN,
  11409. // });
  11410. // }
  11411. // childList.Add(new
  11412. // {
  11413. // id = item2.Id,
  11414. // parentId = parentId,
  11415. // level = "city",
  11416. // name = item2.Name_CN,
  11417. // childList = childList22
  11418. // });
  11419. // }
  11420. // }
  11421. // else
  11422. // {
  11423. // foreach (var item2 in citiesData)
  11424. // {
  11425. // string cname = item2.Name_CN;
  11426. // List<dynamic> childList1 = new List<dynamic>();
  11427. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  11428. // foreach (var item3 in countiesData1)
  11429. // {
  11430. // childList1.Add(new
  11431. // {
  11432. // Id = item3.Id,
  11433. // parentId = item2.Id,
  11434. // level = "district",
  11435. // name = item3.Name_CN
  11436. // });
  11437. // }
  11438. // childList.Add(new
  11439. // {
  11440. // id = item2.Id,
  11441. // parentId = parentId,
  11442. // level = "city",
  11443. // name = item2.Name_CN,
  11444. // childList = childList1
  11445. // });
  11446. // }
  11447. // }
  11448. // stopwatch.Stop();
  11449. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  11450. //}
  11451. /// <summary>
  11452. /// 匹配op行程单
  11453. /// 接团信息列表 Page
  11454. /// </summary>
  11455. /// <param name="dto">团组列表请求dto</param>
  11456. /// <returns></returns>
  11457. [HttpPost]
  11458. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11459. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  11460. {
  11461. var swatch = new Stopwatch();
  11462. swatch.Start();
  11463. #region 参数验证
  11464. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  11465. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  11466. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11467. #region 页面操作权限验证
  11468. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  11469. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  11470. #endregion
  11471. #endregion
  11472. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  11473. {
  11474. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  11475. string sqlWhere = "";
  11476. if (!string.IsNullOrEmpty(dto.Country))
  11477. {
  11478. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  11479. }
  11480. if (!string.IsNullOrEmpty(dto.Area))
  11481. {
  11482. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  11483. }
  11484. if (!string.IsNullOrEmpty(dto.TeamName))
  11485. {
  11486. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  11487. }
  11488. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  11489. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  11490. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  11491. swatch.Stop();
  11492. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  11493. }
  11494. else
  11495. {
  11496. return Ok(JsonView(false, "查询失败"));
  11497. }
  11498. }
  11499. /// <summary>
  11500. /// 匹配op行程单
  11501. /// 行程单下载
  11502. /// </summary>
  11503. /// <param name="dto">团组列表请求dto</param>
  11504. /// <returns></returns>
  11505. [HttpPost]
  11506. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11507. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  11508. {
  11509. #region 参数验证
  11510. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  11511. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  11512. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  11513. #region 页面操作权限验证
  11514. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  11515. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  11516. #endregion
  11517. #endregion
  11518. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  11519. {
  11520. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  11521. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  11522. }
  11523. else
  11524. {
  11525. return Ok(JsonView(false, "下载失败!"));
  11526. }
  11527. }
  11528. #endregion
  11529. #region 国家信息 数据 注释
  11530. //[HttpPost]
  11531. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  11532. //{
  11533. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  11534. // foreach (var item in dto)
  11535. // {
  11536. // infos.Add(new Grp_GroupsTaskAssignment()
  11537. // {
  11538. // DIId = item,
  11539. // CTId = 82,
  11540. // UId = 248,
  11541. // IsEnable = 1,
  11542. // CreateUserId = 233,
  11543. // CreateTime = DateTime.Now,
  11544. // IsDel = 0
  11545. // });
  11546. // infos.Add(new Grp_GroupsTaskAssignment()
  11547. // {
  11548. // DIId = item,
  11549. // CTId = 82,
  11550. // UId = 286,
  11551. // IsEnable = 1,
  11552. // CreateUserId = 233,
  11553. // CreateTime = DateTime.Now,
  11554. // IsDel = 0
  11555. // });
  11556. // }
  11557. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  11558. // return Ok("操作成功");
  11559. //}
  11560. //public class paramJsonDto
  11561. //{
  11562. // public List<CountriesInfo> str { get; set; }
  11563. //}
  11564. //[HttpPost]
  11565. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  11566. //{
  11567. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  11568. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  11569. // List<Sys_Cities> cities = new List<Sys_Cities>();
  11570. // List<Sys_Cities> districts = new List<Sys_Cities>();
  11571. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  11572. // _sqlSugar.BeginTran();
  11573. // int countitiesIndex = 0;
  11574. // foreach (var item in dto.str)
  11575. // {
  11576. // dynamic data = item.c;
  11577. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  11578. // if (data != null)
  11579. // {
  11580. // countitiesIndex++;
  11581. // foreach (var item1 in data)
  11582. // {
  11583. // string cnname = item1.cn;
  11584. // string enname = item1.en;
  11585. // Sys_Cities provinceInfo = new Sys_Cities()
  11586. // {
  11587. // CountriesId = countriesId,
  11588. // Name_CN = cnname,
  11589. // Name_EN = enname,
  11590. // ParentId = 0,
  11591. // IsCapital = 1,
  11592. // CreateUserId = 208,
  11593. // CreateTime = DateTime.Now,
  11594. // IsDel = 0
  11595. // };
  11596. // if (item1.lv == "province") //省份
  11597. // {
  11598. // provinceInfo.Level = 1;
  11599. // int provinceId = 0;
  11600. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  11601. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  11602. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  11603. // var data1 = item1.c;
  11604. // foreach (var item2 in data1)
  11605. // {
  11606. // if (item2.lv == "city")
  11607. // {
  11608. // string citycnname = item2.cn;
  11609. // string cityenname = item2.en;
  11610. // Sys_Cities cityInfo = new Sys_Cities()
  11611. // {
  11612. // CountriesId = countriesId,
  11613. // ParentId = provinceId,
  11614. // Level = 2,
  11615. // Name_CN = citycnname,
  11616. // Name_EN = cityenname,
  11617. // IsCapital = 1,
  11618. // CreateUserId = 208,
  11619. // CreateTime = DateTime.Now,
  11620. // IsDel = 0
  11621. // };
  11622. // if (item2.c != null)
  11623. // {
  11624. // int cityId = 0;
  11625. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  11626. // if (citiesInfo != null) cityId = citiesInfo.Id;
  11627. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  11628. // foreach (var item3 in item2.c)
  11629. // {
  11630. // if (item3.lv == "district")
  11631. // {
  11632. // var districtInfo = new Sys_Cities()
  11633. // {
  11634. // CountriesId = countriesId,
  11635. // Name_CN = item3.cn,
  11636. // Name_EN = item3.en,
  11637. // Level = 3,
  11638. // ParentId = cityId,
  11639. // IsCapital = 1,
  11640. // CreateUserId = 208,
  11641. // CreateTime = DateTime.Now,
  11642. // IsDel = 0
  11643. // };
  11644. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  11645. // //{
  11646. // districts.Add(districtInfo);
  11647. // //}
  11648. // }
  11649. // }
  11650. // }
  11651. // else
  11652. // {
  11653. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  11654. // //{
  11655. // cities.Add(cityInfo);
  11656. // //}
  11657. // }
  11658. // }
  11659. // }
  11660. // }
  11661. // else if (item1.lv == "city")//城市
  11662. // {
  11663. // provinceInfo.Level = 2;
  11664. // if (item1.c != null)
  11665. // {
  11666. // int cityId = 0;
  11667. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  11668. // if (citiesInfo != null) cityId = citiesInfo.Id;
  11669. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  11670. // foreach (var item3 in item1.c)
  11671. // {
  11672. // if (item3.lv == "district")
  11673. // {
  11674. // var districtInfo = new Sys_Cities()
  11675. // {
  11676. // CountriesId = countriesId,
  11677. // Name_CN = item3.cn,
  11678. // Name_EN = item3.en,
  11679. // Level = 3,
  11680. // ParentId = cityId,
  11681. // IsCapital = 1,
  11682. // CreateUserId = 208,
  11683. // CreateTime = DateTime.Now,
  11684. // IsDel = 0
  11685. // };
  11686. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  11687. // //{
  11688. // districts.Add(districtInfo);
  11689. // //}
  11690. // }
  11691. // }
  11692. // }
  11693. // else
  11694. // {
  11695. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  11696. // //{
  11697. // cities.Add(provinceInfo);
  11698. // //}
  11699. // }
  11700. // }
  11701. // }
  11702. // }
  11703. // }
  11704. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  11705. // cities = cities.Distinct().ToList();
  11706. // districts = districts.Distinct().ToList();
  11707. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  11708. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  11709. // cities.AddRange(districts);
  11710. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  11711. // //_sqlSugar.RollbackTran();
  11712. // _sqlSugar.CommitTran();
  11713. // return Ok(JsonView(false, "操作成功!"));
  11714. //}
  11715. //[HttpPost]
  11716. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  11717. //{
  11718. // List<CountitiesInfo> infos = dto.MyProperty;
  11719. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  11720. // _sqlSugar.BeginTran();
  11721. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  11722. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  11723. // foreach (var item in infos)
  11724. // {
  11725. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  11726. // if (countryInfo != null)
  11727. // {
  11728. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  11729. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  11730. // if (cityInfo1 != null)
  11731. // {
  11732. // cityInfo1.IsCapital = 0;
  11733. // cityInfos.Add(cityInfo1);
  11734. // }
  11735. // }
  11736. // }
  11737. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  11738. // .UpdateColumns(it => it.IsCapital)
  11739. // .WhereColumns(it => it.Id)
  11740. // .ExecuteCommand();
  11741. // //_sqlSugar.RollbackTran();
  11742. // _sqlSugar.CommitTran();
  11743. // return Ok(JsonView(false, "操作成功!"));
  11744. //}
  11745. //public class CounrtiesDto
  11746. //{
  11747. // public List<CountitiesInfo> MyProperty { get; set; }
  11748. //}
  11749. //public class CountitiesInfo
  11750. //{
  11751. // /// <summary>
  11752. // /// 圣约翰
  11753. // /// </summary>
  11754. // public string capital_name_chinese { get; set; }
  11755. // /// <summary>
  11756. // ///
  11757. // /// </summary>
  11758. // public string capital_name { get; set; }
  11759. // /// <summary>
  11760. // ///
  11761. // /// </summary>
  11762. // public string country_type { get; set; }
  11763. // /// <summary>
  11764. // /// 安提瓜和巴布达
  11765. // /// </summary>
  11766. // public string country_name_chinese { get; set; }
  11767. // /// <summary>
  11768. // /// 安提瓜和巴布达
  11769. // /// </summary>
  11770. // public string country_name_chinese_short { get; set; }
  11771. // /// <summary>
  11772. // /// 安提瓜和巴布达
  11773. // /// </summary>
  11774. // public string country_name_chinese_UN { get; set; }
  11775. // /// <summary>
  11776. // ///
  11777. // /// </summary>
  11778. // public string country_name_english_abbreviation { get; set; }
  11779. // /// <summary>
  11780. // ///
  11781. // /// </summary>
  11782. // public string country_name_english_formal { get; set; }
  11783. // /// <summary>
  11784. // ///
  11785. // /// </summary>
  11786. // public string country_name_english_UN { get; set; }
  11787. // /// <summary>
  11788. // ///
  11789. // /// </summary>
  11790. // public string continent_name { get; set; }
  11791. // /// <summary>
  11792. // ///
  11793. // /// </summary>
  11794. // public string subregion_name { get; set; }
  11795. // /// <summary>
  11796. // ///
  11797. // /// </summary>
  11798. // public string country_code2 { get; set; }
  11799. // /// <summary>
  11800. // ///
  11801. // /// </summary>
  11802. // public string country_code3 { get; set; }
  11803. // /// <summary>
  11804. // ///
  11805. // /// </summary>
  11806. // public string phone_code { get; set; }
  11807. //}
  11808. //public class CountriesInfo : BasicInfo
  11809. //{
  11810. // public List<CitiesInfo> c { get; set; }
  11811. //}
  11812. //public class CitiesInfo : BasicInfo
  11813. //{
  11814. // public List<AreaInfo> c { get; set; }
  11815. //}
  11816. //public class AreaInfo : BasicInfo
  11817. //{
  11818. // public List<AreaInfo> c { get; set; }
  11819. //}
  11820. //public class BasicInfo
  11821. //{
  11822. // public string code { get; set; }
  11823. // public string cn { get; set; }
  11824. // public string lv { get; set; }
  11825. // public string en { get; set; }
  11826. //}
  11827. #endregion
  11828. #region 查看邀请方
  11829. /// <summary>
  11830. /// 查看邀请方
  11831. /// 邀请方信息 Init
  11832. /// </summary>
  11833. /// <param name="dto"></param>
  11834. /// <returns></returns>
  11835. [HttpPost]
  11836. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11837. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  11838. {
  11839. string sqlWhere = string.Empty;
  11840. if (!string.IsNullOrEmpty(dto.Search))
  11841. {
  11842. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  11843. }
  11844. string sql = string.Format($@"Select
  11845. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  11846. Id,
  11847. UnitName
  11848. From Res_InvitationOfficialActivityData
  11849. Where IsDel = 0
  11850. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  11851. RefAsync<int> total = 0;
  11852. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11853. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  11854. }
  11855. /// <summary>
  11856. /// 查看邀请方
  11857. /// 国家信息 Init
  11858. /// </summary>
  11859. /// <param name="dto"></param>
  11860. /// <returns></returns>
  11861. [HttpPost]
  11862. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11863. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  11864. {
  11865. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  11866. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11867. var diids = groupInfos.Select(it => it.Id).ToList();
  11868. List<string> countrys = new List<string>();
  11869. foreach (var item in country)
  11870. {
  11871. var data = _groupRepository.FormartTeamName(item);
  11872. var dataArray = _groupRepository.GroupSplitCountry(data);
  11873. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11874. }
  11875. countrys = countrys.Distinct().ToList();
  11876. for (int i = 0; i < countrys.Count; i++)
  11877. {
  11878. string item = countrys[i];
  11879. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  11880. {
  11881. countrys.Remove(item);
  11882. i--;
  11883. }
  11884. }
  11885. RefAsync<int> total = 0;
  11886. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  11887. .Where(it => countrys.Contains(it.Name_CN))
  11888. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11889. .Select(it => new { id = it.Id, name = it.Name_CN })
  11890. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11891. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11892. }
  11893. /// <summary>
  11894. /// 查看邀请方
  11895. /// 城市信息 Init
  11896. /// </summary>
  11897. /// <param name="dto"></param>
  11898. /// <returns></returns>
  11899. [HttpPost]
  11900. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11901. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  11902. {
  11903. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  11904. RefAsync<int> total = 0;
  11905. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  11906. .Where(it => it.CountriesId == dto.CountiesId)
  11907. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11908. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  11909. .Select(it => new { id = it.Id, name = it.Name_CN })
  11910. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11911. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11912. }
  11913. /// <summary>
  11914. /// 查看邀请方
  11915. /// 团组名称 Init
  11916. /// </summary>
  11917. /// <param name="dto"></param>
  11918. /// <returns></returns>
  11919. [HttpPost]
  11920. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11921. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  11922. {
  11923. var watch = new Stopwatch();
  11924. watch.Start();
  11925. RefAsync<int> total = 0;
  11926. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  11927. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  11928. .Where((oa, di) => oa.IsDel == 0)
  11929. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  11930. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  11931. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  11932. .Distinct()
  11933. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11934. watch.Stop();
  11935. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  11936. }
  11937. /// <summary>
  11938. /// 查看邀请方
  11939. /// 团组 & 邀请方信息
  11940. /// </summary>
  11941. /// <param name="dto"></param>
  11942. /// <returns></returns>
  11943. [HttpPost]
  11944. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11945. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  11946. {
  11947. var watch = new Stopwatch();
  11948. watch.Start();
  11949. RefAsync<int> total = 0;
  11950. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  11951. .AS("Grp_DelegationInfo")
  11952. .Includes(x => x.InvitingInfos)
  11953. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  11954. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  11955. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  11956. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  11957. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  11958. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  11959. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11960. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  11961. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  11962. infos.ForEach(x =>
  11963. {
  11964. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  11965. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  11966. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  11967. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  11968. });
  11969. watch.Stop();
  11970. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  11971. }
  11972. #endregion
  11973. #region 报批行程
  11974. /// <summary>
  11975. /// 报批行程初始化
  11976. /// </summary>
  11977. /// <param name="dto"></param>
  11978. /// <returns></returns>
  11979. [HttpPost]
  11980. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  11981. {
  11982. const int chiNumber = 5;
  11983. var jw = JsonView(false);
  11984. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  11985. var group = groupList.First();
  11986. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  11987. group = groupList.First(x => x.Id == diid);
  11988. if (group == null)
  11989. {
  11990. jw.Msg = "暂无团组!";
  11991. return Ok(jw);
  11992. }
  11993. var data = new
  11994. {
  11995. groupList = groupList.Select(x => new
  11996. {
  11997. x.TeamName,
  11998. x.Id
  11999. }),
  12000. content = new ArrayList(),
  12001. groupInfo = new
  12002. {
  12003. group.VisitDays,
  12004. group.TourCode,
  12005. group.VisitPNumber,
  12006. group.TeamName,
  12007. group.Id,
  12008. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  12009. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  12010. },
  12011. };
  12012. var resultArr = new ArrayList();
  12013. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  12014. if (content.Count == 0)
  12015. {
  12016. var stay = "-";
  12017. var cityPath = "-";
  12018. //添加城市路径以及住宿地
  12019. //黑屏代码数据
  12020. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  12021. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  12022. {
  12023. jw = JsonView(true, "黑屏代码有误!", data);
  12024. return Ok(jw);
  12025. }
  12026. foreach (DataRow row in dtBlack.Rows)
  12027. {
  12028. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  12029. {
  12030. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  12031. return Ok(jw);
  12032. }
  12033. }
  12034. //黑屏代码获取时间区间
  12035. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  12036. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  12037. _sqlSugar.BeginTran();
  12038. for (int i = 0; i < timeArr.Count; i++)
  12039. {
  12040. stay = "-";
  12041. cityPath = "-";
  12042. DateTime NewData = DateTime.Parse(timeArr[i]);
  12043. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  12044. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  12045. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  12046. if (tbSelect.Length > 0)
  12047. {
  12048. List<string> threeCodeStr = new List<string>();
  12049. foreach (var item in tbSelect)
  12050. {
  12051. var threeCode = item["Three"].ToString() ?? "";
  12052. if (threeCode.Length == 6)
  12053. {
  12054. var start = threeCode.Substring(0, 3);
  12055. var end = threeCode.Substring(3, 3);
  12056. if (threeCodeStr.Count == 0)
  12057. {
  12058. threeCodeStr.Add(start);
  12059. threeCodeStr.Add(end);
  12060. }
  12061. else
  12062. {
  12063. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  12064. {
  12065. threeCodeStr.Add(end);
  12066. }
  12067. else
  12068. {
  12069. threeCodeStr.Add(start);
  12070. threeCodeStr.Add(end);
  12071. }
  12072. }
  12073. }
  12074. }
  12075. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  12076. var last = threeCodeStr.Last();
  12077. foreach (var item in threeCodeStr)
  12078. {
  12079. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  12080. if (item.Equals(last))
  12081. {
  12082. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  12083. }
  12084. }
  12085. cityPath = cityPath.Trim('-');
  12086. }
  12087. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  12088. appro.Diid = diid ?? -1;
  12089. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  12090. appro.Id = thisId;
  12091. appro.CreateUserId = dto.UserId;
  12092. appro.CreateTime = DateTime.Now;
  12093. content.Add(appro);
  12094. }
  12095. _sqlSugar.CommitTran();
  12096. }
  12097. foreach (var x in content)
  12098. {
  12099. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  12100. if (chiList.Count < chiNumber)
  12101. {
  12102. for (int i = chiList.Count; i < chiNumber; i++)
  12103. {
  12104. chiList.Add(new Grp_ApprovalTravelDetails());
  12105. }
  12106. }
  12107. resultArr.Add(new
  12108. {
  12109. x.Id,
  12110. x.Date,
  12111. x.Diid,
  12112. chiList = chiList.Select(x1 => new
  12113. {
  12114. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  12115. x1.Details,
  12116. x1.ParentId,
  12117. x1.Id
  12118. })
  12119. });
  12120. }
  12121. data = data with
  12122. {
  12123. content = resultArr,
  12124. };
  12125. jw = JsonView(true, "获取成功!", data);
  12126. return Ok(jw);
  12127. }
  12128. /// <summary>
  12129. /// 报批行程删除
  12130. /// </summary>
  12131. /// <param name="dto"></param>
  12132. /// <returns></returns>
  12133. [HttpPost]
  12134. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  12135. {
  12136. var jw = JsonView(false);
  12137. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  12138. if (group == null)
  12139. {
  12140. jw.Msg = "团组参数有误!";
  12141. return Ok(jw);
  12142. }
  12143. try
  12144. {
  12145. _sqlSugar.BeginTran();
  12146. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  12147. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  12148. {
  12149. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  12150. DeleteUserId = dto.uesrId,
  12151. IsDel = 1
  12152. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  12153. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  12154. {
  12155. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  12156. DeleteUserId = dto.uesrId,
  12157. IsDel = 1
  12158. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  12159. _sqlSugar.CommitTran();
  12160. jw = JsonView(true, "删除成功");
  12161. }
  12162. catch (Exception ex)
  12163. {
  12164. jw = JsonView(false, ex.Message);
  12165. }
  12166. return Ok(jw);
  12167. }
  12168. /// <summary>
  12169. /// 报批行程保存
  12170. /// </summary>
  12171. /// <param name="dto"></param>
  12172. /// <returns></returns>
  12173. [HttpPost]
  12174. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  12175. {
  12176. var jw = JsonView(false);
  12177. var Find = dto.Arr.Find(x => x.id == 0);
  12178. if (Find != null)
  12179. {
  12180. jw.Msg = "生成的ID为0!";
  12181. return Ok(jw);
  12182. }
  12183. foreach (var item in dto.Arr)
  12184. {
  12185. foreach (var chi in item.chiList)
  12186. {
  12187. if (chi.parentId == 0)
  12188. {
  12189. chi.parentId = item.id;
  12190. }
  12191. }
  12192. }
  12193. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  12194. _sqlSugar.BeginTran();
  12195. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  12196. {
  12197. var parentIds = dto.Arr.Select(x => x.id).ToList();
  12198. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  12199. {
  12200. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  12201. DeleteUserId = dto.UserId,
  12202. IsDel = 1
  12203. }).ExecuteCommand();
  12204. }
  12205. try
  12206. {
  12207. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  12208. {
  12209. CreateTime = DateTime.Now,
  12210. CreateUserId = dto.UserId,
  12211. Details = x.details,
  12212. ParentId = x.parentId,
  12213. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  12214. Remark = "",
  12215. IsDel = 0
  12216. }).ToList()).ExecuteCommand();
  12217. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  12218. {
  12219. Id = x.id,
  12220. Details = x.details,
  12221. ParentId = x.parentId,
  12222. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  12223. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  12224. {
  12225. Details = x.Details,
  12226. ParentId = x.ParentId,
  12227. Time = x.Time
  12228. }).ExecuteCommand();
  12229. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  12230. {
  12231. Id = x.id,
  12232. Date = x.date,
  12233. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  12234. {
  12235. Date = x.Date
  12236. }).ExecuteCommand();
  12237. _sqlSugar.CommitTran();
  12238. jw = JsonView(true, "保存成功!");
  12239. }
  12240. catch (Exception ex)
  12241. {
  12242. _sqlSugar.RollbackTran();
  12243. jw = JsonView(false, "保存失败!" + ex.Message);
  12244. }
  12245. return Ok(jw);
  12246. }
  12247. /// <summary>
  12248. /// 报批行程生成
  12249. /// </summary>
  12250. /// <param name="dto"></param>
  12251. /// <returns></returns>
  12252. [HttpPost]
  12253. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  12254. {
  12255. var jw = JsonView(false);
  12256. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  12257. if (group == null)
  12258. {
  12259. jw.Msg = "暂无该团组!";
  12260. return Ok(jw);
  12261. }
  12262. //黑屏代码数据
  12263. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  12264. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  12265. {
  12266. jw.Msg = "黑屏代码有误!";
  12267. return Ok(jw);
  12268. }
  12269. foreach (DataRow row in dtBlack.Rows)
  12270. {
  12271. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  12272. {
  12273. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  12274. return Ok(jw);
  12275. }
  12276. }
  12277. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  12278. var resultArr = new ArrayList();
  12279. if (officialActivitiesArr.Count == 0)
  12280. {
  12281. jw.Msg = "暂无公务出访信息!";
  12282. return Ok(jw);
  12283. }
  12284. try
  12285. {
  12286. _sqlSugar.BeginTran();
  12287. DeleteApprovalJourney(new
  12288. Domain.Dtos.Groups.DeleteApprovalJourney
  12289. {
  12290. Diid = dto.Diid,
  12291. uesrId = dto.Userid
  12292. });
  12293. var stay = "-";
  12294. var cityPath = "-";
  12295. //添加城市路径以及住宿地
  12296. //黑屏代码获取时间区间
  12297. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  12298. var empty = "【未收入该三字码!请机票同事录入】";
  12299. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  12300. for (int i = 0; i < timeArr.Count; i++)
  12301. {
  12302. stay = "-";
  12303. cityPath = "-";
  12304. var chiarr = new List<Grp_ApprovalTravelDetails>();
  12305. DateTime NewData = DateTime.Parse(timeArr[i]);
  12306. 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();
  12307. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  12308. if (tbSelect.Length > 0)
  12309. {
  12310. List<string> threeCodeStr = new List<string>();
  12311. bool isTrade = false;
  12312. string trip = string.Empty;
  12313. var rowLast = tbSelect.Last();
  12314. var rowFirst = tbSelect.First();
  12315. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  12316. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  12317. var takeOffTime = DateTime.Parse(timeArr[i]);
  12318. var fallToTime = DateTime.Parse(timeArr[i]);
  12319. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  12320. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  12321. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  12322. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  12323. foreach (var item in tbSelect)
  12324. {
  12325. var start = string.Empty;
  12326. var end = string.Empty;
  12327. var threeCode = item["Three"].ToString() ?? "";
  12328. if (threeCode.Length == 6)
  12329. {
  12330. start = threeCode.Substring(0, 3);
  12331. end = threeCode.Substring(3, 3);
  12332. if (threeCodeStr.Count == 0)
  12333. {
  12334. threeCodeStr.Add(start);
  12335. threeCodeStr.Add(end);
  12336. }
  12337. else
  12338. {
  12339. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  12340. {
  12341. threeCodeStr.Add(end);
  12342. }
  12343. else
  12344. {
  12345. threeCodeStr.Add(start);
  12346. threeCodeStr.Add(end);
  12347. }
  12348. }
  12349. }
  12350. //处理机票信息
  12351. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  12352. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  12353. if (start_Object == null)
  12354. {
  12355. start_Object = new Res_ThreeCode()
  12356. {
  12357. AirPort = empty,
  12358. AirPort_En = empty,
  12359. City = empty,
  12360. Country = empty,
  12361. Four = empty,
  12362. Three = empty,
  12363. };
  12364. }
  12365. if (end_Object == null)
  12366. {
  12367. end_Object = new Res_ThreeCode()
  12368. {
  12369. AirPort = empty,
  12370. AirPort_En = empty,
  12371. City = empty,
  12372. Country = empty,
  12373. Four = empty,
  12374. Three = empty,
  12375. };
  12376. }
  12377. //机型判断
  12378. string airModel = item["AirModel"].ToString();
  12379. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  12380. string flightTime = item["FlightTime"].ToString();
  12381. if (flightTime!.Contains(":"))
  12382. {
  12383. flightTime = flightTime.Replace(":", "小时");
  12384. flightTime += "分钟";
  12385. }
  12386. if (flightTime.Contains("H"))
  12387. {
  12388. flightTime = flightTime.Replace("H", "小时");
  12389. }
  12390. if (flightTime.Contains("M"))
  12391. {
  12392. flightTime = flightTime.Replace("M", "分钟");
  12393. }
  12394. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  12395. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  12396. {
  12397. flightTime = flightDataTime.Hour > 0
  12398. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  12399. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  12400. ? flightDataTime.Minute.ToString() + "分钟" : "";
  12401. }
  12402. //航班号
  12403. string flightcode = item["Fliagtcode"].ToString();
  12404. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  12405. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  12406. if (aircompany == null)
  12407. {
  12408. aircompany = new Res_AirCompany
  12409. {
  12410. CnName = hsEmpty,
  12411. EnName = hsEmpty,
  12412. ShortCode = hsEmpty,
  12413. };
  12414. }
  12415. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  12416. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  12417. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  12418. if (isTrade)
  12419. {
  12420. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  12421. }
  12422. else
  12423. {
  12424. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  12425. }
  12426. }
  12427. chiarr.Add(new Grp_ApprovalTravelDetails
  12428. {
  12429. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  12430. CreateTime = DateTime.Now,
  12431. CreateUserId = dto.Userid,
  12432. ParentId = 0,
  12433. Details = trip
  12434. });
  12435. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  12436. var last = threeCodeStr.Last();
  12437. foreach (var item in threeCodeStr)
  12438. {
  12439. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  12440. if (item.Equals(last))
  12441. {
  12442. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  12443. }
  12444. }
  12445. cityPath = cityPath.Trim('-');
  12446. }
  12447. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  12448. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  12449. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  12450. appro.Diid = dto.Diid;
  12451. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  12452. appro.Id = thisId;
  12453. appro.CreateUserId = dto.Userid;
  12454. appro.CreateTime = DateTime.Now;
  12455. foreach (var item in gwinfo)
  12456. {
  12457. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  12458. chi.Details = "拜访" + item.Client;
  12459. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  12460. {
  12461. chi.Details += "," + item.ReqSample;
  12462. }
  12463. chi.ParentId = thisId;
  12464. chi.Time = item.Time;
  12465. chiarr.Add(chi);
  12466. }
  12467. if (chiarr.Count < 5)
  12468. {
  12469. for (int j = chiarr.Count; j < 5; j++)
  12470. {
  12471. chiarr.Add(new
  12472. Grp_ApprovalTravelDetails());
  12473. }
  12474. }
  12475. resultArr.Add(new
  12476. {
  12477. appro.Id,
  12478. appro.Date,
  12479. appro.Diid,
  12480. chiList = chiarr.Select(x1 => new
  12481. {
  12482. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  12483. x1.Details,
  12484. x1.ParentId,
  12485. x1.Id
  12486. })
  12487. });
  12488. }
  12489. _sqlSugar.CommitTran();
  12490. jw = JsonView(true, "生成成功!", resultArr);
  12491. }
  12492. catch (Exception ex)
  12493. {
  12494. jw.Code = 400;
  12495. jw.Msg = "生成失败!" + ex.Message;
  12496. }
  12497. return Ok(jw);
  12498. }
  12499. /// <summary>
  12500. /// 报批行程word导出
  12501. /// </summary>
  12502. /// <param name="dto"></param>
  12503. /// <returns></returns>
  12504. [HttpPost]
  12505. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  12506. {
  12507. var jw = JsonView(false);
  12508. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  12509. if (group == null)
  12510. {
  12511. jw.Msg = "暂无该团组!";
  12512. return Ok(jw);
  12513. }
  12514. //模板路径
  12515. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  12516. //载入模板
  12517. Document doc = new Document(tempPath);
  12518. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  12519. //获取所填表格的序数
  12520. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  12521. Aspose.Words.Tables.Row titleRowClone = null;
  12522. Aspose.Words.Tables.Row CenterRowClone = null;
  12523. int index = 0;
  12524. int indexChi = 0;
  12525. int SetIndex = 0;
  12526. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  12527. //获取数据,放到datatable
  12528. foreach (var item in ApprovalTravelArr)
  12529. {
  12530. if (index > 0)
  12531. {
  12532. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  12533. tableOne.AppendChild(titleRowClone);
  12534. }
  12535. var textTime = item.Date;
  12536. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  12537. SetCells(tableOne, doc, SetIndex, 0, textTime);
  12538. SetIndex++;
  12539. if (ChiRep.Count > 0)
  12540. {
  12541. foreach (var itemChi in ChiRep)
  12542. {
  12543. var txtTime = itemChi.Time;
  12544. var txtDetail = itemChi.Details;
  12545. if (indexChi > 0)
  12546. {
  12547. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  12548. tableOne.AppendChild(CenterRowClone);
  12549. }
  12550. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  12551. {
  12552. SetCells(tableOne, doc, SetIndex, 0, "");
  12553. SetCells(tableOne, doc, SetIndex, 1, "");
  12554. indexChi++;
  12555. SetIndex++;
  12556. break;
  12557. }
  12558. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  12559. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  12560. indexChi++;
  12561. SetIndex++;
  12562. }
  12563. }
  12564. else
  12565. {
  12566. if (indexChi > 0)
  12567. {
  12568. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  12569. tableOne.AppendChild(CenterRowClone);
  12570. }
  12571. SetCells(tableOne, doc, SetIndex, 0, "");
  12572. SetCells(tableOne, doc, SetIndex, 1, "");
  12573. indexChi++;
  12574. SetIndex++;
  12575. }
  12576. index++;
  12577. }
  12578. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  12579. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  12580. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  12581. jw.Code = 200;
  12582. jw.Msg = "";
  12583. return Ok(jw);
  12584. }
  12585. private string intToString(int numberVal)
  12586. {
  12587. string numberval = numberVal.ToString();
  12588. Dictionary<char, string> Number = new Dictionary<char, string>();
  12589. Number.Add('1', "一");
  12590. Number.Add('2', "二");
  12591. Number.Add('3', "三");
  12592. Number.Add('4', "四");
  12593. Number.Add('5', "五");
  12594. Number.Add('6', "六");
  12595. Number.Add('7', "七");
  12596. Number.Add('8', "八");
  12597. Number.Add('9', "九");
  12598. string stringNumberVal = string.Empty;
  12599. for (int i = 0; i < numberval.Length; i++)
  12600. {
  12601. if (i == 0)
  12602. {
  12603. stringNumberVal += Number[numberval[i]];
  12604. }
  12605. else if (i >= 1)
  12606. {
  12607. if (numberval[i] == '0')
  12608. {
  12609. stringNumberVal = "十";
  12610. }
  12611. else
  12612. {
  12613. stringNumberVal += "十" + Number[numberval[i]];
  12614. }
  12615. }
  12616. }
  12617. return stringNumberVal;
  12618. }
  12619. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  12620. {
  12621. //获取table中的某个单元格,从0开始
  12622. Cell lshCell = table.Rows[rows].Cells[cells];
  12623. //将单元格中段落移除
  12624. foreach (Node item in lshCell.Paragraphs)
  12625. {
  12626. lshCell.Paragraphs.Remove(item);
  12627. }
  12628. if (val.Contains("\r\n"))
  12629. {
  12630. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  12631. foreach (var item in spArr)
  12632. {
  12633. //新建一个段落
  12634. Paragraph p = new Paragraph(doc);
  12635. var r = new Run(doc, item);
  12636. //把设置的值赋给之前新建的段落
  12637. p.AppendChild(r);
  12638. //将此段落加到单元格内
  12639. lshCell.AppendChild(p);
  12640. }
  12641. }
  12642. else
  12643. {
  12644. //新建一个段落
  12645. Paragraph p = new Paragraph(doc);
  12646. var r = new Run(doc, val);
  12647. //把设置的值赋给之前新建的段落
  12648. p.AppendChild(r);
  12649. //将此段落加到单元格内
  12650. lshCell.AppendChild(p);
  12651. }
  12652. }
  12653. [HttpPost]
  12654. public async Task<IActionResult> ServerHttp(string paramStr)
  12655. {
  12656. paramStr = paramStr.TrimEnd('\'');
  12657. paramStr = paramStr.TrimStart('\'');
  12658. JsonView jw = JsonView(false);
  12659. JObject param = JObject.Parse(paramStr);
  12660. if (!param.ContainsKey("url"))
  12661. {
  12662. jw.Msg = "url null";
  12663. return Ok(jw);
  12664. }
  12665. string url = param["url"]!.ToString();
  12666. var methon = "get";
  12667. Dictionary<string, string> bodyValues = null;
  12668. Dictionary<string, string> headValues = null;
  12669. if (param.ContainsKey("methon"))
  12670. {
  12671. methon = param["methon"]!.ToString();
  12672. }
  12673. if (param.ContainsKey("header"))
  12674. {
  12675. var header = param["header"]!.ToString();
  12676. JObject headerJobject = JObject.Parse(header);
  12677. headValues = new Dictionary<string, string>();
  12678. foreach (JProperty item in headerJobject.Properties())
  12679. {
  12680. var value = item.Value.ToString();
  12681. var head = item.Path;
  12682. headValues.Add(head, value);
  12683. }
  12684. }
  12685. if (param.ContainsKey("body"))
  12686. {
  12687. var body = param["body"]!.ToString();
  12688. bodyValues = new Dictionary<string, string>();
  12689. JObject bodyJobject = JObject.Parse(body);
  12690. foreach (JProperty item in bodyJobject.Properties())
  12691. {
  12692. var value = item.Value.ToString();
  12693. var head = item.Path;
  12694. bodyValues.Add(head, value);
  12695. }
  12696. }
  12697. HttpClient client = new HttpClient();
  12698. string responseString = string.Empty;
  12699. if (param.ContainsKey("isJson"))
  12700. {
  12701. }
  12702. if (headValues != null)
  12703. {
  12704. foreach (var item in headValues.Keys)
  12705. {
  12706. client.DefaultRequestHeaders.Add(item, headValues[item]);
  12707. }
  12708. }
  12709. try
  12710. {
  12711. if (methon == "get")
  12712. {
  12713. responseString = await client.GetStringAsync(url);
  12714. }
  12715. else if (methon == "post")
  12716. {
  12717. if (bodyValues == null)
  12718. {
  12719. jw.Msg = "methon post body null";
  12720. return Ok(jw);
  12721. }
  12722. // 数据转化为 key=val 格式
  12723. var content = new FormUrlEncodedContent(bodyValues);
  12724. var response = await client.PostAsync(url, content);
  12725. // 获取数据
  12726. responseString = await response.Content.ReadAsStringAsync();
  12727. }
  12728. else
  12729. {
  12730. jw.Msg = "methon error";
  12731. }
  12732. jw = JsonView(true, "success", responseString);
  12733. }
  12734. catch (Exception ex)
  12735. {
  12736. jw.Msg = "error " + ex.Message;
  12737. jw.Data = ex.StackTrace;
  12738. }
  12739. finally
  12740. {
  12741. client.Dispose();
  12742. }
  12743. return Ok(jw);
  12744. }
  12745. #endregion
  12746. // /// <summary>
  12747. // ///
  12748. // /// </summary>
  12749. // /// <param name="_dto"></param>
  12750. // /// <returns></returns>
  12751. // [HttpPost]
  12752. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12753. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12754. // {
  12755. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12756. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  12757. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  12758. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12759. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  12760. // dic_psg.Add("客人", 974);
  12761. // dic_psg.Add("司机", 975);
  12762. // dic_psg.Add("导游", 976);
  12763. // dic_psg.Add("公司内部人员", 977);
  12764. // dic_psg.Add("司机/导游/公司内部人员", 978);
  12765. // foreach (var item in list_visa)
  12766. // {
  12767. // Grp_VisaInfo temp = new Grp_VisaInfo();
  12768. // temp.Id = item.Id;
  12769. // temp.DIId = item.DIId;
  12770. // temp.VisaClient = item.VisaClient;
  12771. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  12772. // temp.VisaCurrency = item.VisaCurrency;
  12773. // temp.IsThird = item.IsThird;
  12774. // if (dic_psg.ContainsKey(item.PassengerType))
  12775. // {
  12776. // temp.PassengerType = dic_psg[item.PassengerType];
  12777. // }
  12778. // else {
  12779. // temp.PassengerType = -1;
  12780. // }
  12781. // temp.VisaNumber = item.VisaNumber;
  12782. // temp.VisaFreeNumber = item.VisaFreeNumber;
  12783. // temp.CreateUserId = item.Operators;
  12784. // DateTime dt_ct;
  12785. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  12786. // if (b_ct)
  12787. // {
  12788. // temp.CreateTime = dt_ct;
  12789. // }
  12790. // else
  12791. // {
  12792. // temp.CreateTime = DateTime.Now;
  12793. // }
  12794. // temp.DeleteTime = "";
  12795. // temp.DeleteUserId = 0;
  12796. // temp.Remark = item.Remark;
  12797. // if (string.IsNullOrEmpty(temp.Remark)) {
  12798. // temp.Remark = "";
  12799. // }
  12800. // temp.IsDel = item.IsDel;
  12801. // temp.VisaDescription = item.VisaAttachment;
  12802. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  12803. //([Id]
  12804. // ,[DIId]
  12805. // ,[VisaClient]
  12806. // ,[VisaPrice]
  12807. // ,[VisaCurrency]
  12808. // ,[IsThird]
  12809. // ,[PassengerType]
  12810. // ,[VisaNumber]
  12811. // ,[VisaFreeNumber]
  12812. // ,[CreateUserId]
  12813. // ,[CreateTime]
  12814. // ,[DeleteTime]
  12815. // ,[DeleteUserId]
  12816. // ,[Remark]
  12817. // ,[IsDel]
  12818. // ,[visaDescription])
  12819. // VALUES
  12820. // ({0},{1},'{2}',{3},{4}
  12821. //,{5},{6},{7},{8},{9}
  12822. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  12823. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  12824. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  12825. //);
  12826. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  12827. // }
  12828. // return Ok(JsonView(true, "操作成功!"));
  12829. // }
  12830. /// <summary>
  12831. /// 123132123
  12832. /// </summary>
  12833. /// <param name="_dto"></param>
  12834. /// <returns></returns>
  12835. [HttpPost]
  12836. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12837. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12838. {
  12839. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12840. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  12841. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  12842. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12843. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  12844. dicDetail.Add(789, 1034);
  12845. dicDetail.Add(790, 1035);
  12846. dicDetail.Add(791, 1036);
  12847. dicDetail.Add(792, 1037);
  12848. dicDetail.Add(793, 1038);
  12849. dicDetail.Add(794, 1039);
  12850. dicDetail.Add(795, 1040);
  12851. dicDetail.Add(796, 1041);
  12852. dicDetail.Add(797, 1042);
  12853. dicDetail.Add(798, 1043);
  12854. dicDetail.Add(801, 1044);
  12855. dicDetail.Add(802, 1045);
  12856. dicDetail.Add(803, 1046);
  12857. Dictionary<int, int> dic = new Dictionary<int, int>();
  12858. dic.Add(806, 1027);
  12859. dic.Add(807, 1028);
  12860. dic.Add(808, 1029);
  12861. dic.Add(809, 1030);
  12862. dic.Add(810, 1031);
  12863. dic.Add(811, 1032);
  12864. dic.Add(812, 1033);
  12865. foreach (var item in list_visa)
  12866. {
  12867. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  12868. temp.Coefficient = item.coefficient;
  12869. DateTime dtCrt;
  12870. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  12871. if (b1)
  12872. {
  12873. temp.CreateTime = dtCrt;
  12874. }
  12875. else
  12876. {
  12877. temp.CreateTime = DateTime.Now;
  12878. }
  12879. temp.CreateUserId = item.Operators;
  12880. temp.DeleteTime = "";
  12881. temp.DeleteUserId = 0;
  12882. temp.DiId = int.Parse(item.DIID);
  12883. temp.FilePath = item.FilePath;
  12884. temp.IsDel = item.IsDel;
  12885. temp.Price = item.Price;
  12886. temp.PriceCount = 1;
  12887. temp.PriceCurrency = item.Currency;
  12888. int detailId = 0;
  12889. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  12890. {
  12891. detailId = dicDetail[item.PriceTypeDetail];
  12892. }
  12893. temp.PriceDetailType = detailId;
  12894. temp.PriceDt = DateTime.Now;
  12895. temp.PriceName = item.PriceName;
  12896. temp.PriceSum = item.Price;
  12897. int tid = 0;
  12898. if (dic.ContainsKey(item.PriceType))
  12899. {
  12900. tid = dic[item.PriceType];
  12901. }
  12902. temp.PriceType = tid;
  12903. temp.Remark = item.Remark;
  12904. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  12905. }
  12906. return Ok(JsonView(true, "操作成功!"));
  12907. }
  12908. }
  12909. }