| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869 |
- /*
- * 机具激活限制信息
- */
- using System;
- using System.Web;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Linq;
- using System.Threading.Tasks;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.AspNetCore.Http;
- using Microsoft.Extensions.Logging;
- using Microsoft.Extensions.Options;
- using MySystem.Models;
- using System.Data;
- using Library;
- using LitJson;
- using MySystemLib;
- using System.Text.RegularExpressions;
- using System.Security.Cryptography;
- using System.Security.Cryptography.X509Certificates;
- using System.Text;
- using System.Net;
- using System.Net.Security;
- using System.IO;
- namespace MySystem.Areas.Admin.Controllers
- {
- [Area("Admin")]
- [Route("Admin/[controller]/[action]")]
- public class SysToolsController : BaseController
- {
- public SysToolsController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
- {
- }
- #region 关联上下级
- public IActionResult RelationForUser(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string RelationForUserDo(string MakerCode, string ParentMakerCode, int IsTeam = 1)
- {
- if (string.IsNullOrEmpty(MakerCode))
- {
- return "请输入创客编号";
- }
- if (string.IsNullOrEmpty(ParentMakerCode))
- {
- return "请输入上级创客编号";
- }
- MakerCode = MakerCode.ToUpper();
- ParentMakerCode = ParentMakerCode.ToUpper();
- Users puser = db.Users.FirstOrDefault(m => m.MakerCode == ParentMakerCode);
- if (puser != null)
- {
- Users user = db.Users.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (user != null)
- {
- user.ParentUserId = puser.Id;
- user.ParentNav = puser.ParentNav + "," + puser.Id + ",";
- if (IsTeam == 1)
- {
- RelationForUserSub(db, user.Id, user);
- }
- db.SaveChanges();
- function.WriteLog(DateTime.Now.ToString() + ":下级:" + MakerCode + ", 上级:" + ParentMakerCode, "换线日志");
- return "success";
- }
- return "创客编号不存在";
- }
- return "上级创客编号不存在";
- }
- private void RelationForUserSub(WebCMSEntities dbnew, int ParentUserId, Users puser)
- {
- var subusers = dbnew.Users.Select(m => new { m.Id, m.ParentUserId, m.ParentNav }).Where(m => m.ParentUserId == ParentUserId).ToList();
- foreach (var subuser in subusers)
- {
- Users user = dbnew.Users.FirstOrDefault(m => m.Id == subuser.Id);
- if (user != null)
- {
- user.ParentUserId = puser.Id;
- user.ParentNav = puser.ParentNav + "," + puser.Id + ",";
- RelationForUserSub(dbnew, user.Id, user);
- }
- }
- }
- #endregion
- #region 机具补录
- public IActionResult CheckMachine(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string CheckMachineDo(string MakerCode, string PosSn, int AddActPrize = 0, int IsSend = 0)
- {
- if (string.IsNullOrEmpty(MakerCode))
- {
- return "请输入创客编号";
- }
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- var MerNo = "";
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == PosSn);
- KqProducts kqProducts = db.KqProducts.FirstOrDefault(m => m.Id == pos.BrandId);
- if (pos == null)
- {
- return "机具SN不存在";
- }
- Users user = db.Users.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (user == null)
- {
- return "创客编号不存在";
- }
- if (pos.PreUserId > 0)
- {
- if (pos.BuyUserId == 0)
- {
- pos.BuyUserId = user.Id;
- }
- if (pos.UserId == 0)
- {
- pos.UserId = user.Id;
- }
- }
- if (pos.BindingState == 0)
- {
- SpModels.BindRecord bind = spdb.BindRecord.FirstOrDefault(m => m.MerSnNo == PosSn);
- if (bind != null)
- {
- pos.BindingState = 1;
- pos.BindingTime = bind.CreateTime;
- db.SaveChanges();
- MerNo = bind.MerNo;
- }
- }
- decimal CreditTrade = 0;
- string BindingTime = pos.BindingTime == null ? DateTime.Now.AddMonths(-1).ToString("yyyyMM") : pos.BindingTime.Value.ToString("yyyyMM");
- string SpTradeRecordId = function.ReadInstance("/PublicParams/SpTradeRecordId" + BindingTime + ".txt");
- int StartId = int.Parse(function.CheckInt(SpTradeRecordId));
- bool check = spdb.TradeRecord.Any(m => m.Id > StartId && m.TradeSnNo == pos.PosSn);
- if (check)
- {
- if (pos.BrandId == 1)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "1" && m.SerEntryMode != "N" && m.MerNo.StartsWith("M700")).Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 2)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "2").Sum(m => m.TradeAmount);
- }
- else if (pos.BrandId == 3)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "1" && m.SerEntryMode != "N" && m.MerNo.StartsWith("M900")).Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 4 || pos.BrandId == 5)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "4").Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 6)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "6").Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 7)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "7" && m.TradeStatus == "00").Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 8)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "8").Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 9)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "9").Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 10 || pos.BrandId == 11)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "10").Sum(m => m.TradeAmount);
- }
- else if (pos.BrandId == 12)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "12").Sum(m => m.TradeAmount);
- }
- pos.CreditTrade = CreditTrade;
- db.SaveChanges();
- }
- if (AddActPrize == 1)
- {
- if (pos.BuyUserId == 0)
- {
- return "机具未划拨,无法补录激活奖励";
- }
- if (string.IsNullOrEmpty(pos.SeoKeyword) || pos.SeoKeyword == "0")
- {
- bool has = spdb.ActivateRecord.Any(m => m.SnNo == pos.PosSn);
- if (has)
- {
- SpModels.ActivateRecord chkAct = spdb.ActivateRecord.Where(m => m.SnNo == pos.PosSn).OrderByDescending(m => m.Id).FirstOrDefault() ?? new SpModels.ActivateRecord();
- pos.SeoKeyword = chkAct.SeoTitle;
- db.SaveChanges();
- }
- }
- if (pos.BindingTime != null && pos.ActivationTime != null)
- {
- TimeSpan ts = pos.ActivationTime.Value - pos.BindingTime.Value;
- if (ts.TotalDays <= 30 || SysUserName == "admin")
- {
- AddAct(pos.Id);
- }
- }
- }
- decimal CheckMoney = 1000;
- if (pos.BrandId == 6)
- {
- CheckMoney = 5000;
- }
- if (pos.BuyUserId > 0)
- {
- if (pos.CreditTrade < CheckMoney)
- {
- return "该机具贷记卡累计交易不足" + CheckMoney;
- }
- if (pos.BindingTime != null && pos.ActivationTime != null)
- {
- TimeSpan ts = pos.ActivationTime.Value - pos.BindingTime.Value;
- if (ts.TotalDays > 30 && SysUserName != "admin")
- {
- return "机具划拨后已超过30天";
- }
- }
- if (pos.CreditTrade >= CheckMoney && pos.ActivationState == 0)
- {
- pos.ActivationState = 1;
- pos.ActivationTime = DateTime.Now;
- PosMerchantInfo mer = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
- if (pos.ActivationState == 1 && mer != null)
- {
- mer.ActiveStatus = 1;
- mer.MerStandardDate = DateTime.Now;
- }
- }
- else if (pos.CreditTrade >= CheckMoney && pos.ActivationState == 1)
- {
- if (AddActPrize == 1)
- {
- if (IsSend == 1)
- {
- RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
- {
- UserId = pos.BuyUserId, //接收创客
- MsgType = 2,
- Title = "补录成功通知", //标题
- Summary = "您的 " + kqProducts.Name + " SN:" + pos.PosSn + "已经成功补录,请查收。",
- CreateDate = DateTime.Now,
- }));
- }
- return "激活奖励已补录";
- }
- else
- {
- return "数据正常,无需补录";
- }
- }
- db.SaveChanges();
- return "success";
- }
- pos.UserId = user.Id;
- pos.BuyUserId = user.Id;
- if (pos.CreditTrade >= CheckMoney && pos.ActivationState == 0 && (pos.BindingTime > DateTime.Now.AddDays(-30) || SysUserName == "admin"))
- {
- pos.ActivationState = 1;
- pos.ActivationTime = DateTime.Now;
- }
- PosMerchantInfo merchant = new PosMerchantInfo();
- if (!string.IsNullOrEmpty(MerNo))
- {
- merchant = db.PosMerchantInfo.FirstOrDefault(m => m.KqMerNo == MerNo);
- if (merchant == null)
- {
- int TopUserId = 0;
- if (!string.IsNullOrEmpty(user.ParentNav))
- {
- TopUserId = int.Parse(user.ParentNav.Trim(',').Replace(",,", ",").Split(',')[0]);
- }
- SpModels.BindRecord bind = spdb.BindRecord.FirstOrDefault(m => m.MerNo == MerNo);
- if (bind == null)
- {
- return "该机具尚未绑定";
- }
- SpModels.Merchants Mer = spdb.Merchants.FirstOrDefault(m => m.MerNo == MerNo);
- if (Mer == null)
- {
- return "该机具尚未绑定";
- }
- PosMerchantInfo add = db.PosMerchantInfo.Add(new PosMerchantInfo()
- {
- CreateDate = Mer.CreateTime,
- UpdateDate = Mer.UpdateTime,
- TopUserId = TopUserId,
- MerUserType = user.MerchantType,
- BrandId = int.Parse(Mer.ProductType),
- SnStoreId = pos.StoreId,
- SnType = pos.PosSnType,
- UserId = user.Id,
- MgrName = Mer.AgentName,
- MerStatus = 1,
- KqSnNo = Mer.SnNo,
- KqMerNo = Mer.MerNo,
- MerIdcardNo = Mer.MerIdcardNo,
- MerRealName = Mer.MerRealName,
- MerchantMobile = Mer.MerMobile,
- MerchantName = Mer.MerName,
- MerchantNo = Mer.MerNo,
- }).Entity;
- MachineForMerNo forMerNo = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == Mer.MerNo);
- if (forMerNo == null)
- {
- forMerNo = db.MachineForMerNo.Add(new MachineForMerNo()
- {
- MerNo = Mer.MerNo,
- SnId = pos.Id,
- }).Entity;
- }
- else
- {
- forMerNo.SnId = pos.Id;
- }
- }
- }
- else
- {
- if (pos.BindMerchantId > 0)
- {
- merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
- }
- else
- {
- return "找不到机具所属商户";
- }
- }
- merchant.UserId = user.Id;
- if (pos.ActivationState == 1)
- {
- merchant.ActiveStatus = 1;
- merchant.MerStandardDate = DateTime.Now;
- }
- if (pos.BindMerchantId == 0)
- {
- pos.BindMerchantId = merchant.Id;
- }
- db.SaveChanges();
- function.WriteLog(DateTime.Now.ToString() + "\n" + SysUserName + "\nMakerCode:" + MakerCode + ", PosSn:" + PosSn + ", MerNo:" + MerNo + ", AddActPrize:" + AddActPrize, "机具补录日志");
- return "success";
- }
- public IActionResult CheckMachine2(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string CheckMachine2Do(string MakerCode, string PosSn, string MerNo = "", int AddActPrize = 0)
- {
- if (string.IsNullOrEmpty(MakerCode))
- {
- return "请输入创客编号";
- }
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == PosSn);
- if (pos == null)
- {
- return "机具SN不存在";
- }
- Users user = db.Users.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (user == null)
- {
- return "创客编号不存在";
- }
- if (pos.BindingState == 0)
- {
- SpModels.BindRecord bind = spdb.BindRecord.FirstOrDefault(m => m.MerSnNo == PosSn);
- if (bind != null)
- {
- pos.BindingState = 1;
- pos.BindingTime = bind.CreateTime;
- db.SaveChanges();
- MerNo = bind.MerNo;
- }
- }
- decimal CreditTrade = 0;
- bool check = spdb.TradeRecord.Any(m => m.TradeSnNo == pos.PosSn);
- if (check)
- {
- string BindingTime = pos.BindingTime == null ? DateTime.Now.AddMonths(-1).ToString("yyyyMM") : pos.BindingTime.Value.ToString("yyyyMM");
- string SpTradeRecordId = function.ReadInstance("/PublicParams/SpTradeRecordId" + BindingTime + ".txt");
- int StartId = int.Parse(function.CheckInt(SpTradeRecordId));
- if (pos.BrandId == 1)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "1" && m.SerEntryMode != "N" && m.MerNo.StartsWith("M700")).Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 2)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "2").Sum(m => m.TradeAmount);
- }
- else if (pos.BrandId == 3)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "1" && m.SerEntryMode != "N" && m.MerNo.StartsWith("M900")).Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 4 || pos.BrandId == 5)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "4").Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 6)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "6").Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 8)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "8").Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 9)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "9").Sum(m => m.TradeAmount) / 100;
- }
- else if (pos.BrandId == 10 || pos.BrandId == 11)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "10").Sum(m => m.TradeAmount);
- }
- else if (pos.BrandId == 12)
- {
- CreditTrade = spdb.TradeRecord.Where(m => m.Id > StartId && m.TradeSnNo == pos.PosSn && m.ProductType == "12").Sum(m => m.TradeAmount);
- }
- pos.CreditTrade = CreditTrade;
- db.SaveChanges();
- }
- if (AddActPrize == 1)
- {
- if (string.IsNullOrEmpty(pos.SeoKeyword) || pos.SeoKeyword == "0")
- {
- bool has = spdb.ActivateRecord.Any(m => m.SnNo == pos.PosSn);
- if (has)
- {
- SpModels.ActivateRecord chkAct = spdb.ActivateRecord.Where(m => m.SnNo == pos.PosSn).OrderByDescending(m => m.Id).FirstOrDefault() ?? new SpModels.ActivateRecord();
- pos.SeoKeyword = chkAct.SeoTitle;
- db.SaveChanges();
- }
- }
- AddAct(pos.Id);
- }
- if (pos.BuyUserId > 0)
- {
- if (pos.CreditTrade < 1000)
- {
- db.SaveChanges();
- return "该机具贷记卡累计交易不足1000";
- }
- if (pos.CreditTrade >= 1000 && pos.ActivationState == 0)
- {
- pos.ActivationState = 1;
- pos.ActivationTime = DateTime.Now;
- PosMerchantInfo mer = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
- if (pos.ActivationState == 1 && mer != null)
- {
- mer.ActiveStatus = 1;
- mer.MerStandardDate = DateTime.Now;
- }
- }
- else if (pos.CreditTrade >= 1000 && pos.ActivationState == 1)
- {
- if (AddActPrize == 1)
- {
- return "激活奖励已补录";
- }
- else
- {
- return "数据正常,无需补录";
- }
- }
- db.SaveChanges();
- return "success";
- }
- pos.UserId = user.Id;
- pos.BuyUserId = user.Id;
- if (pos.CreditTrade >= 1000 && pos.ActivationState == 0)
- {
- pos.ActivationState = 1;
- pos.ActivationTime = DateTime.Now;
- }
- PosMerchantInfo merchant = new PosMerchantInfo();
- if (!string.IsNullOrEmpty(MerNo))
- {
- merchant = db.PosMerchantInfo.FirstOrDefault(m => m.KqMerNo == MerNo);
- if (merchant == null)
- {
- int TopUserId = 0;
- if (!string.IsNullOrEmpty(user.ParentNav))
- {
- TopUserId = int.Parse(user.ParentNav.Trim(',').Replace(",,", ",").Split(',')[0]);
- }
- SpModels.BindRecord bind = spdb.BindRecord.FirstOrDefault(m => m.MerNo == MerNo);
- if (bind == null)
- {
- return "该机具尚未绑定";
- }
- SpModels.Merchants Mer = spdb.Merchants.FirstOrDefault(m => m.MerNo == MerNo);
- if (Mer == null)
- {
- return "该机具尚未绑定";
- }
- PosMerchantInfo add = db.PosMerchantInfo.Add(new PosMerchantInfo()
- {
- CreateDate = Mer.CreateTime,
- UpdateDate = Mer.UpdateTime,
- TopUserId = TopUserId,
- MerUserType = user.MerchantType,
- BrandId = int.Parse(Mer.ProductType),
- SnStoreId = pos.StoreId,
- SnType = pos.PosSnType,
- UserId = user.Id,
- MgrName = Mer.AgentName,
- MerStatus = 1,
- KqSnNo = Mer.SnNo,
- KqMerNo = Mer.MerNo,
- MerIdcardNo = Mer.MerIdcardNo,
- MerRealName = Mer.MerRealName,
- MerchantMobile = Mer.MerMobile,
- MerchantName = Mer.MerName,
- MerchantNo = Mer.MerNo,
- }).Entity;
- MachineForMerNo forMerNo = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == Mer.MerNo);
- if (forMerNo == null)
- {
- forMerNo = db.MachineForMerNo.Add(new MachineForMerNo()
- {
- MerNo = Mer.MerNo,
- SnId = pos.Id,
- }).Entity;
- }
- else
- {
- forMerNo.SnId = pos.Id;
- }
- }
- }
- else
- {
- if (pos.BindMerchantId > 0)
- {
- merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
- }
- else
- {
- return "找不到机具所属商户";
- }
- }
- merchant.UserId = user.Id;
- if (pos.ActivationState == 1)
- {
- merchant.ActiveStatus = 1;
- merchant.MerStandardDate = DateTime.Now;
- }
- if (pos.BindMerchantId == 0)
- {
- pos.BindMerchantId = merchant.Id;
- }
- db.SaveChanges();
- return "success";
- }
- public void AddAct(int posid = 0)
- {
- WebCMSEntities db = new WebCMSEntities();
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.ActivationState == 1 && m.Id == posid);
- if (pos != null)
- {
- PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
- if (merchant != null)
- {
- string ParentNav = "";
- Users user = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId);
- if (user != null)
- {
- int GetUserId = user.Id;
- ParentNav = user.ParentNav;
- int TopUserId = 1;
- if (!string.IsNullOrEmpty(ParentNav))
- {
- string[] ParentNavList = ParentNav.Trim(',').Replace(",,", ",").Split(',');
- if (ParentNavList.Length > 1)
- {
- TopUserId = int.Parse(ParentNavList[1]);
- }
- else if (ParentNavList.Length == 1)
- {
- TopUserId = int.Parse(ParentNavList[0]);
- }
- }
- List<decimal> prizes = new List<decimal>();
- decimal ActPrize = decimal.Parse(function.CheckNum(pos.SeoKeyword));
- if (pos.BrandId == 1 || pos.BrandId == 3 || pos.BrandId == 4 || pos.BrandId == 5 || pos.BrandId == 6 || pos.BrandId == 8 || pos.BrandId == 9)
- {
- ActPrize = ActPrize / 100;
- }
- if (ActPrize > 0)
- {
- if (ActPrize == 99)
- {
- ActPrize = 100;
- }
- else if (ActPrize == 199)
- {
- ActPrize = 200;
- }
- else if (ActPrize == 299)
- {
- ActPrize = 300;
- }
- else if (ActPrize == 249)
- {
- ActPrize = 260;
- }
- prizes.Add(ActPrize);
- if (pos.BrandId == 6 && pos.ActivationState == 1 && pos.CreditTrade >= 10000 && pos.BindingTime > DateTime.Now.AddDays(-60))
- {
- prizes.Add(40);
- }
- }
- else if (pos.BrandId == 6 && ActPrize == 0) //立刷首台无押金机返50
- {
- prizes.Add(50);
- }
- else if ((pos.BrandId == 10 || pos.BrandId == 11) && pos.IsFirst == 1 && ActPrize == 0 && (DateTime.Now < DateTime.Parse("2023-05-01 00:00:00") || SysUserName == "admin")) //联动首台无押金机返50
- {
- prizes.Add(50);
- }
- else if (pos.BrandId == 12 && pos.IsFirst == 1 && ActPrize == 0) //盒易付首台无押金机返50
- {
- prizes.Add(50);
- }
- foreach (decimal prize in prizes)
- {
- int ChangeType = prize == 40 ? 12 : 0;
- bool check = db.ActiveReward.Any(m => m.KqSnNo == pos.PosSn && m.RewardAmount == prize);
- if (!check)
- {
- Users machineUser = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new Users();
- db.ActiveReward.Add(new ActiveReward()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = GetUserId, //创客
- MerchantId = pos.BindMerchantId, //商户
- StandardDate = pos.ActivationTime, //达标日期
- RewardAmount = prize, //奖励金额
- BrandId = pos.BrandId, //品牌
- UserNav = ParentNav, //创客父级
- DirectBuddyNo = merchant.UserId, //商户直属创客
- KqMerNo = merchant.KqMerNo, //渠道商户编号
- KqSnNo = pos.PosSn, //渠道SN号
- SnType = pos.PosSnType, //机具类型
- SnApplyUserId = pos.BuyUserId, //机具申请创客
- ActType = 0, //激活类型
- SnStoreId = pos.StoreId, //SN仓库
- RewardTips = "激活奖励", //奖励描述
- Remark = "激活奖励", //备注
- ActDate = pos.ActivationTime, //激活时间
- TopUserId = TopUserId, //顶级创客
- SeoTitle = machineUser.RealName,
- });
- db.SaveChanges();
- string IdBrand = GetUserId + "_" + pos.BrandId;
- UserMachineData userData = db.UserMachineData.FirstOrDefault(m => m.IdBrand == IdBrand);
- if (userData == null)
- {
- userData = db.UserMachineData.Add(new UserMachineData()
- {
- IdBrand = IdBrand,
- }).Entity;
- db.SaveChanges();
- }
- userData.ActProfit += prize;
- db.SaveChanges();
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == GetUserId);
- if (account == null)
- {
- account = db.UserAccount.Add(new UserAccount()
- {
- Id = GetUserId,
- UserId = GetUserId,
- }).Entity;
- db.SaveChanges();
- }
- decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
- decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
- decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
- account.BalanceAmount += prize;
- account.TotalAmount += prize;
- decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
- decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
- decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
- UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = GetUserId, //创客
- ChangeType = ChangeType, //变动类型
- ProductType = pos.BrandId, //产品类型
- ChangeAmount = prize, //变更金额
- BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
- AfterTotalAmount = AfterTotalAmount, //变更后总金额
- BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
- AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
- BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
- AfterBalanceAmount = AfterBalanceAmount, //变更后余额
- }).Entity;
- db.SaveChanges();
- RedisDbconn.Instance.Set("UserAccount:" + GetUserId, account);
- string dateString = pos.ActivationTime.Value.ToString("yyyyMMdd");
- string monthString = pos.ActivationTime.Value.ToString("yyyyMM");
- // 激活奖励列表
- List<string> dates = RedisDbconn.Instance.GetList<string>("ActiveRewardDay:" + GetUserId + ":" + pos.BrandId);
- if (!dates.Contains(dateString))
- {
- RedisDbconn.Instance.AddList("ActiveRewardDay:" + GetUserId + ":" + pos.BrandId, dateString);
- }
- RedisDbconn.Instance.AddNumber("ActiveRewardAmt:" + GetUserId + ":" + pos.BrandId + ":" + dateString, prize);
- List<string> months = RedisDbconn.Instance.GetList<string>("ActiveRewardMonth:" + GetUserId + ":" + pos.BrandId);
- if (!months.Contains(monthString))
- {
- RedisDbconn.Instance.AddList("ActiveRewardMonth:" + GetUserId + ":" + pos.BrandId, monthString);
- }
- RedisDbconn.Instance.AddNumber("ActiveRewardAmt:" + GetUserId + ":" + pos.BrandId + ":" + monthString, prize);
- // 激活奖励详情
- List<int> actPrizeList = RedisDbconn.Instance.GetList<int>("ActiveRewardDetail:" + GetUserId + ":" + pos.BrandId + ":" + dateString);
- if (!actPrizeList.Contains(pos.BindMerchantId))
- {
- RedisDbconn.Instance.AddList("ActiveRewardDetail:" + GetUserId + ":" + pos.BrandId + ":" + dateString, pos.BindMerchantId);
- }
- RedisDbconn.Instance.AddNumber("ActiveRewardAmt:mer:" + pos.BindMerchantId + ":" + pos.BrandId + ":" + dateString, prize);
- //收支明细
- RedisDbconn.Instance.AddList("UserAccountRecord:" + GetUserId + ":1:" + monthString, userAccountRecord);
- RedisDbconn.Instance.AddNumber("UserAccount:" + GetUserId + ":1:" + monthString, prize);
- }
- }
- }
- // }
- }
- }
- db.Dispose();
- }
- #endregion
- #region 设置商户代理
- public IActionResult SetMerAgent(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string SetMerAgentDo(string MakerCode, string PosSn, string MerNo, int IsSend = 0)
- {
- if (string.IsNullOrEmpty(MakerCode))
- {
- return "请输入创客编号";
- }
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- if (string.IsNullOrEmpty(MerNo))
- {
- return "请输入商户编号";
- }
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == PosSn);
- KqProducts kqProducts = db.KqProducts.FirstOrDefault(m => m.Id == pos.BrandId);
- if (pos == null)
- {
- return "机具SN不存在";
- }
- Users user = db.Users.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (user == null)
- {
- return "创客编号不存在";
- }
- PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.KqMerNo == MerNo);
- if (merchant == null)
- {
- return "商户编号不存在";
- }
- pos.SeoTitle = user.Id.ToString();
- pos.UserId = user.Id;
- if (pos.BindMerchantId == 0)
- {
- pos.BindMerchantId = merchant.Id;
- if (IsSend == 1)
- {
- RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
- {
- UserId = pos.BuyUserId, //接收创客
- MsgType = 2,
- Title = "商户型代理设置成功", //标题
- Summary = "您的 " + kqProducts.Name + " SN:" + pos.PosSn + "已经成功给下级代理" + user.RealName + "" + MakerCode + ",设置为商户型代理,设置成功后的新增交易的分润归商户型代理所有",
- CreateDate = DateTime.Now,
- }));
- }
- }
- user.MerchantType = 1;
- merchant.UserId = user.Id;
- merchant.MerUserType = 1;
- db.SetMerchantTypeRecord.Add(new SetMerchantTypeRecord()
- {
- CreateDate = DateTime.Now,
- IsRecyc = (ulong)pos.IsPurchase,
- CreditAmount = pos.CreditTrade,
- PosSnType = pos.PosSnType,
- ActDate = pos.ActivationTime,
- BindDate = pos.BindingTime,
- ActStatus = (ulong)pos.ActivationState,
- BindStatus = (ulong)pos.BindingState,
- MerNo = MerNo,
- PosSn = pos.PosSn,
- Note = "后台设置商户型创客",
- ToUserId = user.Id,
- FromUserId = pos.BuyUserId,
- });
- db.SaveChanges();
- string text = string.Format("设置商户代理,创客编号: " + MakerCode + ",机具SN:" + PosSn + ",商户:" + MerNo + ",操作人:" + SysRealName + ",Time:" + DateTime.Now + "");
- function.WriteLog(text, "SetMerAgent-设置商户代理");//设置商户型代理日志
- return "success";
- }
- #endregion
- #region 取消商户代理
- public IActionResult CancelMerAgent(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string CancelMerAgentDo(string MakerCode, string PosSn, int IsSend = 0)
- {
- if (string.IsNullOrEmpty(MakerCode))
- {
- return "请输入创客编号";
- }
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == PosSn);
- KqProducts kqProducts = db.KqProducts.FirstOrDefault(m => m.Id == pos.BrandId);
- if (pos == null)
- {
- return "机具SN不存在";
- }
- Users user = db.Users.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (user == null)
- {
- return "创客编号不存在";
- }
- PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.KqMerNo == PosSn);
- pos.UserId = pos.BuyUserId;
- merchant.UserId = pos.BuyUserId;
- merchant.MerUserType = 0;
- user.MerchantType = 0;
- db.SaveChanges();
- if (pos.BindMerchantId == 0)
- {
- pos.BindMerchantId = merchant.Id;
- if (IsSend == 1)
- {
- RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
- {
- UserId = pos.BuyUserId, //接收创客
- MsgType = 2,
- Title = "商户型代理取消成功", //标题
- Summary = "您的 " + kqProducts.Name + " SN:" + pos.PosSn + "已给下级代理" + user.RealName + "" + MakerCode + "取消成功",
- CreateDate = DateTime.Now,
- }));
- }
- }
- string text = string.Format("取消商户代理,创客编号: " + user.MakerCode + ",机具SN:" + pos.PosSn + ",操作人:" + SysRealName + ",Time:" + DateTime.Now + "");
- function.WriteLog(text, "CancelMerAgent");//取消商户型代理日志
- return "success";
- }
- #endregion
- #region 查看SP原始数据日志
- public IActionResult SeeSpLog(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- #endregion
- #region 查询机具信息
- public IActionResult SeeSnDetail(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string SeeSnDetailDo(string PosSn)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == PosSn);
- if (pos == null)
- {
- return "机具SN不存在";
- }
- if (pos.Status == -1)
- {
- Users posUsers = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new Users();
- decimal Deposits = decimal.Parse(function.CheckNum(pos.SeoKeyword));
- if (pos.BrandId != 2 && pos.BrandId != 7 && pos.BrandId != 10 && pos.BrandId != 11 && pos.BrandId != 12)
- {
- Deposits = Deposits / 100;
- }
- string DepositGets = "未领取";
- string DepositUsers = "";
- ActiveReward rewards = db.ActiveReward.FirstOrDefault(m => m.KqSnNo == pos.PosSn && m.RewardAmount != 40) ?? new ActiveReward();
- if (rewards.Id > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == rewards.UserId) ?? new Users();
- DepositGets = "已领取";
- DepositUsers = "创客编号:" + user.MakerCode + ",姓名:" + user.RealName;
- }
- string ActiveTimes = rewards.CreateDate == null ? "" : rewards.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- var storeInfo = db.StoreHouse.FirstOrDefault(m => m.Id == pos.StoreId) ?? new StoreHouse();
- string results = "该机具为故障机" + "\n";
- results += "所在仓库:" + storeInfo.StoreNo + "\n";
- results += "仓库名称:" + storeInfo.StoreName + "\n";
- results += "服务费返现实际返现对象:" + DepositUsers + "\n";
- results += "服务费:" + Deposits + "\n";
- results += "是否返现:" + DepositGets + ",领取时间:" + ActiveTimes + "\n";
- return results;
- }
- string merInfo = "";
- string merName = "";
- PosMerchantInfo mer = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
- if (mer != null)
- {
- merInfo = mer.KqMerNo;
- merName = mer.MerchantName;
- }
- else
- {
- merInfo = "未找到商户";
- }
- StoreHouse store = db.StoreHouse.FirstOrDefault(m => m.Id == pos.StoreId) ?? new StoreHouse();
- Users posUser = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new Users();
- Users posSubUser = db.Users.FirstOrDefault(m => m.Id == pos.UserId) ?? new Users();
- int TopUserId = 0;
- if (!string.IsNullOrEmpty(posUser.ParentNav))
- {
- string[] ParentNavs = posUser.ParentNav.Trim(',').Replace(",,", ",").Split(',');
- if (ParentNavs.Length > 1)
- {
- TopUserId = int.Parse(ParentNavs[1]);
- }
- if (ParentNavs.Length == 1)
- {
- TopUserId = int.Parse(ParentNavs[0]);
- }
- }
- Users posTopUser = db.Users.FirstOrDefault(m => m.Id == TopUserId) ?? new Users();
- string bindResult = "", bindTime = "";
- if (pos.BindingState == 0)
- {
- bindResult = "未绑定";
- }
- else
- {
- bindResult = "已绑定";
- bindTime = pos.BindingTime.Value.ToString("yyyy-MM-dd HH:mm:ss");
- }
- string activeResult = "", activeTime = "";
- if (pos.ActivationState == 0)
- {
- if (pos.CreditTrade < 1000)
- {
- activeResult = "未刷满1000";
- }
- else if (pos.TransferTime == null)
- {
- activeResult = "未激活, 需补录";
- }
- }
- else
- {
- activeResult = "已激活";
- activeTime = pos.ActivationTime.Value.ToString("yyyy-MM-dd HH:mm:ss");
- }
- string tradeAmount = pos.CreditTrade.ToString();
- decimal Deposit = decimal.Parse(function.CheckNum(pos.SeoKeyword));
- if (pos.BrandId != 2 && pos.BrandId != 7 && pos.BrandId != 10 && pos.BrandId != 11 && pos.BrandId != 12)
- {
- Deposit = Deposit / 100;
- }
- string DepositGet = "未领取";
- string DepositUser = "";
- string DepositToUser = "";
- decimal headAmount = 0;
- decimal footAmount = 0;
- ActiveReward reward = db.ActiveReward.FirstOrDefault(m => m.KqSnNo == pos.PosSn && m.RewardAmount != 40) ?? new ActiveReward();
- if (reward.Id > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == reward.UserId) ?? new Users();
- DepositGet = "已领取";
- DepositUser = "创客编号:" + user.MakerCode + ",姓名:" + user.RealName;
- var fAmount = db.ActiveReward.FirstOrDefault(m => m.KqSnNo == pos.PosSn && m.ActType == 0);
- if (fAmount != null)
- {
- headAmount = fAmount.RewardAmount;
- }
- var lAmount = db.ActiveReward.FirstOrDefault(m => m.KqSnNo == pos.PosSn && m.ActType == 1);
- if (lAmount != null)
- {
- footAmount = lAmount.RewardAmount;
- }
- }
- string DepositGet6 = "未领取";
- string DepositUser6 = "";
- ActiveReward lisreward = db.ActiveReward.FirstOrDefault(m => m.KqSnNo == pos.PosSn && m.BrandId == 6 && m.RewardAmount == 40) ?? new ActiveReward();
- if (lisreward.Id > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == lisreward.UserId) ?? new Users();
- DepositGet6 = "已领取";
- DepositUser6 = "创客编号:" + user.MakerCode + ",姓名:" + user.RealName;
- }
- string FluxGet6 = "未领取";
- string FluxUser6 = "";
- FluxProfitDetail flux = db.FluxProfitDetail.FirstOrDefault(m => m.SnNo == pos.PosSn) ?? new FluxProfitDetail();
- if (flux.Id > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == flux.UserId) ?? new Users();
- FluxGet6 = "已领取(领取时间:" + flux.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss") + ")";
- FluxUser6 = "创客编号:" + user.MakerCode + ",姓名:" + user.RealName;
- }
- Users touser = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new Users();
- DepositToUser = "创客编号:" + touser.MakerCode + ",姓名:" + touser.RealName;
- string OpenUser10 = "未领取";
- string OpenUser20 = "未领取";
- string Leader10 = "未领取";
- string YYZX5 = "未领取";
- var OpenRewardDetail = db.OpenRewardDetail.Where(m => m.SnNo == pos.PosSn).ToList();
- OpenRewardDetail openreward = OpenRewardDetail.FirstOrDefault(m => m.CreditRewardAmount == 20) ?? new OpenRewardDetail();
- if (openreward.Id > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == openreward.UserId) ?? new Users();
- OpenUser20 = "创客编号:" + user.MakerCode + ",姓名:" + user.RealName + "发放时间:" + openreward.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- }
- openreward = OpenRewardDetail.FirstOrDefault(m => m.CreditRewardAmount == 10) ?? new OpenRewardDetail();
- if (openreward.Id > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == openreward.UserId) ?? new Users();
- OpenUser10 = "创客编号:" + user.MakerCode + ",姓名:" + user.RealName;
- }
- var leader10 = db.UserAccountRecord.FirstOrDefault(m => m.QueryCount == pos.Id && m.ChangeType == 116) ?? new UserAccountRecord();
- if (leader10.Id > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == leader10.UserId) ?? new Users();
- Leader10 = "金额:" + leader10.ChangeAmount + ",创客编号:" + user.MakerCode + ",姓名:" + user.RealName + ",发奖时间:" + leader10.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- }
- var yyzx5 = db.UserAccountRecord.FirstOrDefault(m => m.QueryCount == pos.Id && m.ChangeType == 121) ?? new UserAccountRecord();
- if (yyzx5.Id > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == yyzx5.UserId) ?? new Users();
- YYZX5 = "金额:" + yyzx5.ChangeAmount + ",创客编号:" + user.MakerCode + ",姓名:" + user.RealName + ",发奖时间:" + yyzx5.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- }
- MachineApply apply = db.MachineApply.FirstOrDefault(m => m.SwapSnExpand.Contains(pos.PosSn)) ?? new MachineApply();
- Orders applyorder = db.Orders.FirstOrDefault(m => m.Id == apply.QueryCount) ?? new Orders();
- MachineChangeDetail change = db.MachineChangeDetail.FirstOrDefault(m => m.OutSnNo == pos.PosSn) ?? new MachineChangeDetail();
- string RecycFlag = pos.IsPurchase == 1 ? "已申请循环" : "未申请循环";
- string SendStatus = applyorder.SendStatus == 1 ? "已发货" : "未发货";
- string ApplyDate = apply.CreateDate == null ? "" : apply.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- string SendDate = applyorder.SendDate == null ? "" : applyorder.SendDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- string CreateDate = pos.CreateDate == null ? "" : pos.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- string TransferTime = pos.TransferTime == null ? "" : pos.TransferTime.Value.ToString("yyyy-MM-dd HH:mm:ss");
- string RecycEndDate = pos.RecycEndDate == null ? "" : pos.RecycEndDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- string ActiveTime = reward.CreateDate == null ? "" : reward.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- string ActiveTime6 = lisreward.CreateDate == null ? "" : lisreward.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- string result = "";
- result += "机器持有人顶级:创客编号:" + posTopUser.MakerCode + ",姓名:" + posTopUser.RealName + "\n";
- result += "\n";
- result += "机具SN:" + pos.PosSn + "\n";
- string PosSnType = pos.PosSnType == 0 ? "兑换机" : "循环机";
- result += "机具类型:" + PosSnType + "\n";
- result += "商户编号:" + merInfo + ",商户姓名:" + merName + "\n";
- result += "商户型机器/直拓机器:创客编号:" + posSubUser.MakerCode + ",姓名:" + posSubUser.RealName + "\n";
- if (change.Id > 0)
- {
- result += "换机来源机具SN:" + change.BackSnNo + "\n";
- }
- result += "机具所属人:创客编号:" + posUser.MakerCode + ",姓名:" + posUser.RealName + "\n";
- result += "机器所属仓库:仓库编号:" + store.StoreNo + ",仓库名称:" + store.StoreName + "\n";
- if (pos.PreUserId > 0)
- {
- Users smallStoreUser = db.Users.FirstOrDefault(m => m.Id == pos.PreUserId) ?? new Users();
- PreSendStockDetail preSend = db.PreSendStockDetail.FirstOrDefault(m => m.SnId == pos.Id && m.ToUserId == pos.PreUserId && m.Status == 1) ?? new PreSendStockDetail();
- string preSendDate = preSend.CreateDate == null ? "" : preSend.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- result += "机具所属小分仓:创客编号:" + smallStoreUser.MakerCode + ",姓名:" + smallStoreUser.RealName + ",预发时间:" + preSendDate + "\n";
- }
- else
- {
- result += "机具所属小分仓:暂无小分仓\n";
- }
- result += "入库时间:" + CreateDate + "\n";
- result += "循环到期时间:" + RecycEndDate + "\n";
- result += "划拨时间:" + TransferTime + "\n";
- result += "绑定状态:" + bindResult + "(绑定时间:" + bindTime + ")\n";
- result += "激活状态:" + activeResult + "(激活时间:" + activeTime + ")\n";
- result += "贷记卡(总)交易额:" + tradeAmount + "\n";
- result += "是否循环:" + RecycFlag + ",申请循环时间:" + ApplyDate + "\n";
- result += "申请循环后的SN:" + applyorder.SnNos + "\n";
- result += "是否发货:" + SendStatus + ",发货时间:" + SendDate + "\n";
- result += "服务费:" + Deposit + "\n";
- result += "是否返现:" + DepositGet + ",领取时间:" + ActiveTime + "\n";
- result += "返现金额:" + headAmount + " " + " " + footAmount + "\n";
- result += "服务费返现应返现对象:" + DepositToUser + "\n";
- result += "服务费返现实际返现对象:" + DepositUser + "\n";
- if (pos.BrandId == 6)
- {
- result += "立刷10000奖励:" + DepositGet6 + ",领取时间:" + ActiveTime6 + "\n";
- result += "立刷10000奖励发放人:" + DepositUser6 + "\n";
- }
- result += "流量费:" + FluxGet6 + "\n";
- result += "流量费发放对象:" + FluxUser6 + "\n";
- result += "开机奖20:" + OpenUser20 + "\n";
- result += "盟主奖:" + Leader10 + "\n";
- result += "运营中心奖:" + YYZX5 + "\n";
- return result;
- }
- #endregion
- #region 生成机具兑换码
- public IActionResult MakeCoupons(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string MakeCouponsDo(int Kind, int Number)
- {
- DateTime checkTime = DateTime.Parse("1900-01-01");
- string checkTimeString = RedisDbconn.Instance.Get<string>("MakerCouponsQueueCheckTime");
- if (!string.IsNullOrEmpty(checkTimeString))
- {
- checkTime = DateTime.Parse(checkTimeString);
- }
- if (checkTime.AddHours(1) < DateTime.Now)
- {
- RedisDbconn.Instance.Set("MakerCouponsQueueCheckTime", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
- RedisDbconn.Instance.AddList("MakerCouponsQueue:" + Kind, Number);
- return "生成程序已执行";
- }
- return "请稍后再试";
- }
- #endregion
- #region 导出没有刷满1000的机具
- public IActionResult ExportPos(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public JsonResult ExportPosDo()
- {
- WebCMSEntities db = new WebCMSEntities();
- List<PosMachinesTwo> poses = db.PosMachinesTwo.Where(m => m.CreditTrade < 1000 && m.BindingState == 1).ToList();
- int total = poses.Count;
- int index = 0;
- List<Dictionary<string, object>> list = new List<Dictionary<string, object>>();
- foreach (PosMachinesTwo pos in poses)
- {
- index += 1;
- PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId) ?? new PosMerchantInfo();
- Users user = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new Users();
- Users puser = db.Users.FirstOrDefault(m => m.Id == user.ParentUserId) ?? new Users();
- Users ppuser = db.Users.FirstOrDefault(m => m.Id == puser.ParentUserId) ?? new Users();
- Dictionary<string, object> item = new Dictionary<string, object>();
- string TopRealName = "";
- string TopMakerCode = "";
- string TopMobile = "";
- string ParentNav = user.ParentNav;
- if (!string.IsNullOrEmpty(ParentNav))
- {
- string[] navlist = ParentNav.Trim(',').Replace(",,", ",").Split(',');
- if (navlist.Length > 1)
- {
- int TopId = int.Parse(function.CheckInt(navlist[1]));
- Users tuser = db.Users.FirstOrDefault(m => m.Id == TopId) ?? new Users();
- TopRealName = tuser.RealName;
- TopMakerCode = tuser.MakerCode;
- TopMobile = tuser.Mobile;
- }
- }
- item.Add("TopRealName", TopRealName); //顶级姓名
- item.Add("TopMakerCode", TopMakerCode); //顶级编号
- item.Add("UpUpRealName", ppuser.RealName); //上上级姓名
- item.Add("UpRealName", puser.RealName); //上级姓名
- item.Add("RealName", user.RealName); //代理姓名
- item.Add("MakerCode", user.MakerCode); //代理编号
- item.Add("Mobile", user.Mobile); //代理手机号
- item.Add("MerchantName", merchant.MerchantName); //客户姓名
- item.Add("MerchantMobile", merchant.MerchantMobile); //客户电话
- item.Add("OpenTime", pos.BindingTime == null ? "" : pos.BindingTime.Value.ToString("yyyy-MM-dd HH:mm:ss")); //开机日期
- item.Add("Sn", pos.PosSn); //SN
- list.Add(item);
- RedisDbconn.Instance.Set("ExportPosCheck", index + " / " + total);
- }
- db.Dispose();
- Dictionary<string, object> result = new Dictionary<string, object>();
- result.Add("Status", "1");
- result.Add("Info", "Excel报表-" + DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ss") + ".xlsx");
- result.Add("Obj", list);
- Dictionary<string, object> ReturnFields = new Dictionary<string, object>();
- ReturnFields.Add("TopRealName", "顶级姓名"); //顶级姓名
- ReturnFields.Add("TopMakerCode", "顶级编号"); //顶级编号
- ReturnFields.Add("UpUpRealName", "上上级姓名"); //上上级姓名
- ReturnFields.Add("UpRealName", "上级姓名"); //上级姓名
- ReturnFields.Add("RealName", "代理姓名"); //代理姓名
- ReturnFields.Add("MakerCode", "代理编号"); //代理编号
- ReturnFields.Add("Mobile", "代理手机号"); //代理手机号
- ReturnFields.Add("MerchantName", "客户姓名"); //客户姓名
- ReturnFields.Add("MerchantMobile", "客户电话"); //客户电话
- ReturnFields.Add("OpenTime", "开机日期"); //开机日期
- ReturnFields.Add("Sn", "SN"); //SN
- result.Add("Fields", ReturnFields);
- RedisDbconn.Instance.Set("ExportPosCheck", "finish");
- return Json(result);
- }
- public string ExportPosCheck()
- {
- string content = RedisDbconn.Instance.Get<string>("ExportPosCheck");
- if (content == "finish")
- {
- RedisDbconn.Instance.Clear("ExportPosCheck");
- }
- return content;
- }
- #endregion
- #region 更换机具
- public IActionResult ChangePos(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string ChangePosDo(string OldSn, string NewSn, string BackStoreNo, string OutStoreNo, string MerNo = "", int IsSend = 0)
- {
- if (string.IsNullOrEmpty(OldSn))
- {
- return "请输入原机具SN";
- }
- if (string.IsNullOrEmpty(NewSn))
- {
- return "请输入新机具SN";
- }
- if (string.IsNullOrEmpty(MerNo))
- {
- return "请输入商户编号";
- }
- string[] OldSnList = OldSn.Split('\n');
- string[] NewSnList = NewSn.Split('\n');
- if (OldSnList.Length != NewSnList.Length)
- {
- return "原机具SN数量和新机具SN数量不一致";
- }
- WebCMSEntities db = new WebCMSEntities();
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == OldSn);
- StoreForCode storeForBack = db.StoreForCode.FirstOrDefault(m => m.Code == BackStoreNo) ?? new StoreForCode();
- StoreForCode storeForOut = db.StoreForCode.FirstOrDefault(m => m.Code == OutStoreNo) ?? new StoreForCode();
- StoreHouse BackStore = db.StoreHouse.FirstOrDefault(m => m.Id == storeForBack.StoreId) ?? new StoreHouse();
- StoreHouse OutStore = db.StoreHouse.FirstOrDefault(m => m.Id == storeForOut.StoreId) ?? new StoreHouse();
- string ChangeNo = "BMC" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(3);
- KqProducts oldPosBrand = new KqProducts();
- KqProducts newPosBrand = new KqProducts();
- MachineChange add = db.MachineChange.Add(new MachineChange()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- CreateMan = SysUserName + "-" + SysRealName,
- ChangeNo = ChangeNo, //转换单号
- UserId = 0, //创客
- ChangeTime = DateTime.Now, //转换时间
- BackStoreId = BackStore.Id, //退回仓库
- BackStoreName = BackStore.StoreName, //退回仓库名称
- Remark = "机具更换", //订单备注
- BackStoreUserId = BackStore.UserId, //退回仓库归属人
- OutProductType = int.Parse(OutStore.BrandId), //出库产品类型
- OutProductName = OutStore.ProductName, //出库产品名称
- OutStoreId = OutStore.Id, //出库仓库
- OutStoreName = OutStore.StoreName, //出库仓库名称
- OutStoreAreas = OutStore.Areas, //出库仓库所在地区
- OutStoreAddress = OutStore.Address, //出库仓库地址
- OutStoreManager = "", //出库仓库联系人
- OutStoreManagerMobile = OutStore.ManageMobile, //出库仓库联系人手机号
- }).Entity;
- db.SaveChanges();
- int BackProductType = 0;
- string BackProductName = "";
- string ChangeDeviceName = "";
- string ChangeSnExpand = "";
- for (int i = 0; i < OldSnList.Length; i++)
- {
- string OldSnNum = OldSnList[i];
- string NewSnNum = NewSnList[i];
- MachineForSnNo oldForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == OldSnNum) ?? new MachineForSnNo();
- MachineForSnNo newForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == NewSnNum) ?? new MachineForSnNo();
- PosMachinesTwo oldpos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == oldForSnNo.SnId);
- if (oldpos == null)
- {
- return "原机具SN不正确";
- }
- PosMachinesTwo newpos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == newForSnNo.SnId && m.PreUserId == 0);//添加新机是否为预发机判断
- if (newpos == null)
- {
- return "新机具SN不正确或不满足条件";
- }
- oldPosBrand = db.KqProducts.FirstOrDefault(m => m.Id == oldpos.BrandId) ?? new KqProducts();
- newPosBrand = db.KqProducts.FirstOrDefault(m => m.Id == newpos.BrandId) ?? new KqProducts();
- PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.KqMerNo == MerNo);
- if (merchant == null)
- {
- CustomerSqlConn.op("insert into PosMerchantInfo select * from PosMerchantInfoBak where KqMerNo='" + MerNo + "'", MysqlConn.connstr);
- }
- if (oldpos.OpId > 0)
- {
- if (oldpos.ActivationState == 0)
- {
- var opUserAccount = opdb.UserAccount.FirstOrDefault(m => m.Sort > 0 && m.Id == oldpos.OpId && m.UserId == oldpos.OpId) ?? new OpModels.UserAccount();
- decimal TotalAmount = opUserAccount.ValidAmount + opUserAccount.TotalAmt + opUserAccount.ValidForGetAmount;//旧的总金额
- opUserAccount.ValidAmount += oldpos.OpReserve3;
- opUserAccount.ValidForGetAmount += oldpos.OpReserve2;
- opUserAccount.TotalAmt += oldpos.OpReserve1;
- var amoutRecord = opdb.AmountRecord.Add(new OpModels.AmountRecord
- {
- CreateDate = DateTime.Now,
- UserId = oldpos.OpId,
- SeoDescription = "机具换绑",
- OperateType = 1,
- UseAmount = oldpos.OpReserve3 + oldpos.OpReserve2 + oldpos.OpReserve1,
- BeforeAmount = TotalAmount,
- AfterAmount = TotalAmount + oldpos.OpReserve3 + oldpos.OpReserve2 + oldpos.OpReserve1,
- }).Entity;
- oldpos.OpReserve1 = 0;
- oldpos.OpReserve2 = 0;
- oldpos.OpReserve3 = 0;
- }
- else
- {
- if (newpos.OpId > 0)
- {
- var opUserAccount = opdb.UserAccount.FirstOrDefault(m => m.Sort > 0 && m.Id == newpos.OpId && m.UserId == newpos.OpId) ?? new OpModels.UserAccount();
- decimal TotalAmount = opUserAccount.ValidAmount + opUserAccount.TotalAmt + opUserAccount.ValidForGetAmount;//旧的总金额
- opUserAccount.ValidAmount += newpos.OpReserve3;
- opUserAccount.ValidForGetAmount += newpos.OpReserve2;
- opUserAccount.TotalAmt += newpos.OpReserve1;
- var amoutRecord = opdb.AmountRecord.Add(new OpModels.AmountRecord
- {
- CreateDate = DateTime.Now,
- UserId = newpos.OpId,
- SeoDescription = "机具换绑",
- OperateType = 1,
- UseAmount = newpos.OpReserve3 + newpos.OpReserve2 + newpos.OpReserve1,
- BeforeAmount = TotalAmount,
- AfterAmount = TotalAmount + newpos.OpReserve3 + newpos.OpReserve2 + newpos.OpReserve1,
- }).Entity;
- newpos.OpReserve1 = 0;
- newpos.OpReserve2 = 0;
- newpos.OpReserve3 = 0;
- }
- }
- }
- opdb.SaveChanges();
- merchant = db.PosMerchantInfo.FirstOrDefault(m => m.KqMerNo == MerNo) ?? new PosMerchantInfo();
- newpos.BindMerchantId = merchant.Id;
- newpos.BuyUserId = oldpos.BuyUserId;
- newpos.UserId = oldpos.UserId;
- newpos.RecycEndDate = oldpos.RecycEndDate;
- newpos.ScanQrTrade = oldpos.ScanQrTrade;
- newpos.DebitCardTrade = oldpos.DebitCardTrade;
- newpos.CreditTrade = oldpos.CreditTrade;
- newpos.PosSnType = oldpos.PosSnType;
- newpos.TransferTime = oldpos.TransferTime;
- newpos.IsPurchase = oldpos.IsPurchase;
- newpos.BindingState = oldpos.BindingState;
- newpos.ActivationState = oldpos.ActivationState;
- newpos.BindingTime = oldpos.BindingTime;
- newpos.ActivationTime = oldpos.ActivationTime;
- newpos.IsFirst = oldpos.IsFirst;
- newpos.SeoKeyword = oldpos.SeoKeyword;
- newpos.PrizeParams = oldpos.PrizeParams;
- newpos.LeaderUserId = oldpos.LeaderUserId;
- oldpos.Status = -1;
- //对应调整客小爽企业版数据
- var posInfo = db.BusinessPartnerPos.FirstOrDefault(m => m.PosId == oldpos.Id);
- if (posInfo != null)
- {
- posInfo.PosSn = newpos.PosSn;
- posInfo.PosId = newpos.Id;
- db.SaveChanges();
- }
- MachineForMerNo forMerNo = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == merchant.KqMerNo);
- if (forMerNo != null)
- {
- forMerNo.SnId = newpos.Id;
- }
- merchant.KqSnNo = NewSn;
- merchant.ActiveStatus = newpos.ActivationState;
- merchant.MerStandardDate = newpos.ActivationTime;
- db.MachineChangeDetail.Add(new MachineChangeDetail()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- CreateMan = SysUserName + "-" + SysRealName,
- ChangeNo = ChangeNo, //订单号
- ChangeId = add.Id, //订单Id
- BackProductType = oldpos.BrandId, //退回产品类型
- BackProductName = oldPosBrand.Name, //退回产品名称
- UserId = 0, //创客
- BackSnNo = oldpos.PosSn, //设备SN编号
- OutProductType = newpos.BrandId, //出库产品类型
- OutProductName = newPosBrand.Name, //出库产品名称
- OutSnNo = newpos.PosSn, //出库设备SN编号
- OutSnType = newpos.PosSnType, //出库SN机具类型
- Remark = "机具更换", //备注
- BackSnType = oldpos.PosSnType, //退回SN机具类型
- });
- db.SaveChanges();
- BackProductType = oldpos.BrandId;
- BackProductName = newPosBrand.Name;
- ChangeDeviceName = oldpos.DeviceName;
- ChangeSnExpand += oldpos.PosSn + "\n";
- PublicFunction.SycnMachineCount(oldpos.BuyUserId, oldpos.BrandId);
- }
- add.BackProductType = BackProductType; //退回产品类型
- add.BackProductName = BackProductName; //退回产品名称
- add.ChangeDeviceName = ChangeDeviceName; //转换机具名称
- add.ChangeDeviceNum = OldSnList.Length; //转换机具数量
- add.ChangeSnExpand = ChangeSnExpand; //机具SN
- BackStore.LaveNum += OldSnList.Length; //退回仓库库存
- OutStore.LaveNum -= OldSnList.Length; //出货仓库库存
- db.SaveChanges();
- db.Dispose();
- if (IsSend == 1)
- {
- RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
- {
- UserId = pos.BuyUserId, //接收创客
- MsgType = 2,
- Title = "换绑成功通知", //标题
- Summary = "您的 " + oldPosBrand.Name + " SN:" + OldSn + "已经成功为客户换绑为" + newPosBrand.Name + "SN:" + NewSn + "请告知客户进行绑定。",
- CreateDate = DateTime.Now,
- }));
- }
- if (BackStore.UserId != OutStore.UserId)
- {
- RedisDbconn.Instance.AddList("ResetStoreReserveQueue", BackStore.UserId);
- RedisDbconn.Instance.AddList("ResetStoreReserveQueue", OutStore.UserId);
- }
- return "success";
- }
- #endregion
- #region 坏机换新
- public IActionResult ChangeBadPos(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string ChangeBadPosDo(string ChangeType, string MakerCode, string StoreCode, string OldSn, string NewSn, string FromStoreNo, string BackStoreNo, int IsSend = 0)
- {
- string[] OldSnList;
- string[] NewSnList;
- decimal amount = 0;
- List<string> opData = new List<string>();
- //创客坏机换新
- if (ChangeType == "0")
- {
- if (string.IsNullOrEmpty(MakerCode))
- {
- return "请输入创客编号";
- }
- if (string.IsNullOrEmpty(OldSn))
- {
- return "请输入坏机SN";
- }
- if (string.IsNullOrEmpty(NewSn))
- {
- return "请输入新机SN";
- }
- if (string.IsNullOrEmpty(FromStoreNo))
- {
- return "请输入新机发货仓库编号";
- }
- if (string.IsNullOrEmpty(BackStoreNo))
- {
- return "请输入坏机退回仓库编号";
- }
- OldSnList = OldSn.Split('\n');
- NewSnList = NewSn.Split('\n');
- if (OldSnList.Length != NewSnList.Length)
- {
- return "原机具SN数量和新机具SN数量不一致";
- }
- for (int i = 0; i < OldSnList.Length; i++)
- {
- string OldSnNum = OldSnList[i];
- string NewSnNum = NewSnList[i];
- UserForMakerCode userForMakerCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode) ?? new UserForMakerCode();
- StoreForCode storeForCodeFrom = db.StoreForCode.FirstOrDefault(m => m.Code == FromStoreNo) ?? new StoreForCode();
- if (storeForCodeFrom.StoreId == 0)
- {
- return "您输入的新机发货仓库编号不存在";
- }
- StoreForCode storeForCodeBack = db.StoreForCode.FirstOrDefault(m => m.Code == BackStoreNo) ?? new StoreForCode();
- if (storeForCodeBack.StoreId == 0)
- {
- return "您输入的坏机退回仓库编号不存在";
- }
- MachineForSnNo oldForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == OldSnNum) ?? new MachineForSnNo();
- MachineForSnNo newForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == NewSnNum) ?? new MachineForSnNo();
- PosMachinesTwo oldpos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == oldForSnNo.SnId && m.BindingState == 0 && m.BuyUserId == userForMakerCode.UserId) ?? new PosMachinesTwo();
- if (oldpos.Id == 0)
- {
- return "您输入的坏机SN不存在或者不在" + MakerCode + "名下";
- }
- PosMachinesTwo newpos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == newForSnNo.SnId && m.BindingState == 0 && m.PreUserId == 0) ?? new PosMachinesTwo();
- if (newpos.Id == 0)
- {
- return "您输入的新机SN不存在或不满足条件";
- }
- StoreHouse storeFrom = db.StoreHouse.FirstOrDefault(m => m.Id == storeForCodeFrom.StoreId);
- if (Convert.ToInt32(storeFrom.BrandId) != Convert.ToInt32(newpos.BrandId))
- {
- return "您输入的新机发货仓库不符新机机具对应品牌";
- }
- if (newpos.StoreId != storeFrom.Id)
- {
- return "您输入的新机SN不在新机发货仓库";
- }
- StoreHouse storeBack = db.StoreHouse.FirstOrDefault(m => m.Id == storeForCodeBack.StoreId);
- if (Convert.ToInt32(storeBack.BrandId) != Convert.ToInt32(oldpos.BrandId))
- {
- return "您输入的坏机退回仓库不符坏机机具对应品牌";
- }
- if (Convert.ToInt32(storeBack.BrandId) != Convert.ToInt32(storeFrom.BrandId))
- {
- return "您输入的新机发货仓库和坏机退回仓库品牌类型不同";
- }
- var brandInfo = db.KqProducts.FirstOrDefault(m => m.Id == oldpos.BrandId) ?? new KqProducts();
- if (brandInfo.Name.Contains("大POS"))
- {
- amount = 300;
- }
- if (brandInfo.Name.Contains("电签"))
- {
- amount = 200;
- }
- var storeFromUserAcount = db.UserAccount.FirstOrDefault(m => m.Id == storeFrom.UserId) ?? new UserAccount();
- var storeBackUserAcount = db.UserAccount.FirstOrDefault(m => m.Id == storeBack.UserId) ?? new UserAccount();
- storeFromUserAcount.ValidAmount += amount;
- storeBackUserAcount.ValidAmount -= amount;
- if (oldpos.OpId > 0)
- {
- if (newpos.OpId > 0)
- {
- var opUserAccount = opdb.UserAccount.FirstOrDefault(m => m.Sort > 0 && m.Id == oldpos.OpId && m.UserId == oldpos.OpId) ?? new OpModels.UserAccount();
- decimal TotalAmount = opUserAccount.ValidAmount + opUserAccount.TotalAmt + opUserAccount.ValidForGetAmount;//旧的总金额
- opUserAccount.ValidAmount += oldpos.OpReserve3;
- opUserAccount.ValidForGetAmount += oldpos.OpReserve2;
- opUserAccount.TotalAmt += oldpos.OpReserve1;
- var amoutRecord = opdb.AmountRecord.Add(new OpModels.AmountRecord
- {
- CreateDate = DateTime.Now,
- UserId = oldpos.OpId,
- SeoDescription = "坏机换新",
- OperateType = 1,
- UseAmount = oldpos.OpReserve3 + oldpos.OpReserve2 + oldpos.OpReserve1,
- BeforeAmount = TotalAmount,
- AfterAmount = TotalAmount + oldpos.OpReserve3 + oldpos.OpReserve2 + oldpos.OpReserve1,
- }).Entity;
- }
- if (newpos.OpId == 0)
- {
- newpos.OpReserve1 = oldpos.OpReserve1;
- newpos.OpReserve2 = oldpos.OpReserve3;
- newpos.OpReserve3 = oldpos.OpReserve1;
- newpos.OpId = oldpos.OpId;
- }
- }
- newpos.BuyUserId = oldpos.BuyUserId;
- newpos.UserId = oldpos.UserId;
- newpos.RecycEndDate = oldpos.RecycEndDate;
- newpos.ScanQrTrade = oldpos.ScanQrTrade;
- newpos.DebitCardTrade = oldpos.DebitCardTrade;
- newpos.CreditTrade = oldpos.CreditTrade;
- newpos.PosSnType = oldpos.PosSnType;
- newpos.TransferTime = oldpos.TransferTime;
- newpos.IsPurchase = oldpos.IsPurchase;
- newpos.BindingState = oldpos.BindingState;
- newpos.ActivationState = oldpos.ActivationState;
- newpos.BindingTime = oldpos.BindingTime;
- newpos.ActivationTime = oldpos.ActivationTime;
- newpos.IsFirst = oldpos.IsFirst;
- newpos.SeoKeyword = oldpos.SeoKeyword;
- newpos.PrizeParams = oldpos.PrizeParams;
- newpos.LeaderUserId = oldpos.LeaderUserId;
- newpos.BindMerchantId = oldpos.BindMerchantId;
- newpos.StoreId = oldpos.StoreId;
- newpos.UserId = oldpos.UserId;
- newpos.PreUserId = oldpos.PreUserId;
- if (!opData.Contains(oldpos.BuyUserId + ":" + oldpos.BrandId))
- {
- opData.Add(oldpos.BuyUserId + ":" + oldpos.BrandId);
- }
- oldpos.StoreId = storeBack.Id;
- oldpos.QueryCount = 0;
- oldpos.UpdateDate = null;
- oldpos.ActivityList = null;
- oldpos.SeoKeyword = null;
- oldpos.SeoDescription = null;
- oldpos.OrderId = 0;
- oldpos.RecycEndDate = null;
- oldpos.RecycBackCount = 0;
- oldpos.PrizeParams = null;
- oldpos.ScanQrTrade = 0;
- oldpos.BindMerchantId = 0;
- oldpos.CreditTrade = 0;
- oldpos.DebitCardTrade = 0;
- oldpos.IsVip = 0;
- oldpos.UserNav = null;
- oldpos.TransferTime = null;
- oldpos.IsPurchase = 0;
- oldpos.Detail = null;
- oldpos.BindingTime = null;
- oldpos.BindingState = 0;
- oldpos.ActivationTime = null;
- oldpos.ActivationState = 0;
- oldpos.LeaderUserId = 0;
- oldpos.PreUserId = 0;
- oldpos.IsFirst = 0;
- oldpos.DownFeeMan = null;
- oldpos.DownFeeFlag = 0;
- oldpos.DownFeeDate = null;
- oldpos.UpFeeMan = null;
- oldpos.UpFeeFlag = 0;
- oldpos.UpFeeDate = null;
- oldpos.OpReserve1 = 0;
- oldpos.OpReserve2 = 0;
- oldpos.OpReserve3 = 0;
- oldpos.OpId = 0;
- oldpos.RecycStartDate = null;
- oldpos.SourcePosSn = null;
- oldpos.BuyUserId = 0;
- oldpos.UserId = 0;
- oldpos.Status = -1;
- PublicFunction.ClearPosHistory(db, oldpos.PosSn); //清除机具历史记录
- db.SaveChanges();
- opdb.SaveChanges();
- PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == newpos.BindMerchantId);
- if (merchant != null)
- {
- merchant.KqSnNo = newpos.PosSn;
- merchant.ActiveStatus = newpos.ActivationState;
- }
- db.SaveChanges();
- BrokenMachineChange add = db.BrokenMachineChange.Add(new BrokenMachineChange()
- {
- CreateDate = DateTime.Now,
- CreateMan = SysUserName + "-" + SysRealName,
- ChangeNo = "BPC" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(3), //转换单号
- OutStoreId = storeFrom.Id,
- BackStoreId = storeBack.Id,
- OutProductType = newpos.BrandId,
- BackProductType = oldpos.BrandId,
- UserId = userForMakerCode.UserId, //创客
- }).Entity;
- db.SaveChanges();
- BrokenMachineChangeDetail adds = db.BrokenMachineChangeDetail.Add(new BrokenMachineChangeDetail()
- {
- CreateDate = DateTime.Now,
- CreateMan = SysUserName + "-" + SysRealName,
- OutSnNo = OldSnNum,
- BackSnNo = NewSnNum,
- ChangeNo = add.ChangeNo, //转换单号
- ChangeId = add.Id, //转换记录Id
- UserId = add.UserId, //创客
- }).Entity;
- db.SaveChanges();
- var oldPosBrand = db.KqProducts.FirstOrDefault(m => m.Id == oldpos.BrandId) ?? new KqProducts();
- if (IsSend == 1)
- {
- RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
- {
- UserId = userForMakerCode.UserId, //接收创客
- MsgType = 2,
- Title = "坏机换新成功通知", //标题
- Summary = "您的坏机 " + oldPosBrand.Name + " SN:" + OldSnNum + "已经成功为您换为" + oldPosBrand.Name + "SN:" + NewSnNum + "。",
- CreateDate = DateTime.Now,
- }));
- }
- }
- }
- //仓库坏机换新
- else
- {
- if (string.IsNullOrEmpty(StoreCode))
- {
- return "请输入仓库编号";
- }
- if (string.IsNullOrEmpty(OldSn))
- {
- return "请输入坏机SN";
- }
- if (string.IsNullOrEmpty(NewSn))
- {
- return "请输入新机SN";
- }
- if (string.IsNullOrEmpty(FromStoreNo))
- {
- return "请输入新机发货仓库编号";
- }
- if (string.IsNullOrEmpty(BackStoreNo))
- {
- return "请输入坏机退回仓库编号";
- }
- OldSnList = OldSn.Split('\n');
- NewSnList = NewSn.Split('\n');
- if (OldSnList.Length != NewSnList.Length)
- {
- return "原机具SN数量和新机具SN数量不一致";
- }
- for (int i = 0; i < OldSnList.Length; i++)
- {
- string OldSnNum = OldSnList[i];
- string NewSnNum = NewSnList[i];
- StoreHouse store = new StoreHouse();
- StoreForCode storeForBadCode = db.StoreForCode.FirstOrDefault(m => m.Code == StoreCode) ?? new StoreForCode();
- if (storeForBadCode.StoreId > 0)
- {
- store = db.StoreHouse.FirstOrDefault(m => m.Id == storeForBadCode.StoreId);
- }
- StoreForCode storeForCodeFrom = db.StoreForCode.FirstOrDefault(m => m.Code == FromStoreNo) ?? new StoreForCode();
- if (storeForCodeFrom.StoreId == 0)
- {
- return "您输入的新机发货仓库编号不存在";
- }
- StoreForCode storeForCodeBack = db.StoreForCode.FirstOrDefault(m => m.Code == BackStoreNo) ?? new StoreForCode();
- if (storeForCodeBack.StoreId == 0)
- {
- return "您输入的坏机退回仓库编号不存在";
- }
- MachineForSnNo oldForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == OldSnNum) ?? new MachineForSnNo();
- MachineForSnNo newForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == NewSnNum) ?? new MachineForSnNo();
- PosMachinesTwo oldpos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == oldForSnNo.SnId && m.BindingState == 0 && m.StoreId == storeForBadCode.StoreId) ?? new PosMachinesTwo();
- if (oldpos.Id == 0)
- {
- return "您输入的坏机SN不存在或者不在仓库" + StoreCode + "中";
- }
- PosMachinesTwo newpos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == newForSnNo.SnId && m.BindingState == 0 && m.PreUserId == 0) ?? new PosMachinesTwo();
- if (newpos.Id == 0)
- {
- return "您输入的新机SN不存在或不满足条件";
- }
- StoreHouse storeFrom = db.StoreHouse.FirstOrDefault(m => m.Id == storeForCodeFrom.StoreId);
- if (Convert.ToInt32(storeFrom.BrandId) != Convert.ToInt32(oldpos.BrandId))
- {
- return "您输入的新机发货仓库不符新机机具对应品牌";
- }
- if (newpos.StoreId != storeFrom.Id)
- {
- return "您输入的新机SN不在新机发货仓库";
- }
- StoreHouse storeBack = db.StoreHouse.FirstOrDefault(m => m.Id == storeForCodeBack.StoreId);
- if (Convert.ToInt32(storeBack.BrandId) != Convert.ToInt32(oldpos.BrandId))
- {
- return "您输入的坏机退回仓库不符坏机机具对应品牌";
- }
- var brandInfo = db.KqProducts.FirstOrDefault(m => m.Id == oldpos.BrandId) ?? new KqProducts();
- if (brandInfo.Name.Contains("大POS"))
- {
- amount = 300;
- }
- if (brandInfo.Name.Contains("电签"))
- {
- amount = 200;
- }
- var storeUserAcount = db.UserAccount.FirstOrDefault(m => m.Id == store.UserId) ?? new UserAccount();
- var storeFromUserAcount = db.UserAccount.FirstOrDefault(m => m.Id == storeFrom.UserId) ?? new UserAccount();
- var storeBackUserAcount = db.UserAccount.FirstOrDefault(m => m.Id == storeBack.UserId) ?? new UserAccount();
- storeFromUserAcount.ValidAmount += amount;
- storeBackUserAcount.ValidAmount -= amount;
- newpos.StoreId = oldpos.StoreId;
- newpos.BuyUserId = oldpos.BuyUserId;
- newpos.UserId = oldpos.UserId;
- newpos.LeaderUserId = oldpos.LeaderUserId;
- newpos.PreUserId = oldpos.PreUserId;
- newpos.IsFirst = oldpos.IsFirst;
- newpos.TransferTime = oldpos.TransferTime;
- if (!opData.Contains(oldpos.BuyUserId + ":" + oldpos.BrandId))
- {
- opData.Add(oldpos.BuyUserId + ":" + oldpos.BrandId);
- }
- if (oldpos.OpId > 0)
- {
- if (newpos.OpId > 0)
- {
- var opUserAccount = opdb.UserAccount.FirstOrDefault(m => m.Sort > 0 && m.Id == oldpos.OpId && m.UserId == oldpos.OpId) ?? new OpModels.UserAccount();
- decimal TotalAmount = opUserAccount.ValidAmount + opUserAccount.TotalAmt + opUserAccount.ValidForGetAmount;//旧的总金额
- opUserAccount.ValidAmount += oldpos.OpReserve3;
- opUserAccount.ValidForGetAmount += oldpos.OpReserve2;
- opUserAccount.TotalAmt += oldpos.OpReserve1;
- var amoutRecord = opdb.AmountRecord.Add(new OpModels.AmountRecord
- {
- CreateDate = DateTime.Now,
- UserId = oldpos.OpId,
- SeoDescription = "坏机换新",
- OperateType = 1,
- UseAmount = oldpos.OpReserve3 + oldpos.OpReserve2 + oldpos.OpReserve1,
- BeforeAmount = TotalAmount,
- AfterAmount = TotalAmount + oldpos.OpReserve3 + oldpos.OpReserve2 + oldpos.OpReserve1,
- }).Entity;
- }
- if (newpos.OpId == 0)
- {
- newpos.OpReserve1 = oldpos.OpReserve1;
- newpos.OpReserve2 = oldpos.OpReserve3;
- newpos.OpReserve3 = oldpos.OpReserve1;
- newpos.OpId = oldpos.OpId;
- }
- }
- oldpos.StoreId = storeBack.Id;
- oldpos.QueryCount = 0;
- oldpos.UpdateDate = null;
- oldpos.ActivityList = null;
- oldpos.SeoKeyword = null;
- oldpos.SeoDescription = null;
- oldpos.OrderId = 0;
- oldpos.RecycEndDate = null;
- oldpos.RecycBackCount = 0;
- oldpos.PrizeParams = null;
- oldpos.ScanQrTrade = 0;
- oldpos.BindMerchantId = 0;
- oldpos.CreditTrade = 0;
- oldpos.DebitCardTrade = 0;
- oldpos.IsVip = 0;
- oldpos.UserNav = null;
- oldpos.TransferTime = null;
- oldpos.IsPurchase = 0;
- oldpos.Detail = null;
- oldpos.BindingTime = null;
- oldpos.BindingState = 0;
- oldpos.ActivationTime = null;
- oldpos.ActivationState = 0;
- oldpos.LeaderUserId = 0;
- oldpos.PreUserId = 0;
- oldpos.IsFirst = 0;
- oldpos.DownFeeMan = null;
- oldpos.DownFeeFlag = 0;
- oldpos.DownFeeDate = null;
- oldpos.UpFeeMan = null;
- oldpos.UpFeeFlag = 0;
- oldpos.UpFeeDate = null;
- oldpos.OpReserve1 = 0;
- oldpos.OpReserve2 = 0;
- oldpos.OpReserve3 = 0;
- oldpos.OpId = 0;
- oldpos.RecycStartDate = null;
- oldpos.SourcePosSn = null;
- oldpos.BuyUserId = 0;
- oldpos.UserId = 0;
- oldpos.Status = -1;
- PublicFunction.ClearPosHistory(db, oldpos.PosSn); //清除机具历史记录
- db.SaveChanges();
- opdb.SaveChanges();
- BrokenMachineChange add = db.BrokenMachineChange.Add(new BrokenMachineChange()
- {
- CreateDate = DateTime.Now,
- CreateMan = SysUserName + "-" + SysRealName,
- ChangeNo = "BPC" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(3), //转换单号
- OutStoreId = storeFrom.Id,
- BackStoreId = storeBack.Id,
- OutProductType = newpos.BrandId,
- BackProductType = oldpos.BrandId,
- UserId = store.UserId, //创客
- }).Entity;
- db.SaveChanges();
- BrokenMachineChangeDetail adds = db.BrokenMachineChangeDetail.Add(new BrokenMachineChangeDetail()
- {
- CreateDate = DateTime.Now,
- CreateMan = SysUserName + "-" + SysRealName,
- OutSnNo = OldSnNum,
- BackSnNo = NewSnNum,
- ChangeNo = add.ChangeNo, //转换单号
- ChangeId = add.Id, //转换记录Id
- UserId = add.UserId, //创客
- }).Entity;
- db.SaveChanges();
- var oldPosBrand = db.KqProducts.FirstOrDefault(m => m.Id == oldpos.BrandId) ?? new KqProducts();
- if (IsSend == 1)
- {
- RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
- {
- UserId = store.UserId, //接收创客
- MsgType = 2,
- Title = "坏机换新成功通知", //标题
- Summary = "您的坏机 " + oldPosBrand.Name + " SN:" + OldSnNum + "已经成功为您换为" + oldPosBrand.Name + "SN:" + NewSnNum + "。",
- CreateDate = DateTime.Now,
- }));
- }
- }
- }
- foreach (string sub in opData)
- {
- string[] datalist = sub.Split(":");
- PublicFunction.SycnMachineCount(int.Parse(datalist[0]), int.Parse(datalist[1]));
- }
- return "success";
- }
- #endregion
- #region 机具解绑
- public IActionResult Unbind(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string UnbindDo(string PosSn, string MakerCode, string MerNo, int IsSend = 0)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- MachineForSnNo forSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == PosSn);
- if (forSnNo == null)
- {
- return "机具SN不存在";
- }
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == forSnNo.SnId);
- if (pos == null)
- {
- return "机具SN不存在";
- }
- if (pos.ActivationState == 1)
- {
- return "机具已激活,不能解绑";
- }
- if (pos.BuyUserId == 0)
- {
- return "机具是仓库机,不支持解绑";
- }
- if (pos.BindingState == 0)
- {
- return "机具未绑定,不支持解绑";
- }
- if (pos.BindingTime < DateTime.Now.AddDays(-30) && SysUserName != "admin")
- {
- return "机具绑定已超过30天,不支持解绑";
- }
- if (pos.CreditTrade > 0 || !string.IsNullOrEmpty(pos.SeoKeyword))
- {
- return "该机具已交易,无法解绑";
- }
- if (pos.BrandId != 10 || pos.BrandId != 11)
- {
- if (string.IsNullOrEmpty(MakerCode))
- {
- return "请输入创客编号";
- }
- if (string.IsNullOrEmpty(MerNo))
- {
- return "请输入商户编号";
- }
- UserForMakerCode forMakerCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (forMakerCode == null)
- {
- return "创客不存在";
- }
- MachineForMerNo forMerNo = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == MerNo);
- if (forMerNo == null)
- {
- return "商户编号不存在";
- }
- if (pos.BuyUserId != forMakerCode.UserId)
- {
- return "机具SN和创客不匹配";
- }
- if (forMerNo != null)
- {
- PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
- if (merchant != null)
- {
- //机具解绑删除客小爽企业版对应数据
- var merInfo = db.BusinessPartnerMerchant.FirstOrDefault(m => m.MerchantId == merchant.Id);
- if (merInfo != null)
- {
- db.BusinessPartnerMerchant.Remove(merInfo);
- }
- var posInfo = db.BusinessPartnerPos.FirstOrDefault(m => m.PosId == pos.Id);
- if (posInfo != null)
- {
- db.BusinessPartnerPos.Remove(posInfo);
- }
- db.PosMerchantInfo.Remove(merchant);
- }
- db.MachineForMerNo.Remove(forMerNo);
- db.SaveChanges();
- }
- }
- else
- {
- var posMerchantInfo = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId) ?? new PosMerchantInfo();
- MachineForMerNo forMerNo = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == MerNo);
- if (forMerNo != null && posMerchantInfo != null)
- {
- //机具解绑删除客小爽企业版对应数据
- var merInfo = db.BusinessPartnerMerchant.FirstOrDefault(m => m.MerchantId == posMerchantInfo.Id);
- if (merInfo != null)
- {
- db.BusinessPartnerMerchant.Remove(merInfo);
- }
- var posInfo = db.BusinessPartnerPos.FirstOrDefault(m => m.PosId == pos.Id);
- if (posInfo != null)
- {
- db.BusinessPartnerPos.Remove(posInfo);
- }
- db.PosMerchantInfo.Remove(posMerchantInfo);
- db.MachineForMerNo.Remove(forMerNo);
- db.SaveChanges();
- }
- }
- db.MachineUnBind.Add(new MachineUnBind()
- {
- CreateDate = DateTime.Now,
- SeoTitle = SysUserName + "-" + SysRealName,
- MerchantId = pos.BindMerchantId,
- AuditDate = DateTime.Now,
- AuditDesc = "平台操作解绑",
- AuditStatus = 1,
- SnNo = pos.PosSn,
- BrandId = pos.BrandId,
- UserId = pos.BuyUserId,
- ApplyNo = "U" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8),
- });
- pos.BindMerchantId = 0;
- pos.BindingState = 0;
- pos.BindingTime = DateTime.Parse("1900-01-01");
- pos.UserId = pos.BuyUserId;
- string IdBrand = pos.BuyUserId + "_" + pos.BrandId;
- db.SaveChanges();
- PublicFunction.SycnMachineCount(pos.BuyUserId, pos.BrandId);
- if (IsSend == 1)
- {
- RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
- {
- UserId = pos.BuyUserId, //接收创客
- MsgType = 2,
- Title = "解绑成功通知", //标题
- Summary = "" + PosSn + "机具已成功解绑,当前机具如需绑定同一客户请再2个工作日后再进行绑定,直接绑定会导致数控异常,相关损失由您本人承担。",
- CreateDate = DateTime.Now,
- }));
- }
- return "success";
- }
- #endregion
- #region 通过券码修改盟主标记
- public IActionResult ChangeSignQuan(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string ChangeSignQuanDo(string Coupons, string MakerCode)
- {
- if (string.IsNullOrEmpty(Coupons))
- {
- return "请输入机具券码,多个券码用回车分隔";
- }
- if (string.IsNullOrEmpty(MakerCode))
- {
- return "请输入创客编号";
- }
- UserForMakerCode forMakerCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (forMakerCode == null)
- {
- return "创客不存在";
- }
- string[] SnList = Coupons.Split('\n');
- foreach (var item in SnList)
- {
- var coupos = db.PosCoupons.FirstOrDefault(m => m.ExchangeCode == item && m.LeaderUserId == 0);
- if (coupos == null)
- {
- return "机具券不存在";
- }
- else
- {
- coupos.LeaderUserId = forMakerCode.UserId;
- }
- }
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 通过机具SN修改盟主标记
- public IActionResult ChangeSignSn(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string ChangeSignSnDo(string PosSn, string MakerCode)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN,多个SN用回车分隔";
- }
- if (string.IsNullOrEmpty(MakerCode))
- {
- return "请输入创客编号";
- }
- UserForMakerCode forMakerCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (forMakerCode == null)
- {
- return "创客不存在";
- }
- string[] SnList = PosSn.Split('\n');
- foreach (var item in SnList)
- {
- var pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == item && m.LeaderUserId == 0);
- if (pos == null)
- {
- return "该机具不存在";
- }
- else
- {
- pos.LeaderUserId = forMakerCode.UserId;
- }
- }
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 机具循环列表
- /// <summary>
- /// 根据条件查询机具循环列表
- /// </summary>
- /// <returns></returns>
- public IActionResult Loop(string right, string SwapSnExpand, string SnNos)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- ViewBag.SwapSnExpand = SwapSnExpand;
- ViewBag.SnNos = SnNos;
- return View();
- }
- #endregion
- #region 根据条件查询机具循环列表
- /// <summary>
- /// 机具循环列表
- /// </summary>
- /// <returns></returns>
- public IActionResult LoopData(string SwapSnExpand, string SnNos, int page = 1, int limit = 30)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- Fields.Add("SwapSnExpand", "1"); //申请机具SN
- Fields.Add("SnNos", "1"); //发货机具SN
- List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
- if (!string.IsNullOrEmpty(SwapSnExpand))
- {
- var apply = db.MachineApply.FirstOrDefault(m => m.Status > -1 && m.SwapSnExpand.Contains(SwapSnExpand)) ?? new MachineApply();
- var order = db.Orders.FirstOrDefault(m => m.Id == apply.QueryCount) ?? new Orders();
- var user = db.Users.FirstOrDefault(m => m.Id == apply.UserId) ?? new Users();
- string[] SnNoList = function.CheckNull(apply.SwapSnExpand).TrimEnd('\n').Split('\n');
- string[] OrderSnNo = function.CheckNull(order.SnNos).Split(',');
- for (int i = 0; i < SnNoList.Length; i++)
- {
- Dictionary<string, object> data = new Dictionary<string, object>();
- data["ApplyNo"] = apply.ApplyNo;
- data["OrderNo"] = order.OrderNo;
- data["MakerCode"] = user.MakerCode;
- data["RealName"] = user.RealName;
- if (SnNoList.Length > i)
- {
- string SourceSn = SnNoList[i].Split(':')[0];
- data["ComeSn"] = SnNoList[i];
- data["ComeSnParam"] = SourceSn;
- MachineForSnNo machineFor = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == SourceSn) ?? new MachineForSnNo();
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == machineFor.SnId) ?? new PosMachinesTwo();
- if (pos.LeaderUserId > 0)
- {
- Users leader = db.Users.FirstOrDefault(m => m.Id == pos.LeaderUserId) ?? new Users();
- data["ComeSnMakerCode"] = leader.MakerCode;
- data["ComeSnRealName"] = leader.RealName;
- }
- }
- if (OrderSnNo.Length > i)
- {
- string SendSn = OrderSnNo[i];
- data["SendSn"] = OrderSnNo[i];
- MachineForSnNo machineFor = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == SendSn) ?? new MachineForSnNo();
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == machineFor.SnId) ?? new PosMachinesTwo();
- if (pos.LeaderUserId > 0)
- {
- Users leader = db.Users.FirstOrDefault(m => m.Id == pos.LeaderUserId) ?? new Users();
- data["SendSnMakerCode"] = leader.MakerCode;
- data["SendSnRealName"] = leader.RealName;
- }
- }
- data["CreateDate"] = apply.CreateDate == null ? "" : apply.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- data["Status"] = order.Status == 2 ? "已发货" : "未发货";
- dataList.Add(data);
- }
- }
- else if (!string.IsNullOrEmpty(SnNos))
- {
- var order = db.Orders.FirstOrDefault(m => m.Status > -1 && m.SnNos.Contains(SnNos)) ?? new Orders();
- var apply = db.MachineApply.FirstOrDefault(m => m.Id == order.Sort) ?? new MachineApply();
- var user = db.Users.FirstOrDefault(m => m.Id == apply.UserId) ?? new Users();
- string[] SnNoList = function.CheckNull(apply.SwapSnExpand).TrimEnd('\n').Split('\n');
- string[] OrderSnNo = function.CheckNull(order.SnNos).Split(',');
- for (int i = 0; i < OrderSnNo.Length; i++)
- {
- Dictionary<string, object> data = new Dictionary<string, object>();
- data["ApplyNo"] = apply.ApplyNo;
- data["OrderNo"] = order.OrderNo;
- data["MakerCode"] = user.MakerCode;
- data["RealName"] = user.RealName;
- if (SnNoList.Length > i)
- {
- string SourceSn = SnNoList[i].Split(':')[0];
- data["ComeSn"] = SnNoList[i];
- data["ComeSnParam"] = SourceSn;
- MachineForSnNo machineFor = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == SourceSn) ?? new MachineForSnNo();
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == machineFor.SnId) ?? new PosMachinesTwo();
- if (pos.LeaderUserId > 0)
- {
- Users leader = db.Users.FirstOrDefault(m => m.Id == pos.LeaderUserId) ?? new Users();
- data["ComeSnMakerCode"] = leader.MakerCode;
- data["ComeSnRealName"] = leader.RealName;
- }
- }
- if (OrderSnNo.Length > i)
- {
- string SendSn = OrderSnNo[i];
- data["SendSn"] = OrderSnNo[i];
- MachineForSnNo machineFor = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == SendSn) ?? new MachineForSnNo();
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == machineFor.SnId) ?? new PosMachinesTwo();
- if (pos.LeaderUserId > 0)
- {
- Users leader = db.Users.FirstOrDefault(m => m.Id == pos.LeaderUserId) ?? new Users();
- data["SendSnMakerCode"] = leader.MakerCode;
- data["SendSnRealName"] = leader.RealName;
- }
- }
- data["CreateDate"] = apply.CreateDate == null ? "" : apply.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- data["Status"] = order.Status == 2 ? "已发货" : "未发货";
- dataList.Add(data);
- }
- }
- Dictionary<string, object> obj = new Dictionary<string, object>();
- obj.Add("code", 0);
- obj.Add("msg", "");
- obj.Add("count", dataList.Count);
- obj.Add("data", dataList);
- return Json(obj);
- }
- #endregion
- #region 查询机具循环
- /// <summary>
- /// 根据条件查询机具来源机具和券码
- /// </summary>
- /// <returns></returns>
- public IActionResult SourceLoop(string right, string SnNos)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- ViewBag.SnNos = SnNos;
- return View();
- }
- #endregion
- #region 根据条件查询机具来源机具和券码
- /// <summary>
- /// 机具循环列表
- /// </summary>
- /// <returns></returns>
- public string SourceLoopData(string SnNo, int page = 1, int limit = 30)
- {
- var result = "";
- var machineForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == SnNo) ?? new MachineForSnNo();
- var pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == machineForSnNo.SnId) ?? new PosMachinesTwo();
- if (pos.Id == 0)
- {
- return "机具:" + SnNo + "不存在";
- }
- else
- {
- var stattime = pos.RecycStartDate == null ? "" : pos.RecycStartDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- var endtime = pos.RecycEndDate == null ? "" : pos.RecycEndDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- result += "循环开始时间:" + stattime + "\n";
- result += "循环结束时间:" + endtime + "\n";
- result += "来源机具/券:" + pos.SourcePosSn + "\n";
- }
- return result;
- }
- #endregion
- #region 查询创客直推奖
- public IActionResult Prize100(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public Dictionary<string, string> Prize100Do(string MakerCode)
- {
- Dictionary<string, string> dic = new Dictionary<string, string>();
- string result = "";
- UserForMakerCode forMakerCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (forMakerCode == null)
- {
- result += "创客编号不存在\n";
- dic.Add("code", "1");
- dic.Add("result", result);
- return dic;
- }
- int OrderCount = db.Orders.Count(m => m.UserId == forMakerCode.UserId && m.PayStatus == 1 && m.TotalPrice == 600);
- if (OrderCount == 0)
- {
- result += "该创客未下单\n";
- dic.Add("code", "1");
- dic.Add("result", result);
- return dic;
- }
- if (OrderCount > 1)
- {
- result += "该创客已不是首笔下单\n";
- dic.Add("code", "1");
- dic.Add("result", result);
- return dic;
- }
- Orders order = db.Orders.FirstOrDefault(m => m.UserId == forMakerCode.UserId && m.PayStatus == 1 && m.TotalPrice == 600) ?? new Orders();
- if (order.PayStatus < 1)
- {
- result += "未付款\n";
- dic.Add("code", "1");
- dic.Add("result", result);
- return dic;
- }
- Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId) ?? new Users();
- Users puser = db.Users.FirstOrDefault(m => m.Id == user.ParentUserId) ?? new Users();
- result += "订单号:" + order.OrderNo + "\n";
- result += "下单创客\n创客编号:" + user.MakerCode + ",姓名:" + user.RealName + ",手机号:" + user.Mobile + "\n";
- result += "上级创客\n创客编号:" + puser.MakerCode + ",姓名:" + puser.RealName + ",手机号:" + puser.Mobile + "\n";
- int machineCount = db.PosMachinesTwo.Count(m => m.UserId == puser.Id && m.PosSnType == 0); //判断是否拥有3台兑换机
- int ActiveCount = db.PosMachinesTwo.Count(m => m.UserId == puser.Id && m.ActivationState == 1); //判断是否拥有3台激活机(不限购买或赠送)
- if (machineCount + ActiveCount >= 3)
- {
- string IsGet = "未发放";
- int ToUserId = 0;
- UserAccountRecord item = db.UserAccountRecord.FirstOrDefault(m => m.QueryCount == order.Id && m.ChangeType == 112);
- if (item == null)
- {
- DateTime start = order.PayDate.Value.AddMinutes(-2);
- DateTime end = order.PayDate.Value.AddMinutes(2);
- item = db.UserAccountRecord.FirstOrDefault(m => m.UserId == puser.Id && m.ChangeType == 112 && m.ChangeAmount == 100 && m.CreateDate >= start && m.CreateDate <= end);
- }
- if (item != null)
- {
- IsGet = "已发放(发放时间:" + item.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss") + ")";
- ToUserId = item.UserId;
- dic.Add("code", "1");
- }
- else
- {
- dic.Add("id", order.Id.ToString());
- dic.Add("code", "0");
- }
- Users touser = db.Users.FirstOrDefault(m => m.Id == ToUserId) ?? new Users();
- result += "是否发放:" + IsGet + "\n";
- result += "应该发放对象\n创客编号:" + puser.MakerCode + ",姓名:" + puser.RealName + ",手机号:" + puser.Mobile + "\n";
- result += "实际发放对象\n创客编号:" + touser.MakerCode + ",姓名:" + touser.RealName + ",手机号:" + touser.Mobile + "\n";
- }
- else
- {
- result += "上级创客未满足条件\n兑换机:" + machineCount + "台,激活机:" + ActiveCount + "台\n";
- dic.Add("code", "1");
- }
- dic.Add("result", result);
- return dic;
- }
- public string AddPrize100(int Id)
- {
- Orders order = db.Orders.FirstOrDefault(m => m.Id == Id);
- if (order != null)
- {
- //机具券逻辑
- OrderProduct pro = db.OrderProduct.FirstOrDefault(m => m.OrderId == Id);
- if (pro != null)
- {
- //推荐下单奖励
- if (pro.ProductId == 10 || pro.ProductId == 11)
- {
- int OrderId = order.Id;
- bool checkPrize = db.UserAccountRecord.Any(m => m.QueryCount == OrderId && m.ChangeType == 112);
- if (!checkPrize)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId);
- if (user != null)
- {
- bool directPrize = false; //直推奖标记
- int ParentUserId = user.ParentUserId;
- while (ParentUserId > 0)
- {
- Users puser = db.Users.FirstOrDefault(m => m.Id == ParentUserId) ?? new Users();
- int machineCount = db.PosMachinesTwo.Count(m => m.UserId == ParentUserId && m.PosSnType == 0); //判断是否拥有3台兑换机
- int ActiveCount = db.PosMachinesTwo.Count(m => m.UserId == ParentUserId && m.ActivationState == 1); //判断是否拥有3台激活机(不限购买或赠送)
- int couponCount = db.PosCoupons.Count(m => m.UserId == ParentUserId && m.IsUse == 0); //判断是否拥有3张券
- if ((machineCount + ActiveCount + couponCount >= 3 || puser.LeaderLevel > 0) && !directPrize)
- {
- DirectPrize(db, order.Id, ParentUserId, pro.ProductCount);
- directPrize = true;
- db.SaveChanges();
- return "发放成功";
- }
- ParentUserId = puser.ParentUserId;
- }
- }
- }
- return "已发放,请勿重复发放";
- }
- }
- }
- return "操作失败";
- }
- public void DirectPrize(WebCMSEntities db, int OrderId, int UserId, int Count = 1)
- {
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
- if (account == null)
- {
- account = db.UserAccount.Add(new UserAccount()
- {
- Id = UserId,
- UserId = UserId,
- }).Entity;
- db.SaveChanges();
- }
- decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
- decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
- decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
- account.BalanceAmount += 100 * Count;
- account.TotalAmount += 100 * Count;
- decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
- decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
- decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
- UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = UserId, //创客
- ChangeType = 112, //变动类型
- ChangeAmount = 100 * Count, //变更金额
- BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
- AfterTotalAmount = AfterTotalAmount, //变更后总金额
- BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
- AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
- BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
- AfterBalanceAmount = AfterBalanceAmount, //变更后余额
- QueryCount = OrderId,
- }).Entity;
- db.SaveChanges();
- }
- #endregion
- #region 查询机具开机奖
- public IActionResult OpenPrize(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public Dictionary<string, string> OpenPrizeDo(string PosSn)
- {
- Dictionary<string, string> dic = new Dictionary<string, string>();
- string result = "";
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == PosSn);
- if (pos == null)
- {
- result += "机具SN号不存在\n";
- dic.Add("code", "1");
- dic.Add("result", result);
- return dic;
- }
- if (pos.BindingState == 0)
- {
- result += "机具未绑定\n";
- dic.Add("code", "1");
- dic.Add("result", result);
- return dic;
- }
- if (pos.ActivationState == 0)
- {
- result += "机具未激活\n";
- dic.Add("code", "1");
- dic.Add("result", result);
- return dic;
- }
- PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
- if (merchant == null)
- {
- result += "商户不存在\n";
- dic.Add("code", "1");
- dic.Add("result", result);
- return dic;
- }
- Users buyuser = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new Users();
- result += "机具号:" + PosSn + "\n";
- result += "机具所属人:\n创客编号:" + buyuser.MakerCode + ",姓名:" + buyuser.RealName + ",手机号:" + buyuser.Mobile + "\n";
- result += "商户信息\n商户编号:" + merchant.KqMerNo + ",姓名:" + merchant.MerchantName + ",手机号:" + merchant.MerchantMobile + "\n";
- string OpenUser10 = "未领取";
- string OpenUser20 = "未领取";
- var OpenRewardDetail = db.OpenRewardDetail.Where(m => m.SnNo == pos.PosSn).ToList();
- OpenRewardDetail openreward = OpenRewardDetail.FirstOrDefault(m => m.CreditRewardAmount == 20) ?? new OpenRewardDetail();
- if (openreward.Id > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == openreward.UserId) ?? new Users();
- OpenUser20 = "创客编号:" + user.MakerCode + ",姓名:" + user.RealName + ",手机号:" + user.Mobile;
- }
- openreward = OpenRewardDetail.FirstOrDefault(m => m.CreditRewardAmount == 10) ?? new OpenRewardDetail();
- if (openreward.Id > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == openreward.UserId) ?? new Users();
- OpenUser10 = "创客编号:" + user.MakerCode + ",姓名:" + user.RealName + ",手机号:" + user.Mobile;
- }
- result += "开机奖20:" + OpenUser20 + "\n";
- dic.Add("id", pos.Id.ToString());
- dic.Add("code", "0");
- dic.Add("result", result);
- return dic;
- }
- public string AddOpenPrize(int Id)
- {
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == Id && m.ActivationState == 1);
- if (pos == null)
- {
- return "机具未激活";
- }
- if (pos.BindingTime <= pos.TransferTime)
- {
- return "补录机,不能补发开机奖";
- }
- decimal ActPrize = decimal.Parse(function.CheckNum(pos.SeoKeyword));
- if (ActPrize == 0)
- {
- return "机具无押金";
- }
- PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
- if (merchant == null)
- {
- return "商户不存在";
- }
- bool check = db.OpenRewardDetail.Any(m => m.SnNo == pos.PosSn);
- if (check)
- {
- return "开机奖励已发放,请勿重复操作";
- }
- // 从机具所属人上级开始分开机奖励
- Users user = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId);
- if (user != null)
- {
- if (!string.IsNullOrEmpty(user.ParentNav))
- {
- decimal Prize = 20;
- List<string> PrizeFlag = new List<string>();
- string[] ParentNavs = user.ParentNav.Trim(',').Replace(",,", ",").Split(',');
- for (int i = ParentNavs.Length - 1; i >= 0; i--)
- {
- int UserId = int.Parse(ParentNavs[i]);
- Users puser = db.Users.FirstOrDefault(m => m.Id == UserId && m.AuthFlag == 1);
- if (puser != null && Prize > 0)
- {
- int machineCount = db.PosMachinesTwo.Count(m => m.BuyUserId == puser.Id && m.PosSnType == 0); //判断是否拥有3台兑换机
- int ActiveCount = db.PosMachinesTwo.Count(m => m.BuyUserId == puser.Id && m.ActivationState == 1); //判断是否拥有3台激活机(不限购买或赠送)
- int couponCount = db.PosCoupons.Count(m => m.UserId == puser.Id && m.IsUse == 0); //判断是否拥有3张券
- if (machineCount + ActiveCount + couponCount >= 3)
- {
- int pTopUserId = 0;
- if (!string.IsNullOrEmpty(puser.ParentNav))
- {
- pTopUserId = int.Parse(puser.ParentNav.Trim(',').Replace(",,", ",").Split(',')[0]);
- }
- Users machineUser = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new Users();
- OpenRewardDetail detail = db.OpenRewardDetail.Add(new OpenRewardDetail()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- TradeMonth = DateTime.Now.ToString("yyyyMM"), //交易月
- TradeDate = pos.ActivationTime, //达标日期
- UserId = puser.Id, //创客
- BrandId = pos.BrandId, //品牌
- ProductName = RelationClass.GetKqProductBrandInfo(pos.BrandId), //产品名称
- MerchantId = pos.BindMerchantId, //商户
- DirectUserId = merchant.UserId, //商户直属人
- SnNo = pos.PosSn, //SN号
- MerNo = merchant.KqMerNo, //渠道商户号
- SnType = pos.PosSnType, //机具类型
- StandardDate = pos.ActivationTime, //商户的激活日期
- SnStoreId = pos.StoreId, //SN仓库
- MerBuddyType = puser.MerchantType, //商户创客类型
- RewardType = 1, //奖励类型 1-开机直接奖励,2-开机间接奖励
- RewardTips = "开机奖励", //奖励描述
- CreditTradeAmt = pos.CreditTrade, //贷记卡交易总金额
- DebitTradeAmt = pos.DebitCardTrade, //借记卡交易总金额
- CreditRewardAmount = Prize, //贷记卡交易奖励金额
- RewardDesc = "开机奖励", //奖励描述
- TopUserId = pTopUserId, //顶级创客
- SeoTitle = machineUser.RealName,
- }).Entity;
- db.OpenReward.Add(new OpenReward()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- TradeMonth = DateTime.Now.ToString("yyyyMM"), //交易月
- TradeDate = DateTime.Now, //达标日期
- UserId = puser.Id, //创客
- BrandId = pos.BrandId, //品牌
- RewardType = 2, //奖励类型
- CreditTradeAmt = pos.CreditTrade, //贷记卡交易总金额
- DebitTradeAmt = pos.DebitCardTrade, //借记卡交易总金额
- CreditRewardAmount = Prize, //贷记卡交易奖励金额
- RewardDesc = "开机奖励", //奖励描述
- TopUserId = pTopUserId, //顶级创客
- });
- string IdBrand = puser.Id + "_" + pos.BrandId;
- UserMachineData userData = db.UserMachineData.FirstOrDefault(m => m.IdBrand == IdBrand);
- if (userData == null)
- {
- userData = db.UserMachineData.Add(new UserMachineData()
- {
- IdBrand = IdBrand,
- }).Entity;
- db.SaveChanges();
- }
- userData.OpenProfit += Prize;
- db.SaveChanges();
- //账户入库
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == puser.Id);
- if (account == null)
- {
- account = db.UserAccount.Add(new UserAccount()
- {
- Id = puser.Id,
- UserId = puser.Id,
- }).Entity;
- db.SaveChanges();
- }
- //收支明细入库
- decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
- decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
- decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
- account.BalanceAmount += Prize;
- account.TotalAmount += Prize;
- decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
- decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
- decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
- UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = puser.Id, //创客
- ChangeType = 50, //变动类型
- ProductType = pos.BrandId, //产品类型
- ChangeAmount = Prize, //变更金额
- BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
- AfterTotalAmount = AfterTotalAmount, //变更后总金额
- BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
- AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
- BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
- AfterBalanceAmount = AfterBalanceAmount, //变更后余额
- }).Entity;
- db.SaveChanges();
- RedisDbconn.Instance.Set("UserAccount:" + puser.Id, account);
- string dateString = DateTime.Now.ToString("yyyyMMdd");
- string monthString = DateTime.Now.ToString("yyyyMM");
- // 开机奖励列表
- List<string> dates = RedisDbconn.Instance.GetList<string>("OpenRewardDay:" + puser.Id + ":" + pos.BrandId);
- if (!dates.Contains(dateString))
- {
- RedisDbconn.Instance.AddList("OpenRewardDay:" + puser.Id + ":" + pos.BrandId, dateString);
- }
- RedisDbconn.Instance.AddNumber("OpenRewardAmt:" + puser.Id + ":" + pos.BrandId + ":" + dateString, Prize);
- List<string> months = RedisDbconn.Instance.GetList<string>("OpenRewardMonth:" + puser.Id + ":" + pos.BrandId);
- if (!months.Contains(monthString))
- {
- RedisDbconn.Instance.AddList("OpenRewardMonth:" + puser.Id + ":" + pos.BrandId, monthString);
- }
- RedisDbconn.Instance.AddNumber("OpenRewardAmt:" + puser.Id + ":" + pos.BrandId + ":" + monthString, Prize);
- // 开机奖励详情
- RedisDbconn.Instance.AddList("OpenRewardDetail:" + puser.Id + ":" + pos.BrandId + ":" + dateString, detail);
- //收支明细
- RedisDbconn.Instance.AddList("UserAccountRecord:" + puser.Id + ":1:" + monthString, userAccountRecord);
- RedisDbconn.Instance.AddNumber("UserAccount:" + puser.Id + ":1:" + monthString, Prize);
- Prize = 0;
- PrizeFlag.Add(Prize.ToString("f0"));
- }
- }
- }
- string result = "";
- if (string.IsNullOrEmpty(result))
- {
- return "发放成功";
- }
- return result;
- }
- }
- db.Dispose();
- return "操作失败";
- }
- #endregion
- #region 查询机具流量费分佣
- public IActionResult FluxPrize(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public Dictionary<string, string> FluxPrizeDo(string PosSn)
- {
- Dictionary<string, string> dic = new Dictionary<string, string>();
- string result = "";
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == PosSn);
- if (pos == null)
- {
- result += "机具SN号不存在\n";
- dic.Add("code", "1");
- dic.Add("result", result);
- return dic;
- }
- if (pos.BindingState == 0)
- {
- result += "机具未绑定\n";
- dic.Add("code", "1");
- dic.Add("result", result);
- return dic;
- }
- if (pos.ActivationState == 0)
- {
- result += "机具未激活\n";
- dic.Add("code", "1");
- dic.Add("result", result);
- return dic;
- }
- PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
- if (merchant == null)
- {
- result += "商户不存在\n";
- dic.Add("code", "1");
- dic.Add("result", result);
- return dic;
- }
- Users buyuser = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new Users();
- result += "机具号:" + PosSn + "\n";
- result += "机具所属人:\n创客编号:" + buyuser.MakerCode + ",姓名:" + buyuser.RealName + ",手机号:" + buyuser.Mobile + "\n";
- result += "商户信息\n商户编号:" + merchant.KqMerNo + ",姓名:" + merchant.MerchantName + ",手机号:" + merchant.MerchantMobile + "\n";
- string FluxGet6 = "未领取";
- string FluxUser6 = "";
- FluxProfitDetail flux = db.FluxProfitDetail.FirstOrDefault(m => m.SnNo == pos.PosSn) ?? new FluxProfitDetail();
- if (flux.Id > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == flux.UserId) ?? new Users();
- FluxGet6 = "已领取(金额:" + flux.FluxFeeAmt + ",领取时间:" + flux.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss") + ")";
- FluxUser6 = "创客编号:" + user.MakerCode + ",姓名:" + user.RealName + ",手机号:" + user.Mobile;
- }
- result += "流量费:" + FluxGet6 + "\n";
- result += "流量费发放对象:" + FluxUser6 + "\n";
- dic.Add("id", pos.Id.ToString());
- dic.Add("code", "0");
- dic.Add("result", result);
- return dic;
- }
- public string AddFluxPrize(int Id)
- {
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == Id && m.ActivationState == 1);
- if (pos == null)
- {
- return "机具未激活";
- }
- decimal ActPrize = decimal.Parse(function.CheckNum(pos.SeoKeyword));
- if (ActPrize == 0)
- {
- return "机具无押金";
- }
- PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
- if (merchant == null)
- {
- return "商户不存在";
- }
- if (pos.BrandId == 6)
- {
- return "立刷不支持流量费分佣";
- }
- if (decimal.Parse(function.CheckNum(pos.SeoKeyword)) <= 0)
- {
- return "无押金机,不支持流量费分佣";
- }
- bool check = db.FluxProfitDetail.Any(m => m.MerNo == merchant.KqMerNo);
- if (check)
- {
- return "流量费奖励已发放,请勿重复操作";
- }
- SpModels.TradeFluxRecord trade = spdb.TradeFluxRecord.FirstOrDefault(m => m.TradeSnNo == pos.PosSn);
- if (trade != null)
- {
- try
- {
- string OrderNo = trade.TradeSerialNo; //单号
- DateTime TradeDate = trade.CreateDate.Value;
- string TradeMonth = TradeDate.ToString("yyyyMM");
- decimal FeeAmount = trade.FeeAmount; //流量费
- if (trade.ProductType == "1" || trade.ProductType == "4" || trade.ProductType == "6" || trade.ProductType == "8" || trade.ProductType == "9")
- {
- FeeAmount = FeeAmount / 100;
- }
- string TradeSnNo = trade.TradeSnNo; //机具SN
- decimal FluxProfit = 0;
- if (trade.ProductType == "1" && FeeAmount == 60)
- {
- FluxProfit = 24;
- }
- else if (trade.ProductType == "7" && FeeAmount == 46)
- {
- FluxProfit = 10;
- }
- else if (trade.ProductType != "1" && FeeAmount == 48)
- {
- FluxProfit = 12;
- }
- if (FluxProfit > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new Users();
- int GetUserId = user.Id;
- int TopUserId = 0;
- string ParentNav = user.ParentNav;
- if (!string.IsNullOrEmpty(ParentNav))
- {
- string[] ParentNavList = ParentNav.Trim(',').Replace(",,", ",").Split(',');
- if (ParentNavList.Length > 1)
- {
- TopUserId = int.Parse(ParentNavList[1]);
- }
- else if (ParentNavList.Length == 1)
- {
- TopUserId = int.Parse(ParentNavList[0]);
- }
- }
- FluxProfitSummary fluxProfit = db.FluxProfitSummary.FirstOrDefault(m => m.UserId == GetUserId && m.BrandId == pos.BrandId && m.TradeMonth == TradeMonth);
- if (fluxProfit == null)
- {
- fluxProfit = db.FluxProfitSummary.Add(new FluxProfitSummary()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = GetUserId, //创客
- BrandId = pos.BrandId,
- TopUserId = TopUserId, //顶级创客
- TradeMonth = TradeMonth, //交易月
- MerUserType = user.MerchantType, //商户创客类型
- Remark = "流量卡分佣", //备注
- }).Entity;
- db.SaveChanges();
- }
- fluxProfit.FluxProfitAmt += FluxProfit; //流量分润总金额
- db.FluxProfitDetail.Add(new FluxProfitDetail()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- RecordNo = OrderNo, //单号
- TradeDate = TradeDate.ToString("yyyyMMdd"), //交易日期
- TradeTime = TradeDate.ToString("HHmmss"), //交易时间
- TradeMonth = TradeMonth, //交易月
- UserId = GetUserId, //创客
- MerchantId = pos.BindMerchantId, //商户
- MerchantUserId = pos.UserId, //商户直属人
- MerNo = merchant.KqMerNo, //渠道商户编号
- SnNo = pos.PosSn, //渠道SN号
- FluxOrderNo = OrderNo, //流量扣费单号
- TradeOrderNo = OrderNo, //交易流水号
- TradeAmt = trade.TradeAmount, //商户交易额
- FluxFeeAmt = FeeAmount, //流量费
- FluxProfitAmt = FluxProfit, //流量分润总金额
- PosType = pos.PosSnType.ToString(), //POS类型
- Remark = "流量卡分佣", //备注
- BrandId = pos.BrandId, //品牌
- TopUserId = TopUserId, //顶级创客
- MerUserType = user.MerchantType, //商户创客类型
- });
- string IdBrand = user.Id + "_" + pos.BrandId;
- UserMachineData userData = db.UserMachineData.FirstOrDefault(m => m.IdBrand == IdBrand);
- if (userData == null)
- {
- userData = db.UserMachineData.Add(new UserMachineData()
- {
- IdBrand = IdBrand,
- }).Entity;
- db.SaveChanges();
- }
- userData.FluxProfit += FluxProfit;
- db.SaveChanges();
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == GetUserId);
- if (account == null)
- {
- account = db.UserAccount.Add(new UserAccount()
- {
- Id = GetUserId,
- UserId = GetUserId,
- }).Entity;
- db.SaveChanges();
- }
- decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
- decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
- decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
- account.BalanceAmount += FluxProfit;
- account.TotalAmount += FluxProfit;
- decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
- decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
- decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
- UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = GetUserId, //创客
- ChangeType = 60, //变动类型
- ProductType = pos.BrandId, //产品类型
- ChangeAmount = FluxProfit, //变更金额
- BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
- AfterTotalAmount = AfterTotalAmount, //变更后总金额
- BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
- AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
- BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
- AfterBalanceAmount = AfterBalanceAmount, //变更后余额
- }).Entity;
- db.SaveChanges();
- spdb.Dispose();
- db.Dispose();
- return "发放成功";
- }
- }
- catch (Exception ex)
- {
- function.WriteLog(DateTime.Now.ToString() + "\n$" + trade.Id + "$\n" + ex.ToString(), "流量卡分佣异常");
- }
- }
- spdb.Dispose();
- db.Dispose();
- return "操作失败";
- }
- #endregion
- #region 设置立刷费率
- public IActionResult LisFee(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string LisFeeDo(string PosSns, decimal Fee, string Kind, string Fix)
- {
- if (string.IsNullOrEmpty(PosSns))
- {
- return "请输入机具号";
- }
- string result = SysUserName + "设置\n";
- string[] PosSnList = PosSns.Split('\n');
- int total = PosSnList.Length;
- int index = 0;
- foreach (string SubPosSn in PosSnList)
- {
- index += 1;
- string PosSn = SubPosSn.Replace("\r", "");
- result += PosSn + ":" + Fee + "\n";
- if (Kind == "M5")
- {
- result += SetLiSFee(PosSn, Fee) + "\n";
- }
- else if (Kind == "N1")
- {
- result += SetLiSDeposit(PosSn, (int)Fee);
- }
- RedisDbconn.Instance.Set("LisFeeProcess:" + SysId, index + " / " + total);
- }
- result += "\n\n";
- function.WriteLog(result, "设置立刷费率");
- return result;
- }
- public string LisFeeProcess()
- {
- return RedisDbconn.Instance.Get<string>("LisFeeProcess:" + SysId);
- }
- #region 立刷
- string LiSAgentId = "50814834";
- string LiSPrivateKey = "MIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDTdeLXqQmfVJM/ATVnq+TdhgpKKPp3hXcuY2s9qrN1Uws7I7jqnq/gfoBHBWBu/PnQp/z65okBoz4PEpWzJYZDF4csgh3E45He46ialNzUlOPWv6yLzgQPHuneq2pXOb7dbN4kZx+g3nEbBjH+/P9xp+lU3HCwjNxIFSr3EyBAQf2HgvNqh70u9T13fGVx3Jtd2xbIKYhvGNPH9ZCGiZNiCy+m+F+TKywgKK/xify1KQgR6otVUOVIGYvPYlXAgLJM2/V54166KX1UUFMsKRj4Kt2j4GqoHzDfRk9ibYJ/8iSDGX4+WH5+8mq/raqA77VcAD+bMrt3Bm59XmaWtjZwDY1zh5sP5jEaxu4lde2xZD80kQ6p1ZydpqnjmWm6NKXSz8j85gRkTQqNALKNANnJb6f1Yy30WirnrhMkqU2dqBzzXxtk3k/2zv9BENjYs1igrRYpwX3QRx87aTOrIk/PO6cxMaWl249LPigah0OqVyIg5yOvtnUCdU12OqaVELIw5GnZ7rTRn3tAsJ+u1om+3XktbN3GUEpw5RWAT3UAsAU7Vxt9xPCss+JXF+ogXYgo9QpEjanXOfLo5KPv2CkBuzy87d85OId71gXpYcbp0zbKz5eXKZanVP9pwn43jqiPkqtam8N1TLCCmZ4t2cd+gpW2CX/+W7bmc25HJtRPuwIDAQABAoICAE7B9GfwTGYsYN8xewuOySH8n255jrffXMFJRBLmtgo3kNJI/sFbsxPA6dQJ253a2MxvFNj57gNPInkIqfrcOgJZC/52w9GmFJlYX16bnRgMEEPWhdRYOcjL8bz+SRANsNnVh3M1eWE4GBZBm3NmFVnmeRAjPlFzVUP/pk35sKReL6g+DJ0by0lnC6qqCTp8ON2fEQAh/++o5o/uFRMWwG7ezbO5hBdTGA8uOEGU7CspChlqKtTu2UaeRSVLcbbN+BqKPgZUud5KP6Scei3TbLpZdM1pczAE1fYCwORe9yDiNdkiMJPV798mOL4FV6DIJtsKOKZ8Ibg2DAbjlwABA4rQsgBUAA4Nj+skqLE7gGnJViHzKw87zve+v3CV9NEldHV7g2a78yKye489vlmmxcLj+Ln5O/Y3OQnDwsO8mVua5Ddyp26N88oB1wW62VLUn68ePclDd3Bdub/ayiBqFOqA0cTlqI5Dvz0rqrK9dkq4Ij295EK3OfYHCjuoHN+mJP0K0+o+5ItPXu7KWRz/Bf+KPneAAgvTRaDMww+HpfbcM6sxfiZqVE0yGux39i6wjEOCcIbfO8O7wgCEk4GE/98Z6/+lp1NEaQLHcu24FlUeCgThTVaJsmcY9aHB+jFn11yBiJ6+N+RYONWto0xLDyt71qM5KXEEngYambCK8D0JAoIBAQD5tYwpTNfcessxPcYAXkdJWNAP3/8kwz97rFi9gZYsxhZJ/JCU8TUCYlpJDf91mCe0i7uayGb3FbtzoWEwHxKL4DdlL47ZaaGA2dIVNMkxksXDehEE6/bVRAcFH1fT9mZr7uB2uX1YjesFRKEEd3UXpfKSPwtm3QUQz7P7WxzL0CWpfC11vAK2biCG72inE3MelCw/z1Y7M7oo2fyflObMPKkqyuy5NGtZ5t9xpMvLaZrOzJkYbwPaIqxIvISg9rxilZhjMhIFHOW8xM0lVHMEkk2NrwwsMihxFmDaUohZf0GiyYzNEEVBmVEhAZSOV5d1JlWYQStyvDas195/IHjNAoIBAQDYyakyJbbEhgcLSrmXKtJY584y6SYFE1mOZKKkON2EfDpAlwFmJYV26dWiPb77mUsf1HUU/aIT6sfZsrh6axvs0rqqp5ltIr6AzXnJce590EMJnASWLTAdhYXK6e5Y1W8AhylP4LzZk/dy4LOaF09pMi3ugogFFJAWV8j/cv2niUsCXg/I6cQz/Co6cwVhBzOnAMIjdvZbJ2ONJ1Jy/4yS17DBFRyHxMbGVPckXEVodjZ73TAfUQIM83Z8YILxyym2d2f7lvuCyT+ZjmpEJQztdxPO8qT9MaROs4c/qVjJZndoTZ3z4i2eke9Bf3Qcd6Bfy6jPq/r73hl0w0kBo4qnAoIBAQCC8fgZJEnCPcZWAR3WzZm2VdNtr7n9TkH5GazDW7QjsJC5pa8v27k/kdHko2mGAg84N1pe1Z5hDc1p2oO7l1/DaAXEkwbm7eSaTB9FrZOf4mbAlj9chFzBA1ZnEkOdTIXzLaYZvDWF/Y30CkQhsn79srEcjeDtxRNF+JVaRzI3kuRdF1hDeB84CVIXUG5hxupEa9E0eQawLvT9PSqjiJLrIRhY72bpzBpLX61my9NuzOc4cMQLsxOjDTGpRuqJ+jlZvTbXNceLVNcIgW9OlxVlnU778IKCnp7khqatdkA4JmqF8gla86BNwRdxJoH/juFGtp6GJA6jsR0+0EjGA4I1AoIBAGl2ITNeGX2dXgvmPEcH8/CARFWMCozpjuWwm1acu1baQFRvoaSZmEXzF5SnySMIvf0sFBE0GgbqbnK/ePNE6/7XvSuMAR2Qi3CJhTe0jzrxd8tS9QBB12hlLmM6TlM08Z0mI7jSMcz/KJ/gJD9QG7enS6T+J0GhcT8NUaDDxhYcujram384CdToVXq9vd4n7L7PpaIvG0XY8ZsXiAqduzssZrZnmMuLtM+DQf+US8e3ymWTgveZJxA52GhFYy5RkWdMy28fUheb467GE3g3NgTHqwFAFXd/ENmgiKk1rxW7HVfGepLMczjy8ZvBbzDyGTjBEMyGc8DXmTauUfPUJX0CggEBAKEWyNHhEBcEfW6ppPYsaKTlIquA2Chr15KsZcSFOMIcsF/6D7TDZg2NPDYFmlALF/cdqDjRIAP/v5IMRiu3UtHyfDbRyEHx0prvucFMY0HyX9VOJnticwTb39awHi/uFJLs7txERw89eJFcLaxRRRRSpPq3PCalGFpC2i8HXsPnv3gyt+bfE92h6E2YTyP41NYmcuuXkyWM83s11YSC9ZgeilbJuvdajePHrtIAxy8cny+yTBcbnJnWw1yHtzWCA5FAw5OWSaeotbWaFEAHaOW1VG9e1I54pgmVTc5n+WixsgH1fpiz04ojlWRWRyP7hqS+GbAyGgg00KyErRrPcwc=";
- string LiSReqUrl = "https://openapi.jlpay.com/access/charge/"; //请求url
- public string LiSSign(string data)
- {
- var rsa = RSA.Create();
- var key = Convert.FromBase64String(LiSPrivateKey);
- var content = Encoding.UTF8.GetBytes(data);
- rsa.ImportPkcs8PrivateKey(key, out _);
- var result = rsa.SignData(content, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1);
- return Convert.ToBase64String(result);
- }
- // 设置费率
- public string SetLiSFee(string sn, decimal serviceFee)
- {
- Dictionary<string, object> dic = new Dictionary<string, object>();
- dic.Add("agentId", LiSAgentId);
- dic.Add("deviceSn", sn);
- List<Dictionary<string, object>> feeList = new List<Dictionary<string, object>>();
- Dictionary<string, object> item = new Dictionary<string, object>();
- item.Add("feeCalcType", "M5");
- item.Add("fixed", "0");
- item.Add("rate", serviceFee);
- feeList.Add(item);
- dic.Add("feeList", feeList);
- dic.Add("signMethod", "02");
- string content = LiSAgentId + sn + "M50" + serviceFee + "02";
- string signstr = LiSSign(content);
- dic.Add("signData", signstr);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(dic);
- string result = function.PostWebRequest(LiSReqUrl + "FEE003", req, new Dictionary<string, string>(), "application/json");
- return result;
- }
- // 设置押金
- public string SetLiSDeposit(string sn, int serviceFee)
- {
- serviceFee = serviceFee * 100;
- Dictionary<string, object> dic = new Dictionary<string, object>();
- dic.Add("agentId", LiSAgentId);
- dic.Add("deviceSn", sn);
- List<Dictionary<string, object>> feeList = new List<Dictionary<string, object>>();
- Dictionary<string, object> item = new Dictionary<string, object>();
- item.Add("feeCalcType", "N1");
- item.Add("fixed", "1");
- item.Add("rate", serviceFee);
- feeList.Add(item);
- dic.Add("feeList", feeList);
- dic.Add("signMethod", "02");
- string content = LiSAgentId + sn + "N11" + serviceFee + "02";
- string signstr = LiSSign(content);
- dic.Add("signData", signstr);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(dic);
- string result = function.PostWebRequest(LiSReqUrl + "FEE003", req, new Dictionary<string, string>(), "application/json");
- return result;
- }
- #endregion
- #endregion
- #region 查询商户型创客设置信息
- public IActionResult SeeMerchantType(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string SeeMerchantTypeDo(string PosSn)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN或者创客编号";
- }
- SetMerchantTypeRecord pos = new SetMerchantTypeRecord();
- if (PosSn.StartsWith("K"))
- {
- UserForMakerCode userfor = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == PosSn) ?? new UserForMakerCode();
- bool check = db.SetMerchantTypeRecord.Any(m => m.ToUserId == userfor.UserId);
- if (check)
- {
- pos = db.SetMerchantTypeRecord.Where(m => m.ToUserId == userfor.UserId).OrderByDescending(m => m.Id).FirstOrDefault() ?? new SetMerchantTypeRecord();
- }
- }
- else
- {
- bool check = db.SetMerchantTypeRecord.Any(m => m.PosSn == PosSn);
- if (check)
- {
- pos = db.SetMerchantTypeRecord.Where(m => m.PosSn == PosSn).OrderByDescending(m => m.Id).FirstOrDefault() ?? new SetMerchantTypeRecord();
- }
- }
- if (pos.Id == 0)
- {
- return "查无信息";
- }
- Users setUser = db.Users.FirstOrDefault(m => m.Id == pos.FromUserId) ?? new Users();
- Users toUser = db.Users.FirstOrDefault(m => m.Id == pos.ToUserId) ?? new Users();
- string CreateDate = pos.CreateDate == null ? "" : pos.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- string bindTime = pos.BindDate == null ? "" : pos.BindDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- string activeTime = pos.ActDate == null ? "" : pos.ActDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- string bindResult = pos.BindStatus == 1 ? "已绑定" : "未绑定";
- string activeResult = pos.ActStatus == 1 ? "已激活" : "未激活";
- string RecycFlag = pos.IsRecyc == 1 ? "已循环" : "未循环";
- string result = "";
- result += "机具SN:" + pos.PosSn + "\n";
- result += "操作人:创客编号:" + setUser.MakerCode + ",姓名:" + setUser.RealName + ",手机号:" + setUser.Mobile + "\n";
- result += "操作对象:创客编号:" + toUser.MakerCode + ",姓名:" + toUser.RealName + ",手机号:" + toUser.Mobile + "\n";
- result += "商户编号:" + pos.MerNo + "\n";
- result += "操作时间:" + pos.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss") + "\n";
- result += "绑定状态:" + bindResult + "(绑定时间:" + bindTime + ")\n";
- result += "激活状态:" + activeResult + "(激活时间:" + activeTime + ")\n";
- result += "贷记卡交易额:" + pos.CreditAmount + "\n";
- result += "是否循环:" + RecycFlag + "\n";
- return result;
- }
- #endregion
- #region 三要素验证
- public IActionResult CheckThreeElements(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string CheckThreeElementsDo(string bankcard, string idcard, string name)
- {
- var host = "https://bankcard3c.shumaidata.com";
- var path = "/bankcard3c";
- var method = "GET";
- var appcode = "8e5704921ca3422f80f0deb935a7ddc6";
- if (string.IsNullOrEmpty(bankcard))
- {
- return "结算银行卡号";
- }
- if (string.IsNullOrEmpty(idcard))
- {
- return "身份证号";
- }
- if (string.IsNullOrEmpty(name))
- {
- return "真实姓名";
- }
- String querys = "bankcard=" + bankcard + "&idcard=" + idcard + "&name=" + name;
- function.WriteLog(DateTime.Now.ToString(), "验证三要素日志");
- function.WriteLog(querys, "验证三要素日志");
- String bodys = "";
- String url = host + path;
- HttpWebRequest httpRequest = null;
- HttpWebResponse httpResponse = null;
- if (0 < querys.Length)
- {
- url = url + "?" + querys;
- }
- if (host.Contains("https://"))
- {
- ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
- httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
- }
- else
- {
- httpRequest = (HttpWebRequest)WebRequest.Create(url);
- }
- httpRequest.Method = method;
- httpRequest.Headers.Add("Authorization", "APPCODE " + appcode);
- if (0 < bodys.Length)
- {
- byte[] data = Encoding.UTF8.GetBytes(bodys);
- using (Stream stream = httpRequest.GetRequestStream())
- {
- stream.Write(data, 0, data.Length);
- }
- }
- try
- {
- httpResponse = (HttpWebResponse)httpRequest.GetResponse();
- }
- catch (WebException ex)
- {
- httpResponse = (HttpWebResponse)ex.Response;
- }
- Stream st = httpResponse.GetResponseStream();
- StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
- string result = reader.ReadToEnd();
- JsonData jsonObj = JsonMapper.ToObject(result);
- result = jsonObj["data"]["desc"].ToString();
- function.WriteLog(result, "验证三要素日志");
- function.WriteLog("\n\n", "验证三要素日志");
- return result;
- }
- #endregion
- #region 四要素验证
- public IActionResult CheckFourElements(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string CheckFourElementsDo(string bankcard, string idcard, string mobile, string name)
- {
- var host = "https://bankcard4c.shumaidata.com";
- var path = "/bankcard4c";
- var method = "GET";
- var appcode = "8e5704921ca3422f80f0deb935a7ddc6";
- if (string.IsNullOrEmpty(bankcard))
- {
- return "请输入结算银行卡号";
- }
- if (string.IsNullOrEmpty(idcard))
- {
- return "请输入身份证号";
- }
- if (string.IsNullOrEmpty(mobile))
- {
- return "请输入银行预留手机号";
- }
- if (string.IsNullOrEmpty(name))
- {
- return "请输入真实姓名";
- }
- String querys = "bankcard=" + bankcard + "&idcard=" + idcard + "&mobile=" + mobile + "&name=" + name;
- function.WriteLog(DateTime.Now.ToString(), "验证四要素日志");
- function.WriteLog(querys, "验证四要素日志");
- String bodys = "";
- String url = host + path;
- HttpWebRequest httpRequest = null;
- HttpWebResponse httpResponse = null;
- if (0 < querys.Length)
- {
- url = url + "?" + querys;
- }
- if (host.Contains("https://"))
- {
- ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
- httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
- }
- else
- {
- httpRequest = (HttpWebRequest)WebRequest.Create(url);
- }
- httpRequest.Method = method;
- httpRequest.Headers.Add("Authorization", "APPCODE " + appcode);
- if (0 < bodys.Length)
- {
- byte[] data = Encoding.UTF8.GetBytes(bodys);
- using (Stream stream = httpRequest.GetRequestStream())
- {
- stream.Write(data, 0, data.Length);
- }
- }
- try
- {
- httpResponse = (HttpWebResponse)httpRequest.GetResponse();
- }
- catch (WebException ex)
- {
- httpResponse = (HttpWebResponse)ex.Response;
- }
- Stream st = httpResponse.GetResponseStream();
- StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
- string result = reader.ReadToEnd();
- JsonData jsonObj = JsonMapper.ToObject(result);
- result = jsonObj["data"]["desc"].ToString();
- function.WriteLog(result, "验证四要素日志");
- function.WriteLog("\n\n", "验证四要素日志");
- return result;
- }
- #endregion
- public bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
- {
- return true;
- }
- #region 根据机具号同步商户激活状态
- public IActionResult SyncMerchantStatus(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string SyncMerchantStatusDo(string PosSn)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具号";
- }
- var pos = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == PosSn) ?? new MachineForSnNo();
- var posInfo = db.PosMachinesTwo.FirstOrDefault(m => m.Id == pos.SnId) ?? new PosMachinesTwo();
- var posMerchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == posInfo.BindMerchantId) ?? new PosMerchantInfo();
- if (posInfo.Id == 0)
- {
- return "机具" + PosSn + "不存在";
- }
- if (posMerchant.Id == 0)
- {
- return "机具绑定商户不存在";
- }
- else
- {
- posMerchant.ActiveStatus = 1;
- posMerchant.UpdateDate = DateTime.Now;
- posMerchant.MerStandardDate = posInfo.ActivationTime;
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosSn + ":" + SysUserName + "-" + SysRealName, "根据机具号同步商户激活状态");
- db.SaveChanges();
- }
- return "success";
- }
- #endregion
- #region 根据机具号补发开机奖励
- public IActionResult PosRewardReissued(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string PosRewardReissuedDo(string PosSn)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- string[] PosSnList = PosSn.Replace("\r", "").Split('\n');
- var PosId = "";
- var error = "";
- foreach (var item in PosSnList)
- {
- var pos = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == item) ?? new MachineForSnNo();
- var posInfo = db.PosMachinesTwo.FirstOrDefault(m => m.Id == pos.SnId) ?? new PosMachinesTwo();
- bool checkExist = db.OpenRewardDetail.Any(m => m.SnNo == item);
- if (checkExist)
- {
- error += "以下操作失败" + item + ',' + "该机具开机奖励已发,请勿再次操作" + '\n';
- }
- else
- {
- if (posInfo.Id > 0)
- {
- RedisDbconn.Instance.AddList("OpenRewardQueue", posInfo.Id.ToString());
- }
- }
- }
- if (!string.IsNullOrEmpty(error))
- {
- return "Warning|" + error;
- }
- PosId = PosId.TrimEnd(',');
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosId + ":" + SysUserName + "-" + SysRealName, "根据机具号补发开机奖励");
- return "success";
- }
- #endregion
- #region 根据机具号设置费率
- public IActionResult SetPosFee(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string SetPosFeeDo(string PosSn, string FeeType)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- if (string.IsNullOrEmpty(FeeType))
- {
- return "请输入选择费率";
- }
- if (FeeType == "0")
- {
- FeeType = "0.6";
- }
- if (FeeType == "1")
- {
- FeeType = "0.63";
- }
- string[] PosSnList = PosSn.Split('\n');
- var PosId = "";
- var RecordId = "";
- var error = "";
- foreach (var item in PosSnList)
- {
- var pos = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == item) ?? new MachineForSnNo();
- var posInfo = db.PosMachinesTwo.FirstOrDefault(m => m.Id == pos.SnId) ?? new PosMachinesTwo();
- if (posInfo.Id > 0)
- {
- var query = db.PosMachinesFeeChangeRecord.Add(new PosMachinesFeeChangeRecord()
- {
- Sort = posInfo.BrandId,
- CreateDate = DateTime.Now,
- PosId = posInfo.Id,
- PosSn = posInfo.PosSn,
- PosUserId = posInfo.UserId,
- MerchantId = posInfo.BindMerchantId,
- UserId = posInfo.UserId,
- ChangeFee = decimal.Parse(FeeType),
- }).Entity;
- db.SaveChanges();
- PosId += posInfo.Id + ",";
- RecordId += query.Id + ",";
- }
- else
- {
- error += "机具" + PosSn + "不存在";
- }
- }
- if (!string.IsNullOrEmpty(error))
- {
- return "Warning|" + error;
- }
- PosId = PosId.TrimEnd(',');
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosId + ":" + SysUserName + "-" + SysRealName, "根据机具号设置费率");
- string data = "{\"RecordId\":\"" + RecordId + "\",\"PosId\":\"" + PosId + "\",\"Fee\": \"" + FeeType + "\",\"Kind\": \"2\",\"OpMan\": \"系统\"}";
- RedisDbconn.Instance.AddList("SetDepositPostQueue", data);
- return "success";
- }
- #endregion
- #region 根据机具号、商户号、商户姓名关联商户和机具信息
- public IActionResult RelationPosAndMerchant(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string RelationPosAndMerchantDo(string PosSn, string MerchantNo, string MerchantName)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- if (string.IsNullOrEmpty(MerchantNo))
- {
- return "请输入商户编号";
- }
- if (string.IsNullOrEmpty(MerchantName))
- {
- return "请输入商户姓名";
- }
- var query = PosSn + "," + MerchantNo + "," + MerchantName;
- var posMerchant = db.PosMerchantInfo.FirstOrDefault(m => m.MerchantNo == MerchantNo && m.MerchantName == MerchantName) ?? new PosMerchantInfo();
- var machineForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == posMerchant.KqSnNo) ?? new MachineForSnNo();
- var pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == machineForSnNo.SnId) ?? new PosMachinesTwo();
- if (posMerchant.Id == 0)
- {
- return "商户" + MerchantNo + "不存在";
- }
- else if (pos.Id == 0)
- {
- return "机具" + PosSn + "不存在";
- }
- else
- {
- pos.BindMerchantId = posMerchant.Id;
- db.SaveChanges();
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + query + ":" + SysUserName + "-" + SysRealName, "根据机具号、商户号、商户姓名关联");
- }
- return "success";
- }
- #endregion
- #region 设置商户信息
- public IActionResult SetMerchantInfo(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string SetMerchantInfoDo(string PosSn, string MerchantNo, string MerchantName, string MerIdcardNo, string MerchantMobile)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- if (string.IsNullOrEmpty(MerchantNo))
- {
- return "请输入商户编号";
- }
- if (string.IsNullOrEmpty(MerchantName))
- {
- return "请输入商户姓名";
- }
- if (string.IsNullOrEmpty(MerIdcardNo))
- {
- return "请输入商户身份证号";
- }
- if (string.IsNullOrEmpty(MerchantMobile))
- {
- return "请输入商户手机号";
- }
- var posMerchant = db.PosMerchantInfo.FirstOrDefault(m => m.KqMerNo == MerchantNo && m.KqSnNo == PosSn && m.MerchantName.StartsWith(MerchantName.Substring(0, 1))) ?? new PosMerchantInfo();
- var query = "";
- query += "修改前:" + posMerchant.KqSnNo + "," + posMerchant.MerchantNo + "," + posMerchant.MerchantName + "," + posMerchant.MerIdcardNo + "," + posMerchant.MerchantMobile;
- query += "修改后:" + PosSn + "," + MerchantNo + "," + MerchantName + "," + MerIdcardNo + "," + MerchantMobile;
- if (posMerchant.Id == 0)
- {
- return "商户" + MerchantNo + "不存在或不在" + MerchantName + "名下";
- }
- else
- {
- posMerchant.MerIdcardNo = MerIdcardNo;
- posMerchant.MerchantName = MerchantName;
- posMerchant.MerRealName = MerchantName;
- posMerchant.MerchantMobile = MerchantMobile;
- db.SaveChanges();
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + query + ":" + SysUserName + "-" + SysRealName, "设置商户信息");
- }
- return "success";
- }
- #endregion
- #region 认证创客
- public IActionResult AuthMaker(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string AuthMakerDo(string MakerCode, string RealName, string CertId, string BackCard, string BackName)
- {
- if (string.IsNullOrEmpty(MakerCode))
- {
- return "请输入创客编号";
- }
- if (string.IsNullOrEmpty(RealName))
- {
- return "请输入真实姓名";
- }
- if (string.IsNullOrEmpty(CertId))
- {
- return "请输入身份证号";
- }
- if (string.IsNullOrEmpty(BackCard))
- {
- return "请输入银行卡号";
- }
- if (string.IsNullOrEmpty(BackName))
- {
- return "请输入银行名称";
- }
- var query = MakerCode + "," + RealName + "," + CertId + "," + BackCard + "," + BackName;
- var userForMakerCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode) ?? new UserForMakerCode();
- var userInfo = db.Users.FirstOrDefault(m => m.Id == userForMakerCode.UserId) ?? new Users();
- if (userInfo.AuthFlag == 1)
- {
- return "已认证";
- }
- else
- {
- userInfo.UpdateDate = DateTime.Now;
- userInfo.RealName = RealName;
- userInfo.AuthFlag = 1;
- if (userInfo.AuthDate == null)
- {
- userInfo.AuthDate = DateTime.Now;
- }
- userInfo.CertId = CertId;
- userInfo.SettleBankCardNo = BackCard;
- userInfo.SettleBankName = BackName;
- db.SaveChanges();
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + query + ":" + SysUserName + "-" + SysRealName, "认证创客");
- }
- return "success";
- }
- #endregion
- #region 划拨创客机具
- public IActionResult TransferPos(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- // public string TransferPosDo(string PosSn, string FromMakerCode, string ToMakerCode)
- // {
- // if (string.IsNullOrEmpty(PosSn))
- // {
- // return "请输入机具SN";
- // }
- // if (string.IsNullOrEmpty(FromMakerCode))
- // {
- // return "请输入机具来源创客编号";
- // }
- // if (string.IsNullOrEmpty(ToMakerCode))
- // {
- // return "请输入划拨对象创客编号";
- // }
- // var query = PosSn + "," + FromMakerCode + "," + ToMakerCode;
- // var machineForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == PosSn) ?? new MachineForSnNo();
- // var posInfo = db.PosMachinesTwo.FirstOrDefault(m => m.Id == machineForSnNo.SnId) ?? new PosMachinesTwo();
- // if (posInfo.Id == 0)
- // {
- // return "机具" + PosSn + "不存在";
- // }
- // var user = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == FromMakerCode) ?? new UserForMakerCode();
- // var tuser = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == ToMakerCode) ?? new UserForMakerCode();
- // var fUserId = db.Users.FirstOrDefault(m => m.Id == user.UserId) ?? new Users();
- // if (fUserId.Id == 0)
- // {
- // return "来源创客" + FromMakerCode + "不存在";
- // }
- // var tUserId = db.Users.FirstOrDefault(m => m.Id == tuser.UserId) ?? new Users();
- // if (tUserId.Id == 0)
- // {
- // return "划拨创客" + ToMakerCode + "不存在";
- // }
- // if (posInfo.BindingState == 0)
- // {
- // if (posInfo.UserId == 0 || posInfo.BuyUserId == posInfo.UserId)
- // {
- // posInfo.BuyUserId = tUserId.Id;
- // posInfo.UserId = tUserId.Id;
- // }
- // else
- // {
- // posInfo.BuyUserId = tUserId.Id;
- // }
- // var fUserPos = db.UserMachineData.FirstOrDefault(m => m.IdBrand == fUserId.Id + "_" + posInfo.BrandId) ?? new UserMachineData();
- // var tUserPos = db.UserMachineData.FirstOrDefault(m => m.IdBrand == tUserId.Id + "_" + posInfo.BrandId) ?? new UserMachineData();
- // fUserPos.TotalMachineCount -= 1;
- // fUserPos.UnBindCount -= 1;
- // tUserPos.TotalMachineCount += 1;
- // tUserPos.UnBindCount += 1;
- // db.SaveChanges();
- // function.WriteLog(DateTime.Now.ToString() + ":请求参数," + query + ":" + SysUserName + "-" + SysRealName, "划拨创客机具");
- // }
- // else
- // {
- // return "机具" + PosSn + "已使用";
- // }
- // return "success";
- // }
- // #endregion
- public string TransferPosDo(string PosSn, string FromMakerCode, string ToMakerCode)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- if (string.IsNullOrEmpty(FromMakerCode))
- {
- return "请输入机具来源创客编号";
- }
- if (string.IsNullOrEmpty(ToMakerCode))
- {
- return "请输入划拨对象创客编号";
- }
- var user = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == FromMakerCode) ?? new UserForMakerCode();
- var tuser = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == ToMakerCode) ?? new UserForMakerCode();
- var fUserId = db.Users.FirstOrDefault(m => m.Id == user.UserId) ?? new Users();
- if (fUserId.Id == 0)
- {
- return "来源创客" + FromMakerCode + "不存在";
- }
- var tUserId = db.Users.FirstOrDefault(m => m.Id == tuser.UserId) ?? new Users();
- if (tUserId.Id == 0)
- {
- return "划拨创客" + ToMakerCode + "不存在";
- }
- List<int> SnIds = new List<int>();
- string[] PosSnList = PosSn.Replace("\r", "").Replace("\n", ",").Split(',');
- string error = "";
- foreach (string Sn in PosSnList)
- {
- var posInfo = db.PosMachinesTwo.FirstOrDefault(m => m.Status > -1 && m.BindingState == 0 && m.ActivationState == 0 && m.PosSn == Sn && (m.BuyUserId == fUserId.Id || m.UserId == fUserId.Id)) ?? new PosMachinesTwo();
- if (posInfo.Id == 0)
- {
- error += "以下操作失败" + Sn + ',' + "不存在或者不符合条件" + '\n';
- }
- else
- {
- SnIds.Add(posInfo.Id);
- }
- }
- if (!string.IsNullOrEmpty(error))
- {
- return "Warning|" + error;
- }
- else
- {
- foreach (int SnId in SnIds)
- {
- var posInfo = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnId) ?? new PosMachinesTwo();
- if (posInfo.UserId == 0 || posInfo.BuyUserId == posInfo.UserId)
- {
- posInfo.BuyUserId = tUserId.Id;
- posInfo.UserId = tUserId.Id;
- }
- else
- {
- posInfo.BuyUserId = tUserId.Id;
- }
- var fUserPos = db.UserMachineData.FirstOrDefault(m => m.IdBrand == fUserId.Id + "_" + posInfo.BrandId) ?? new UserMachineData();
- var tUserPos = db.UserMachineData.FirstOrDefault(m => m.IdBrand == tUserId.Id + "_" + posInfo.BrandId) ?? new UserMachineData();
- fUserPos.TotalMachineCount -= 1;
- fUserPos.UnBindCount -= 1;
- tUserPos.TotalMachineCount += 1;
- tUserPos.UnBindCount += 1;
- db.StoreChangeHistory.Add(new StoreChangeHistory()
- {
- CreateDate = DateTime.Now,
- UserId = fUserId.Id, //创客
- BrandId = posInfo.BrandId,//产品类型
- ChangeRecordNo = "HBJJ" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8), //变更记录单号
- TransType = 1, //交易类型
- SnNo = posInfo.PosSn, //SN编号
- SnType = posInfo.PosSnType, //SN机具类型
- StockOpDirect = 1, //库存操作方向
- DeviceVendor = posInfo.DeviceName, //设备厂商
- DeviceModel = posInfo.DeviceKind, //设备型号
- DeviceType = posInfo.DeviceType, //设备类型
- FromUserId = fUserId.Id, //出货创客
- FromDate = DateTime.Now, //出库时间
- FromRemark = "划拨创客机具", //出库备注
- SourceStoreId = posInfo.SourceStoreId, //源仓库
- ToUserId = tUserId.Id,//收货创客
- });
- }
- var query = SnIds + ";" + FromMakerCode + ";" + ToMakerCode;
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + query + ":" + SysUserName + "-" + SysRealName, "划拨创客机具");
- db.SaveChanges();
- db.Dispose();
- }
- return "success";
- }
- #endregion
- #region 还原提现订单状态
- public IActionResult RestoreStatus(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string RestoreStatusDo(string OrderNo)
- {
- if (string.IsNullOrEmpty(OrderNo))
- {
- return "请输入提现订单编号";
- }
- string[] OrderNoList = OrderNo.Replace("\r", "").Split('\n');
- var error = "";
- foreach (var item in OrderNoList)
- {
- var cash = db.UserCashRecord.FirstOrDefault(m => m.CashOrderNo == item) ?? new UserCashRecord();
- if (cash.Id > 0)
- {
- cash.QueryCount = 0;
- cash.Status = 0;
- db.SaveChanges();
- }
- else
- {
- error += "订单" + item + "不存在" + '\n';
- }
- }
- if (!string.IsNullOrEmpty(error))
- {
- return "Warning|" + error;
- }
- return "success";
- }
- #endregion
- #region 查询创客循环资格
- public IActionResult SeeUserLoop(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string SeeUserLoopDo(string MakerCode)
- {
- var userForMakerCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode) ?? new UserForMakerCode();
- var user = db.Users.FirstOrDefault(m => m.Id == userForMakerCode.UserId) ?? new Users();
- var pos = db.PosMachinesTwo.Where(m => m.Status > -1 && m.BuyUserId == user.Id).ToList();
- var brandList = db.KqProducts.ToList();
- var info = "";
- foreach (var item in brandList)
- {
- var brand = item.Name;
- //已过期
- var overdue = pos.Count(m => m.RecycEndDate < DateTime.Now && m.BrandId == item.Id && m.PosSnType == 0);
- //可申请
- var use = pos.Count(m => m.IsPurchase == 0 && m.RecycEndDate > DateTime.Now && m.BrandId == item.Id && m.PosSnType == 0);
- //已使用
- // var used = pos.Count(m => m.IsPurchase == 1 && m.BrandId == item.Id && m.PosSnType == 0);
- // info += "品牌:" + brand + ",已过期:" + overdue + ",可申请:" + use + ",已使用:" + used + "\n";
- info += "品牌:" + brand + ",已过期:" + overdue + ",可申请:" + use + "\n";
- }
- return info;
- }
- #endregion
- #region 提交到代付排除的创客名单
- public IActionResult CashWithoutUser(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- CustomTagSet set = db.CustomTagSet.FirstOrDefault(m => m.Tags == "CashWithoutUser") ?? new CustomTagSet();
- ViewBag.set = set;
- return View();
- }
- public string CashWithoutUserDo(string Content)
- {
- CustomTagSet set = db.CustomTagSet.FirstOrDefault(m => m.Tags == "CashWithoutUser");
- if (set == null)
- {
- set = db.CustomTagSet.Add(new CustomTagSet()
- {
- Tags = "CashWithoutUser",
- Title = "提交到代付排除的创客名单"
- }).Entity;
- db.SaveChanges();
- }
- set.Contents = Content;
- db.SaveChanges();
- db.Dispose();
- return "success";
- }
- #endregion
- #region 坏机回仓
- public IActionResult BadPosToStore(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string BadPosToStoreDo(string OldSn)
- {
- string[] OldSnList;
- OldSnList = OldSn.Replace("\r", "").Split('\n');
- string error = "";
- List<string> opData = new List<string>();
- for (int i = 0; i < OldSnList.Length; i++)
- {
- string OldSnNum = OldSnList[i];
- MachineForSnNo oldForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == OldSnNum) ?? new MachineForSnNo();
- PosMachinesTwo oldpos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == oldForSnNo.SnId) ?? new PosMachinesTwo();
- if (!opData.Contains(oldpos.BuyUserId + ":" + oldpos.BrandId))
- {
- opData.Add(oldpos.BuyUserId + ":" + oldpos.BrandId);
- }
- oldpos.Status = 1;
- oldpos.PosSnType = 0;
- oldpos.QueryCount = 0;
- oldpos.UpdateDate = null;
- oldpos.ActivityList = null;
- oldpos.SeoKeyword = null;
- oldpos.SeoDescription = null;
- oldpos.OrderId = 0;
- oldpos.RecycEndDate = null;
- oldpos.RecycBackCount = 0;
- oldpos.PrizeParams = null;
- oldpos.ScanQrTrade = 0;
- oldpos.BindMerchantId = 0;
- oldpos.CreditTrade = 0;
- oldpos.DebitCardTrade = 0;
- oldpos.IsVip = 0;
- oldpos.UserNav = null;
- oldpos.TransferTime = null;
- oldpos.IsPurchase = 0;
- oldpos.Detail = null;
- oldpos.BindingTime = null;
- oldpos.BindingState = 0;
- oldpos.ActivationTime = null;
- oldpos.ActivationState = 0;
- oldpos.LeaderUserId = 0;
- oldpos.PreUserId = 0;
- oldpos.IsFirst = 0;
- oldpos.DownFeeMan = null;
- oldpos.DownFeeFlag = 0;
- oldpos.DownFeeDate = null;
- oldpos.UpFeeMan = null;
- oldpos.UpFeeFlag = 0;
- oldpos.UpFeeDate = null;
- oldpos.OpReserve1 = 0;
- oldpos.OpReserve2 = 0;
- oldpos.OpReserve3 = 0;
- oldpos.OpId = 0;
- oldpos.RecycStartDate = null;
- oldpos.SourcePosSn = null;
- oldpos.BuyUserId = 0;
- oldpos.UserId = 0;
- PublicFunction.ClearPosHistory(db, oldpos.PosSn); //清除机具历史记录
- }
- if (!string.IsNullOrEmpty(error))
- {
- return "Warning|" + error;
- }
- db.SaveChanges();
- foreach (string sub in opData)
- {
- string[] datalist = sub.Split(":");
- PublicFunction.SycnMachineCount(int.Parse(datalist[0]), int.Parse(datalist[1]));
- }
- return "success";
- }
- #endregion
- #region 划拨创客机具券
- public IActionResult TransferPosCoupon(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- public string TransferPosCouponDo(string PosCouponCodes, string FromMakerCode, string ToMakerCode, string LeaderMakerCode = "")
- {
- if (string.IsNullOrEmpty(PosCouponCodes))
- {
- return "请输入机具券码";
- }
- if (string.IsNullOrEmpty(FromMakerCode))
- {
- return "请输入机具来源创客编号";
- }
- if (string.IsNullOrEmpty(ToMakerCode))
- {
- return "请输入划拨对象创客编号";
- }
- var user = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == FromMakerCode) ?? new UserForMakerCode();
- var tuser = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == ToMakerCode) ?? new UserForMakerCode();
- var fUserId = db.Users.FirstOrDefault(m => m.Id == user.UserId) ?? new Users();
- if (fUserId.Id == 0)
- {
- return "来源创客" + FromMakerCode + "不存在";
- }
- var tUserId = db.Users.FirstOrDefault(m => m.Id == tuser.UserId) ?? new Users();
- if (tUserId.Id == 0)
- {
- return "划拨创客" + ToMakerCode + "不存在";
- }
- int LeaderUserId = 0;
- if (!string.IsNullOrEmpty(LeaderMakerCode))
- {
- UserForMakerCode leaderuser = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == LeaderMakerCode) ?? new UserForMakerCode();
- Users LeaderUserItem = db.Users.FirstOrDefault(m => m.Id == leaderuser.UserId) ?? new Users();
- if (LeaderUserItem.Id == 0)
- {
- return "大盟主创客编号" + LeaderMakerCode + "不存在";
- }
- LeaderUserId = leaderuser.UserId;
- }
- var query = PosCouponCodes + "\n" + FromMakerCode + "," + ToMakerCode;
- string[] PosCouponList = PosCouponCodes.Replace("\r", "").Replace("\n", ",").Split(',');
- foreach (string PosCouponCode in PosCouponList)
- {
- PosCoupons item = db.PosCoupons.FirstOrDefault(m => m.ExchangeCode == PosCouponCode) ?? new PosCoupons();
- if (item.UserId != fUserId.Id)
- {
- return "机具券" + PosCouponCode + "不在创客" + FromMakerCode + "名下";
- }
- if (item.Id == 0)
- {
- return "机具券" + PosCouponCode + "不存在";
- }
- if (item.IsUse == 1)
- {
- return "机具券" + PosCouponCode + "已使用";
- }
- item.UserId = tUserId.Id;
- if (LeaderUserId > 0 && item.LeaderUserId == 0)
- {
- item.LeaderUserId = LeaderUserId;
- }
- }
- db.SaveChanges();
- db.Dispose();
- return "success";
- }
- #endregion
- #region 机具回仓退款
- public IActionResult RefundPosFee(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string RefundPosFeeDo(string PosSn, string BackStoreNo, int IsBack = 0)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- if (IsBack == 1)
- {
- if (string.IsNullOrEmpty(BackStoreNo))
- {
- return "请输入仓库编号";
- }
- }
- string[] PosSnList = PosSn.Replace("\r", "").Split('\n');
- WebCMSEntities db = new WebCMSEntities();
- DateTime time = DateTime.Parse(DateTime.Now.ToString(("yyyy-MM-dd") + " 00:00:00"));
- var endTime = time.AddDays(20 - time.Day).AddDays(-60);
- StoreForCode storeForBack = new StoreForCode();
- StoreHouse BackStore = new StoreHouse();
- List<string> opData = new List<string>();
- foreach (var item in PosSnList)
- {
- MachineForSnNo machineForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == item) ?? new MachineForSnNo();
- if (machineForSnNo.SnId == 0)
- {
- return "未找到机具" + item + "关联数据";
- }
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == machineForSnNo.SnId && m.Status > -1 && m.RecycEndDate < endTime && m.BindingState == 0) ?? new PosMachinesTwo();
- if (pos.Id == 0)
- {
- return "机具" + item + "不存在或者不满足条件";
- }
- if (IsBack == 1)
- {
- storeForBack = db.StoreForCode.FirstOrDefault(m => m.Code == BackStoreNo) ?? new StoreForCode();
- if (storeForBack.StoreId == 0)
- {
- return "未找到" + BackStoreNo + "关联数据";
- }
- BackStore = db.StoreHouse.FirstOrDefault(m => m.Status > -1 && m.Id == storeForBack.StoreId && m.BrandId == pos.BrandId.ToString()) ?? new StoreHouse();
- if (BackStore.Id == 0)
- {
- return "仓库" + BackStoreNo + "不存在或与机具品牌不符";
- }
- }
- var userAccount = db.UserAccount.FirstOrDefault(m => m.Id == BackStore.UserId) ?? new UserAccount();
- var refundUserAccount = db.UserAccount.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new UserAccount();
- var brandInfo = db.KqProducts.FirstOrDefault(m => m.Id == pos.BrandId) ?? new KqProducts();
- var amount = 0;
- if (brandInfo.Name.Contains("电签"))
- {
- amount = 200;
- }
- if (brandInfo.Name.Contains("大POS"))
- {
- amount = 300;
- }
- if (IsBack == 1)
- {
- userAccount.ValidAmount -= amount;//扣减分仓可用额度
- StoreStockChange stockchange = db.StoreStockChange.Add(new StoreStockChange()
- {
- CreateDate = DateTime.Now,
- CreateMan = SysUserName,
- StoreId = pos.StoreId, //出货仓库
- BrandId = pos.BrandId, //产品类型
- ProductName = RelationClass.GetKqProductBrandInfo(pos.BrandId), //产品名称
- TransType = 5, //交易类型
- SnNo = item, //SN编号
- StockOpDirect = 0, //库存操作方向
- SnStatus = 1, //SN状态
- DeviceVendor = pos.DeviceName, //设备厂商
- DeviceModel = pos.DeviceKind, //设备型号
- DeviceType = pos.DeviceType, //设备类型
- FromUserId = pos.BuyUserId, //来源创客
- ToRemark = "过期机具回仓退款", //入库备注
- ToStoreId = BackStore.Id, //退货收货仓库
- SourceStoreId = pos.SourceStoreId, //源仓库编号
- BrandType = pos.DeviceType, //品牌类型
- }).Entity;
- string ChangeNo = "HCTK";
- int StoreStockChangeId = stockchange.Id;
- string StoreStockChangeIdString = StoreStockChangeId.ToString();
- for (int j = 0; j < 18 - StoreStockChangeId.ToString().Length; j++)
- {
- StoreStockChangeIdString = "0" + StoreStockChangeIdString;
- }
- ChangeNo += StoreStockChangeIdString;
- stockchange.ChangeNo = ChangeNo; //交易流水编号
- db.StoreChangeHistory.Add(new StoreChangeHistory()
- {
- CreateDate = DateTime.Now,
- BrandId = pos.BrandId, //产品类型
- ChangeRecordNo = ChangeNo, //变更记录单号
- TransType = 5, //交易类型
- SnNo = item, //SN编号
- SnType = pos.PosSnType, //SN机具类型
- StockOpDirect = 0, //库存操作方向
- DeviceVendor = pos.DeviceName, //设备厂商
- DeviceModel = pos.DeviceKind, //设备型号
- DeviceType = pos.DeviceType, //设备类型
- FromUserId = pos.BuyUserId, //来源创客
- ToRemark = "过期机具回仓退款", //入库备注
- SourceStoreId = pos.SourceStoreId, //源仓库
- StoreId = pos.StoreId, //出货仓库
- });
- db.MachineReturn.Add(new MachineReturn()
- {
- CreateDate = DateTime.Now,
- Operator = SysUserName + "_" + SysRealName,//操作人
- BrandId = pos.BrandId, //产品类型
- DeviceSnNos = pos.PosSn,
- ToStoreId = BackStore.Id,
- ApplyNo = ChangeNo, //变更记录单号
- UserId = pos.BuyUserId, //来源创客
- Remark = "过期机具回仓退款", //入库备注
- });
- if (pos.ScanQrTrade > 0)
- {
- decimal ChangeAmount = 0;
- decimal BeforeBalanceAmount = 0;
- decimal AfterBalanceAmount = 0;
- if (pos.ScanQrTrade == 999)
- {
- refundUserAccount.BalanceAmount += amount;//退还创客机具货款
- BeforeBalanceAmount = refundUserAccount.BalanceAmount;
- AfterBalanceAmount = refundUserAccount.BalanceAmount + pos.ScanQrTrade;
- ChangeAmount = amount;
- }
- else
- {
- refundUserAccount.BalanceAmount += pos.ScanQrTrade;//退还创客机具货款
- BeforeBalanceAmount = refundUserAccount.BalanceAmount;
- AfterBalanceAmount = refundUserAccount.BalanceAmount + pos.ScanQrTrade;
- ChangeAmount = pos.ScanQrTrade;
- }
- db.UserAccountRecord.Add(new UserAccountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = pos.BuyUserId, //创客
- ChangeType = 126, //变动类型(机具货款退还)
- ProductType = 0, //产品类型
- ChangeAmount = ChangeAmount, //变更金额
- BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
- AfterBalanceAmount = AfterBalanceAmount, //变更后余额
- });
- }
- var bInfo = BackStore.UserId + "_" + pos.BrandId;
- var userMachineData = db.UserMachineData.FirstOrDefault(m => m.IdBrand == bInfo) ?? new UserMachineData();
- userMachineData.TotalMachineCount += 1;
- userMachineData.UnBindCount += 1;
- BackStore.LaveNum += 1;
- BackStore.TotalNum += 1;
- var fInfo = pos.BuyUserId + "_" + pos.BrandId;
- var userMachineDatas = db.UserMachineData.FirstOrDefault(m => m.IdBrand == fInfo) ?? new UserMachineData();
- userMachineDatas.TotalMachineCount -= 1;
- userMachineDatas.UnBindCount -= 1;
- if (!opData.Contains(pos.BuyUserId + ":" + pos.BrandId))
- {
- opData.Add(pos.BuyUserId + ":" + pos.BrandId);
- }
- pos.StoreId = BackStore.Id;//变更机具所属仓库,重置为仓库机
- pos.Status = 1;
- pos.QueryCount = 0;
- pos.UpdateDate = null;
- pos.ActivityList = null;
- pos.SeoKeyword = null;
- pos.SeoDescription = null;
- pos.OrderId = 0;
- pos.RecycEndDate = null;
- pos.RecycBackCount = 0;
- pos.PrizeParams = null;
- pos.ScanQrTrade = 0;
- pos.BindMerchantId = 0;
- pos.CreditTrade = 0;
- pos.DebitCardTrade = 0;
- pos.IsVip = 0;
- pos.UserNav = null;
- pos.TransferTime = null;
- pos.IsPurchase = 0;
- pos.Detail = null;
- pos.BindingTime = null;
- pos.BindingState = 0;
- pos.ActivationTime = null;
- pos.ActivationState = 0;
- pos.LeaderUserId = 0;
- pos.PreUserId = 0;
- pos.IsFirst = 0;
- pos.DownFeeMan = null;
- pos.DownFeeFlag = 0;
- pos.DownFeeDate = null;
- pos.UpFeeMan = null;
- pos.UpFeeFlag = 0;
- pos.UpFeeDate = null;
- pos.OpReserve1 = 0;
- pos.OpReserve2 = 0;
- pos.OpReserve3 = 0;
- pos.OpId = 0;
- pos.RecycStartDate = null;
- pos.SourcePosSn = null;
- pos.BuyUserId = 0;
- pos.UserId = 0;
- PublicFunction.ClearPosHistory(db, pos.PosSn); //清除机具历史记录
- }
- else
- {
- if (pos.ScanQrTrade > 0)
- {
- decimal ChangeAmount = 0;
- decimal BeforeBalanceAmount = 0;
- decimal AfterBalanceAmount = 0;
- if (pos.ScanQrTrade == 999)
- {
- refundUserAccount.BalanceAmount += amount;//退还创客机具货款
- BeforeBalanceAmount = refundUserAccount.BalanceAmount;
- AfterBalanceAmount = refundUserAccount.BalanceAmount + pos.ScanQrTrade;
- ChangeAmount = amount;
- }
- else
- {
- refundUserAccount.BalanceAmount += pos.ScanQrTrade;//退还创客机具货款
- BeforeBalanceAmount = refundUserAccount.BalanceAmount;
- AfterBalanceAmount = refundUserAccount.BalanceAmount + pos.ScanQrTrade;
- ChangeAmount = pos.ScanQrTrade;
- }
- pos.ScanQrTrade = 0;
- db.UserAccountRecord.Add(new UserAccountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = pos.BuyUserId, //创客
- ChangeType = 126, //变动类型(机具货款退还)
- ProductType = 0, //产品类型
- ChangeAmount = ChangeAmount, //变更金额
- BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
- AfterBalanceAmount = AfterBalanceAmount, //变更后余额
- });
- }
- }
- }
- db.SaveChanges();
- foreach (string sub in opData)
- {
- string[] datalist = sub.Split(":");
- PublicFunction.SycnMachineCount(int.Parse(datalist[0]), int.Parse(datalist[1]));
- }
- return "success";
- }
- #endregion
- #region 添加商户信息
- public IActionResult AddMerchantnfo(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string AddMerchantnfoDo(string PosSn, string MerSn)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具号";
- }
- if (string.IsNullOrEmpty(MerSn))
- {
- return "请输入商户号";
- }
- var machineForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == PosSn) ?? new MachineForSnNo();
- var pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == machineForSnNo.SnId) ?? new PosMachinesTwo();
- var merchantInfo = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId) ?? new PosMerchantInfo();
- if (machineForSnNo.SnId == 0)
- {
- return "未找到机具" + PosSn + "关联数据";
- }
- if (pos.Id == 0)
- {
- return "未找到机具" + PosSn;
- }
- if (merchantInfo.Id > 0)
- {
- return "机具" + PosSn + "以经存在绑定商户";
- }
- var spInfo = spdb.BindRecord.FirstOrDefault(m => m.MerNo == MerSn && m.MerSnNo == PosSn) ?? new SpModels.BindRecord();
- if (spInfo.Id > 0)
- {
- var MerUserType = 0;
- var ActiveStatus = 0;
- if (pos.BuyUserId != pos.UserId)
- {
- MerUserType = 1;
- }
- if (string.IsNullOrEmpty(pos.ActivationTime.ToString()))
- {
- ActiveStatus = 1;
- }
- PosMerchantInfo posMerchantInfo = db.PosMerchantInfo.Add(new PosMerchantInfo()
- {
- CreateDate = pos.BindingTime,
- TopUserId = 1,
- BrandId = pos.BrandId,
- SnStoreId = pos.StoreId,
- MerStandardDate = pos.ActivationTime,
- SnType = pos.PosSnType,
- MerUserType = MerUserType,
- UserId = pos.UserId,
- ActiveStatus = ActiveStatus,
- MerStatus = 1,
- KqSnNo = PosSn,
- KqMerNo = MerSn,
- MerIdcardNo = spInfo.SeoKeyword,
- MerchantMobile = spInfo.MerNewSnNo,
- MerchantName = spInfo.MerName,
- MerchantNo = spInfo.MerNo,
- }).Entity;
- db.SaveChanges();
- string text = string.Format("设置商户信息,机具Sn: " + PosSn + ",商户编号: " + MerSn + ",操作人:" + SysUserName + "_" + SysRealName + ",时间:" + DateTime.Now + "");
- function.WriteLog(text, "设置商户信息");
- }
- return "success";
- }
- #endregion
- #region 查询商户达标明细
- public IActionResult SeeMerchantTradeDetail(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string SeeMerchantTradeDetailDo(string PosSn)
- {
- if (string.IsNullOrEmpty(PosSn))
- {
- return "请输入机具SN";
- }
- var result = "";
- var pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == PosSn) ?? new PosMachinesTwo();
- if (pos.Id > 0)
- {
- var mer = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId) ?? new PosMerchantInfo();
- if (mer.Id > 0)
- {
- var IsOk = "";//是否达标
- var timeInfo = "";
- if (mer.StandardMonths == 10)
- {
- IsOk = "已达标";
- }
- else
- {
- IsOk = "未达标";
- }
- result += IsOk + "\n";
- result += "开机时间:" + DateTime.Parse(pos.BindingTime.ToString()).ToString("yyyy-MM-dd HH:mm:ss") + "\n";
- result += "激活时间:" + DateTime.Parse(pos.ActivationTime.ToString()).ToString("yyyy-MM-dd HH:mm:ss") + "\n";
- result += "商户姓名:" + mer.MerRealName + "\n";
- result += "明细:\n";
- for (int i = 0; i < 12; i++)
- {
- var time = DateTime.Parse(pos.ActivationTime.ToString()).AddMonths(i + 1).ToString("yyyyMM");//达标计算开始时间
- timeInfo += "," + time;
- }
- timeInfo = timeInfo + ",";
- var merTradeInfo = db.PosMerchantTradeSummay.Where(m => m.MerchantId == mer.Id && timeInfo.Contains("," + m.TradeMonth + ",")).ToList();
- string[] month = timeInfo.TrimStart(',').TrimEnd(',').Split(',');
- foreach (var item in month)
- {
- var tradeAmount = merTradeInfo.Where(m => m.TradeMonth == item).Sum(m => m.TradeAmount);
- result += item + "交易额:" + tradeAmount + "\n";
- }
- }
- else
- {
- return "未找到机具" + PosSn + "所对应的商户";
- }
- }
- else
- {
- return "未找到机具" + PosSn;
- }
- return result;
- }
- #endregion
- #region 指定文件Excel导出
- public IActionResult ExportExcel(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- [HttpPost]
- public string ExportExcelDo(string FileName, string Operator, string Sql, int Number = 0)
- {
- if (string.IsNullOrEmpty(FileName))
- {
- return "请输入文件名";
- }
- if (string.IsNullOrEmpty(Operator))
- {
- return "请输入后台操作人";
- }
- if (string.IsNullOrEmpty(Sql))
- {
- return "请输入SQL语句";
- }
- var SqlString = "";
- if (Number == 0)
- {
- SqlString = Sql;
- }
- if (Number > 0)
- {
- SqlString = Sql + " LIMIT " + Number;
- }
- string[] Operators = Operator.Replace("\r", "").Replace("\n", ",").Split(',');
- foreach (var item in Operators)
- {
- var sysAdmin = bsdb.SysAdmin.FirstOrDefault(m => m.AdminName == item && m.Status > -1);
- string SendData = "{\"Operater\":\"" + sysAdmin.Id + "\",\"SqlString\":\"" + SqlString + "\",\"FileName\":\"" + FileName + "\",\"MaxCount\":\"" + Number + "\"}";
- RedisDbconn.Instance.AddList("ExportQueue", SendData);
- }
- return "success";
- }
- #endregion
- #region 服务费返现注册查询
- public IActionResult SeeMerchantAuthInfo(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- #endregion
- #region 服务费返现注册查询
- public JsonResult SeeMerchantAuthInfoDo(string RealName, string Mobile, string CertId, int page = 1, int limit = 30)
- {
- var query = db.UserFamilyMember.Where(m => m.Status > -1);
- if (string.IsNullOrEmpty(RealName) && string.IsNullOrEmpty(Mobile) && string.IsNullOrEmpty(CertId))
- {
- Dictionary<string, object> objs = new Dictionary<string, object>();
- return Json(objs);
- }
- else
- {
- if (!string.IsNullOrEmpty(RealName))
- {
- query = query.Where(m => m.Name == RealName);
- }
- if (!string.IsNullOrEmpty(Mobile))
- {
- query = query.Where(m => m.Mobile == Mobile);
- }
- if (!string.IsNullOrEmpty(CertId))
- {
- query = query.Where(m => m.IdCardNo.ToUpper() == CertId.ToUpper());
- }
- }
- List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
- foreach (var subdata in query.ToList())
- {
- Dictionary<string, object> data = new Dictionary<string, object>();
- if (subdata.Id > 0)
- {
- data["IsRegist"] = "已注册";
- if (subdata.Status == 1)
- {
- data["IsAuth"] = "已认证";
- data["Name"] = subdata.Name;
- data["Mobile"] = subdata.Mobile;
- data["IdcardNo"] = subdata.IdCardNo;
- var linkCount = db.PosMerchantInfo.Count(m => m.MerRealName == subdata.Name && m.MerchantMobile == subdata.Mobile && m.MerIdcardNo.ToUpper() == subdata.IdCardNo.ToUpper());
- data["Count"] = linkCount;
- }
- else
- {
- data["IsAuth"] = "未认证";
- data["Name"] = "";
- data["Mobile"] = subdata.Mobile;
- data["IdcardNo"] = "";
- data["Count"] = "";
- }
- }
- else
- {
- data["IsRegist"] = "未注册";
- data["IsAuth"] = "未认证";
- data["Name"] = "";
- data["Mobile"] = "";
- data["IdcardNo"] = "";
- data["Count"] = "";
- }
- dataList.Add(data);
- }
- Dictionary<string, object> obj = new Dictionary<string, object>();
- obj.Add("code", 0);
- obj.Add("msg", "");
- obj.Add("count", dataList.Count);
- obj.Add("data", dataList);
- return Json(obj);
- }
- #endregion
- #region 直营团队数据导出
- public IActionResult Team1Info(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- #endregion
- #region 直营团队数据导出
- public JsonResult Team1InfoDo(string MakerCode, string BindingTime, string ActivationTime, string PosFee, string BrandId, int page = 1, int limit = 30)
- {
- List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
- if (!string.IsNullOrEmpty(MakerCode))
- {
- }
- DataTable dt = OtherMySqlConn.dtable("select wname,k.`Name`,PosSnType,PosSn,tb.SeoKeyword,TransferTime,BindingTime,ActivationTime,PrizeParams from (select (select Name from BusinessPartner where Id=(select PartnerId from BusinessPartnerPos where PosId=pos.Id and `Status`>-1 limit 1)) wname,BrandId,PosSnType,PosSn,(CASE WHEN BrandId not in(2,7,10,11) THEN ROUND(CAST(SeoKeyword AS DECIMAL)/100, 2) ELSE SeoKeyword end) SeoKeyword,TransferTime,BindingTime,ActivationTime,PrizeParams from PosMachinesTwo pos where BindingState=1 and `Status`>=-1 and BindingTime<'2023-06-12 00:00:00' and BuyUserId=135158 and Id in (select PosId from BusinessPartnerPos)) tb left join KqProducts k on tb.BrandId=k.Id");
- foreach (DataRow item in dt.Rows)
- {
- Dictionary<string, object> curData = new Dictionary<string, object>();
- curData.Add("wname", item["TradeDate"]); //伙伴名称
- curData.Add("Name", item["TradeDate"]); //机具品牌
- curData.Add("PosSn", item["TradeDate"]); //机具Sn
- curData.Add("SeoKeyword", item["TradeDate"]); //押金
- curData.Add("BindingTime", item["TradeDate"]); //绑定时间
- curData.Add("ActivationTime", item["TradeDate"]); //激活时间
- dataList.Add(curData);
- }
- Dictionary<string, object> obj = new Dictionary<string, object>();
- obj.Add("code", 0);
- obj.Add("msg", "");
- obj.Add("count", dataList.Count);
- obj.Add("data", dataList);
- return Json(obj);
- }
- #endregion
- // #region 快捷导出Excel
- // public IActionResult QuickExportExcel(string right)
- // {
- // ViewBag.RightInfo = RightInfo;
- // ViewBag.right = right;
- // return View();
- // }
- // [HttpPost]
- // public string QuickExportExcelDo(string UserIdMakerCode, string SourceMakerCode, string RemarkSelect, string CreateDateData, string SeoKeyword)
- // {
- // var Sql = "SELECT c.MakerCode '创客编号',c.RealName '创客姓名',DATE_FORMAT(c.CreateDate,'%Y-%m-%d %H:%i:%s') '创建时间',c.Remark '变动类型',c.Type1Num '电签兑换券张数',c.Type2Num '大POS兑换券张数',d.LeaderBalanceAmount '可提现余额',c.ChangeAmt '使用额度',c.BeforeAmt '使用前剩余额度',c.AfterAmt '使用后剩余额度' FROM(SELECT a.*,b.MakerCode,b.RealName FROM(SELECT Id,UserId,CreateDate,ChangeAmt,BeforeAmt,AfterAmt,Remark,REPLACE (JSON_EXTRACT (SeoTitle, '$[0].Num'),'\\\"','') AS 'Type1Num', REPLACE (JSON_EXTRACT (SeoTitle, '$[1].Num'),'\\\"','') AS 'Type2Num' FROM LeaderReserveRecord WHERE 1=1 " + SqlString + ") a LEFT JOIN Users b ON a.UserId=b.Id) c LEFT JOIN UserAccount d ON c.UserId=d.Id";
- // var sysAdmin = bsdb.SysAdmin.FirstOrDefault(m => m.AdminName == SysUserName && m.Status > -1);
- // var FileName = "盟主储蓄金变动记录" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
- // string SendData = "{\"Operater\":\"" + sysAdmin.Id + "\",\"SqlString\":\"" + Sql + "\",\"FileName\":\"" + FileName + "\",\"MaxCount\":\"0\"}";
- // RedisDbconn.Instance.AddList("ExportQueue", SendData);
- // return "success";
- // }
- // #endregion
- }
- }
|